/* ═════════════════════════════════════════════════════════════════
   Zocove — Canonical chrome stylesheet
   Source of truth for design tokens, nav, footer, buttons, layout
   utilities, and section patterns shared across every page.
   Mirrors the aesthetic of index.html.
   ═════════════════════════════════════════════════════════════════ */

:root {
  --font: 'Lexend Deca', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Newsreader', 'Times New Roman', Times, Georgia, serif;
  /* "Mono" is a misnomer now — semantically it's the small uppercase label
     treatment used in section-rule, captions, etc. We use Lexend Deca with
     wide letter-spacing instead of an actual monospace, for visual cohesion. */
  --font-mono: 'Lexend Deca', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --indigo-50:  #EEEDFE;
  --indigo-100: #DDD9F5;
  --indigo-200: #B8B0F0;
  --indigo-400: #8B80E5;
  --indigo-500: #7468DC;
  --indigo-600: #6558D4;
  --indigo-700: #5B4DC7;
  --indigo-800: #4A3DA8;
  --indigo-900: #332B78;
  --indigo-950: #1E1945;

  --sky-400: #38BDF8;
  --sky-500: #0EA5E9;

  --gray-100: #F6F8FA;
  --gray-200: #E4E8EE;
  --gray-300: #CBD2DA;
  --gray-400: #8B93A1;
  --gray-500: #5C6472;
  --gray-600: #3C4452;
  --gray-700: #242936;
  --gray-900: #0F172A;

  --green-400: #1D9E75;
  --green-600: #0F6E56;
  --red-400:   #E24B4A;
  --amber-400: #F59E0B;

  --bg-page:           #F6F8FA;
  --bg-surface:        #FFFFFF;
  --bg-tint:           var(--gray-200);
  --bg-dark:           #0B091F;

  --text-primary:     var(--gray-900);
  --text-secondary:   var(--gray-600);
  --text-tertiary:    var(--gray-500);
  --text-on-dark:     rgba(255,255,255,0.92);
  --text-on-dark-muted: rgba(255,255,255,0.68);

  --border-default: var(--gray-200);
  --border-strong:  var(--gray-300);
  --border-subtle:  #EEF1F5;

  --brand-primary:        var(--indigo-700);
  --brand-primary-hover:  var(--indigo-500);
  --brand-subtle:         var(--indigo-50);
  --brand-text:           var(--indigo-800);

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-2xl: 28px;
  --r-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md: 0 4px 12px rgba(15,23,42,0.06), 0 2px 4px rgba(15,23,42,0.03);
  --shadow-lg: 0 16px 36px rgba(15,23,42,0.10), 0 4px 10px rgba(15,23,42,0.04);
  --shadow-xl: 0 32px 64px -12px rgba(15,23,42,0.22), 0 10px 24px -8px rgba(15,23,42,0.08);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.15s;
  --t-base: 0.2s;
  --t-mid:  0.3s;

  --space-1:   4px;
  --space-1-5: 6px;
  --space-2:   8px;
  --space-2-5: 10px;
  --space-3:   12px;
  --space-3-5: 14px;
  --space-4:   16px;
  --space-5:   20px;
  --space-6:   24px;
  --space-8:   32px;
  --space-10:  40px;
  --space-12:  48px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.55;
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font-family: inherit; }
button { cursor: pointer; border: 0; background: none; color: inherit; }

:focus-visible {
  outline: 2px solid var(--indigo-400);
  outline-offset: 3px;
  border-radius: 4px;
}

.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
  /* Newsreader (variable opsz) self-balances at display sizes, so the size
     bump only has to do cap-height alignment work — the italic still reads
     slightly shorter than the surrounding Lexend Deca, so a small 1.05em
     nudge keeps the x-height aligned without making the serif feel oversized. */
  font-size: 1.05em;
}

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; width: 100%; position: relative; }
@media (min-width: 768px) { .wrap { padding: 0 40px; } }

