/* The Creator Collab — landing styles.
   Extracted to an external file: vercel.json's CSP (style-src 'self') blocks inline <style>.
   Design system: navy #0A1E3C ground · electric blue #2E93FF accent · cyan #4FE3FF single pop. */

:root {
  --accent: #0A84FF;
  --accent-press: #0060D6;
  --good: #4ADE80;
  --font-sans: "Geist", ui-sans-serif, -apple-system, "SF Pro Text", "Segoe UI", sans-serif;
  --maxw: 1160px;

  --page-bg: #0A1E3C;
  --fg: #F2F6FC;
  --fg-em: #DDEBFF;
  --fg-sub: #A9BBD8;
  --fg-points: #C6D4EC;
  --badge-bg: rgba(120,170,255,.14);
  --badge-fg: #CFE4FF;
  --badge-border: rgba(255,255,255,.12);
  --nav-name: #F2F6FC;
  --nav-collab: #CFE4FF;
  --signin: #A9BBD8;
  --signin-hover: #F2F6FC;
  --pt-fill: rgba(120,170,255,.16);
  --pt-stroke: #7FB2FF;
  --cta-note: #A9BBD8;
  --win-shadow: 0 40px 80px -30px rgba(3,10,28,.75), 0 8px 24px -12px rgba(3,10,28,.5);
  --win-border: rgba(255,255,255,.5);
  --win-glow: rgba(120,175,255,.22);
}

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  background: var(--page-bg); color: var(--fg);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
a { text-decoration: none; color: inherit; }
:where(a, button, input, select, summary):focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

/* ---------- NAV (sticky; condenses into a floating glass pill on scroll) ---------- */
.nav {
  position: sticky; top: 0; z-index: 30;
  padding: 0.7rem clamp(0.9rem, 3vw, 1.6rem);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1.4rem;
  padding: 0.7rem clamp(0.85rem, 2vw, 1.4rem);
  border-radius: 100px; border: 1px solid transparent;
  transition: max-width .5s cubic-bezier(.4, 0, .2, 1), padding .45s cubic-bezier(.4, 0, .2, 1), background .4s ease, border-color .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
}
.nav.scrolled .nav-inner {
  max-width: 500px;
  padding: 0.5rem 0.6rem 0.5rem 1.1rem;
  background: rgba(9, 20, 38, 0.7);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 36px -16px rgba(0, 0, 0, 0.55);
}
.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 8px; background: var(--accent);
  display: grid; place-items: center;
}
.brand-mark svg { width: 20px; height: 20px; display: block; }
.brand-name { font-size: 1.06rem; letter-spacing: -0.01em; color: var(--nav-name); font-weight: 500; }
.brand-name b { font-weight: 600; color: var(--nav-collab); }

.nav-right { display: flex; align-items: center; gap: 0.6rem; }
.signin { color: var(--signin); font-size: 0.92rem; padding: 0.55rem 0.85rem; border-radius: 100px; transition: color .18s ease; }
.signin:hover { color: var(--signin-hover); }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-sans);
  font-weight: 600; border: 0; cursor: pointer; border-radius: 100px; white-space: nowrap;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-press); transform: translateY(-1px); }
.nav .btn-primary { font-size: 0.9rem; padding: 0.6rem 1.05rem; }

