/* ============================================================================
   yoink. — web
   Brand: Discord-purple + Cash App energy. confident, dry, slightly unhinged.
   lowercase. lime period signature.
   Tokens mirror the iOS app's DesignSystem exactly.
   ========================================================================== */

@import url("https://api.fontshare.com/v2/css?f[]=clash-display@600,700&f[]=satoshi@400,500,700,900&display=swap");

:root {
  /* brand palette — identical to Color+Yoink.swift */
  --purple:      #5A31F4;
  --deep-purple: #2A0D8A;
  --ink:         #0A0A0A;
  --paper:       #FFFFFF;
  --mist:        #F5F3FF;
  --smoke:       #888888;
  --fog:         #F0F0F0;
  --lime:        #C4FF00;

  --ink-70: rgba(10, 10, 10, 0.70);
  --ink-50: rgba(10, 10, 10, 0.50);
  --ink-12: rgba(10, 10, 10, 0.12);
  --ink-06: rgba(10, 10, 10, 0.06);
  --paper-70: rgba(255, 255, 255, 0.70);
  --paper-50: rgba(255, 255, 255, 0.50);
  --paper-12: rgba(255, 255, 255, 0.12);
  --paper-06: rgba(255, 255, 255, 0.06);

  --font-display: "Clash Display", -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  --font-body:    "Satoshi", -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;

  --maxw: 1180px;
  --radius: 22px;
  --radius-sm: 14px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------------------------------------------------------------- reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* film grain overlay across the whole page for texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ------------------------------------------------------------- helpers --- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.lime-dot { color: var(--lime); }
.section { padding: clamp(72px, 12vw, 140px) 0; position: relative; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 0.98; letter-spacing: -0.03em; }

/* a reusable big lowercase display headline */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-transform: lowercase;
}

/* ------------------------------------------------------------ buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.01em;
  padding: 16px 26px;
  border-radius: 100px;
  transition: transform 0.18s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.2s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn .arrow { transition: transform 0.25s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-lime { background: var(--lime); color: var(--ink); box-shadow: 0 14px 40px -12px rgba(196, 255, 0, 0.6); }
.btn-lime:hover { box-shadow: 0 18px 50px -10px rgba(196, 255, 0, 0.75); transform: translateY(-2px); }

.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { transform: translateY(-2px); box-shadow: 0 16px 44px -16px rgba(10,10,10,0.55); }

.btn-ghost { background: transparent; color: inherit; border: 1.5px solid currentColor; opacity: 0.85; }
.btn-ghost:hover { opacity: 1; transform: translateY(-2px); }

/* ============================================================================
   NAV
   ========================================================================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled { border-bottom-color: var(--ink-06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-weight: 700; font-size: 15px; color: var(--ink-70); transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav .btn { padding: 11px 20px; font-size: 14px; }
.nav-cta-wrap { display: flex; align-items: center; gap: 18px; }
@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* wordmark */
.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.05em;
  text-transform: lowercase;
  display: inline-flex;
  align-items: baseline;
}
.wordmark .dot { color: var(--lime); }

/* ============================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: clamp(56px, 9vw, 110px) 0 clamp(72px, 11vw, 130px);
}
/* purple gradient mesh + glow */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 78% 8%, rgba(90, 49, 244, 0.55), transparent 60%),
    radial-gradient(700px 500px at 8% 90%, rgba(42, 13, 138, 0.55), transparent 60%),
    radial-gradient(500px 400px at 60% 100%, rgba(196, 255, 0, 0.10), transparent 60%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 15px;
  border-radius: 100px;
  background: var(--paper-06);
  border: 1px solid var(--paper-12);
  font-weight: 700; font-size: 13px;
  color: var(--paper-70);
  margin-bottom: 26px;
}
.hero-pill .live {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(196,255,0,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(196,255,0,0.55); }
  70% { box-shadow: 0 0 0 9px rgba(196,255,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(196,255,0,0); }
}

.hero h1 {
  font-size: clamp(46px, 7.4vw, 86px);
  text-transform: lowercase;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--lime); }