/* ═════════════════════════════════════════════════════════════════
   NAV — fixed; transparent over dark hero, solid on scroll.
   Pages without a dark hero set body.nav-solid for permanent solid state.
   ═════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: transparent;
  transition: background var(--t-base), border-color var(--t-base), padding var(--t-base), box-shadow var(--t-base);
  border-bottom: 1px solid transparent;
}
.nav.scrolled,
body.nav-solid .nav {
  background: rgba(246, 248, 250, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--border-default);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(15,23,42,0.03);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 26px; width: auto; display: block; }
.logo .logo-dark { display: none; }
.logo .logo-light { display: block; }
.nav.scrolled .logo .logo-dark,
body.nav-solid .nav .logo .logo-dark { display: block; }
.nav.scrolled .logo .logo-light,
body.nav-solid .nav .logo .logo-light { display: none; }
.nav-right {
  display: inline-flex; align-items: center; gap: 22px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.72);
  transition: color var(--t-base);
}
.nav.scrolled .nav-right,
body.nav-solid .nav .nav-right { color: var(--text-secondary); }
.nav-right a { transition: color var(--t-fast); }
.nav-right a:hover { color: white; }
.nav.scrolled .nav-right a:hover,
body.nav-solid .nav .nav-right a:hover { color: var(--text-primary); }

.nav-cta {
  padding: 7px 14px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,0.18);
  color: white !important;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-base);
}
.nav-cta:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }
.nav.scrolled .nav-cta,
body.nav-solid .nav .nav-cta {
  color: white !important;
  background: var(--gray-900);
  border-color: var(--gray-900);
}
.nav.scrolled .nav-cta:hover,
body.nav-solid .nav .nav-cta:hover { background: var(--gray-700); }

/* Outline variant — used on legal pages so the CTA reads quieter against
   a long doc body. Same target/behavior, lighter visual weight. */
body.nav-solid .nav .nav-cta.nav-cta--outline {
  background: transparent;
  color: var(--text-primary) !important;
  border-color: var(--border-strong);
}
body.nav-solid .nav .nav-cta.nav-cta--outline:hover {
  background: var(--bg-tint);
  border-color: var(--gray-400);
}

/* Hamburger — shown only at mobile widths */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 1.5px;
  background: rgba(255,255,255,0.8);
  position: relative;
  transition: background var(--t-base), transform var(--t-base), opacity var(--t-fast);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px; height: 1.5px;
  background: inherit;
  transition: transform var(--t-base), top var(--t-base);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top:  6px; }
.nav.scrolled .nav-toggle span,
.nav.scrolled .nav-toggle span::before,
.nav.scrolled .nav-toggle span::after,
body.nav-solid .nav .nav-toggle span,
body.nav-solid .nav .nav-toggle span::before,
body.nav-solid .nav .nav-toggle span::after { background: var(--text-primary); }

