/* Extracted from inline <style> block */
html {
  overflow-y: scroll;
}


    :root {
      color-scheme: light dark;
    }
    * {
      box-sizing: border-box;
    }
    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      margin: 0;
      padding: 0;
      background: radial-gradient(circle at top, #e5f0ff 0, #f5f7fb 40%, #edf2ff 100%);
      color: #1a1a1a;
    }
    .page {
      max-width: 1180px;
      margin: 0 auto;
      padding: 52px 16px 72px;
    }
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 32px;
    }
    .logo-row {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .logo-mark {
      width: 38px;
      height: 38px;
      border-radius: 12px;
      box-shadow: 0 12px 30px rgba(37, 99, 235, 0.32);
      display: block;
      object-fit: contain;
    }
    .logo-text-main {
      font-weight: 650;
      letter-spacing: 0.02em;
    }
    .logo-text-sub {
      font-size: 0.86rem;
      color: #4b5563;
    }
    .badge {
      padding: 4px 9px;
      border-radius: 999px;
      font-size: 0.78rem;
      background: rgba(22, 163, 74, 0.08);
      color: #166534;
      border: 1px solid rgba(22, 163, 74, 0.22);
      white-space: nowrap;
    }
    main {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
      gap: 28px;
      align-items: flex-start;
    }
    @media (max-width: 800px) {
      main {
        grid-template-columns: minmax(0, 1fr);
      }
      header {
        flex-direction: column;
        align-items: flex-start;
      }
    }
    h1 {
      font-size: clamp(2.0rem, 3vw, 2.35rem);
      margin: 0 0 0.35rem;
    }
    h2 {
      font-size: 1.15rem;
      margin: 1.6rem 0 0.6rem;
      color: #111827;
    }
    .tagline {
      margin-bottom: 0.9rem;
    }
    .video-invite { color: #1a1a1a;
      margin-bottom: 1.4rem;
    }
    .video-invite a {
      color: #1a73e8;
      font-weight: 500;
      text-decoration: none;
    }
    .video-invite a:hover {
      text-decoration: underline;
    }

    .tagline {
      font-size: 1rem;
      color: #4b5563;
      margin-bottom: 1.6rem;
    }
.sub-tagline {
  font-size: 1.02rem;
  font-weight: 500;
  color: #111827;
  margin: 0.25rem 0 0.6rem;
}
    
    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 1rem 0 1.2rem;
    }
    .btn {
      border-radius: 999px;
      padding: 9px 18px;
      font-size: 0.9rem;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      transition: transform 0.06s ease, box-shadow 0.06s ease, background 0.06s ease;
      white-space: nowrap;
    }
    .btn-primary {
      background: #1a73e8;
      color: #ffffff;
      box-shadow: 0 14px 30px rgba(37, 99, 235, 0.35);
    }
    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 40px rgba(37, 99, 235, 0.4);
    }
    .btn-ghost {
      background: rgba(255, 255, 255, 0.9);
      color: #111827;
      border: 1px solid rgba(148, 163, 184, 0.5);
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    }
    .btn-ghost:hover {
      background: #ffffff;
      transform: translateY(-1px);
    }


    .store-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 1.2rem 0 0.7rem;
      justify-content: flex-start;
      max-width: none;
    }
    @media (max-width: 800px) {
      .store-buttons {
        justify-content: center;
      }
    }

    @media (min-width: 640px) {
      .store-buttons .store-button:nth-child(1) {
        flex-basis: 100%;
        max-width: 100%;
      }
      .store-buttons .store-button:nth-child(n+2) {
        flex-basis: calc(50% - 6px);
        max-width: calc(50% - 6px);
      }
    }

    /* Premium install buttons (consistent inner fill, platform-specific glow) */
    .store-button {
      position: relative;
      z-index: 0;
      flex: 1 0 100%;
      width: 100%;
      max-width: 520px;
      border-radius: 999px;
      padding: 12px 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      text-decoration: none;
      cursor: pointer;
      color: #ffffff;
      text-align: left;
      white-space: nowrap;

      /* Shared inner fill (same for Edge, Chrome, Firefox) */
      background: linear-gradient(180deg, rgba(72, 109, 255, 0.85) 0%, rgba(35, 68, 170, 0.92) 45%, rgba(20, 44, 120, 0.98) 100%);
      border: 1px solid rgba(255, 255, 255, 0.22);
      box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);

      transition: transform 0.14s ease, box-shadow 0.14s ease, filter 0.14s ease;
      will-change: transform;
    }

    /* Glow ring */
    .store-button::before {
      content: "";
      position: absolute;
      inset: -2px;
      border-radius: inherit;
      background: var(--glow-gradient);
      opacity: 0.70;
      z-index: -1;
    }

    /* Soft outer glow */
    .store-button::after {
      content: "";
      position: absolute;
      top: 6px;
      right: -16px;
      bottom: -16px;
      left: -16px;
      border-radius: inherit;
      background: var(--glow-gradient);
      opacity: 0.16;
      filter: blur(16px);
      z-index: -2;
    }

    .store-button:hover {
      transform: translateY(-1px);
      box-shadow: 0 22px 46px rgba(15, 23, 42, 0.22);
    }

    .store-button:hover::after {
      opacity: 0.26;
    }

    .store-button:focus-visible {
      outline: 3px solid rgba(26, 115, 232, 0.55);
      outline-offset: 4px;
    }

    .store-icon {
      width: 26px;
      height: 26px;
      flex-shrink: 0;
      border-radius: 999px;
      filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.25));
      transition: transform 0.14s ease;
    }

    .store-button:hover .store-icon {
      transform: scale(1.04);
    }

    .store-text {
      display: flex;
      flex-direction: column;
      line-height: 1.05;
      gap: 2px;
      min-width: 0;
    }

    .store-eyebrow {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 1);
    }

    .store-main {
      font-size: 17px;
      font-weight: 700;
      color: #ffffff;
    }



    @media (min-width: 640px) {
      .store-buttons .store-button:nth-child(n+2) {
        padding-left: 14px;
        padding-right: 14px;
        gap: 8px;
      }
      .store-buttons .store-button:nth-child(n+2) .store-icon {
        width: 25px;
        height: 25px;
      }
      .store-buttons .store-button:nth-child(n+2) .store-main {
        font-size: 17px;
        font-weight: 700;
        letter-spacing: 0;
      }
      .store-buttons .store-button:nth-child(n+2) .store-eyebrow {
        font-size: 12px;
      }
    }

    /* Platform-specific glow only */
    .store-edge {
      --glow-gradient: linear-gradient(90deg, rgba(34, 211, 238, 0.95), rgba(34, 197, 94, 0.95));
    }

    .store-chrome {
      --glow-gradient: linear-gradient(90deg, rgba(239, 68, 68, 0.95), rgba(250, 204, 21, 0.95), rgba(59, 130, 246, 0.95));
    }

    .store-firefox {
      --glow-gradient: linear-gradient(90deg, rgba(168, 85, 247, 0.95), rgba(249, 115, 22, 0.95));
    }



    .enterprise-note {
      font-size: 0.85rem;
      color: #1d4ed8;
      margin: 1.2rem auto 2.2rem;
      max-width: 430px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 3px 18px;
      border-radius: 999px;
      background: #bfdbfe;
      box-shadow: 0 12px 26px rgba(15, 23, 42, 0.14);
    }
    .enterprise-note strong {
      font-weight: 500;
      color: #111827;
    }
    .enterprise-note-icon {
      font-size: 1rem;
      flex-shrink: 0;
    }
    .enterprise-note-text {
      white-space: nowrap;
    }


    .browsers {
      font-size: 0.85rem;
      color: #4b5563;
    }
    .browsers strong {
      font-weight: 500;
      color: #111827;
    }
    .browsers span {
      opacity: 0.85;
    }
    .feature-list {
      margin-top: 1.2rem;
      font-size: 0.92rem;
      color: #374151;
    }
    .bpo-fit { color: #374151; }
    .bpo-fit ul { margin: 0.3rem 0 0.9rem 1.1rem; padding: 0; }
    .bpo-fit li { margin-bottom: 0.25rem; }
    .feature-list ul {
      margin: 0.3rem 0 0.9rem 1.1rem;
      padding: 0;
    }
    .feature-list li {
      margin-bottom: 0.25rem;
    }
    .legal-note {
      font-size: 0.8rem;
      color: #6b7280;
      margin-top: 1rem;
    }
    .card {
      background: rgba(255, 255, 255, 0.94);
      border-radius: 18px;
      padding: 16px 15px 14px;
      box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
      border: 1px solid rgba(148, 163, 184, 0.45);
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(6px);
    }
    .card-screenshot {
      width: 100%;
      display: block;
      border-radius: 14px;
    }
    .footer-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.76rem;
  color: #6b7280;
  margin: 2.5rem 0 1.8rem;
  gap: 4px;
}
    .footer-row a {
      color: #1a73e8;
      text-decoration: none;
    }
    .footer-trademarks {
      font-size: 0.7rem;
      color: #6b7280;
      max-width: 720px;
    }
    .footer-row a:hover {
      text-decoration: underline;
    }
  h1{margin-bottom:24px;} h2{margin-bottom:24px;} .sub-tagline{margin-bottom:24px;} .tagline{margin-bottom:24px;} 