.hero-sub {
  font-size: clamp(17px, 2.1vw, 21px);
  font-weight: 500;
  color: var(--paper-70);
  max-width: 30ch;
  margin-bottom: 34px;
}
.hero-sub strong { color: var(--paper); font-weight: 700; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 8px 18px;
  font-size: 13px; font-weight: 600; color: var(--paper-50);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust .tick { color: var(--lime); font-weight: 900; }

/* hero floating card stack */
.hero-stack { position: relative; min-height: 420px; }
@media (max-width: 940px) {
  .hero-stack { min-height: 360px; max-width: 460px; margin: 0 auto; width: 100%; }
}
.float-card {
  position: absolute;
  border-radius: var(--radius);
  padding: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  will-change: transform;
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* card 1 — a forgotten sub */
.fc-sub {
  top: 8%; left: 0; right: 14%;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 70px -24px rgba(0,0,0,0.6);
  z-index: 3;
}
.fc-sub-row { display: flex; align-items: center; gap: 13px; }
.fc-logo {
  width: 44px; height: 44px; border-radius: 13px;
  display: grid; place-items: center;
  font-weight: 900; font-size: 19px; color: var(--paper);
  flex-shrink: 0;
}
.fc-sub .meta { flex: 1; min-width: 0; }
.fc-sub .name { font-weight: 900; font-size: 17px; letter-spacing: -0.02em; }
.fc-sub .desc { font-size: 12.5px; color: var(--smoke); font-weight: 600; }
.fc-sub .price { text-align: right; }
.fc-sub .price .amt { font-weight: 900; font-size: 18px; color: var(--purple); }
.fc-sub .price .per { font-size: 10px; font-weight: 800; color: var(--smoke); letter-spacing: 0.04em; }
.fc-sub .yoink-btn {
  margin-top: 14px; width: 100%;
  background: var(--ink); color: var(--lime);
  font-weight: 900; font-size: 14px;
  padding: 12px; border-radius: 12px;
  letter-spacing: -0.01em;
}

/* card 2 — refund confirmation bubble */
.fc-bubble {
  bottom: 18%; right: 0;
  max-width: 250px;
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 24px 60px -20px rgba(196,255,0,0.5);
  z-index: 4;
  animation-delay: 1.4s;
}
.fc-bubble .tag { font-weight: 900; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.55; margin-bottom: 6px; }
.fc-bubble .txt { font-weight: 700; font-size: 14.5px; line-height: 1.35; }
.fc-bubble .amt { font-weight: 900; }

/* card 3 — money on the table counter */
.fc-counter {
  bottom: -2%; left: 4%;
  background: var(--deep-purple);
  color: var(--paper);
  box-shadow: 0 24px 60px -22px rgba(42,13,138,0.7);
  z-index: 2;
  animation-delay: 0.7s;
  border: 1px solid var(--paper-12);
}
.fc-counter .label { font-size: 11px; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; color: var(--paper-50); }
.fc-counter .big { font-family: var(--font-display); font-weight: 700; font-size: 32px; letter-spacing: -0.04em; }
.fc-counter .big .dot { color: var(--lime); }

/* logo marquee under hero */
.marquee {
  background: var(--ink);
  border-top: 1px solid var(--paper-06);
  padding: 22px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { display: flex; gap: 44px; width: max-content; animation: scroll-x 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
.marquee-item { display: inline-flex; align-items: center; gap: 11px; color: var(--paper-50); font-weight: 800; font-size: 16px; letter-spacing: -0.01em; }
.marquee-item .mi-logo { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; font-size: 13px; font-weight: 900; color: var(--paper); }

/* ============================================================================
   THE MATH (pain ticker) — purple section
   ========================================================================== */
.math { background: var(--purple); color: var(--paper); }
.math .eyebrow { color: var(--paper-50); margin-bottom: 16px; }
.math-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 38px; }
.math h2 { font-size: clamp(34px, 5vw, 58px); text-transform: lowercase; max-width: 16ch; }
.math h2 .accent { color: var(--lime); }

.ledger { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 720px) { .ledger { grid-template-columns: 1fr; } }
.ledger-row {
  display: flex; align-items: center; gap: 14px;
  background: var(--paper-06);
  border: 1px solid var(--paper-12);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  opacity: 0;
  transform: translateY(10px);
}
.ledger-row.in { animation: rowIn 0.5s var(--ease-out) forwards; }
@keyframes rowIn { to { opacity: 1; transform: translateY(0); } }
.ledger-row .lr-logo { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; font-weight: 900; font-size: 16px; color: var(--paper); flex-shrink: 0; }
.ledger-row .lr-meta { flex: 1; min-width: 0; }
.ledger-row .lr-name { font-weight: 900; font-size: 16px; letter-spacing: -0.01em; }
.ledger-row .lr-tag { font-size: 10.5px; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; color: var(--lime); }
.ledger-row .lr-amt { text-align: right; }
.ledger-row .lr-amt .a { font-weight: 900; font-size: 18px; color: var(--lime); font-variant-numeric: tabular-nums; }
.ledger-row .lr-amt .p { font-size: 10px; font-weight: 800; letter-spacing: 0.05em; color: var(--paper-50); }

.math-total {
  margin-top: 36px;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  border-top: 1px solid var(--paper-12);
  flex-wrap: wrap;
}
.math-total .mt-label .l1 { font-weight: 900; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--paper-70); }
.math-total .mt-label .l2 { font-size: 15px; font-weight: 600; color: var(--paper-50); }
.math-total .mt-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 9vw, 92px);
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
  line-height: 0.9;
}
.math-total .mt-num .dot { color: var(--lime); }
.math-line { margin-top: 30px; font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 3.2vw, 34px); letter-spacing: -0.03em; text-transform: lowercase; }
.math-line .accent { color: var(--lime); }