.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* Mobile nav drawer — slides down below the nav bar. Initially hidden;
   the script toggles `data-open` and aria-expanded together. */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  background: rgba(11, 9, 31, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 24px 24px 32px;
  z-index: 99;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity var(--t-base), transform var(--t-base);
}
body.nav-solid .mobile-nav {
  background: rgba(246, 248, 250, 0.96);
  border-bottom-color: var(--border-default);
}
.mobile-nav[data-open="true"] {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.mobile-nav a {
  display: block;
  padding: 14px 4px;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  letter-spacing: -0.01em;
}
.mobile-nav a:last-child { border-bottom: 0; }
body.nav-solid .mobile-nav a {
  color: var(--text-primary);
  border-bottom-color: var(--border-default);
}
.mobile-nav .nav-cta {
  margin-top: 12px;
  text-align: center;
  border-bottom: 0 !important;
  background: white !important;
  color: var(--indigo-900) !important;
  border: 1px solid white;
  border-radius: var(--r-full);
  padding: 12px 22px !important;
}
body.nav-solid .mobile-nav .nav-cta {
  background: var(--gray-900) !important;
  color: white !important;
  border-color: var(--gray-900);
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav-right { display: none; }
  .mobile-nav { display: block; }
}

/* ═════════════════════════════════════════════════════════════════
   BUTTONS
   ═════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 18px;
  border-radius: var(--r-md);
  font-family: var(--font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform var(--t-fast), background var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand-primary); color: white;
  box-shadow: 0 8px 24px rgba(91,77,199,0.22);
}
.btn-primary:hover { background: var(--brand-primary-hover); transform: translateY(-1px); }
.btn-secondary {
  background: white; border-color: var(--border-default); color: var(--text-primary);
}
.btn-secondary:hover { border-color: var(--border-strong); background: var(--bg-tint); }
.btn-light { background: white; color: var(--gray-900); }
.btn-light:hover { background: var(--indigo-50); transform: translateY(-1px); }
.btn-outline-light { border-color: rgba(255,255,255,0.2); color: white; }
.btn-outline-light:hover { background: rgba(255,255,255,0.06); }

/* ═════════════════════════════════════════════════════════════════
   HERO — deep indigo, editorial, premium
   Used by product subpages. Index.html uses an inline variant.
   ═════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, #2F2668 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 40%, rgba(14,165,233,0.25), transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 60%, rgba(139,128,229,0.35), transparent 60%),
    linear-gradient(180deg, #14102E 0%, #0B091F 100%);
  color: white;
  padding: 120px 0 52px;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 150px 0 110px; } }
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(139,128,229,0.18) 0%, transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(14,165,233,0.14) 0%, transparent 40%);
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 80%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 5px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-full);
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.hero .eyebrow .pill {
  background: linear-gradient(135deg, var(--indigo-400), var(--sky-400));
  color: white;
  padding: 3px 9px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 10.5px;
  font-weight: 600;
}
.hero h1 {
  font-family: var(--font);
  font-size: clamp(40px, 6.4vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 600;
  color: white;
  margin-bottom: 22px;
  text-wrap: balance;
}
.hero h1 .serif {
  color: var(--indigo-200);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.hero .lead {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  margin: 0 auto 36px;
  text-wrap: pretty;
}
.hero .lead b { color: white; font-weight: 500; }
.hero-actions {
  display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 28px;
}
.hero-actions .btn-primary {
  background: white;
  color: var(--indigo-900);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.8);
}
.hero-actions .btn-primary:hover { background: var(--indigo-50); transform: translateY(-1px); }
.hero-actions .btn-secondary {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  color: white;
  backdrop-filter: blur(8px);
}
.hero-actions .btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
}
.hero-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-top: 12px;
}
.hero-trust .t-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.74);
  font-weight: 500;
}
.hero-trust .t-dot {
  width: 6px; height: 6px; border-radius: 50%;
}
.hero-trust .t-chip:nth-child(1) .t-dot { background: var(--indigo-400); box-shadow: 0 0 8px rgba(139,128,229,0.7); }
.hero-trust .t-chip:nth-child(2) .t-dot { background: var(--sky-400); box-shadow: 0 0 8px rgba(56,189,248,0.7); }
.hero-trust .t-chip:nth-child(3) .t-dot { background: #6EDBA9; box-shadow: 0 0 8px rgba(110,219,169,0.7); }

/* ═════════════════════════════════════════════════════════════════
   DOC HEADER — light hero for legal/document pages
   ═════════════════════════════════════════════════════════════════ */
.doc-header {
  background: var(--bg-page);
  padding: 130px 0 56px;
  position: relative;
  border-bottom: 1px solid var(--border-default);
}
@media (max-width: 640px) { .doc-header { padding: 110px 0 40px; } }
.doc-header-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .doc-header-inner { padding: 0 40px; } }
.doc-header .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  color: var(--indigo-700);
  background: var(--indigo-50);
  border: 1px solid var(--indigo-100);
  padding: 5px 12px;
  border-radius: var(--r-full);
  margin-bottom: 20px;
}
.doc-header h1 {
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.doc-header .doc-lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: 18px;
}
.doc-header .doc-meta {
  font-size: 13px;
  color: var(--text-tertiary);
  display: inline-flex; align-items: center; gap: 8px;
}
.doc-header .doc-meta .meta-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gray-300);
}

/* ═════════════════════════════════════════════════════════════════
   COMMON SECTION PATTERNS
   ═════════════════════════════════════════════════════════════════ */
.section { padding: 96px 0; }
@media (max-width: 640px) { .section { padding: 40px 0 56px; } }

.intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.intro .lead {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 12px auto 0;
  max-width: 640px;
  text-wrap: pretty;
}

.kicker {
  display: inline-block;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--indigo-700);
  background: var(--indigo-50);
  padding: 5px 12px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
}

/* Editorial alternatives to .kicker — use these to vary the page rhythm. */
.section-rule {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 24px;
}
.section-rule::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--indigo-700);
}
.band .section-rule { color: rgba(255,255,255,0.6); }
.band .section-rule::before { background: var(--indigo-400); }

.section-num {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 64px;
  line-height: 0.9;
  color: var(--indigo-700);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.band .section-num { color: var(--indigo-200); }
@media (max-width: 640px) {
  .section-num { font-size: 48px; }
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--indigo-700);
  margin-bottom: 16px;
}