/* CopyDock.app: new hero header & navigation */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f5f7;
  color: #1a1a1a;
}

.cd-hero {
  position: relative;
  height: 240px;
  background-size: cover;
  background-position: 52% center;
  background-repeat: no-repeat;
}

.cd-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 32, 52, 0.35);
}

.cd-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  box-sizing: border-box;
  background: rgba(15, 32, 52, 0.6);
  color: #ffffff;
}

.cd-nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cd-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.cd-logo-mark {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.cd-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cd-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.cd-logo-name {
  font-weight: 500;
  font-size: 15px;
}

.cd-logo-tagline {
  font-size: 11px;
  opacity: 0.85;
}

.cd-nav-right {
  display: flex;
  align-items: center;
  gap: 26px;
}

.cd-nav-link {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  opacity: 0.90;
  position: relative;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  padding-top: 2px;
  padding-bottom: 2px;
  margin-left: 28px;
}

@media (min-width: 961px) {
  .cd-nav-link {
    white-space: nowrap;
  }
}

.cd-nav-link:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cd-nav-link--active {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cd-nav-menu {
  display: none;
  background: transparent;
  border: none;
  padding: 0;
  margin-left: 18px;
  cursor: pointer;
}

.cd-nav-menu span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: #ffffff;
  border-radius: 999px;
}

@media (max-width: 960px) {
  .cd-nav {
    padding: 0 20px;
  }
  .cd-nav-right {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    height: 100vh;
    width: 260px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 80px 24px 24px;
    background: rgba(15, 32, 52, 0.98);
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.45);
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease-out, opacity 0.22s ease-out;
    z-index: 1200;
  }
  .cd-nav-right.cd-nav-right--open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  .cd-nav-menu {
    display: block;
    position: relative;
    z-index: 1300;
  }
}
.cd-hero { background-image: url("../callcenter-hero-2560x900.png"); }


