/* Direct Email Leads — landing page
   Palette + motion adapted from vectrfl.com. Cool glacial blues, one warm
   accent (Electric Indigo). Self-hosted Space Grotesk (display) + Geist (body). */

/* ---------- fonts ---------- */
@font-face { font-family: "Geist"; font-weight: 300; font-display: swap; src: url("fonts/geist-300.woff2") format("woff2"); }
@font-face { font-family: "Geist"; font-weight: 400; font-display: swap; src: url("fonts/geist-400.woff2") format("woff2"); }
@font-face { font-family: "Geist"; font-weight: 500; font-display: swap; src: url("fonts/geist-500.woff2") format("woff2"); }
@font-face { font-family: "Geist"; font-weight: 600; font-display: swap; src: url("fonts/geist-600.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-weight: 400; font-display: swap; src: url("fonts/inter-400.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-weight: 500; font-display: swap; src: url("fonts/inter-500.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-weight: 600; font-display: swap; src: url("fonts/inter-600.woff2") format("woff2"); }

/* ---------- tokens ---------- */
:root {
  --glacial: #D0E1EB;
  --paper:   #FCFCFC;
  --mist:    #DCEAF2;
  --vapor:   #EFF4F4;

  --ink:     #0A0920;
  --muted:   #585765;
  --subtle:  #8E94A6;
  --hair:    #E4EAF0;
  --hair-strong: #D5DEE7;

  --indigo:  #3932DC;
  --indigo-deep: #0F32DC;
  --cyan:    #5FE3FF;
  --coral:   #FF5A4D;

  --font-display: "Geist", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.25, 1, .5, 1);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);

  --container: 1180px;
  --header-h: 78px;
  --radius: 18px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--indigo); color: #fff; }
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- type ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
  color: var(--ink);
}
p { margin: 0; text-wrap: pretty; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--muted); line-height: 1.55; text-wrap: pretty; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--indigo);
  margin: 0 0 18px;
}

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: 24px; }
section { position: relative; }
section[id] { scroll-margin-top: 84px; }
.section { padding: clamp(76px, 11vw, 148px) 0; }