h1, h2, h3 {
  font-family: var(--font);
  color: inherit;
  text-wrap: balance;
}
h1 {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin-bottom: 18px;
}
h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 600;
}
h3 {
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  font-weight: 600;
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.feature-card, .compare-card, .cta-card, .link-card, .quote-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base), border-color var(--t-base);
}
.feature-card h3, .compare-card h3, .cta-card h3, .link-card h3 {
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.feature-card p, .compare-card p, .cta-card p, .link-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.55;
}
.feature-card:hover, .link-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--indigo-200);
}

.bullets { list-style: none; display: grid; gap: 10px; margin: 18px 0 0; padding: 0; }
.bullets li { display: flex; gap: 10px; color: var(--text-secondary); font-size: 15px; }
.bullets li::before {
  content: ''; width: 18px; height: 18px; border-radius: 50%; flex: 0 0 auto; margin-top: 2px;
  background: var(--indigo-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235B4DC7' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* Dark band — for editorial pull-quotes or section breaks */
.band {
  background: var(--bg-dark); color: var(--text-on-dark);
  position: relative; overflow: hidden;
}
.band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 50%, rgba(91,77,199,0.24), transparent 65%),
    radial-gradient(ellipse 40% 50% at 84% 40%, rgba(14,165,233,0.18), transparent 62%);
  pointer-events: none;
}
.band .wrap { position: relative; z-index: 1; }
.band h2 { color: white; }
.band .lead { color: var(--text-on-dark-muted); }
.band .kicker { background: rgba(255,255,255,0.08); color: white; }

.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: var(--text-on-dark);
}
.quote-card p { color: var(--text-on-dark); font-size: 15.5px; line-height: 1.55; margin-bottom: 14px; }
.quote-card span { font-size: 12.5px; color: var(--text-on-dark-muted); letter-spacing: 0.01em; }

/* Closing-style CTA section */
.cta {
  position: relative;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, #2F2668 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 40%, rgba(14,165,233,0.25), transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 60%, rgba(139,128,229,0.35), transparent 60%),
    linear-gradient(180deg, #14102E 0%, #0B091F 100%);
  color: white;
  padding: 88px 0 96px;
  overflow: hidden;
  text-align: center;
}
@media (min-width: 768px) { .cta { padding: 112px 0 120px; } }
.cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(139,128,229,0.18) 0%, transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(14,165,233,0.14) 0%, transparent 40%);
  pointer-events: none;
  mix-blend-mode: screen;
}
.cta::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 80%);
  pointer-events: none;
}
.cta .wrap { position: relative; z-index: 1; }
.cta-card {
  max-width: 720px; margin: 0 auto; text-align: center;
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  padding: 40px 32px;
}
.cta-card h2 { color: white; margin-bottom: 14px; }
.cta-card h2 .serif { color: var(--indigo-200); }
.cta-card p { color: rgba(255,255,255,0.7); font-size: 17px; margin-bottom: 28px; }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ═════════════════════════════════════════════════════════════════
   PRODUCT FRAME — reusable mock-up panel used by subpages.
   Sits in a .product-stage that overlaps the dark hero into the body.
   ═════════════════════════════════════════════════════════════════ */
.product-stage {
  position: relative;
  /* On mobile, sit comfortably below the hero with no overlap so the trust
     chips above never get clipped. Editorial overlap is desktop-only. */
  margin-top: 32px;
  margin-bottom: 64px;
  padding: 0 24px;
  z-index: 3;
}
@media (min-width: 768px) {
  .product-stage { margin-top: -72px; margin-bottom: 96px; padding: 0 40px; }
}
.product-frame {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--r-2xl);
  box-shadow:
    0 0 0 1px rgba(15,23,42,0.04),
    var(--shadow-xl),
    0 40px 100px -20px rgba(30, 25, 69, 0.45);
  overflow: hidden;
}

/* Dark variant — for embedding real product screenshots.
   The screenshots already carry the Zocove app's own chrome, so this
   frame is bezel-only: a thin ring + shadow that mounts the image. */
.product-frame--shot {
  background: #0F0E1E;
  border-color: rgba(255,255,255,0.06);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 40px 80px -20px rgba(0, 0, 0, 0.55),
    0 24px 60px -16px rgba(30, 25, 69, 0.5);
}
.product-frame--shot picture,
.product-frame--shot img {
  display: block;
  width: 100%;
  height: auto;
}
.product-frame--shot img {
  border-radius: calc(var(--r-2xl) - 1px);
}