@media (min-width: 1200px) {
  .cd-hero {
    height: 360px;
  }
}

    .hero-copy {
      color: #1a1a1a;
      font-size: 1rem;
      line-height: 1.6;
      margin: 0 0 0.75rem;
      max-width: 720px;
    }
    .hero-copy a,
    .hero-copy a:visited {
      color: #1a73e8;
    }

    a[href="mailto:support@copydock.app"],
    a[href="mailto:support@copydock.app"]:visited {
      color: #1a73e8;
    }

    
/* Hero height & crop normalized (Grok suggestion applied) */
.cd-hero {
  position: relative;
  height: 180px;
  background: url("../callcenter-hero-2560x900.png") center 25% / cover no-repeat;
}

@media (min-width: 1200px) {
  .cd-hero {
    height: 260px;
  }
}

@media (min-width: 1600px) {
  .cd-hero {
    height: 280px;
  }
}

/* EXACT FOOTER FROM pricing.html – pixel-perfect */
    footer{
      margin-top:80px;
      padding:40px 20px 60px;
      text-align:center;
      background:#f9fafb;
      border-top:1px solid #e5e7eb;
      font-size:0.84rem;
      color:#6b7280;
      line-height:1.6;
    }
    footer a{color:#1a73e8;text-decoration:none;font-weight:500}
    footer a:hover{text-decoration:underline}
    .trademarks{font-size:0.74rem;max-width:720px;margin:12px auto 0;opacity:0.88;line-height:1.5}

    .cta-lines {
      margin-top: 36px;
      margin-right: 0;
      margin-bottom: 1.2rem;
      margin-left: 0;
      color: #111827;
      font-size: 0.98rem;
    }
    .cta-line {
      margin: 0.15rem 0;
      color: #374151;
    }
    

    .demo-trigger-wrap {
      margin-top: 12px;
      text-align: center;
    }
    .demo-trigger {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      border: 1px solid #cfd8e3;
      background: #ffffff;
      color: #0f172a;
      font-size: 0.78rem;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(15,23,42,0.08);
    }
    .demo-trigger:hover {
      background: #f8fafc;
    }
    .demo-trigger:focus-visible,
    .demo-modal-close:focus-visible {
      outline: 3px solid rgba(37, 99, 235, 0.35);
      outline-offset: 3px;
    }
    .demo-trigger-play {
      font-size: 0.8rem;
      line-height: 1;
    }
    .demo-modal {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(15, 23, 42, 0.72);
      z-index: 4000;
    }
    .demo-modal.is-open {
      display: flex;
    }
    .demo-modal-dialog {
      position: relative;
      width: min(960px, 100%);
      background: #0b1220;
      border-radius: 18px;
      padding: 18px 18px 14px;
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    }
    .demo-modal-close {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 36px;
      height: 36px;
      border: none;
      border-radius: 999px;
      background: rgba(255,255,255,0.12);
      color: #ffffff;
      font-size: 1.2rem;
      cursor: pointer;
    }
    .demo-modal-close:hover {
      background: rgba(255,255,255,0.2);
    }
    .demo-modal-title {
      color: #ffffff;
      font-size: 0.95rem;
      font-weight: 600;
      margin: 0 44px 12px 4px;
    }
    .demo-modal video {
      display: block;
      width: 100%;
      height: auto;
      max-height: 78vh;
      border-radius: 12px;
      background: #000000;
    }

/* Extracted from inline <style> block */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.26rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #c6dcff;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 14px rgba(15,23,42,0.10);
  font-size: 0.8rem;
  font-weight: 500;
  color: #2563eb;
  letter-spacing: 0.01em;
  margin-bottom: 0.9rem;
}
.hero-badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.18);
}
.hero-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(15,23,42,0.14);
}

