/* ============================================================
   You Pick — marketing site
   Design system: aubergine hero, match-green accent, warm cream
   paper. Type: Newsreader (display) · Geist (UI) · Geist Mono.
   Tokens lifted from the in-app design system v2.
   ============================================================ */

:root {
  /* Neutrals · warm */
  --c-paper:    #efece5;
  --c-paper-2:  #e8e4d9;
  --c-surface:  #fbfaf6;
  --c-surface-2:#f1ede2;
  --c-ink:      #1f1c19;
  --c-ink-2:    #4a4641;
  --c-ink-3:    #8a857d;
  --c-ink-4:    #b8b3a9;
  --c-line:     #d6d1c5;

  /* Committed accents */
  --c-hero:      oklch(0.42 0.11 350);   /* aubergine — the one brand hue */
  --c-hero-ink:  oklch(0.32 0.10 350);
  --c-hero-tint: oklch(0.93 0.025 350);
  --c-hero-shadow: rgba(95, 58, 80, 0.32);
  --c-match:     oklch(0.62 0.13 142);   /* celebratory green */
  --c-match-ink: oklch(0.42 0.13 142);
  --c-match-tint:oklch(0.95 0.04 142);

  /* Type stack */
  --f-display: 'Newsreader', Georgia, serif;
  --f-ui:      'Geist', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --f-mono:    'Geist Mono', 'SF Mono', ui-monospace, monospace;

  /* Spacing (4pt) */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 20px; --s-6: 24px; --s-8: 32px; --s-10: 40px; --s-12: 48px;

  /* Radii */
  --r-1: 8px;  --r-2: 12px; --r-3: 16px; --r-4: 20px; --r-pill: 999px;

  /* Elevation */
  --e-rest:  0 1px 2px rgba(60,40,30,0.05), 0 0 0 1px rgba(60,40,30,0.04);
  --e-raise: 0 4px 12px rgba(60,40,30,0.08), 0 1px 3px rgba(60,40,30,0.06);
  --e-modal: 0 20px 50px rgba(60,40,30,0.15), 0 6px 18px rgba(60,40,30,0.08);

  --maxw: 1140px;
}

/* ---- Dark mode (follows OS) ---- */
@media (prefers-color-scheme: dark) {
  :root {
    --c-paper:    #15120f;
    --c-paper-2:  #0b0a08;
    --c-surface:  #1f1c18;
    --c-surface-2:#2a2620;
    --c-ink:      #f1ede2;
    --c-ink-2:    #c8c2b6;
    --c-ink-3:    #8a857d;
    --c-ink-4:    #5a544c;
    --c-line:     #34302a;

    --c-hero:      oklch(0.62 0.13 350);
    --c-hero-ink:  oklch(0.80 0.10 350);
    --c-hero-tint: oklch(0.30 0.07 350);
    --c-hero-shadow: rgba(180, 100, 145, 0.22);
    --c-match:     oklch(0.72 0.14 142);
    --c-match-ink: oklch(0.85 0.11 142);
    --c-match-tint:oklch(0.30 0.06 142);

    --e-rest:  0 0 0 1px rgba(255,250,240,0.05);
    --e-raise: 0 6px 18px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,250,240,0.06);
    --e-modal: 0 24px 56px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,250,240,0.07);
  }
}

/* ============================================================
   Base
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-ui);
  color: var(--c-ink);
  background: var(--c-paper);
  /* faint grid texture, like the design docs */
  background-image:
    linear-gradient(rgba(120,90,70,0.030) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,90,70,0.030) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}
@media (prefers-color-scheme: dark) {
  body { background-image:
    linear-gradient(rgba(255,250,240,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,250,240,0.022) 1px, transparent 1px); }
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-ink-3);
}
.eyebrow .dot { color: var(--c-hero); }