/* Paired variant — used on homepage to show buyer + seller views side-by-side */
.product-stage--pair {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.product-stage--pair .pair-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 880px) {
  .product-stage--pair .pair-grid { grid-template-columns: 1fr; gap: 24px; }
}
.product-stage--pair figure { margin: 0; }
.pair-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  padding-left: 4px;
}
.pair-label::before {
  content: '';
  display: inline-block;
  width: 22px; height: 1px;
  background: var(--indigo-400);
}

/* Caption — sits below the product-frame to anchor the screenshot */
.product-caption {
  max-width: 1080px;
  margin: 18px auto 0;
  padding: 0 4px;
  font-family: var(--font);
  font-size: 13px;
  font-style: italic;
  color: var(--text-tertiary);
  text-align: center;
  letter-spacing: -0.005em;
}
.product-caption .label {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo-700);
  margin-right: 8px;
}
.product-frame-chrome {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-default);
  background: linear-gradient(180deg, var(--bg-tint), white);
}
.product-frame-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gray-300);
}
.product-frame-dot:nth-child(1) { background: #FF5F57; }
.product-frame-dot:nth-child(2) { background: #FEBC2E; }
.product-frame-dot:nth-child(3) { background: #28C840; }
.product-frame-url {
  margin-left: 10px;
  flex: 1; max-width: 340px;
  min-height: 28px;
  display: flex; align-items: center;
  padding: 0 12px;
  border-radius: 9px;
  background: white;
  border: 1px solid var(--border-default);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.01em;
}
.product-frame-body {
  padding: 28px;
  background: var(--bg-page);
}
@media (max-width: 640px) {
  .product-stage { margin-top: 32px; margin-bottom: 32px; padding: 0 16px; }
}

/* ═════════════════════════════════════════════════════════════════
   SCROLL REVEAL — fade-in-up triggered by IntersectionObserver
   ═════════════════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ═════════════════════════════════════════════════════════════════
   FAQ — accordion variant used on index, list variant on subpages
   ═════════════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--border-default);
}
.faq-list .faq-item {
  border-bottom: 1px solid var(--border-default);
  padding: 22px 4px;
}
.faq-list .faq-item h3 {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.faq-list .faq-item p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 620px;
}

/* ═════════════════════════════════════════════════════════════════
   FOOTER — 3-column (Brand · Product · Company)
   ═════════════════════════════════════════════════════════════════ */
.footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--border-default);
  font-size: 13px;
  color: var(--text-tertiary);
  background: var(--bg-page);
}
.footer-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
}
@media (min-width: 768px) { .footer-inner { padding: 0 40px; } }
.footer-cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-default);
}
@media (max-width: 760px) { .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px 24px; } }
@media (max-width: 480px) { .footer-cols { grid-template-columns: 1fr; } }
.footer-brand img {
  height: 22px; width: auto; display: block;
  margin-bottom: 14px;
}
.footer-tag {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 280px;
}
.footer-col-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--text-secondary);
  font-size: 13.5px;
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--indigo-700); }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  font-size: 12.5px;
}
.footer-bottom a { color: var(--text-tertiary); transition: color var(--t-fast); }
.footer-bottom a:hover { color: var(--text-secondary); }
.footer-bottom-links {
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
}
.footer-bottom-links a[aria-label] { display: inline-flex; align-items: center; color: var(--text-tertiary); }
.footer-bottom-links a[aria-label]:hover { color: var(--indigo-700); }

/* ═════════════════════════════════════════════════════════════════
   MOBILE
   ═════════════════════════════════════════════════════════════════ */
@media (max-width: 720px) {
  .nav-right a:not(.nav-cta) { display: none; }
}
@media (max-width: 980px) {
  .grid-3, .grid-2, .quote-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .intro { margin-bottom: 36px; }
  .feature-card, .compare-card, .cta-card, .link-card, .quote-card { padding: 22px; }
  .feature-card h3, .compare-card h3, .cta-card h3, .link-card h3 { font-size: 18px; }
  .feature-card p, .compare-card p, .cta-card p, .link-card p { font-size: 14px; }
  .cta { padding: 64px 0 72px; }
  .cta-card { padding: 32px 24px; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .footer { padding: 44px 0 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}
@media (max-width: 420px) {
  .wrap { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .footer-inner { padding: 0 20px; }
}