/* ============================================================================
   HOW IT WORKS — paper section
   ========================================================================== */
.how { background: var(--paper); }
.how .eyebrow { color: var(--purple); margin-bottom: 16px; }
.how h2 { font-size: clamp(34px, 5vw, 56px); text-transform: lowercase; max-width: 14ch; margin-bottom: 56px; }
.how h2 .accent { color: var(--purple); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; gap: 16px; } }
.step {
  background: var(--mist);
  border: 1px solid var(--ink-06);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.step:hover { transform: translateY(-5px); box-shadow: 0 24px 50px -28px rgba(90,49,244,0.4); }
.step .num { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--purple); letter-spacing: 0.05em; margin-bottom: 60px; }
.step h3 { font-size: 25px; text-transform: lowercase; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--ink-70); font-weight: 500; }
.step .step-icon {
  position: absolute; top: 24px; right: 24px;
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--purple); color: var(--lime);
  display: grid; place-items: center;
}

/* permission strip */
.perms {
  margin-top: 26px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
@media (max-width: 860px) { .perms { grid-template-columns: 1fr; } }
.perm {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--ink-06);
  background: var(--paper);
}
.perm .pi { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; font-weight: 900; font-size: 12px; flex-shrink: 0; }
.perm.yes .pi { background: var(--ink); color: var(--lime); }
.perm.no .pi { background: var(--fog); color: var(--smoke); }
.perm .pt { font-weight: 900; font-size: 14.5px; }
.perm .pd { font-size: 12.5px; color: var(--smoke); font-weight: 600; }

/* ============================================================================
   THE AGENT (chat showpiece) — ink section
   ========================================================================== */
.agent { background: var(--ink); color: var(--paper); overflow: hidden; }
.agent::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 500px at 85% 0%, rgba(90,49,244,0.35), transparent 60%);
  pointer-events: none;
}
.agent .wrap { position: relative; z-index: 1; }
.agent .eyebrow { color: var(--lime); margin-bottom: 16px; }
.agent h2 { font-size: clamp(32px, 4.8vw, 54px); text-transform: lowercase; max-width: 16ch; margin-bottom: 14px; }
.agent .lede { color: var(--paper-70); font-size: 17px; max-width: 46ch; margin-bottom: 40px; font-weight: 500; }

.agent-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .agent-grid { grid-template-columns: 1fr; gap: 32px; } }

.thread {
  background: var(--paper-06);
  border: 1px solid var(--paper-12);
  border-radius: var(--radius);
  padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
}
.thread-head { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--paper-12); margin-bottom: 4px; }
.thread-head .th-logo { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; font-weight: 900; color: var(--paper); }
.thread-head .th-name { font-weight: 900; font-size: 16px; }
.thread-head .th-sub { font-size: 12px; color: var(--paper-50); font-weight: 600; }