/* ============================================================
   Brand mark / wordmark
   ============================================================ */
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand .mark {
  width: 30px; height: 30px; flex-shrink: 0;
  color: var(--c-hero);
}
.brand .word {
  font-family: var(--f-display);
  font-size: 22px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--c-ink);
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(1.4) blur(12px);
  background: color-mix(in oklch, var(--c-paper) 80%, transparent);
  border-bottom: 1px solid var(--c-line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  font-size: 14px; font-weight: 500; color: var(--c-ink-2);
  transition: color .15s;
}
.site-nav a:hover { color: var(--c-ink); }
.site-nav .pill-cta { display: none; }
@media (max-width: 720px) {
  .site-nav .nav-link { display: none; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  appearance: none; border: none; cursor: pointer;
  font-family: var(--f-ui); font-weight: 600; font-size: 15px;
  letter-spacing: -0.005em;
  height: 50px; padding: 0 22px; border-radius: var(--r-2);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  transition: transform .08s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn--hero { background: var(--c-hero); color: #fff; box-shadow: 0 6px 18px var(--c-hero-shadow); }
.btn--hero:hover { box-shadow: 0 10px 26px var(--c-hero-shadow); }
.btn--ink { background: var(--c-ink); color: var(--c-paper); }
.btn--ghost { background: transparent; color: var(--c-ink); box-shadow: inset 0 0 0 1.5px var(--c-line); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--c-ink-3); }
.btn--lg { height: 56px; font-size: 16px; padding: 0 26px; }
.btn--sm { height: 40px; font-size: 13px; padding: 0 16px; border-radius: var(--r-1); }

/* "Coming soon" App Store badge (non-link, teaser) */
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  height: 56px; padding: 0 22px; border-radius: var(--r-2);
  background: var(--c-ink); color: var(--c-paper);
  cursor: default;
}
.store-badge .apple { width: 22px; height: 22px; flex-shrink: 0; }
.store-badge .txt { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-badge .txt small { font-size: 10px; letter-spacing: 0.06em; opacity: 0.7; font-family: var(--f-mono); text-transform: uppercase; }
.store-badge .txt b { font-size: 17px; font-weight: 600; font-family: var(--f-display); }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: 72px 0 40px; }
.hero::before { /* aubergine halo */
  content: ''; position: absolute; top: -45%; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 900px; pointer-events: none;
  background: radial-gradient(ellipse at center, var(--c-hero-tint), transparent 62%);
  opacity: 0.9;
}
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 8px; }
  .hero { padding: 48px 0 24px; }
}

.hero-copy { max-width: 560px; }
.hero h1 {
  font-family: var(--f-display);
  font-weight: 500; letter-spacing: -0.022em; line-height: 1.0;
  font-size: clamp(46px, 7vw, 78px);
  margin: 18px 0 22px;
}
.hero h1 em { font-style: italic; color: var(--c-hero-ink); }
.hero .lede {
  font-size: clamp(16px, 2.1vw, 19px); line-height: 1.6;
  color: var(--c-ink-2); max-width: 48ch; margin: 0 0 30px;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 26px; display: flex; gap: 26px; flex-wrap: wrap;
  font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--c-ink-3);
}
.hero-meta b { color: var(--c-ink); font-weight: 600; }

.hero-stage { display: grid; place-items: center; position: relative; }

/* ============================================================
   Phone frame + screens (faithful to the in-app hi-fi)
   ============================================================ */
.phone {
  width: 300px; aspect-ratio: 360/780;
  border: 1.5px solid var(--c-ink); border-radius: 42px;
  background: var(--c-paper); position: relative; overflow: hidden;
  box-shadow: var(--e-modal);
}
.phone::before { /* dynamic island */
  content: ''; position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 94px; height: 24px; background: var(--c-ink); border-radius: 999px; z-index: 6;
}
.phone-status {
  position: absolute; top: 0; left: 0; right: 0; height: 44px;
  padding: 16px 24px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; font-weight: 600; color: var(--c-ink); z-index: 5;
}
.phone-status .ind { display: flex; gap: 3px; align-items: center; }
.phone-status .ind i { width: 4px; height: 4px; border-radius: 50%; background: var(--c-ink); display: block; }
.phone-stage { position: absolute; inset: 44px 0 0 0; display: flex; flex-direction: column; }
.home-bar { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); width: 116px; height: 4px; border-radius: 2px; background: var(--c-ink-4); z-index: 5; }

/* hero phone — slight tilt + float */
.phone--hero { transform: rotate(-3deg); animation: float 7s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(-3deg) translateY(-12px); } }
@media (prefers-reduced-motion: reduce) { .phone--hero { animation: none; } }

/* screen: swipe deck */
.scr { width: 100%; height: 100%; display: flex; flex-direction: column; }
.scr-head {
  padding: 8px 18px 12px; border-bottom: 1px solid var(--c-line);
  display: flex; align-items: center; gap: 11px;
}
.avs { display: inline-flex; }
.av {
  width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  font-size: 10px; font-weight: 700; color: #fff; border: 2px solid var(--c-paper);
  letter-spacing: 0.02em;
}
.av-you { background: var(--c-hero); }
.av-partner { background: var(--c-match-ink); }
.avs .av + .av { margin-left: -9px; }
.scr-head .who { flex: 1; }
.scr-head .who b { font-size: 13px; font-weight: 600; display: block; }
.scr-head .who span { font-size: 11px; color: var(--c-ink-3); font-family: var(--f-mono); }
.match-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: var(--r-pill);
  background: var(--c-match); color: #fff; font-size: 11px; font-weight: 600;
}
.match-pill svg { width: 12px; height: 12px; }