/* ---------- buttons ---------- */
.pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
  letter-spacing: -0.01em; white-space: nowrap;
  transition: transform .4s var(--ease), background-color .3s var(--ease), color .3s var(--ease), box-shadow .4s var(--ease), border-color .3s var(--ease);
}
.pill--dark { background: var(--cta-bg, var(--ink)); color: var(--cta-fg, var(--paper)); box-shadow: 0 1px 2px rgba(10,9,32,.18); }
.pill--dark:hover { transform: translateY(-2px); background: var(--cta-hover-bg, #16142f); box-shadow: 0 12px 30px -10px rgba(10,9,32,.5); }
.pill--ghost { background: transparent; color: var(--ink); border-color: var(--hair-strong); }
.pill--ghost:hover { transform: translateY(-2px); border-color: var(--ink); background: rgba(255,255,255,.5); }
/* watch-demo CTA — reads like the ghost button's hover state from the start so it's always visible over the 3D hero */
.pill--watch {
  background: rgba(255,255,255,.72); color: var(--ink); border-color: var(--ink);
  box-shadow: 0 2px 12px -5px rgba(10,9,32,.3);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.pill--watch:hover { transform: translateY(-2px); background: #fff; border-color: var(--ink); box-shadow: 0 14px 32px -12px rgba(10,9,32,.45); }
.pill__play {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: 21px; height: 21px; border-radius: 999px; background: var(--ink); color: #fff;
}
.pill__play svg { margin-left: 1px; }
.pill--lg { padding: 17px 34px; font-size: 1rem; }
.pill__arrow { transition: transform .4s var(--ease); }
.pill:hover .pill__arrow { transform: translateX(3px); }

/* ---------- header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(252,252,252,.82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom-color: var(--hair);
  height: 64px;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; width: 100%; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark { width: 30px; height: 30px; flex: none; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; letter-spacing: -0.03em; color: var(--ink); }
.header__cta { display: flex; align-items: center; gap: 10px; }
.header .pill { padding: 11px 20px; font-size: 0.9rem; }

/* ---------- hero (full-bleed WebGL) ---------- */
.hero { position: relative; min-height: 100dvh; display: flex; align-items: center; background: var(--glacial); overflow: hidden; }
.hero__stage { position: absolute; inset: 0; z-index: 1; }
#scene { display: block; width: 100%; height: 100%; pointer-events: none; }
/* legibility veil: lightens the copy side without hiding the scene */
.hero__stage::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(100deg, rgba(216,230,240,.78) 0%, rgba(216,230,240,.34) 34%, rgba(216,230,240,0) 56%); }
.hero__inner { position: relative; z-index: 3; width: 100%; padding-top: var(--header-h); }
.hero__copy { max-width: 600px; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 5.1rem); font-weight: 400; letter-spacing: -0.045em; line-height: 1.02; }
.hero .lead { margin-top: 26px; max-width: 32em; text-wrap: balance; }
.hero__actions { margin-top: 38px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.hero__note { margin-top: 24px; font-size: 0.86rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero__note svg { color: var(--indigo); flex: none; }
.hero__labels { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.sig-label {
  position: absolute; top: 0; left: 0; display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 11px; border-radius: 999px; white-space: nowrap;
  font-family: var(--font-body); font-weight: 500; font-size: 0.8rem; letter-spacing: -0.01em; color: var(--ink);
  background: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.85);
  box-shadow: 0 10px 26px -14px rgba(10,9,32,.4); -webkit-backdrop-filter: blur(7px); backdrop-filter: blur(7px);
  opacity: 0; transition: opacity .6s var(--ease); will-change: transform, opacity;
}
.sig-label__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 3px rgba(255,90,77,.15); flex: none; }
@media (max-width: 600px) { .sig-label { font-size: 0.71rem; padding: 6px 11px 6px 9px; } }

.hero__siglist { display: none; }
@media (max-width: 860px) {
  .hero__siglist { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 0; padding: 0; list-style: none; }
  .hero__siglist li { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-body); font-weight: 500; font-size: 0.78rem; color: var(--ink); background: rgba(255,255,255,0.62); border: 1px solid rgba(255,255,255,0.8); border-radius: 999px; padding: 6px 12px; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
}

.hero__core-fallback { display: none; }
.hero__stage--fallback { display: grid; place-items: center; }
.hero__stage--fallback::after { display: none; }
.hero__stage--fallback .hero__core-fallback {
  display: block; width: min(46%, 460px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 40% 34%, rgba(255,255,255,.95), rgba(159,170,255,.6) 24%, rgba(57,50,220,.42) 52%, rgba(95,227,255,.16) 74%, rgba(208,225,235,0) 82%);
  box-shadow: 0 50px 130px -30px rgba(57,50,220,.5);
}

/* ---------- contrast band ---------- */
.band { background: var(--ink); color: var(--paper); }
.band h2 { color: var(--paper); }
.band .lead { color: rgba(252,252,252,.66); }
.band__compare { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 52px; }
.compare-card { border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 30px; background: rgba(255,255,255,.02); }
.compare-card h3 { font-size: 1.18rem; color: var(--paper); margin-bottom: 14px; font-family: var(--font-body); font-weight: 600; letter-spacing: -0.01em; }
.compare-card p { color: rgba(252,252,252,.6); font-size: 0.98rem; }
.compare-card--lose { opacity: .62; }
.compare-card--win { border-color: rgba(95,227,255,.35); background: linear-gradient(180deg, rgba(57,50,220,.18), rgba(57,50,220,.04)); }
.compare-tag { display: inline-flex; align-items: center; gap: 7px; font-size: 0.74rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; color: rgba(252,252,252,.5); }
.compare-card--win .compare-tag { color: var(--cyan); }

/* ---------- signals ---------- */
.signals { background: var(--paper); }
.section__head { max-width: 720px; }
.section__head h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); }
.section__head .lead { margin-top: 22px; }
.signals__grid {
  margin-top: 60px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); gap: 14px;
}
.signal {
  border: 1px solid var(--hair); border-radius: 14px; padding: 22px 22px 24px; background: #fff;
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.signal:hover { transform: translateY(-4px); border-color: var(--hair-strong); box-shadow: 0 18px 40px -24px rgba(10,9,32,.4); }
.signal__top { display: flex; align-items: center; gap: 10px; margin-bottom: 13px; }
.signal__dot { width: 9px; height: 9px; border-radius: 50%; flex: none; background: var(--indigo); }
.signal__dot--cyan { background: #2BA5C7; }
.signal__dot--coral { background: var(--coral); }
.signal__dot--peri { background: #8E9AEC; }
.signal__name { font-family: var(--font-display); font-weight: 500; font-size: 1.04rem; letter-spacing: -0.02em; }
.signal__desc { font-size: 0.92rem; color: var(--muted); line-height: 1.5; }
.signals__foot { margin-top: 30px; font-size: 0.92rem; color: var(--subtle); }

/* ---------- process ---------- */
.process { background: var(--mist); }
.process__grid { margin-top: 64px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { position: relative; padding-top: 30px; border-top: 2px solid var(--hair-strong); }
.step__num { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--indigo); letter-spacing: .04em; }
.step h3 { font-size: 1.32rem; margin: 16px 0 12px; letter-spacing: -0.025em; }
.step p { font-size: 0.96rem; color: var(--muted); }

/* ---------- timing split ---------- */
.timing { background: var(--paper); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.split h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
.split .lead { margin-top: 22px; }
.timeline { border-left: 2px solid var(--hair-strong); padding-left: 0; margin: 0; list-style: none; }
.timeline li { position: relative; padding: 0 0 30px 28px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before { content: ""; position: absolute; left: -7px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--paper); border: 2px solid var(--hair-strong); }
.timeline li.is-hot::before { background: var(--indigo); border-color: var(--indigo); box-shadow: 0 0 0 5px rgba(57,50,220,.14); }
.timeline strong { display: block; font-family: var(--font-display); font-weight: 500; font-size: 1.06rem; letter-spacing: -0.02em; margin-bottom: 4px; }
.timeline span { font-size: 0.94rem; color: var(--muted); }

/* ---------- outcome band ---------- */
.outcome { background: var(--ink); color: var(--paper); text-align: center; }
.outcome h2 { color: var(--paper); font-size: clamp(2.1rem, 4.2vw, 3.5rem); max-width: 14ch; margin: 0 auto; }
.outcome .lead { color: rgba(252,252,252,.66); margin: 26px auto 0; max-width: 46ch; }
.outcome__stats { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 820px; margin-left: auto; margin-right: auto; }
.stat { padding: 12px; }
.stat__k { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.04em; color: var(--paper); }
.stat__k em { font-style: normal; color: var(--cyan); }
.stat__l { margin-top: 8px; font-size: 0.9rem; color: rgba(252,252,252,.55); }

/* ---------- division ---------- */
.division { background: var(--vapor); }
.division__grid { margin-top: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.do-card { border-radius: var(--radius); padding: 38px; border: 1px solid var(--hair); }
.do-card--us { background: var(--ink); color: var(--paper); border-color: transparent; }
.do-card--you { background: #fff; }
.do-card h3 { font-size: 1.5rem; margin-bottom: 22px; letter-spacing: -0.03em; }
.do-card--us h3 { color: var(--paper); }
.do-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.do-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.99rem; }
.do-list svg { flex: none; margin-top: 3px; }
.do-card--us .do-list li { color: rgba(252,252,252,.82); }
.do-card--us .do-list svg { color: var(--cyan); }
.do-card--you .do-list svg { color: var(--indigo); }

/* ---------- waitlist / final CTA ---------- */
.cta { background: var(--glacial); position: relative; overflow: hidden; }
.cta__inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; text-align: center; }
.cta h2 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
.cta__kicker { font-family: var(--font-display); font-weight: 500; color: var(--indigo); font-size: 1.05rem; margin-bottom: 18px; letter-spacing: -0.01em; }
.cta .lead { margin: 24px auto 0; max-width: 48ch; }
.specimen { margin: 40px auto 0; max-width: 440px; }
.specimen__tag { font-size: 0.72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--subtle); margin-bottom: 12px; text-align: left; }
.specimen__card { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--hair); border-radius: 16px; padding: 18px 20px; box-shadow: 0 22px 50px -30px rgba(10,9,32,.5); text-align: left; }
.specimen__avatar { width: 46px; height: 46px; flex: none; border-radius: 50%; background: var(--indigo); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.specimen__body { min-width: 0; }
.specimen__name { font-family: var(--font-display); font-weight: 600; font-size: 1.04rem; color: var(--ink); display: flex; align-items: center; gap: 8px; letter-spacing: -0.01em; }
.specimen__verified { font-family: var(--font-body); font-weight: 600; font-size: 0.68rem; text-transform: uppercase; letter-spacing: .04em; color: var(--indigo); background: rgba(57,50,220,.1); padding: 3px 9px; border-radius: 999px; }
.specimen__meta { font-size: 0.9rem; color: var(--muted); margin-top: 4px; }
.specimen__email { font-size: 0.86rem; color: var(--subtle); margin-top: 4px; }
.specimen__trigger { display: inline-flex; align-items: center; gap: 9px; margin-top: 14px; font-size: 0.84rem; color: var(--indigo); font-weight: 500; }
.specimen__trigger::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--coral); flex: none; box-shadow: 0 0 0 4px rgba(255,90,77,.14); }
.waitlist { margin: 40px auto 0; max-width: 540px; text-align: left; }
.waitlist__row { display: flex; gap: 10px; }
.field { position: relative; flex: 1; }
.waitlist input[type="email"], .waitlist input[type="url"] {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 16px 18px; border-radius: 999px; border: 1px solid var(--hair-strong); background: #fff;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.waitlist input::placeholder { color: var(--subtle); }
.waitlist input:focus { outline: none; border-color: var(--indigo); box-shadow: 0 0 0 4px rgba(57,50,220,.12); }
.waitlist input[type="url"] { margin-top: 10px; }
.waitlist .pill { width: auto; }
.waitlist__btn { margin-top: 10px; width: 100%; }
.waitlist__fine { margin-top: 16px; font-size: 0.82rem; color: var(--muted); text-align: center; }
.waitlist__err { display: none; margin-top: 12px; text-align: center; font-size: 0.86rem; color: #C0392B; }
.waitlist__err a { color: var(--indigo); text-decoration: underline; }
.waitlist__ok {
  display: none; text-align: center; padding: 34px 26px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--hair);
}
.waitlist__ok h3 { font-size: 1.4rem; margin-bottom: 10px; }
.waitlist__ok p { color: var(--muted); }
.waitlist__ok svg { color: var(--indigo); margin: 0 auto 16px; }
.is-sent .waitlist__form { display: none; }
.is-sent .waitlist__ok { display: block; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* ---------- footer ---------- */
.footer { background: var(--paper); border-top: 1px solid var(--hair); padding: 56px 0 40px; }
.footer__top { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer__links { display: flex; gap: 26px; flex-wrap: wrap; font-size: 0.92rem; color: var(--muted); }
.footer__links a { transition: color .3s var(--ease); }
.footer__links a:hover { color: var(--ink); }
.footer__bottom { margin-top: 36px; padding-top: 26px; border-top: 1px solid var(--hair); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.84rem; color: var(--subtle); }
.footer__crosspromo { margin-top: 36px; padding-top: 26px; border-top: 1px solid var(--hair); }
.footer__crosspromo-label { display: block; font-size: 0.72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--subtle); margin-bottom: 12px; }
.footer__crosspromo-links { display: flex; flex-wrap: wrap; gap: 8px 26px; font-size: 0.84rem; }
.footer__crosspromo-links a { color: var(--muted); text-decoration: none; border-bottom: 1px solid transparent; transition: color .3s var(--ease), border-color .3s var(--ease); }
.footer__crosspromo-links a:hover { color: var(--ink); border-bottom-color: var(--hair-strong); }
.footer__crosspromo-links a span { color: var(--subtle); }

/* ---------- reveals (only when JS on) ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal[data-d="1"] { transition-delay: .08s; }
.js .reveal[data-d="2"] { transition-delay: .16s; }
.js .reveal[data-d="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .pill, .signal, .pill__arrow { transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .band__compare, .division__grid, .split { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr 1fr; gap: 32px 22px; }
  .outcome__stats { grid-template-columns: 1fr; gap: 36px; max-width: 360px; }
  .split { gap: 44px; }
}
@media (max-width: 860px) {
  .hero { align-items: flex-start; }
  .hero__inner { padding-top: calc(var(--header-h) + 30px); }
  .hero__copy { max-width: 100%; }
  .hero .lead { max-width: 100%; }
  .hero__stage::after { background: linear-gradient(to bottom, rgba(216,230,240,.9) 0%, rgba(216,230,240,.55) 32%, rgba(216,230,240,0) 60%); }
}
@media (max-width: 600px) {
  .container { padding-inline: 18px; }
  .header__cta .pill--ghost { display: none; }
  .header .pill { padding: 10px 16px; font-size: 0.86rem; }
  .brand__name { font-size: 0.98rem; }
  .process__grid { grid-template-columns: 1fr; gap: 30px; }
  .signals__grid { grid-template-columns: 1fr; }
  .waitlist__row { flex-direction: column; }
  .compare-card, .do-card { padding: 26px; }
  .hero h1 { font-size: clamp(2.15rem, 8.6vw, 3rem); }
  .hero .hero__actions .pill--ghost { display: none; }
  .hero__actions .pill--lg { width: 100%; }
}

/* ============================================================
   PREMIUM LAYER — texture, depth, editorial detail, product graphics
   ============================================================ */

/* film grain over the whole page (subtle, references all use it) */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 60; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* richer section grounds (no more flat pastel fills) */
.signals  { background: linear-gradient(180deg, #ffffff 0%, #eef2f8 100%); }
.process  { background: linear-gradient(180deg, #e8eff7 0%, #dde7f2 100%); }
.timing   { background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%); }
.division { background: linear-gradient(180deg, #eef3f6 0%, #e5edf2 100%); }
.cta      { background: linear-gradient(180deg, #dde9f1 0%, #d0e1eb 60%, #cdd9e6 100%); }

/* dark luxe sections: deep gradient + a soft indigo glow + grain */
.band, .outcome { background: radial-gradient(120% 90% at 78% 0%, #141235 0%, #0a0920 46%, #07061a 100%); position: relative; }
.band::before, .outcome::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(50% 60% at 72% 18%, rgba(95,108,255,.22), rgba(95,108,255,0) 70%);
}
.band > .container, .outcome > .container { position: relative; z-index: 1; }

/* editorial micro-label (monospace, coordinate-style) */
.kicker-mono {
  font-family: "Geist", ui-monospace, monospace; font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--subtle); display: inline-flex; align-items: center; gap: 10px; margin: 0 0 22px;
}
.kicker-mono::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .6; }
.band .kicker-mono, .outcome .kicker-mono { color: rgba(255,255,255,.5); }

/* depth for any card-like surface */
.signal, .do-card--you, .compare-card { box-shadow: 0 1px 0 rgba(10,9,32,.03), 0 24px 50px -38px rgba(10,9,32,.4); }

/* bigger, more confident section headings */
.section__head h2, .split h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); font-weight: 500; letter-spacing: -0.035em; }
.cta h2 { font-weight: 500; }
.outcome h2 { font-weight: 400; }

/* process: oversized numerals, hairline rail */
.process .step { border-top: none; padding-top: 0; }
.process .step__num { font-size: 2.6rem; font-weight: 300; color: var(--ink); opacity: .9; letter-spacing: -0.04em; display: block; }
.process .step h3 { font-weight: 600; font-size: 1.18rem; margin: 14px 0 10px; }
.process .step { position: relative; padding-top: 26px; }
.process .step::before { content: ""; position: absolute; top: 0; left: 0; width: 38px; height: 2px; background: var(--indigo); }

/* ---- live signal feed (signals section product graphic) ---- */
.signals-split { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(36px, 5vw, 76px); align-items: center; }
.signals-split .section__head { max-width: 460px; }
.feed {
  border-radius: 18px; background: linear-gradient(180deg, #ffffff, #f7f9fc);
  border: 1px solid var(--hair); overflow: hidden;
  box-shadow: 0 2px 4px rgba(10,9,32,.04), 0 40px 80px -44px rgba(10,9,32,.5);
}
.feed__bar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--hair); background: #fff; }
.feed__dot { width: 9px; height: 9px; border-radius: 50%; background: #e0e4ec; }
.feed__title { font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; margin-left: 8px; }
.feed__live { margin-left: auto; font-family: ui-monospace, monospace; font-size: 0.72rem; letter-spacing: .08em; color: var(--indigo); display: inline-flex; align-items: center; gap: 7px; }
.feed__live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px rgba(255,90,77,.16); }
.feed__rows { padding: 6px 0; }
.feed__row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 13px 18px; border-bottom: 1px solid #f0f2f6; }
.feed__row:last-child { border-bottom: none; }
.feed__time { font-family: ui-monospace, monospace; font-size: 0.78rem; color: var(--subtle); }
.feed__main { min-width: 0; }
.feed__sig { font-size: 0.95rem; color: var(--ink); font-weight: 500; }
.feed__co { font-size: 0.82rem; color: var(--muted); margin-top: 2px; }
.feed__score { font-family: ui-monospace, monospace; font-size: 0.82rem; font-weight: 600; color: #fff; background: var(--indigo); padding: 4px 10px; border-radius: 999px; }
.feed__score--mid { background: #5b6cff; }
.feed__score--warm { background: var(--coral); }
.signals-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.signals-tags span { font-size: 0.82rem; color: var(--muted); border: 1px solid var(--hair-strong); border-radius: 999px; padding: 6px 13px; }

/* ---- inbox stack (waitlist product graphic) ---- */
.inbox { max-width: 460px; margin: 38px auto 0; text-align: left;
  border-radius: 18px; background: linear-gradient(180deg, #ffffff, #f7f9fc); border: 1px solid var(--hair);
  box-shadow: 0 2px 4px rgba(10,9,32,.04), 0 44px 90px -46px rgba(10,9,32,.55); overflow: hidden; }
.inbox__bar { display: flex; align-items: center; gap: 10px; padding: 15px 20px; border-bottom: 1px solid var(--hair); }
.inbox__bar svg { color: var(--indigo); }
.inbox__bar b { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; }
.inbox__new { margin-left: auto; font-family: ui-monospace, monospace; font-size: 0.74rem; color: var(--indigo); background: rgba(57,50,220,.1); padding: 4px 10px; border-radius: 999px; }
.lead-row { display: flex; align-items: center; gap: 14px; padding: 16px 20px; border-bottom: 1px solid #f0f2f6; }
.lead-row:last-child { border-bottom: none; }
.lead-row__avatar { width: 42px; height: 42px; flex: none; border-radius: 50%; display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; }
.lead-row__body { min-width: 0; flex: 1; }
.lead-row__name { font-family: var(--font-display); font-weight: 600; font-size: 1rem; display: flex; align-items: center; gap: 8px; }
.lead-row__vrf { font-size: 0.64rem; text-transform: uppercase; letter-spacing: .05em; color: var(--indigo); background: rgba(57,50,220,.1); padding: 2px 7px; border-radius: 999px; font-family: var(--font-body); font-weight: 600; }
.lead-row__meta { font-size: 0.85rem; color: var(--muted); margin-top: 2px; }
.lead-row__sig { font-size: 0.8rem; color: var(--indigo); margin-top: 5px; display: inline-flex; align-items: center; gap: 7px; }
.lead-row__sig::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); flex: none; }
.lead-row__time { font-family: ui-monospace, monospace; font-size: 0.72rem; color: var(--subtle); align-self: flex-start; }

@media (max-width: 860px) {
  .signals-split { grid-template-columns: 1fr; gap: 40px; }
  .signals-split .section__head { max-width: 100%; }
}

/* ---- convergence animation section (full labeled signal set) ---- */
.convergence { background: linear-gradient(180deg, #dde8f1 0%, #d2e0ea 100%); overflow: hidden; }
.convergence__head { text-align: center; max-width: 640px; margin-inline: auto; }
.convergence__head h2 { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 500; }
.convergence-stage { position: relative; width: 100%; max-width: 1000px; height: 700px; margin: 24px auto 0; }
#convergence-canvas { display: block; width: 100%; height: 100%; }
@media (max-width: 860px) { .convergence-stage { height: 560px; } }
@media (max-width: 600px) { .convergence-stage { height: 470px; } }

/* ---- demo video lightbox ("See how it works") ---- */
.vid-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .32s var(--ease), visibility .32s var(--ease);
}
.vid-modal.is-open { opacity: 1; visibility: visible; }
.vid-modal__backdrop { position: absolute; inset: 0; background: rgba(8,8,22,.8); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.vid-modal__frame {
  position: relative; z-index: 1; width: min(1040px, 100%);
  transform: translateY(14px) scale(.985); transition: transform .4s var(--ease-out);
}
.vid-modal.is-open .vid-modal__frame { transform: none; }
.vid-modal__player {
  width: 100%; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden;
  background: #000; box-shadow: 0 40px 120px -28px rgba(0,0,0,.75);
}
.vid-modal__player wistia-player { width: 100%; height: 100%; display: block; }
.vid-modal__close {
  position: absolute; top: -16px; right: -16px; z-index: 2; padding: 0;
  width: 42px; height: 42px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; color: var(--ink); border: none; cursor: pointer;
  box-shadow: 0 8px 22px -8px rgba(0,0,0,.55); transition: transform .2s var(--ease);
}
.vid-modal__close:hover { transform: scale(1.08); }
@media (max-width: 600px) {
  .vid-modal { padding: 14px; }
  .vid-modal__close { top: -14px; right: 2px; width: 38px; height: 38px; }
}
@media (prefers-reduced-motion: reduce) {
  .vid-modal, .vid-modal__frame { transition: none; }
  .vid-modal__frame { transform: none; }
}