/* Extracted from inline <style> block */
.video-wrapper{position:relative}
#videoCTA{
position:absolute;
left:0;
right:0;
bottom:40px;
padding:24px 20px 10px;
text-align:center;
color:#ffffff;
font-weight:600;
font-size:24px;
text-shadow:0 2px 8px rgba(0,0,0,0.85);
display:none;
pointer-events:none;
background:linear-gradient(to top, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.42) 35%, rgba(0,0,0,0.0) 100%);
}
#videoCTA span{
display:block;
font-size:18px;
font-weight:400;
margin-top:4px;
}

.csp-inline-d014111259 { margin-top:0.4rem; margin-bottom:1.55rem; }

.csp-inline-7f54716513 { margin-top:0.9rem; margin-bottom:1.0rem; }

.csp-inline-f0498ecacd { margin-top:26px; margin-bottom:12px; }

.csp-inline-95fe3c80c3 { font-size:1.0rem; margin:0 0 0.35rem; }

.csp-inline-fc2c084ee1 { margin-top:1.5rem; margin-bottom:1.5rem; }

.csp-inline-2390ea7106 { margin-top:60px; font-size:1.6rem; font-weight:700; margin-bottom:15px; }

.csp-inline-b76c58449d { margin-top:10px; margin-bottom:35px; line-height:1.8; }

.csp-inline-90fcfd6fce { height:12px; }

.csp-inline-dec6c57127 { margin-top:16px; font-size:0.8rem; color:#6b7280; }

.csp-inline-9eb125f52f { margin-top:20px; }

.csp-inline-a77de182ee { margin-bottom:10px; font-size:0.95rem; font-weight:500; color:#111827; }

.csp-inline-0074a183f8 { margin-top:16px; font-size:0.95rem; font-weight:500; color:#111827; }

.csp-inline-d8a81eac84 { margin-top:10px; }

.csp-inline-9f7cb1fbb6 { margin-top:40px; }

.csp-inline-5f37cbfad4 { font-size:1.25rem; margin-bottom:1rem; }

.csp-inline-c318a16422 { margin-bottom:1.2rem; }

.csp-inline-42642bde3c { margin:0 0 0.3rem; }

.csp-inline-f4e719ae06 { margin:10px 0 }

.body-modal-open { overflow: hidden; }
#videoCTA.video-cta-visible { display: block; }

/* Subtle on-brand demo button update */
.demo-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.92);
  color: #0b1120;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(11,17,32,0.14);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(11,17,32,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.demo-trigger:hover {
  background: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(11,17,32,0.16);
}

.demo-trigger-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #0b1120;
  color: #ffffff;
  border-radius: 50%;
  font-size: 11px;
  line-height: 1;
}

/* Clickable demo preview image */
.card-screenshot {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.card-screenshot:hover {
  transform: scale(1.02);
}


/* Demo overlay play icon */
.card {
  position: relative;
}

.demo-overlay-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(11,17,32,0.85);
  color: #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  pointer-events: none;
}

.demo-overlay-play::before {
  content: "▶";
  display: block;
  transform: translateX(2px);
}