.dots { padding: 14px 18px 6px; display: flex; gap: 4px; }
.dots i { flex: 1; height: 3px; border-radius: 2px; background: var(--c-line); }
.dots i.fill { background: var(--c-hero); }
.dots i.match { background: var(--c-match); }
.deck-meta { padding: 0 18px 12px; display: flex; justify-content: space-between; font-family: var(--f-mono); font-size: 11px; color: var(--c-ink-3); }

.cards { flex: 1; position: relative; padding: 0 18px; }
.cards .peek { position: absolute; border-radius: var(--r-3); box-shadow: var(--e-rest); }
.cards .peek.p1 { left: 28px; right: 28px; top: 12px; bottom: 84px; background: var(--c-surface-2); }
.cards .peek.p2 { left: 22px; right: 22px; top: 6px; bottom: 78px; background: var(--c-surface); }
.swipe-card {
  position: absolute; left: 18px; right: 18px; top: 0; bottom: 70px;
  border-radius: var(--r-3); background: var(--c-surface); box-shadow: var(--e-raise);
  overflow: hidden; display: flex; flex-direction: column; transform: rotate(-1.5deg);
}
.swipe-card .photo {
  flex: 1; position: relative;
  background:
    linear-gradient(150deg, rgba(0,0,0,0.18), transparent 55%),
    linear-gradient(135deg, oklch(0.62 0.13 28), oklch(0.52 0.13 350));
}
.swipe-card .liked {
  position: absolute; top: 12px; right: 12px;
  padding: 5px 9px 5px 5px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: var(--c-match-ink); box-shadow: var(--e-rest);
}
.swipe-card .liked .dot { width: 16px; height: 16px; border-radius: 50%; background: var(--c-match-ink); color: #fff; display: grid; place-items: center; font-size: 9px; font-weight: 700; }
.swipe-card .info { padding: 14px 16px 16px; border-top: 1px solid var(--c-line); background: var(--c-surface); }
.swipe-card .info .name { font-family: var(--f-display); font-size: 23px; line-height: 1.05; margin-bottom: 5px; font-weight: 500; }
.swipe-card .info .meta { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-ink-2); }

.actions { padding: 12px 0 26px; display: flex; justify-content: center; align-items: center; gap: 20px; }
.abtn { border: none; cursor: default; border-radius: 50%; display: grid; place-items: center; }
.abtn--pass { width: 54px; height: 54px; background: var(--c-surface-2); color: var(--c-ink-2); }
.abtn--undo { width: 42px; height: 42px; background: var(--c-surface-2); color: var(--c-ink-2); }
.abtn--like { width: 62px; height: 62px; background: var(--c-hero); color: #fff; box-shadow: 0 6px 16px var(--c-hero-shadow); }
.abtn svg { width: 22px; height: 22px; }
.abtn--like svg { width: 26px; height: 26px; }

/* ============================================================
   Sections
   ============================================================ */
section { position: relative; }
.section { padding: 96px 0; }
@media (max-width: 720px) { .section { padding: 64px 0; } }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(32px, 5vw, 48px); line-height: 1.04; letter-spacing: -0.02em;
  margin: 14px 0 16px;
}
.section-head p { font-size: 17px; line-height: 1.6; color: var(--c-ink-2); margin: 0; }

.divider { height: 1px; background: var(--c-line); border: 0; margin: 0; }

/* How it works — 3 steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; gap: 18px; } }
.step {
  background: var(--c-surface); border-radius: var(--r-4); padding: 28px;
  box-shadow: var(--e-rest); position: relative; overflow: hidden;
}
.step .num {
  font-family: var(--f-display); font-size: 56px; line-height: 1;
  color: var(--c-hero); opacity: 0.22; font-weight: 600;
  position: absolute; top: 14px; right: 22px;
}
.step .kicker { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-ink-3); margin-bottom: 10px; }
.step h3 { font-family: var(--f-display); font-size: 26px; font-weight: 500; letter-spacing: -0.01em; margin: 0 0 10px; }
.step p { font-size: 14.5px; line-height: 1.6; color: var(--c-ink-2); margin: 0; max-width: 30ch; }

/* Feature grid */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }
.feature {
  background: var(--c-surface); border-radius: var(--r-3); padding: 24px;
  box-shadow: var(--e-rest); border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--e-raise); }