.scene-pill {
  align-self: center;
  font-weight: 900; font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); background: var(--lime);
  padding: 5px 12px; border-radius: 100px;
}
.scene-pill.muted { background: var(--paper-12); color: var(--paper-70); }

.bubble {
  max-width: 84%;
  padding: 13px 16px;
  border-radius: 18px;
  font-size: 14.5px; line-height: 1.45; font-weight: 500;
  opacity: 0; transform: translateY(8px);
}
.bubble.in { animation: bubbleIn 0.45s var(--ease-out) forwards; }
@keyframes bubbleIn { to { opacity: 1; transform: translateY(0); } }
.bubble.yoink { align-self: flex-start; background: var(--paper); color: var(--ink); border-bottom-left-radius: 6px; }
.bubble.them  { align-self: flex-end; background: var(--purple); color: var(--paper); border-bottom-right-radius: 6px; }
.bubble .who { font-weight: 900; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.55; margin-bottom: 5px; }

.summary-tile {
  align-self: stretch;
  background: var(--lime); color: var(--ink);
  border-radius: 16px; padding: 15px 18px;
  display: flex; align-items: center; gap: 12px;
  font-weight: 900; font-size: 16px; letter-spacing: -0.01em;
  opacity: 0; transform: scale(0.96);
}
.summary-tile.in { animation: tileIn 0.5s var(--ease-out) forwards; }
@keyframes tileIn { to { opacity: 1; transform: scale(1); } }
.summary-tile .spark { font-size: 18px; }

/* tone selector */
.tone-box { display: flex; flex-direction: column; gap: 18px; }
.tone-box h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; text-transform: lowercase; }
.tone-opts { display: flex; flex-direction: column; gap: 10px; }
.tone {
  border: 1px solid var(--paper-12); border-radius: 14px;
  padding: 14px 16px; cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  background: var(--paper-06);
}
.tone:hover { transform: translateX(4px); }
.tone.active { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.tone .tn { font-weight: 900; font-size: 15px; }
.tone .te { font-size: 13px; opacity: 0.7; font-weight: 500; margin-top: 3px; }
.tone.active .te { opacity: 0.75; }

/* ============================================================================
   MOVEMENT (stats) — lime section
   ========================================================================== */
.movement { background: var(--lime); color: var(--ink); }
.movement .eyebrow { color: rgba(10,10,10,0.6); margin-bottom: 16px; }
.movement h2 { font-size: clamp(38px, 6.5vw, 78px); text-transform: lowercase; }
.movement h2 .count { font-variant-numeric: tabular-nums; }
.move-stats { margin-top: 50px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 720px) { .move-stats { grid-template-columns: 1fr; } }
.stat {
  background: rgba(10,10,10,0.06);
  border-radius: var(--radius);
  padding: 26px;
}
.stat .sv { font-family: var(--font-display); font-weight: 700; font-size: clamp(36px, 6vw, 52px); letter-spacing: -0.04em; }
.stat .sl { font-weight: 900; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(10,10,10,0.55); margin-top: 4px; }

/* ============================================================================
   TRUST — mist section
   ========================================================================== */
.trust { background: var(--mist); }
.trust .eyebrow { color: var(--purple); margin-bottom: 16px; }
.trust h2 { font-size: clamp(34px, 5vw, 56px); text-transform: lowercase; max-width: 15ch; margin-bottom: 48px; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 760px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-card {
  background: var(--paper);
  border: 1px solid var(--ink-06);
  border-radius: var(--radius);
  padding: 26px;
  display: flex; gap: 16px; align-items: flex-start;
}
.trust-card .tc-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--purple); color: var(--lime); display: grid; place-items: center; flex-shrink: 0; }
.trust-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 19px; text-transform: lowercase; margin-bottom: 6px; }
.trust-card p { font-size: 14.5px; color: var(--ink-70); font-weight: 500; }

/* ============================================================================
   FAQ — paper section
   ========================================================================== */