/* ---------- HERO — flat navy base, wireframe-city texture (flare cropped out), left scrim ---------- */
.hero { position: relative; overflow: hidden; isolation: isolate; background: linear-gradient(180deg, #0A1E3C 0%, #071531 100%); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url("assets/web/funnel-city-2000.webp") no-repeat;
  background-size: 190% auto; background-position: 90% 0%;
  opacity: .3;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(90deg, #0A1E3C 0%, rgba(10,30,60,.94) 36%, rgba(10,30,60,.5) 62%, rgba(10,30,60,.15) 100%),
    linear-gradient(180deg, rgba(10,30,60,.4) 0%, transparent 28%, transparent 58%, #071531 96%),
    radial-gradient(1100px 620px at 82% 8%, rgba(10,132,255,.12), transparent 60%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6.5rem);
  min-height: 78vh;
}

.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  color: var(--badge-fg); background: var(--badge-bg); border: 1px solid var(--badge-border);
  padding: 0.4rem 0.8rem; border-radius: 100px;
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2.6s ease-out infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(10,132,255,.55)} 70%{box-shadow:0 0 0 7px rgba(10,132,255,0)} 100%{box-shadow:0 0 0 0 rgba(10,132,255,0)} }

h1 {
  font-family: var(--font-sans); font-weight: 700;
  font-size: clamp(2.15rem, 4.6vw, 3.4rem); line-height: 1.02; letter-spacing: -0.04em;
  color: var(--fg); margin: 1.35rem 0 0; text-wrap: balance;
}
h1 .em { color: var(--fg-em); }
h1 .line { white-space: nowrap; }

.sub {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem); line-height: 1.55; color: var(--fg-sub);
  max-width: 44ch; margin: 1.4rem 0 0;
}
.points { list-style: none; margin: 1.7rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.points li { display: flex; align-items: flex-start; gap: 0.65rem; color: var(--fg-points); font-size: 0.98rem; line-height: 1.4; }
.points li svg { flex: none; width: 18px; height: 18px; margin-top: 1px; }
.points li svg circle { fill: var(--pt-fill); }
.points li svg path { stroke: var(--pt-stroke); }
.cta-row { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; margin-top: 2.2rem; }
.hero .btn-primary { font-size: 1rem; padding: 0.9rem 1.5rem; }
.cta-note { color: var(--cta-note); font-size: 0.86rem; }

/* ---------- PRODUCT WINDOW ---------- */
.visual { position: relative; }
.visual::after {
  content: ""; position: absolute; inset: -12% -8% -12% 6%; z-index: 0;
  background: radial-gradient(closest-side, var(--win-glow), transparent 72%);
}
.win {
  position: relative; z-index: 1;
  background: #fff; color: #0B1220; border-radius: 18px;
  border: 1px solid var(--win-border);
  box-shadow: var(--win-shadow);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-4deg) rotateX(1.5deg);
}
.win-head {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1rem; border-bottom: 1px solid #EDF1F7; background: #FBFCFE;
}
.win-dots { display: flex; gap: 6px; }
.win-dots i { width: 10px; height: 10px; border-radius: 50%; background: #DCE2EC; }
.win-status { font-size: 0.8rem; color: #667085; margin-left: 0.3rem; }
.win-live { margin-left: auto; display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; font-weight: 600; color: #0A7D3B; background: #E7F8ee; padding: 0.24rem 0.55rem; border-radius: 100px; }
.win-live b { width: 6px; height: 6px; border-radius: 50%; background: var(--good); display: inline-block; }
.win-pause { border: 0; background: none; cursor: pointer; color: #667085; font-size: 0.85rem; padding: 0.15rem 0.3rem; border-radius: 6px; line-height: 1; }
.win-pause:hover { color: #0B1220; }
.brandrow {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 0.85rem; border: 1px solid #EEF1F6; border-radius: 12px; background: #fff;
}
.brandrow .logo { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; font-weight: 600; color: #fff; font-size: 0.95rem; }
.logo-a { background: #111827; } .logo-u { background: #0A84FF; } .logo-d { background: #14B8A6; }
.brandrow--flat { border: 0; padding: 0 0 0.2rem; }
.brandrow .txt { display: flex; flex-direction: column; line-height: 1.25; }
.brandrow .bn { font-weight: 600; font-size: 0.92rem; color: #0B1220; }
.brandrow .bt { font-size: 0.78rem; color: #667085; }
.fit { margin-left: auto; font-size: 0.72rem; font-weight: 600; padding: 0.28rem 0.6rem; border-radius: 100px; }
.fit.strong { color: #0961C9; background: #E7F1FF; }
.fit.good { color: #5A6577; background: #F1F4F9; }

/* ---------- ANIMATED HERO DEMO ---------- */
.win-view { position: relative; height: 272px; overflow: hidden; }
.win-track { display: flex; flex-direction: column; transition: transform .72s cubic-bezier(.45, 0, .15, 1); }
.win.no-anim .win-track { transition: none; }
.scene { height: 272px; flex: none; padding: 0.9rem; display: flex; flex-direction: column; gap: 0.55rem; }
.win-status span { display: none; }
.win[data-scene="0"] .st0, .win[data-scene="3"] .st0, .win[data-scene="1"] .st1, .win[data-scene="2"] .st2 { display: inline; }
.intel-card { border: 1px solid #EEF1F6; border-radius: 12px; padding: 0.9rem; display: flex; flex-direction: column; gap: 0.6rem; }
.intel-row { display: flex; gap: 0.7rem; }
.intel-k { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #0A6CE0; width: 52px; flex: none; padding-top: 3px; }
.intel-v { font-size: 0.88rem; color: #1C2430; line-height: 1.4; }
.mail { border: 1px solid #EEF1F6; border-radius: 12px; padding: 0.95rem; display: flex; flex-direction: column; gap: 0.55rem; }
.mail-to { font-size: 0.78rem; color: #667085; }
.mail-subj { font-weight: 600; font-size: 0.92rem; color: #0B1220; }
.mail-line { height: 8px; border-radius: 4px; background: #EDF1F7; }
.mail-line.l { width: 92%; } .mail-line.m { width: 78%; } .mail-line.s { width: 58%; }
.mail-ready { display: flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; font-weight: 600; color: #0A7D3B; margin-top: 0.3rem; }
.mail-ready .chk { width: 17px; height: 17px; border-radius: 50%; background: #E4F7EC; display: grid; place-items: center; font-size: 10px; }
.win-steps { display: flex; gap: 6px; padding: 0.75rem 1rem; border-top: 1px solid #EDF1F7; background: #FBFCFE; }
.win-steps i { height: 4px; border-radius: 2px; background: #E1E6EF; flex: 1; transition: background .4s ease; }
.win-steps i.on { background: #0A84FF; }
@media (min-width: 861px) and (prefers-reduced-motion: no-preference) {
  .has-js .win { animation: winDrop .85s cubic-bezier(.2, .7, .2, 1) both; animation-delay: .15s; }
}
@keyframes winDrop {
  from { opacity: 0; transform: perspective(1400px) rotateY(-4deg) rotateX(1.5deg) translateY(-40px); }
  to   { opacity: 1; transform: perspective(1400px) rotateY(-4deg) rotateX(1.5deg) translateY(0); }
}

/* ---------- ALTERNATING BANDS ---------- */
.band { position: relative; padding: clamp(4rem, 9vw, 7rem) 0; }
.band--light { background: #F4F8FD; --fg: #0B1220; --fg-2: #5A6577; --eyebrow: #0A6CE0; --card: #FFFFFF; --card-bd: #E4EAF3; }
.band--dark {
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(10,132,255,.14), transparent 60%),
    linear-gradient(180deg, #0A1E3C 0%, #081934 100%);
  --fg: #F2F6FC; --fg-2: #A9BBD8; --eyebrow: #7FB2FF; --card: #12294B; --card-bd: rgba(255,255,255,.14);
}
.band .eyebrow { display: inline-block; color: var(--eyebrow); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; }
.band-title { font-family: var(--font-sans); font-weight: 700; font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -0.03em; line-height: 1.06; color: var(--fg); margin: 0.9rem 0 0; max-width: 20ch; text-wrap: balance; }
.band-sub { color: var(--fg-2); font-size: 1.06rem; line-height: 1.5; margin: 1rem 0 0; max-width: 52ch; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 2.8rem; }
.step { display: flex; flex-direction: column; gap: 0.45rem; transition: transform .18s ease; }
.step:hover { transform: translateY(-3px); }
.step-n { font-weight: 700; font-size: 0.9rem; color: var(--eyebrow); letter-spacing: 0.04em; font-variant-numeric: tabular-nums; }
.step .step-rule { height: 1px; background: var(--card-bd); margin: 0.15rem 0 0.55rem; }
.step h3 { font-weight: 600; font-size: 1.12rem; color: var(--fg); letter-spacing: -0.01em; margin: 0; }
.step p { color: var(--fg-2); font-size: 0.98rem; line-height: 1.5; margin: 0; }

/* ---------- FOUNDING CREATOR — stats-first strip ---------- */
.creator-head { display: flex; align-items: center; gap: 1.3rem; }
/* The source photo is a circle on a black square — the 50%-radius clips the
   black corners; the white ring masks any hairline at the circle's edge. */
.creator-avatar {
  width: 88px; height: 88px; border-radius: 50%; object-fit: cover; flex: none;
  border: 3px solid #fff; box-shadow: 0 14px 32px -14px rgba(11,30,60,.35);
}
.creator-head .band-title { margin-top: 0.35rem; }
@media (max-width: 480px) { .creator-avatar { width: 64px; height: 64px; } }

.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.4rem; }
.stat {
  background: var(--card); border: 1px solid var(--card-bd); border-radius: 16px;
  padding: 1.2rem 1.3rem; display: flex; align-items: center; gap: 0.85rem;
  transition: transform .18s ease, box-shadow .18s ease;
}
.stat:hover { transform: translateY(-3px); box-shadow: 0 12px 28px -14px rgba(11,30,60,.22); }
.stat .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.stat .ic svg { width: 18px; height: 18px; display: block; }
.ic-ig { background: linear-gradient(135deg, #F9A03F 0%, #DB2A6B 48%, #8B33B0 100%); }
.ic-fb { background: #1877F2; }
.ic-tt { background: #0B0B0F; }
.ic-yt { background: #FF0000; }
.stat b { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.02em; color: var(--fg); display: block; line-height: 1.1; font-variant-numeric: tabular-nums; }
.stat .lbl { font-size: 0.78rem; color: var(--fg-2); }

/* ---------- SECTION 3 — the funnel city (still image as stage, cards over the empty third) ---------- */
.vortex { position: relative; background: #0A1E3C; padding: clamp(4rem, 8vw, 6rem) 0 clamp(3.5rem, 7vw, 5.5rem); overflow: hidden; }
.vhead { max-width: 820px; margin: 0 auto; padding: 0 1.5rem; text-align: center; position: relative; z-index: 1; }
.veyebrow { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: #4FA8FF; font-weight: 600; margin: 0; }
.vtitle { font-family: var(--font-sans); font-size: clamp(1.7rem, 4vw, 2.7rem); line-height: 1.06; letter-spacing: -0.03em; font-weight: 700; margin: 0.9rem 0 0; color: #EDF3FB; text-wrap: balance; }
.vstage { position: relative; margin-top: clamp(-1rem, -1vw, 0rem); }
.vstage img {
  display: block; width: 100%; height: auto;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 12%, #000 74%, transparent 98%);
  mask-image: linear-gradient(180deg, transparent 0, #000 12%, #000 74%, transparent 98%);
}
.vstage .beacon {
  position: absolute; left: 51.8%; top: 55%; width: 8px; height: 8px; margin: -4px 0 0 -4px;
  border-radius: 50%; background: #4FE3FF; box-shadow: 0 0 14px rgba(79,227,255,.8);
  animation: beacon 2.6s ease-in-out infinite;
}
@keyframes beacon { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(.75); } }
.vcards {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  margin-top: clamp(-11rem, -13vw, -3.5rem);
}
.vcard {
  background: rgba(12,34,66,.78); border: 1px solid rgba(46,147,255,.45); border-radius: 20px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 24px 60px -30px rgba(3,10,28,.85), inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .18s ease, border-color .18s ease;
}
.vcard:hover { transform: translateY(-3px); border-color: rgba(79,227,255,.55); }
.vcard .n { color: #4FE3FF; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; }
.vcard h3 { color: #EDF3FB; margin: 0.4rem 0 0.3rem; font-size: 1.28rem; font-weight: 600; letter-spacing: -0.01em; }
.vcard p { color: #A9BBD8; font-size: 0.95rem; line-height: 1.5; margin: 0; }

/* faq */
.faqx { margin-top: 2.4rem; max-width: 720px; }
.faqx details { border-top: 1px solid var(--card-bd); padding: 1.1rem 0; }
.faqx details:last-of-type { border-bottom: 1px solid var(--card-bd); }
.faqx summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-weight: 600; color: var(--fg); font-size: 1.05rem; }
.faqx summary::-webkit-details-marker { display: none; }
.faqx summary::after { content: "+" / ""; color: var(--eyebrow); font-size: 1.4rem; font-weight: 300; line-height: 1; }
.faqx details[open] summary::after { content: "\2013" / ""; }
.faqx details p { color: var(--fg-2); font-size: 0.98rem; line-height: 1.55; margin-top: 0.7rem; max-width: 62ch; }

/* ---------- EARLY ACCESS — form band with radial wash, hairline + beacon bookend ---------- */
#form { background: radial-gradient(640px 300px at 50% 0%, rgba(10,132,255,.08), transparent 70%), #F4F8FD; }
#form::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(720px, 80%); height: 2px;
  background: linear-gradient(90deg, transparent, rgba(46,147,255,.55) 30%, #4FE3FF 50%, rgba(46,147,255,.55) 70%, transparent);
}
#form::after {
  content: ""; position: absolute; top: -3px; left: 50%; width: 8px; height: 8px; margin-left: -4px;
  border-radius: 50%; background: #4FE3FF; box-shadow: 0 0 12px rgba(79,227,255,.8);
  animation: beacon 2.6s ease-in-out infinite;
}
.formx {
  margin-top: 2.6rem; max-width: 560px;
  background: var(--card); border: 1px solid var(--card-bd); border-radius: 20px;
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: 0 24px 60px -32px rgba(11,30,60,.18);
}
.formx .field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.9rem; }
.formx .field > span { font-size: 0.82rem; color: var(--fg-2); font-weight: 500; }
.formx .field em { font-style: normal; color: var(--fg-2); opacity: .7; font-size: 0.9em; }
.formx input, .formx select { font-family: var(--font-sans); font-size: 0.98rem; color: var(--fg); background: #fff; border: 1px solid #8E9BB0; border-radius: 10px; padding: 0.72rem 0.85rem; width: 100%; }
.formx input::placeholder { color: color-mix(in srgb, var(--fg-2) 70%, transparent); }
.formx .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.formx .btn-primary { margin-top: 0.5rem; font-size: 1rem; padding: 0.85rem 1.5rem; }
.formx .consent { font-size: 0.82rem; color: var(--fg-2); line-height: 1.5; margin: 0.9rem 0 0; }
.formx .consent a { color: var(--eyebrow); font-weight: 600; }
.formx .form-err { color: #B42318; font-size: 0.9rem; font-weight: 500; margin: 0.8rem 0 0; }
.formx .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.thanks { margin-top: 2.6rem; max-width: 560px; background: var(--card); border: 1px solid var(--card-bd); border-radius: 20px; padding: 2rem; }
.thanks h3 { margin: 0; font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; color: var(--fg); }
.thanks p { color: var(--fg-2); margin: 0.6rem 0 0; line-height: 1.5; }
.brands-link { margin-top: 1.6rem; font-size: 0.9rem; color: var(--fg-2); }
.brands-link a, .linklike { color: var(--eyebrow); font-weight: 600; }
.linklike { border: 0; background: none; cursor: pointer; font-family: var(--font-sans); font-size: inherit; padding: 0; }

/* ---------- FOOTER ---------- */
.footer { padding: 3rem 0 2.4rem; background: linear-gradient(180deg, #0A1E3C 0%, #081934 100%); --fg-2: #A9BBD8; }
.foot-top { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap; }
.foot-links { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.foot-links a { color: #A9BBD8; font-size: 0.9rem; transition: color .18s ease; }
.foot-links a:hover { color: #F2F6FC; }
.foot-legal { color: #7C8BA6; font-size: 0.82rem; line-height: 1.6; margin: 1.6rem 0 0; max-width: 72ch; }
.foot-legal a { color: #A9BBD8; }

/* ---------- LEGAL PAGES (privacy / terms) ---------- */
.legal-main { background: #F4F8FD; color: #0B1220; min-height: 70vh; padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem); }
.legal { max-width: 720px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.legal h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 700; letter-spacing: -0.03em; color: #0B1220; margin: 0; }
.legal .updated { color: #5A6577; font-size: 0.9rem; margin: 0.7rem 0 0; }
.legal h2 { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em; color: #0B1220; margin: 2.2rem 0 0; }
.legal p, .legal li { color: #3A4351; font-size: 0.98rem; line-height: 1.65; }
.legal p { margin: 0.7rem 0 0; }
.legal ul { margin: 0.7rem 0 0; padding-left: 1.2rem; }
.legal a { color: #0A6CE0; font-weight: 500; }
.placeholder { background: #FFF3CD; color: #6B5900; border-radius: 4px; padding: 0 4px; }

/* ---------- reveal (CSS-only, animation-fill: both) ---------- */
@keyframes riseIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  .has-js .rise { animation: riseIn .7s cubic-bezier(.2,.7,.2,1) both; animation-delay: var(--sd, 0s); }
  .has-js .hero-copy > .rise:nth-child(2) { --sd: .07s; }
  .has-js .hero-copy > .rise:nth-child(3) { --sd: .14s; }
  .has-js .hero-copy > .rise:nth-child(4) { --sd: .21s; }
  .has-js .hero-copy > .rise:nth-child(5) { --sd: .28s; }
  .has-js .visual.rise { --sd: .16s; }
}

/* ---------- SCROLL REVEAL ---------- */
@keyframes srIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  .has-js :is(.band .eyebrow, .band-title, .band-sub, .step, .stat, .vcard, .faqx, .formx, .brands-link) { opacity: 0; }
  .has-js :is(.band .eyebrow, .band-title, .band-sub, .step, .stat, .vcard, .faqx, .formx, .brands-link).in { animation: srIn .8s cubic-bezier(.2, .7, .2, 1) both; }
  .has-js .band-title.in { animation-delay: .05s; }
  .has-js .band-sub.in { animation-delay: .1s; }
  .has-js :is(.step, .stat, .vcard):nth-child(2).in { animation-delay: .09s; }
  .has-js :is(.step, .stat, .vcard):nth-child(3).in { animation-delay: .18s; }
  .has-js .stat:nth-child(4).in { animation-delay: .27s; }
}
@media (prefers-reduced-motion: reduce) {
  .vstage .beacon, #form::after, .badge .dot { animation: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .vcards { grid-template-columns: 1fr; margin-top: -2rem; }
  .vstage img { min-height: 320px; object-fit: cover; object-position: 52% 45%; }
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; min-height: 0; padding-top: 1.5rem; }
  .visual { order: 2; max-width: 460px; }
  .win { transform: none; }
  .sub, h1 { max-width: none; }
  .hero::before { background-size: 320% auto; background-position: 70% 0%; opacity: .22; }
}
@media (max-width: 760px) {
  .steps, .formx .grid2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .signin { display: none; }
  .brand-name { white-space: nowrap; }
  .nav .btn-primary { font-size: 0.85rem; padding: 0.55rem 0.9rem; }
  .nav.scrolled .nav-inner { max-width: 100%; padding: 0.5rem 0.5rem 0.5rem 0.9rem; }
}
@media (max-width: 420px) { h1 .line { white-space: normal; } .stat-strip { grid-template-columns: 1fr 1fr; } }