.feature .ic {
  width: 42px; height: 42px; border-radius: var(--r-2);
  background: var(--c-hero-tint); color: var(--c-hero-ink);
  display: grid; place-items: center; margin-bottom: 16px;
}
.feature .ic svg { width: 22px; height: 22px; }
.feature h3 { font-size: 16px; font-weight: 600; margin: 0 0 7px; letter-spacing: -0.01em; }
.feature p { font-size: 14px; line-height: 1.55; color: var(--c-ink-2); margin: 0; }

/* Moments showcase — two phones + copy */
.moments { background: var(--c-paper-2); border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }
.moments-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 880px) { .moments-grid { grid-template-columns: 1fr; gap: 40px; } }
.moments-phones { display: flex; justify-content: center; gap: -40px; position: relative; min-height: 560px; align-items: center; }
.moments-phones .phone { width: 256px; }
.moments-phones .phone.back { position: absolute; transform: rotate(5deg) translateX(72px); opacity: 0.96; z-index: 1; }
.moments-phones .phone.front { transform: rotate(-4deg) translateX(-44px); z-index: 2; }
@media (max-width: 460px) {
  .moments-phones .phone { width: 220px; }
  .moments-phones .phone.back { transform: rotate(5deg) translateX(48px); }
  .moments-phones .phone.front { transform: rotate(-4deg) translateX(-24px); }
}

/* screen: pairing/invite */
.scr-pad { padding: 40px 22px 0; }
.scr-pad .kicker { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--c-ink-3); margin-bottom: 10px; }
.scr-pad h4 { font-family: var(--f-display); font-size: 28px; font-weight: 500; line-height: 1.06; letter-spacing: -0.01em; margin: 0 0 10px; }
.scr-pad .sub { font-size: 13px; color: var(--c-ink-2); line-height: 1.5; }
.code-card {
  margin: 24px 18px 0; padding: 22px 18px; text-align: center;
  background: var(--c-surface); border: 1px dashed var(--c-line); border-radius: var(--r-3);
}
.code-card .lbl { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-ink-3); margin-bottom: 10px; }
.code-card .code { font-family: var(--f-mono); font-size: 32px; font-weight: 600; letter-spacing: 0.1em; color: var(--c-ink); }
.code-card .code span { color: var(--c-ink-3); }
.waiting { margin: 18px 18px 0; padding: 13px 15px; background: var(--c-hero-tint); border-radius: var(--r-2); display: flex; align-items: center; gap: 11px; }
.waiting .blip { width: 8px; height: 8px; border-radius: 50%; background: var(--c-hero-ink); flex-shrink: 0; animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 0.35; } 50% { opacity: 1; } }
.waiting b { font-size: 12.5px; color: var(--c-hero-ink); display: block; }
.waiting span { font-size: 11.5px; color: var(--c-hero-ink); opacity: 0.78; }