.faq { background: var(--paper); }
.faq .eyebrow { color: var(--purple); margin-bottom: 16px; }
.faq h2 { font-size: clamp(34px, 5vw, 56px); text-transform: lowercase; margin-bottom: 44px; }
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--ink-06); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 0;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(18px, 2.4vw, 24px);
  text-transform: lowercase; letter-spacing: -0.02em;
  color: var(--ink);
}
.faq-q .pm { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--mist); color: var(--purple); display: grid; place-items: center; font-size: 18px; transition: transform 0.3s var(--ease-out), background 0.2s; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--purple); color: var(--lime); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease-out); }
.faq-a-inner { padding: 0 0 24px; font-size: 16px; color: var(--ink-70); font-weight: 500; max-width: 64ch; }

/* ============================================================================
   CLOSER + email capture — deep purple
   ========================================================================== */
.closer { background: var(--deep-purple); color: var(--paper); text-align: center; overflow: hidden; }
.closer::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 400px at 50% 120%, rgba(196,255,0,0.18), transparent 60%);
  pointer-events: none;
}
.closer .wrap { position: relative; z-index: 1; }
.closer h2 { font-size: clamp(38px, 6.5vw, 76px); text-transform: lowercase; max-width: 18ch; margin: 0 auto 18px; }
.closer h2 .accent { color: var(--lime); }
.closer p { font-size: 18px; color: var(--paper-70); max-width: 40ch; margin: 0 auto 36px; font-weight: 500; }
.signup { display: flex; gap: 10px; max-width: 460px; margin: 0 auto; }
@media (max-width: 520px) { .signup { flex-direction: column; } }
.signup input {
  flex: 1; min-width: 0;
  background: var(--paper-06);
  border: 1px solid var(--paper-12);
  border-radius: 100px;
  padding: 16px 22px;
  color: var(--paper);
  font-family: inherit; font-size: 16px; font-weight: 600;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.signup input::placeholder { color: var(--paper-50); }
.signup input:focus { border-color: var(--lime); background: var(--paper-12); }
.signup .btn { justify-content: center; }
.signup-note { margin-top: 16px; font-size: 13px; color: var(--paper-50); font-weight: 600; }
.signup-ok { display: none; font-weight: 900; font-size: 18px; color: var(--lime); }
.signup-ok.show { display: block; }

/* ============================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--ink); color: var(--paper-70); padding: 56px 0 40px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; margin-bottom: 44px; }
.footer .wordmark { font-size: 30px; color: var(--paper); }
.footer-tag { font-size: 14px; color: var(--paper-50); font-weight: 600; max-width: 28ch; margin-top: 12px; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { font-weight: 900; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--paper-50); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 15px; font-weight: 600; color: var(--paper-70); padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--paper-06); font-size: 13px; color: var(--paper-50); font-weight: 600; }

/* ============================================================================
   LEGAL pages (privacy / terms)
   ========================================================================== */
.legal-hero { background: var(--ink); color: var(--paper); padding: 64px 0 48px; }
.legal-hero .eyebrow { color: var(--lime); margin-bottom: 14px; }
.legal-hero h1 { font-size: clamp(38px, 6vw, 64px); text-transform: lowercase; }
.legal-hero .updated { margin-top: 14px; color: var(--paper-50); font-size: 14px; font-weight: 600; }
.legal-body { background: var(--paper); padding: 64px 0 100px; }
.legal-body .wrap { max-width: 760px; }
.legal-body h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 3vw, 30px); text-transform: lowercase; letter-spacing: -0.03em; margin: 44px 0 14px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-family: var(--font-body); font-weight: 900; font-size: 17px; margin: 26px 0 8px; }
.legal-body p, .legal-body li { font-size: 16px; line-height: 1.65; color: var(--ink-70); font-weight: 500; margin-bottom: 14px; }
.legal-body strong { color: var(--ink); font-weight: 800; }
.legal-body ul { padding-left: 22px; margin-bottom: 14px; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--purple); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.legal-callout {
  background: var(--mist); border: 1px solid var(--ink-06);
  border-left: 4px solid var(--lime);
  border-radius: 14px; padding: 20px 22px; margin: 24px 0;
}
.legal-callout p { margin-bottom: 0; color: var(--ink); }

/* generic reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