/* screen: match moment */
.scr-match { position: relative; overflow: hidden; }
.scr-match .halo { position: absolute; top: -40%; left: -20%; right: -20%; height: 70%; background: radial-gradient(ellipse at center top, var(--c-match-tint), transparent 70%); pointer-events: none; }
.scr-match .top { padding: 50px 24px 0; text-align: center; position: relative; }
.scr-match .top .k { font-family: var(--f-mono); font-size: 10px; color: var(--c-match-ink); text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 12px; }
.scr-match .top h4 { font-family: var(--f-display); font-size: 44px; line-height: 0.96; color: var(--c-ink); margin: 0 0 8px; font-weight: 500; }
.scr-match .top p { font-size: 13px; color: var(--c-ink-2); max-width: 26ch; margin: 0 auto; line-height: 1.45; }
.match-card { margin: 22px 20px 0; background: var(--c-surface); border-radius: var(--r-3); box-shadow: var(--e-raise); overflow: hidden; }
.match-card .photo { height: 120px; background: linear-gradient(135deg, oklch(0.62 0.13 28), oklch(0.52 0.13 350)); }
.match-card .body { padding: 15px 17px 17px; }
.match-card .name { font-family: var(--f-display); font-size: 24px; line-height: 1.05; margin-bottom: 5px; }
.match-card .meta { font-family: var(--f-mono); font-size: 10px; color: var(--c-ink-2); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.both { display: flex; align-items: center; gap: 9px; padding: 9px 11px; border-radius: var(--r-2); background: var(--c-match-tint); color: var(--c-match-ink); font-size: 12.5px; font-weight: 500; }
.both .hearts { display: flex; }
.both .hh { width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; border: 2px solid var(--c-surface); }
.both .hh svg { width: 10px; height: 10px; color: #fff; }
.both .hh.a { background: var(--c-hero); }
.both .hh.b { background: var(--c-match-ink); margin-left: -7px; }
.scr-match .cta { padding: 16px 20px 28px; display: flex; flex-direction: column; gap: 7px; }
.scr-match .cta .go { height: 46px; border-radius: var(--r-2); background: var(--c-ink); color: var(--c-paper); display: grid; place-items: center; font-size: 14px; font-weight: 600; }
.scr-match .cta .more { height: 38px; display: grid; place-items: center; font-size: 12.5px; color: var(--c-ink-2); }

.moments-copy h2 { font-family: var(--f-display); font-weight: 500; font-size: clamp(30px, 4.5vw, 44px); line-height: 1.05; letter-spacing: -0.02em; margin: 14px 0 18px; }
.moments-copy p { font-size: 16px; line-height: 1.65; color: var(--c-ink-2); margin: 0 0 16px; max-width: 46ch; }
.moments-copy .point { display: flex; gap: 12px; align-items: flex-start; margin-top: 18px; }
.moments-copy .point svg { width: 20px; height: 20px; color: var(--c-match-ink); flex-shrink: 0; margin-top: 2px; }
.moments-copy .point b { font-weight: 600; }
.moments-copy .point span { color: var(--c-ink-2); font-size: 14.5px; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--c-line); padding: 4px 0;
}
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 4px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--f-display); font-size: 21px; font-weight: 500; letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { width: 22px; height: 22px; flex-shrink: 0; color: var(--c-ink-3); transition: transform .2s ease; }
.faq details[open] summary .chev { transform: rotate(45deg); }
.faq .ans { padding: 0 4px 24px; font-size: 15.5px; line-height: 1.65; color: var(--c-ink-2); max-width: 64ch; }
.faq .ans a { color: var(--c-hero-ink); text-decoration: underline; text-underline-offset: 2px; }

/* CTA band */
.cta-band { position: relative; overflow: hidden; }
.cta-band .wrap { position: relative; }
.cta-card {
  background: var(--c-ink); color: var(--c-paper);
  border-radius: var(--r-4); padding: 64px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 70% -10%, var(--c-hero-shadow), transparent 55%);
  opacity: 0.6;
}
.cta-card * { position: relative; }
.cta-card .eyebrow { color: var(--c-ink-4); }
.cta-card h2 { font-family: var(--f-display); font-weight: 500; font-size: clamp(34px, 5vw, 52px); line-height: 1.02; letter-spacing: -0.02em; margin: 14px 0 18px; color: var(--c-paper); }
.cta-card p { font-size: 17px; line-height: 1.6; color: var(--c-ink-4); max-width: 44ch; margin: 0 auto 30px; }
.cta-card .actions-row { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; }
.cta-card .note { margin-top: 18px; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--c-ink-4); text-transform: uppercase; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { padding: 56px 0 48px; border-top: 1px solid var(--c-line); }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
.footer-grid .tagline { font-size: 13.5px; color: var(--c-ink-3); max-width: 30ch; margin-top: 12px; line-height: 1.5; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; color: var(--c-ink-2); }
.footer-links a:hover { color: var(--c-ink); }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--c-line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--c-ink-3); text-transform: uppercase; }

/* ============================================================
   Legal pages (privacy / terms)
   ============================================================ */
.legal { padding: 64px 0 96px; }
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.legal .back { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-ink-3); display: inline-flex; gap: 7px; align-items: center; margin-bottom: 28px; }
.legal .back:hover { color: var(--c-ink); }
.legal h1 { font-family: var(--f-display); font-weight: 500; font-size: clamp(38px, 6vw, 56px); line-height: 1.02; letter-spacing: -0.02em; margin: 0 0 10px; }
.legal .updated { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-ink-3); margin-bottom: 40px; }
.legal h2 { font-family: var(--f-display); font-weight: 500; font-size: 26px; letter-spacing: -0.01em; margin: 44px 0 12px; }
.legal h3 { font-size: 16px; font-weight: 600; margin: 28px 0 8px; }
.legal p, .legal li { font-size: 15.5px; line-height: 1.7; color: var(--c-ink-2); }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--c-hero-ink); text-decoration: underline; text-underline-offset: 2px; }
.legal .callout { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--r-3); padding: 20px 22px; margin: 24px 0; }
.legal .callout p { margin: 0; font-size: 14.5px; }

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }
