/* Spark — sparkmedia.app */

/* PolySans Median — Spark's brand typeface (real file, light brand refresh).
   Single static weight (Median ≈ 500); declared across the full weight range so
   every requested weight renders true PolySans with no synthetic faux-bold.
   Hierarchy comes from size, colour and spacing, not weight. */
@font-face {
  font-family: 'PolySans';
  src: url('./assets/fonts/PolySans-Median.woff2') format('woff2'),
       url('./assets/fonts/PolySans-Median.woff') format('woff');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* === Real Spark brand (from Figma Variables) — LIGHT theme === */
  --violet:    #6600FF;   /* violet 800, primary */
  --violet-2:  #822FFF;   /* violet 700 */
  --violet-600:#9A57FF;
  --violet-500:#AA71FF;
  --violet-400:#C197FF;
  --violet-300:#D4B7FF;
  --violet-200:#ECDFFF;
  --violet-100:#EDE9FB;
  --violet-50: #F6F4FD;
  --magenta:   #FF00CC;   /* magenta 800, secondary */
  --magenta-2: #FF5CDD;   /* lighter magenta for hover/accent */
  --magenta-ink: #BE0099; /* AA-compliant magenta for text on light (5.7:1) */

  --neutral-800: #1A0E23; /* primary text */
  --neutral-700: #5F5665; /* muted text */

  /* Surfaces */
  --ink: #FFFFFF;
  --ink-2: #F6F4FD;
  --ink-3: #EDE9FB;
  --ink-line: rgba(26, 14, 35, 0.10);
  --ink-line-2: rgba(26, 14, 35, 0.16);

  --paper: #FFFFFF;
  --bone: #F6F4FD;
  --cream: #FBFAFE;
  --sand: #ECDFFF;
  --rule: rgba(26, 14, 35, 0.10);
  --rule-2: rgba(26, 14, 35, 0.16);

  /* Text on light surfaces (token names kept; values flipped to dark-on-light) */
  --text: #1A0E23;
  --text-2: rgba(26, 14, 35, 0.70);
  --text-3: rgba(26, 14, 35, 0.64);
  --text-on-dark: #1A0E23;
  --text-on-dark-2: rgba(26, 14, 35, 0.70);
  --text-on-dark-3: rgba(26, 14, 35, 0.64);

  --grad: linear-gradient(120deg, #6600FF 0%, #FF00CC 100%);

  --sans: 'PolySans', 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --display: 'PolySans', 'Hanken Grotesk', system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'SFMono-Regular', Menlo, monospace;

  --maxw: 1280px;
  --pad: clamp(20px, 4vw, 56px);
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  --ease: cubic-bezier(.2, .7, 0, 1);
  --ease-out: cubic-bezier(.2, .9, .25, 1);

  /* Fluid type tokens. Tuned to scale smoothly 375px → 1920px viewport with a sensible cap. */
  --type-hero:       clamp(2.5rem,  3.5vw + 1.25rem, 5rem);     /* 40 → 80px */
  --type-display:    clamp(2rem,    2.5vw + 1.25rem, 3.5rem);   /* 32 → 56px */
  --type-display-xl: clamp(3rem,    4vw   + 1.5rem,  5.5rem);   /* 48 → 88px */
  --type-lede:       clamp(1.0625rem, 0.3vw + 1rem,  1.25rem);  /* 17 → 20px */
  --type-sub:        clamp(1.125rem,  0.4vw + 1rem,  1.375rem); /* 18 → 22px */
  --type-stage-name: clamp(1.125rem,  0.5vw + 1rem,  1.5rem);   /* 18 → 24px */
  --type-card-h:     clamp(1.0625rem, 0.4vw + 1rem,  1.25rem);  /* 17 → 20px */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; background: var(--ink); }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea { font: inherit; color: inherit; background: transparent; border: 0; outline: 0; }
::selection { background: var(--violet); color: #fff; }

/* ---------- Keyboard focus (visible for keyboard users only) ---------- */
a:focus-visible,
button:focus-visible,
select:focus-visible,
[role="radio"]:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 3px;
  border-radius: 6px;
}
/* Inputs/selects that explicitly removed their outline: restore a focus ring. */
input:focus-visible,
.capture__select:focus-visible,
.cta__inline-select:focus-visible,
.thanks__link-row input:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 2px;
}
/* Form pills: lift the whole container when a field inside has keyboard/mouse focus. */
.capture__field:focus-within {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(102,0,255,0.15), 0 18px 50px -22px rgba(102,0,255,0.30);
}
/* Disabled / loading buttons read as inert. */
button[disabled], .btn[disabled] { opacity: .6; cursor: not-allowed; box-shadow: none; }
/* Keep autofilled fields on-brand (no browser-yellow against the white pills). */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text);
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  caret-color: var(--text);
}

.cursor-halo {
  position: fixed;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 204, .12), rgba(102, 0, 255, .10) 35%, transparent 65%);
  filter: blur(20px);
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  z-index: 3; /* above the .sh-rise white panel (z1) so the glow shows over light sections, still below nav (z50) */
  opacity: 0;
  transition: opacity .5s ease;
  mix-blend-mode: multiply;
}
body.has-cursor .cursor-halo { opacity: .55; }
@media (max-width: 880px) { .cursor-halo { display: none; } }

.container { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding: clamp(60px, 7vw, 104px) 0; position: relative; }
.section--dark { background: var(--ink); color: var(--text-on-dark); }
.muted { color: var(--text-3); }
.section--dark .muted { color: var(--text-on-dark-3); }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.display {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--type-display);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  max-width: 22ch;
}
.display--light { color: var(--text-on-dark); }
.display--xl { font-size: var(--type-display-xl); line-height: 1.02; letter-spacing: -0.03em; }

.lede {
  font-size: var(--type-lede);
  line-height: 1.6;
  color: var(--text-2);
  max-width: 60ch;
  margin-bottom: 56px;
}
.lede--light { color: var(--text-on-dark-2); }

/* ---------- Sticky CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 32px -10px rgba(102, 0, 255, 0.42), 0 4px 12px rgba(26, 14, 35, 0.12);
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.sticky-cta:hover {
  filter: brightness(1.08);
}
@media (max-width: 600px) {
  .sticky-cta {
    bottom: 16px;
    right: 16px;
    padding: 11px 18px;
    font-size: 13.5px;
  }
}

/* ---------- Nav (Stripe / Linear pattern: logo + links left-anchored, CTA right) ---------- */
.nav {
  position: sticky; top: 0;
  z-index: 50;
  display: flex; align-items: center;
  gap: 36px;
  padding: 16px var(--pad);
  background: var(--ink);
  color: var(--text-on-dark);
  border-bottom: 1px solid transparent;
  transition: padding .25s ease, border-color .25s ease, background .25s ease;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-bottom-color: var(--ink-line);
  padding-top: 11px; padding-bottom: 11px;
}
.nav__brand {
  display: inline-flex; align-items: center;
  color: var(--text);
  flex-shrink: 0;
}
.nav__brand .nav__lockup {
  display: block;
  width: 100px; height: 30px;
  background-image: url("./assets/logo/lockup-black.svg");
  background-repeat: no-repeat;
  background-size: 195px 120px;
  background-position: -49px -45px;
}

.nav__links {
  display: flex; gap: 2px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .2s ease, background .2s ease;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--text); background: rgba(102, 0, 255, 0.06); }
.nav__links a.is-active { color: var(--violet); background: rgba(102, 0, 255, 0.08); }

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; min-height: 44px;
  background: var(--grad);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  margin-left: auto;
  flex-shrink: 0;
  box-shadow: 0 8px 20px -8px rgba(102,0,255,0.5);
  transition: transform .2s var(--ease), box-shadow .2s ease;
  will-change: transform;
}
.nav__cta:hover { box-shadow: 0 10px 26px -8px rgba(102,0,255,0.6); }

@media (max-width: 880px) {
  .nav { gap: 16px; padding-left: 20px; padding-right: 20px; }
  .nav__links { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: clamp(680px, 92vh, 920px);
  background: var(--ink);
  color: var(--text-on-dark);
  isolation: isolate;
  overflow: hidden;
  display: flex; align-items: center;
  padding: clamp(80px, 10vw, 130px) 0 clamp(80px, 10vw, 130px);
}

.hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 0%, transparent 80%);
  opacity: .55;
}

.orb {
  position: absolute;
  width: 1100px; height: 1100px;
  border-radius: 50%;
  pointer-events: none;
  contain: layout paint;
  filter: blur(24px);
}
.orb--violet {
  background: radial-gradient(circle at 50% 50%, rgba(102, 0, 255, 0.16) 0%, rgba(102, 0, 255, 0.05) 35%, rgba(102, 0, 255, 0) 65%);
  top: -30%; left: -25%;
  animation: float-a 22s ease-in-out infinite;
}
.orb--magenta {
  background: radial-gradient(circle at 50% 50%, rgba(255, 0, 204, 0.13) 0%, rgba(255, 0, 204, 0.04) 35%, rgba(255, 0, 204, 0) 65%);
  top: -15%; right: -30%;
  animation: float-b 26s ease-in-out infinite;
}
.orb.sm { width: 700px; height: 700px; filter: blur(16px); }

@keyframes float-a {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, 60px); }
}
@keyframes float-b {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-60px, 40px); }
}

.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  z-index: 1;
}

.hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--type-hero);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 24ch;
}

.hero__sub {
  font-size: var(--type-sub);
  line-height: 1.55;
  max-width: 60ch;
  color: var(--text-on-dark-2);
  margin-bottom: 44px;
}

.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 88px; }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .25s var(--ease), background .25s ease;
  position: relative;
  white-space: nowrap;
  will-change: transform;
}
.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 12px 30px rgba(102, 0, 255, 0.30);
}
.btn--primary:hover {
  box-shadow: 0 14px 38px rgba(102, 0, 255, 0.42);
}
.btn--ghost {
  color: var(--text);
  border: 1px solid var(--ink-line-2);
  background: transparent;
}
.btn--ghost:hover {
  background: rgba(102, 0, 255, 0.05);
  border-color: rgba(102, 0, 255, 0.30);
  color: var(--violet);
}
.btn--lg { padding: 18px 26px; font-size: 16px; }

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(40px, 6vw, 88px);
  padding-top: 44px;
  border-top: 1px solid var(--ink-line);
  max-width: 760px;
}
.hero__meta-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 2.8vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero__meta-lbl {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-on-dark-3);
}
@media (max-width: 600px) {
  .hero__meta { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* ---------- PROBLEM ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stat {
  padding: 44px 32px 44px 0;
  border-right: 1px solid var(--rule);
}
.stat:last-child { border-right: 0; padding-right: 0; }
.stat:not(:first-child) { padding-left: 32px; }
.stat__num {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 60px);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 16px;
}
.stat__lbl {
  font-size: 14px;
  color: var(--text-2);
}
@media (max-width: 880px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--rule); padding: 32px 0; }
  .stat:not(:first-child) { padding-left: 0; }
  .stat:last-child { border-bottom: 0; }
}

/* ---------- PRODUCT ---------- */
.product { background: var(--ink); color: var(--text-on-dark); overflow: hidden; }
.product__bg { position: absolute; inset: 0; z-index: 0; }
.product__bg .orb--violet { left: -10%; top: 20%; }
.product__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}
@media (max-width: 980px) {
  .product__inner { grid-template-columns: 1fr; gap: 80px; }
}

.product .display { color: var(--text-on-dark); margin-bottom: 28px; }

.bullets { list-style: none; display: flex; flex-direction: column; gap: 14px; max-width: 56ch; margin-top: 4px; }
.bullets li {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-on-dark-2);
  padding-left: 18px;
  position: relative;
}
.bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--violet);
}
.bullets li strong { color: var(--text-on-dark); font-weight: 600; }

/* ---------- Phone mockup ---------- */
.phone {
  position: relative;
  justify-self: center;
  width: clamp(280px, 28vw, 360px);
}
.phone__shot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 38px;
  transform: perspective(1600px) rotateY(-6deg) rotateX(2deg);
  transition: transform .8s var(--ease);
  filter: drop-shadow(0 50px 80px rgba(124, 58, 237, 0.18)) drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}
.phone:hover .phone__shot { transform: perspective(1600px) rotateY(-2deg) rotateX(0deg); }
.phone__shadow {
  position: absolute;
  bottom: -36px; left: 14%; right: 14%;
  height: 50px;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.32), transparent 70%);
  filter: blur(28px);
  z-index: -1;
}

/* ---------- LIFECYCLE ---------- */
.stages {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream);
}
.stage {
  padding: 32px 28px 30px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  background: var(--cream);
  transition: background .3s ease;
}
.stage:hover { background: #fff; }
.stage:nth-child(4n) { border-right: 0; }
.stage:nth-last-child(-n+4) { border-bottom: 0; }
.stage__num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--violet);
  margin-bottom: 18px;
}
.stage__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.012em;
  margin-bottom: 10px;
}
.stage__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-2);
  max-width: 32ch;
}
@media (max-width: 980px) {
  .stages { grid-template-columns: repeat(2, 1fr); }
  .stage:nth-child(4n) { border-right: 1px solid var(--rule); }
  .stage:nth-child(2n) { border-right: 0; }
  .stage:nth-last-child(-n+4) { border-bottom: 1px solid var(--rule); }
  .stage:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 560px) {
  .stages { grid-template-columns: 1fr; }
  .stage { border-right: 0 !important; border-bottom: 1px solid var(--rule) !important; }
  .stage:last-child { border-bottom: 0 !important; }
}

/* ---------- AGENTS ---------- */
.agents { background: var(--ink); }
.agents__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.agents__bg .orb--magenta { top: 20%; right: -20%; }
.agents .container { position: relative; z-index: 2; }
.agents__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink-line);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.agent {
  background: rgba(255, 255, 255, 0.015);
  padding: 28px 26px 26px;
  display: flex; flex-direction: column;
  position: relative;
  transition: background .3s ease;
  min-height: 180px;
}
.agent:hover {
  background: rgba(255, 255, 255, 0.035);
}
.agent h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  color: var(--text-on-dark);
}
.agent p {
  font-size: 14px;
  color: var(--text-on-dark-2);
  line-height: 1.55;
  max-width: 38ch;
}
.agents__more {
  margin-top: 28px;
  text-align: center;
  font-size: 13px;
  color: var(--text-on-dark-3);
  font-family: var(--mono);
  max-width: 56ch;
  margin-left: auto; margin-right: auto;
}
@media (max-width: 980px) {
  .agents__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .agents__grid { grid-template-columns: 1fr; }
}

/* ---------- ROLES ---------- */
.who {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.who__card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 32px 30px 30px;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s ease;
  min-height: 420px;
}
.who__card:hover {
  transform: translateY(-3px);
  border-color: var(--rule-2);
}
.who__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin-bottom: 14px;
}
.who__card p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 24px;
}
.who__card ul {
  list-style: none;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 10px;
}
.who__card li {
  font-size: 14px;
  color: var(--text);
  display: flex; gap: 10px;
  line-height: 1.45;
  padding-left: 16px;
  position: relative;
}
.who__card li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--violet);
}
@media (max-width: 980px) {
  .who { grid-template-columns: 1fr; }
  .who__card { min-height: 0; }
}

/* ---------- COMPARE ---------- */
.compare { background: var(--ink); }
.compare__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.compare__bg .orb--magenta { top: 30%; right: -25%; }
.compare .container { position: relative; z-index: 2; }
.compare__rows { margin-top: 56px; display: flex; flex-direction: column; gap: 1px; background: var(--ink-line); border: 1px solid var(--ink-line); border-radius: var(--r-md); overflow: hidden; }
.cmp {
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  padding: 28px 32px;
  align-items: center;
}
.cmp__cat {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.012em;
  color: var(--text-on-dark);
}
.cmp__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.cmp__col p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-on-dark-2);
}
.cmp__lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.cmp__col--us .cmp__lbl { color: var(--magenta-ink); }
.cmp__col--them .cmp__lbl { color: var(--text-on-dark-3); }
.cmp__col--us p { color: var(--text-on-dark); }
.cmp__col--them p { color: var(--text-on-dark-2); }

@media (max-width: 880px) {
  .cmp { grid-template-columns: 1fr; gap: 16px; padding: 24px 20px; }
  .cmp__cols { grid-template-columns: 1fr; gap: 20px; }
}

/* ---------- ADVISORS ---------- */
.advisors { background: var(--bone); }
.advisors__inner { text-align: center; }
.advisors .display { margin-left: auto; margin-right: auto; }
.advisors .lede { margin: 16px auto 0; max-width: 52ch; color: var(--text-2); }

.advisor-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 280px));
  gap: 24px;
  justify-content: center;
}
.advisor {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 36px 28px 28px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease;
}
.advisor:hover {
  transform: translateY(-3px);
  border-color: var(--rule-2);
  box-shadow: 0 12px 32px -16px rgba(10, 10, 15, 0.18);
}
.advisor__avatar {
  position: relative;
  width: 144px; height: 144px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 38px;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
  box-shadow: 0 10px 28px -10px rgba(124, 58, 237, 0.45);
  overflow: hidden;
  isolation: isolate;
}
.advisor__avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 50%;
  image-rendering: -webkit-optimize-contrast;
  z-index: 1;
}
.advisor__name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.012em;
  color: var(--text);
}
.advisor__role {
  font-size: 13px;
  color: var(--text-3);
  margin-top: 4px;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.advisor__handle {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--violet);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: var(--paper);
  transition: border-color .2s ease, color .2s ease;
}
.advisor__handle:hover {
  border-color: var(--violet);
  color: var(--magenta-ink);
}

@media (max-width: 600px) {
  .advisor-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  background: var(--void-2);
  color: var(--text);
  text-align: center;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid var(--ink-line);
}
.cta__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.cta__bg .orb--violet { top: -20%; left: 5%; }
.cta__bg .orb--magenta { bottom: -20%; right: 5%; }
.cta__bg .hero__grid { opacity: .4; }

.cta__inner {
  position: relative;
  text-align: center;
}
.cta .display { margin-left: auto; margin-right: auto; }
.cta .lede { margin-left: auto; margin-right: auto; max-width: 52ch; }

.cta__form {
  margin: 48px auto 24px;
  display: flex;
  gap: 8px;
  padding: 8px;
  background: #FFFFFF;
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  max-width: 580px;
  box-shadow: 0 18px 50px -20px rgba(102,0,255,0.22);
}
.cta__field {
  display: flex; align-items: center; gap: 6px;
  flex: 1;
  padding: 10px 16px;
  border-radius: 999px;
}
.cta__field-icon {
  color: var(--text-on-dark-3);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
}
.cta__field input {
  flex: 1;
  font-size: 15px;
  color: var(--text-on-dark);
  width: 100%;
}
.cta__field input::placeholder { color: var(--text-on-dark-3); }
.cta__form .btn { flex-shrink: 0; }

.cta__meta {
  font-size: 14px;
  color: var(--text-on-dark-3);
}
.cta__meta strong { color: var(--text-on-dark); font-weight: 600; }

@media (max-width: 720px) {
  .cta__form { flex-direction: column; border-radius: 24px; padding: 12px; }
  .cta__field { padding: 14px 16px; }
  .cta__form .btn { width: 100%; justify-content: center; }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--void-2);
  color: var(--text);
  border-top: 1px solid var(--ink-line);
}
.footer__inner { padding: 64px var(--pad) 28px; max-width: var(--maxw); margin: 0 auto; }
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(32px, 6vw, 80px);
  padding-bottom: 40px;
  border-bottom: 1px solid var(--ink-line);
}
.footer__lockup {
  display: block;
  width: 110px; height: 33px;
  background-image: url("./assets/logo/lockup-black.svg");
  background-repeat: no-repeat;
  background-size: 215px 132px;
  background-position: -54px -50px;
  margin-bottom: 14px;
}
.footer__tag { font-size: 14px; color: var(--text-on-dark-2); max-width: 32ch; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 360px;
}
.footer__col h6 {
  font-size: 12px;
  color: var(--text-on-dark-3);
  margin-bottom: 14px;
  font-weight: 600;
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--text-on-dark-2);
  padding: 5px 0;
  transition: color .2s ease;
}
.footer__col a:hover { color: var(--text-on-dark); }

.footer__bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: var(--text-on-dark-3);
}

@media (max-width: 880px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .footer__bot { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* ---------- Reveal ---------- */
/* Progressive enhancement: .reveal only hides when JS has confirmed it can
   animate. Otherwise (JS fails, runs late, observer breaks), content stays
   visible. The js-reveal class is added by app.js on initPage(). */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.js-reveal .reveal.is-in { opacity: 1; transform: translateY(0); }

.js-reveal .reveal-phone {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.js-reveal .reveal-phone.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js-reveal .reveal, .js-reveal .reveal-phone, .js-reveal .reveal-product { opacity: 1; transform: none; }
}

.agents__grid .agent { transition-delay: calc(var(--i, 0) * 50ms); }
.outcomes__grid .outcome { transition-delay: calc(var(--i, 0) * 50ms); }
.who .who__card { transition-delay: calc(var(--i, 0) * 80ms); }
.stages .stage { transition-delay: calc(var(--i, 0) * 50ms); }
.cmp { transition-delay: calc(var(--i, 0) * 60ms); }
.founding__item { transition-delay: calc(var(--i, 0) * 60ms); }
.faq__item { transition-delay: calc(var(--i, 0) * 30ms); }
.deal-pill { transition-delay: calc(var(--i, 0) * 25ms); }

/* ---------- DEAL TYPES ---------- */
.dealtypes { background: var(--bone); }
.dealtypes .display { max-width: 18ch; }
.dealtypes__grid {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 980px;
}
.deal-pill {
  display: inline-flex;
  align-items: center;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--rule);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text);
  transition: transform .25s var(--ease), border-color .25s ease, background .25s ease;
}
.deal-pill:hover {
  transform: translateY(-1px);
  border-color: var(--violet);
  background: #fff;
}
.dealtypes__note {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--text-3);
  letter-spacing: 0.02em;
}

/* ---------- Hero filter line ---------- */
.hero__filter {
  margin-top: -64px;
  margin-bottom: 88px;
  font-size: 13.5px;
  color: var(--text-on-dark-3);
  max-width: 56ch;
}

/* ---------- WHY NOW ---------- */
.whynow { background: var(--bone); }
.whynow .display { max-width: 22ch; }
.whynow__rows {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.whynow__row {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 32px 30px 28px;
  display: flex; flex-direction: column;
}
.whynow__h {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.012em;
  margin-bottom: 14px;
}
.whynow__row p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-2);
  margin-bottom: 14px;
}
.whynow__fix {
  margin-top: auto !important;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  color: var(--text) !important;
  font-size: 14.5px !important;
  margin-bottom: 0 !important;
}
.whynow__fix strong { color: var(--violet); font-weight: 600; }
.whynow__sources {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--text-3);
  letter-spacing: 0.01em;
  max-width: 84ch;
}
@media (max-width: 980px) {
  .whynow__rows { grid-template-columns: 1fr; }
}

/* ---------- HOW IT WORKS extras ---------- */
.how__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.how__bg .orb--violet { left: -10%; top: 30%; }
.how .container { position: relative; z-index: 2; }
.how__stages { background: rgba(255, 255, 255, 0.02); border-color: var(--ink-line); }
.how__stages .stage {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--ink-line);
  color: var(--text-on-dark);
}
.how__stages .stage:hover { background: rgba(255, 255, 255, 0.05); }
.how__stages .stage__num { color: var(--magenta-ink); }
.how__stages .stage__name { color: var(--text-on-dark); }
.how__stages .stage__desc { color: var(--text-on-dark-2); max-width: 38ch; }
.how__stages.stages { grid-template-columns: repeat(3, 1fr); }
.how__stages .stage:nth-child(3n) { border-right: 0; }
.how__stages .stage:nth-child(4n) { border-right: 1px solid var(--ink-line); }
.how__stages .stage:nth-last-child(-n+3) { border-bottom: 0; }
.how__addr {
  font-family: var(--mono);
  font-size: 0.92em;
  color: var(--magenta-ink);
  background: rgba(236, 72, 153, 0.08);
  padding: 1px 7px;
  border-radius: 6px;
  letter-spacing: -0.01em;
}
.how__fee {
  margin-top: 36px;
  text-align: center;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-on-dark-2);
  letter-spacing: 0.01em;
}
@media (max-width: 980px) {
  .how__stages.stages { grid-template-columns: repeat(2, 1fr); }
  .how__stages .stage:nth-child(2n) { border-right: 0; }
  .how__stages .stage:nth-child(3n) { border-right: 1px solid var(--ink-line); }
  .how__stages .stage:nth-last-child(-n+3) { border-bottom: 1px solid var(--ink-line); }
  .how__stages .stage:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 560px) {
  .how__stages.stages { grid-template-columns: 1fr; }
  .how__stages .stage { border-right: 0 !important; border-bottom: 1px solid var(--ink-line) !important; }
  .how__stages .stage:last-child { border-bottom: 0 !important; }
}

/* ---------- OUTCOMES (replaces old agents grid styling) ---------- */
.outcomes__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
}
.outcome {
  background: var(--cream);
  padding: 28px 26px 26px;
  display: flex; flex-direction: column;
  min-height: 200px;
  transition: background .3s ease;
}
.outcome:hover { background: #fff; }
.outcome h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  color: var(--text);
}
.outcome p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.55;
  max-width: 38ch;
}
@media (max-width: 980px) {
  .outcomes__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .outcomes__grid { grid-template-columns: 1fr; }
}

/* ---------- FOUNDER ---------- */
.founder { background: var(--bone); }
.founder__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}
.founder__eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--violet);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.founder .display { max-width: 18ch; }
.founder__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
  margin-bottom: 28px;
}
.founder__body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 60ch;
}
.founder__body p strong { color: var(--text); font-weight: 600; }
.founder__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-3);
}
.founder__links a {
  color: var(--violet);
  padding: 4px 8px;
  border-radius: 6px;
  transition: background .2s ease, color .2s ease;
}
.founder__links a:hover { background: rgba(124, 58, 237, 0.06); color: var(--magenta-ink); }
.founder__dot { color: var(--text-3); padding: 0 2px; }
.founder__sig {
  margin-top: 20px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-2);
  font-style: italic;
}

.founder__photo {
  position: sticky;
  top: 100px;
}
.founder__photo-frame {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(124, 58, 237, 0.10), rgba(236, 72, 153, 0.06)),
    var(--cream);
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.founder__photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 30% 20%, rgba(124, 58, 237, 0.16), transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 90%, rgba(236, 72, 153, 0.12), transparent 70%);
  pointer-events: none;
}
.founder__photo-placeholder {
  font-family: var(--display);
  font-weight: 600;
  font-size: 64px;
  letter-spacing: -0.025em;
  color: var(--text-3);
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .founder__inner { grid-template-columns: 1fr; gap: 48px; }
  .founder__photo { position: static; max-width: 320px; margin: 0 auto; }
}

/* ---------- ADVISORS extras ---------- */
.advisor__cred {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-2);
  margin: 12px 0 16px;
  max-width: 28ch;
}

/* ---------- FOUNDING CREATOR ---------- */
.founding { background: var(--ink); }
.founding__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.founding__bg .orb--violet { top: -20%; left: -10%; }
.founding__bg .orb--magenta { bottom: -30%; right: -20%; }
.founding__inner { position: relative; z-index: 2; }
.founding__eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--magenta-ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.founding .display { color: var(--text-on-dark); max-width: 18ch; }

.founding__list {
  list-style: none;
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  max-width: 920px;
}
.founding__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--ink-line);
}
.founding__item:nth-last-child(-n+2) { padding-bottom: 8px; }
.founding__num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--magenta-ink);
  line-height: 1;
}
.founding__body h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.012em;
  margin-bottom: 8px;
  color: var(--text-on-dark);
}
.founding__body p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-on-dark-2);
  max-width: 40ch;
}
.founding__cap {
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-on-dark-3);
  max-width: 64ch;
}
.founding__cta {
  display: inline-flex;
  margin-top: 36px;
}
@media (max-width: 880px) {
  .founding__list { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- FAQ ---------- */
.faq { background: var(--bone); }
.faq__inner { max-width: 880px; margin: 0 auto; }
.faq .display { max-width: 14ch; margin-bottom: 56px; }
.faq__list {
  display: flex;
  flex-direction: column;
}
.faq__item {
  border-top: 1px solid var(--rule);
  background: var(--cream);
  border-radius: 0;
  overflow: hidden;
}
.faq__item:first-child { border-top: 1px solid var(--rule); border-top-left-radius: var(--r-md); border-top-right-radius: var(--r-md); }
.faq__item:last-child { border-bottom: 1px solid var(--rule); border-bottom-left-radius: var(--r-md); border-bottom-right-radius: var(--r-md); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.012em;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: background .2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: var(--display);
  font-weight: 300;
  font-size: 26px;
  color: var(--text-3);
  line-height: 1;
  transition: transform .25s var(--ease), color .2s ease;
  flex-shrink: 0;
}
.faq__item[open] summary::after { content: '\2013'; color: var(--violet); transform: scale(1.1); }
.faq__item summary:hover { background: rgba(124, 58, 237, 0.04); }
.faq__answer {
  padding: 0 28px 24px;
  color: var(--text-2);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 72ch;
}
.faq__answer p { margin-bottom: 12px; }
.faq__answer p:last-child { margin-bottom: 0; }

/* ---------- CTA simplified ---------- */
.cta__btn { margin-top: 32px; }
.cta__filter {
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--text-on-dark-3);
}

/* ---------- FOOTER updates ---------- */
.footer__cols {
  grid-template-columns: repeat(3, 1fr);
  max-width: 540px;
}
.footer__sidedoor {
  padding: 28px 0;
  border-bottom: 1px solid var(--ink-line);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 13.5px;
}
.footer__sidedoor a {
  color: var(--text-on-dark-2);
  padding: 4px 8px;
  border-radius: 6px;
  transition: color .2s ease, background .2s ease;
}
.footer__sidedoor a:hover { color: var(--text-on-dark); background: rgba(255, 255, 255, 0.04); }
.footer__dot { color: var(--text-on-dark-3); padding: 0 4px; }

.footer__bot {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 16px;
  padding-top: 28px;
}
.footer__disclaimer {
  font-size: 12.5px;
  color: var(--text-on-dark-3);
  max-width: 64ch;
  line-height: 1.55;
}
.footer__legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 13px;
  color: var(--text-on-dark-3);
}
.footer__legal a {
  color: var(--text-on-dark-2);
  padding: 2px 6px;
  border-radius: 4px;
  transition: color .2s ease;
}
.footer__legal a:hover { color: var(--text-on-dark); }

@media (max-width: 720px) {
  .footer__cols { grid-template-columns: 1fr; gap: 24px; max-width: none; }
  .footer__sidedoor { gap: 0; }
}

/* =========================================================================
   v2.5 multi-persona additions (homepage, persona pages, multi-field waitlist)
   ========================================================================= */

/* Nav: active persona link */
.nav__links a.is-active {
  color: var(--text-on-dark);
  background: rgba(255, 255, 255, 0.06);
}

/* Hero eyebrow (used on persona + home heros) */
.hero__eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--violet);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-block;
  padding: 4px 12px;
  background: rgba(124, 58, 237, 0.10);
  border: 1px solid rgba(124, 58, 237, 0.30);
  border-radius: 999px;
}

/* Slightly tighter hero on persona pages so eyebrow has room */
.hero--persona { min-height: clamp(640px, 86vh, 880px); }
.hero--home    { min-height: clamp(640px, 86vh, 880px); }

/* Brand-specific orb tint */
.hero--brands .orb--violet  { opacity: 0.45; }
.hero--brands .orb--magenta { opacity: 0.30; }

/* Agent-specific orb tint */
.hero--agents .orb--magenta { opacity: 0.55; }
.hero--agents .orb--violet  { opacity: 0.35; }

/* ---------- WHAT SPARK DOES (editorial three-up on home) ---------- */
.whatdoes { background: var(--bone); }
.whatdoes .display { max-width: 22ch; }
.whatdoes .lede { max-width: 64ch; margin-bottom: 64px; }
.whatdoes__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
}
.whatdoes__item {
  padding-top: 18px;
  border-top: 1px solid var(--rule-2);
}
.whatdoes__item h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(20px, 1.6vw, 22px);
  letter-spacing: -0.015em;
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.25;
  max-width: 24ch;
}
.whatdoes__item p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 44ch;
}
@media (max-width: 980px) {
  .whatdoes__list { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- PERSONA PICKER ---------- */
.personas { background: var(--ink); color: var(--text-on-dark); position: relative; isolation: isolate; overflow: hidden; }
.personas__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.personas__bg .orb--violet { top: -10%; left: -10%; }
.personas__bg .orb--magenta { bottom: -20%; right: -10%; }
.personas .container { position: relative; z-index: 2; }
.personas .display { max-width: 22ch; }
.personas .lede { max-width: 56ch; margin-bottom: 48px; }

.personas__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
}

.persona-preview {
  display: block;
  background: #FFFFFF;
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  padding: 28px 28px 32px;
  text-decoration: none;
  color: var(--text);
  position: relative;
  box-shadow: 0 8px 30px -16px rgba(26,14,35,0.18);
  transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease;
  overflow: hidden;
}
.persona-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(102, 0, 255,0.07), rgba(255, 0, 204,0.03));
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.persona-preview:hover { transform: translateY(-4px); border-color: rgba(102, 0, 255, 0.30); box-shadow: 0 18px 44px -18px rgba(102,0,255,0.30); }
.persona-preview:hover::before { opacity: 1; }
.persona-preview__inner { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; min-height: 220px; }
.persona-preview__eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--magenta-ink);
  margin: 0;
}
.persona-preview__headline {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text-on-dark);
  margin: 4px 0 8px;
  max-width: 22ch;
}
.persona-preview__body {
  font-size: 14.5px;
  color: var(--text-on-dark-2);
  line-height: 1.55;
  margin: 0;
  max-width: 40ch;
}
.persona-preview__cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--violet);
  padding: 10px 16px;
  background: rgba(102, 0, 255, 0.06);
  border-radius: 999px;
  align-self: flex-start;
  transition: background .2s ease;
}
.persona-preview:hover .persona-preview__cta { background: rgba(102, 0, 255, 0.12); }

@media (max-width: 980px) { .personas__grid { grid-template-columns: 1fr; } }

/* ---------- MULTI-FIELD WAITLIST FORM (cta__form--v2) ---------- */
.cta__form--v2 {
  margin: 48px auto 24px;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.4fr auto;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--ink-line-2);
  border-radius: 18px;
  max-width: 880px;
  backdrop-filter: blur(10px);
  align-items: stretch;
  text-align: left;
}
.cta__form--v2 .cta__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  border-radius: 12px;
  transition: border-color .2s ease, background .2s ease;
}
.cta__form--v2 .cta__field:focus-within {
  border-color: rgba(236, 72, 153, 0.35);
  background: rgba(255, 255, 255, 0.06);
}
.cta__field-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text-on-dark-3);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.cta__form--v2 input,
.cta__form--v2 select {
  background: transparent;
  border: 0;
  outline: none;
  color: var(--text-on-dark);
  font-size: 15px;
  font-family: inherit;
  width: 100%;
  padding: 2px 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.cta__form--v2 input::placeholder { color: var(--text-on-dark-3); }
.cta__form--v2 select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 18px;
}
.cta__form--v2 select option {
  background: var(--ink-2);
  color: var(--text-on-dark);
}
.cta__submit {
  white-space: nowrap;
  height: 100%;
  align-self: stretch;
}
.cta__eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--magenta-ink);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

@media (max-width: 880px) {
  .cta__form--v2 { grid-template-columns: 1fr; padding: 14px; gap: 8px; border-radius: 22px; }
  .cta__form--v2 .cta__submit { width: 100%; }
}

/* ---------- ABOUT page ---------- */
.about-hero {
  position: relative;
  min-height: clamp(440px, 60vh, 560px);
  display: flex; align-items: center;
  isolation: isolate;
  overflow: hidden;
}
.about-hero__inner { position: relative; z-index: 2; padding: 60px 0; }
.about-hero .display { max-width: 22ch; margin-bottom: 24px; }
.about-hero .lede { max-width: 56ch; }

.about-snapshot { background: var(--ink-2); }
.about-snapshot .display { max-width: 24ch; margin-bottom: 40px; }
.about-snapshot__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink-line);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.about-snapshot__item {
  background: var(--ink-2);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 6px;
}
.about-snapshot__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -0.025em;
  color: var(--text-on-dark);
  line-height: 1;
}
.about-snapshot__lbl {
  font-size: 13px;
  color: var(--text-on-dark-3);
  line-height: 1.4;
}
@media (max-width: 880px) { .about-snapshot__grid { grid-template-columns: repeat(2, 1fr); } }

.about-contact { background: var(--bone); }
.about-contact .display { max-width: 22ch; margin-bottom: 40px; }
.about-contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.about-contact__card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color .2s ease, background .2s ease;
}
.about-contact__card:hover { border-color: var(--rule-2); background: #fff; }
.about-contact__card h3 {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 600;
}
.about-contact__card a {
  font-size: 15px;
  font-weight: 500;
  color: var(--violet);
  word-break: break-word;
  text-decoration: none;
}
.about-contact__card a:hover { color: var(--magenta-ink); }
@media (max-width: 880px) { .about-contact__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .about-contact__grid { grid-template-columns: 1fr; } }

/* ---------- LEGAL pages (privacy, terms) ---------- */
.legal {
  background: var(--bone);
  min-height: 70vh;
}
.legal__inner { max-width: 720px; margin: 0 auto; padding-top: 40px; }
.legal__meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.legal h1.display {
  font-size: clamp(36px, 4vw, 48px);
  margin-bottom: 40px;
  letter-spacing: -0.025em;
}
.legal__body h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--text);
}
.legal__body p, .legal__body li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-2);
  max-width: none;
  margin-bottom: 14px;
}
.legal__body ul {
  margin-left: 22px;
  margin-bottom: 18px;
}
.legal__body li::marker { color: var(--violet); }
.legal__body p strong { color: var(--text); font-weight: 600; }
.legal__body a {
  color: var(--violet);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal__body a:hover { color: var(--magenta-ink); }
.legal__draft {
  margin-top: 48px;
  padding: 18px 22px;
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.20);
  border-radius: var(--r-md);
  font-size: 13.5px;
}

/* ============================================================
   LIVE-COPY MIRROR PATTERNS (creators, brands, agents)
   ============================================================ */

/* ---------- Feature row (eyebrow + display + lede, alternating bg) ----------
   IMPORTANT: featrow__inner inherits .container (max-width: var(--maxw),
   margin: 0 auto) so it shares the EXACT same horizontal axis as the hero.
   Content text caps at 22ch (headlines) and 62ch (body) for readability,
   but the LEFT EDGE never moves between sections. This is the 2026 pattern
   used by Linear, Stripe, Vercel: one container axis, left-anchored content.
*/
.featrow { position: relative; overflow: hidden; isolation: isolate; }
.featrow__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.featrow__bg .orb--violet { top: -10%; right: -15%; }
.featrow__bg .orb--magenta { top: 10%; right: -15%; }
.featrow__inner { text-align: left; }
.featrow .display { max-width: 22ch; margin-bottom: 22px; }
.featrow .display--light { color: var(--text-on-dark); }
.featrow .lede { max-width: 62ch; font-size: 17px; line-height: 1.6; }
.featrow__eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--violet);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}
.featrow__eyebrow--light { color: var(--magenta-ink); }

/* ---------- Lifecycle (numbered before/after pairs) ---------- */
.lifecycle {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.lifecycle__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.lifecycle__step:last-child { border-bottom: 1px solid var(--rule); }
.lifecycle__num {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--violet);
  letter-spacing: 0.04em;
  padding-top: 6px;
}
.lifecycle__body h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.018em;
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.15;
}
.lifecycle__before {
  font-size: 15px;
  color: var(--text-3);
  line-height: 1.55;
  margin-bottom: 8px;
  max-width: 60ch;
}
.lifecycle__after {
  font-size: 16px;
  color: var(--text);
  line-height: 1.55;
  margin: 0;
  max-width: 60ch;
}
.lifecycle__after::before {
  content: "↳ ";
  color: var(--magenta-ink);
  margin-right: 4px;
}
.lifecycle--three .lifecycle__step { padding: 28px 0; }
.lifecycle--three .lifecycle__after::before { content: none; }
@media (max-width: 600px) {
  .lifecycle__step { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .lifecycle__num { padding-top: 0; }
}

/* ---------- Brand benefits (3-up dark card grid) ---------- */
.brandbenefits { position: relative; overflow: hidden; isolation: isolate; }
.brandbenefits__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.brandbenefits__bg .orb--violet { top: 50%; left: -10%; }
.brandbenefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.brandbenefit {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  padding: 28px 28px 30px;
  transition: border-color .25s ease, background .25s ease, transform .25s var(--ease);
}
.brandbenefit:hover {
  border-color: rgba(236, 72, 153, 0.30);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-3px);
}
.brandbenefit h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.014em;
  color: var(--text-on-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}
.brandbenefit p {
  font-size: 14.5px;
  color: var(--text-on-dark-2);
  line-height: 1.55;
}
@media (max-width: 980px) { .brandbenefits__grid { grid-template-columns: 1fr; } }

/* ---------- Less overhead (4-up cream card grid) ---------- */
.lessoverhead { background: var(--bone); }
.lessoverhead .display { max-width: 22ch; margin-bottom: 40px; }
.lessoverhead__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.lessoverhead__item {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 24px 26px 26px;
  transition: border-color .2s ease, background .2s ease;
}
.lessoverhead__item:hover { border-color: var(--rule-2); background: #fff; }
.lessoverhead__item h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.012em;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.25;
}
.lessoverhead__item p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.55;
}
@media (max-width: 720px) { .lessoverhead__grid { grid-template-columns: 1fr; } }

/* ---------- Coming soon (two-up cards, light + dark variants) ---------- */
.soon { position: relative; overflow: hidden; isolation: isolate; }
.soon__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.soon__bg .orb--magenta { bottom: -30%; right: -15%; }
.soon__eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--violet);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.soon__eyebrow--light { color: var(--magenta-ink); }
.soon .display { max-width: 22ch; margin-bottom: 36px; }
.soon__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.soon__card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 26px 28px 28px;
  position: relative;
  transition: border-color .2s ease, background .2s ease;
}
.soon__card:hover { border-color: var(--rule-2); background: #fff; }
.soon__card h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.012em;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.25;
}
.soon__card p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.55;
}
.soon__card--dark {
  background: rgba(255, 255, 255, 0.025);
  border-color: var(--ink-line);
}
.soon__card--dark:hover { background: rgba(255, 255, 255, 0.04); border-color: rgba(236, 72, 153, 0.30); }
.soon__card--dark h3 { color: var(--text-on-dark); }
.soon__card--dark p { color: var(--text-on-dark-2); }
@media (max-width: 720px) { .soon__grid { grid-template-columns: 1fr; } }

/* ============================================================
   DAY 1-3 ADDITIONS: simplified inline waitlist form, mobile,
   thanks page (referral queue mechanic), error states.
   ============================================================ */

/* ---------- Inline waitlist form (email + button on one row) ---------- */
.cta__form--inline {
  margin: 36px auto 18px;
  max-width: 520px;
  display: flex; flex-direction: column;
  gap: 10px;
  position: relative;
}
.cta__persona-row {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-on-dark-3);
}
.cta__persona-label {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-2);
}
.cta__inline-select {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--text-on-dark);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--ink-line-2);
  border-radius: 999px;
  padding: 8px 26px 8px 14px;
  cursor: pointer;
  min-height: 40px;
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-on-dark-2) 50%), linear-gradient(135deg, var(--text-on-dark-2) 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 10px) 50%;
  background-size: 4px 4px, 4px 4px;
  background-repeat: no-repeat;
  padding-right: 26px;
}
.cta__inline-select:focus {
  outline: none;
  border-color: var(--violet-2);
  background-color: rgba(255,255,255,0.10);
}
.cta__inline-select option {
  background: var(--ink-2);
  color: var(--text-on-dark);
}

.cta__inline {
  display: flex;
  gap: 8px;
  padding: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--ink-line-2);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color .25s ease, background .25s ease;
}
.cta__inline:focus-within {
  border-color: var(--violet-2);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 4px rgba(124, 58, 237,0.15);
}
.cta__inline input[type="email"] {
  flex: 1;
  min-width: 0; /* allow shrink in flex */
  border: 0;
  background: transparent;
  color: var(--text-on-dark);
  font-size: 16px; /* >= 16px stops iOS zoom on focus */
  font-family: var(--sans);
  padding: 12px 16px;
}
.cta__inline input[type="email"]::placeholder {
  color: var(--text-on-dark-3);
}
.cta__inline input[type="email"]:focus { outline: none; }
.cta__inline .cta__submit {
  flex-shrink: 0;
  white-space: nowrap;
}
.cta__inline .cta__submit[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.cta__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}
.cta__form-error {
  font-size: 13px;
  color: #ff8a9d;
  text-align: center;
  margin: 0;
  min-height: 18px;
  opacity: 0;
  transition: opacity .2s ease;
}
.cta__form-error.is-visible { opacity: 1; }

@media (max-width: 600px) {
  .cta__form--inline { margin: 28px auto 14px; max-width: 100%; }
  .cta__inline {
    flex-direction: column;
    border-radius: 18px;
    padding: 10px;
    gap: 6px;
  }
  .cta__inline input[type="email"] { padding: 14px 14px; text-align: left; }
  .cta__inline .cta__submit { width: 100%; justify-content: center; padding: 14px 18px; }
}

/* ---------- THANKS page (post-signup share screen) ---------- */
.thanks {
  position: relative;
  background: var(--ink);
  color: var(--text-on-dark);
  min-height: 90vh;
  display: flex; align-items: center;
  isolation: isolate;
  overflow: hidden;
}
.thanks__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.thanks__bg .orb--violet { top: -20%; left: 5%; }
.thanks__bg .orb--magenta { bottom: -20%; right: 5%; }
.thanks__bg .hero__grid { opacity: .35; }
.thanks__inner {
  text-align: center;
  padding: 60px 0;
  position: relative;
  z-index: 2;
}
.thanks__eyebrow {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--magenta-ink);
  margin-bottom: 18px;
}
.thanks .display { max-width: 18ch; margin: 0 auto 18px; }
.thanks .lede { max-width: 56ch; margin: 0 auto 40px; }

.thanks__card {
  max-width: 640px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  padding: 36px 36px 32px;
  box-shadow: 0 24px 60px -32px rgba(26,14,35,0.24);
  text-align: left;
}
.thanks__card + .thanks__card { margin-top: 16px; }
.thanks__position {
  text-align: center;
}
.thanks__position-label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-3);
  margin-bottom: 6px;
}
.thanks__position-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(56px, 9vw, 84px);
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.thanks__position-meta {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-on-dark-3);
}

.thanks__share-label {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.012em;
  color: var(--text-on-dark);
  margin-bottom: 6px;
}
.thanks__share-sub {
  font-size: 14px;
  color: var(--text-on-dark-2);
  margin-bottom: 18px;
  line-height: 1.5;
}

.thanks__link-row {
  display: flex; gap: 8px;
  margin-bottom: 16px;
}
.thanks__link-row input {
  flex: 1;
  min-width: 0;
  background: #FFFFFF;
  border: 1px solid var(--ink-line);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text);
}
.thanks__link-row input:focus {
  outline: none;
  border-color: var(--violet-2);
}
.btn--sm { padding: 10px 14px; font-size: 13px; }

.thanks__share-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.thanks__share-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--violet);
  background: rgba(102,0,255,0.06);
  border: 1px solid rgba(102,0,255,0.18);
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
  white-space: nowrap;
}
.thanks__share-btn:hover {
  background: rgba(102,0,255,0.12);
  border-color: var(--violet);
  transform: translateY(-1px);
  color: var(--violet);
}
.thanks__share-btn--whatsapp { color: #0a8d4b; background: rgba(10,141,75,0.07); border-color: rgba(10,141,75,0.20); }
.thanks__share-btn--whatsapp:hover { background: rgba(10,141,75,0.13); border-color: #0a8d4b; color: #0a8d4b; }

.thanks__retain { font-size: 12.5px; line-height: 1.5; color: var(--text-3); margin: 16px 0 0; text-align: center; }

/* Referral reward ladder */
.rewards { text-align: left; margin: 0 0 22px; padding: 0; }
.rewards__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; }
.rewards__label { font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--text); }
.rewards__count { font-size: 13px; color: var(--text-2); }
.rewards__count b { color: var(--violet); font-weight: 700; font-size: 15px; }
.rewards__ladder { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.rewards__tier { display: flex; align-items: flex-start; gap: 13px; padding: 9px 0; position: relative; }
.rewards__mark {
  flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%; margin-top: 1px;
  border: 2px solid var(--ink-line-2); background: #fff; position: relative; transition: all .2s ease;
}
/* connector line between markers */
.rewards__tier:not(:last-child) .rewards__mark::after {
  content: ""; position: absolute; left: 50%; top: 20px; transform: translateX(-50%);
  width: 2px; height: 28px; background: var(--ink-line-2);
}
.rewards__body b { display: block; font-size: 14.5px; font-weight: 600; color: var(--text-2); letter-spacing: -0.01em; transition: color .2s ease; }
.rewards__body b em { font-style: normal; color: var(--violet); }
.rewards__body small { display: block; font-size: 12px; color: var(--text-3); margin-top: 1px; }
/* unlocked */
.rewards__tier.is-unlocked .rewards__mark { background: var(--grad); border-color: transparent; }
.rewards__tier.is-unlocked .rewards__mark::before {
  content: ""; position: absolute; inset: 0; background: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8.5l2.5 2.5 6-6' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8.5l2.5 2.5 6-6' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
}
.rewards__tier.is-unlocked .rewards__mark::after { background: var(--violet-300); }
.rewards__tier.is-unlocked .rewards__body b { color: var(--text); }
/* next milestone */
.rewards__tier.is-next .rewards__mark { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(102,0,255,0.14); }
.rewards__tier.is-next .rewards__body b { color: var(--text); }

/* Priority qualification (progressive profiling) */
.thanks__profile { text-align: left; margin-top: 18px; }
.thanks__profile-title { font-family: var(--display); font-weight: 600; font-size: 20px; letter-spacing: -0.015em; color: var(--text); margin: 0 0 6px; }
.thanks__profile-sub { font-size: 14px; line-height: 1.55; color: var(--text-2); margin: 0 0 20px; }
.thanks__field { display: block; margin-bottom: 16px; }
.thanks__field-label { display: block; font-size: 12.5px; font-weight: 600; color: var(--text-2); margin-bottom: 8px; }
.thanks__field input {
  width: 100%; background: #FFFFFF; border: 1px solid var(--ink-line);
  border-radius: 12px; padding: 13px 16px; font-family: var(--sans);
  font-size: 16px; color: var(--text);
}
.thanks__field input::placeholder { color: var(--text-3); }
.thanks__field input:focus { outline: none; border-color: var(--violet); box-shadow: 0 0 0 3px rgba(102,0,255,0.12); }
.thanks__toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.thanks__toggle-opt {
  font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--text-2);
  background: #FFFFFF; border: 1px solid var(--ink-line); border-radius: 12px;
  padding: 13px 12px; cursor: pointer; transition: all .18s ease; line-height: 1.25;
}
.thanks__toggle-opt:hover { border-color: var(--violet-300); }
.thanks__toggle-opt.is-active { color: var(--violet); border-color: var(--violet); background: rgba(102,0,255,0.06); box-shadow: 0 0 0 1px var(--violet) inset; }
.thanks__profile-submit { width: 100%; justify-content: center; margin-top: 6px; }
.thanks__profile-done { font-size: 14.5px; font-weight: 600; color: #0a8d4b; margin: 4px 0 0; text-align: center; }
@media (max-width: 600px) { .thanks__toggle { grid-template-columns: 1fr; } }

.thanks__fallback {
  max-width: 480px;
  margin: 0 auto;
  font-size: 14px;
  color: var(--text-on-dark-2);
}
.thanks__back {
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-on-dark-3);
}
.thanks__back a {
  color: var(--text-on-dark-2);
  border-bottom: 1px dashed rgba(255,255,255,0.20);
  text-decoration: none;
}
.thanks__back a:hover { color: var(--text-on-dark); border-bottom-color: var(--text-on-dark); }

@media (max-width: 600px) {
  .thanks__card { padding: 28px 22px 24px; }
  .thanks__share-buttons { grid-template-columns: 1fr; }
  .thanks__link-row { flex-direction: column; }
  .thanks__link-row .btn--sm { width: 100%; }
}

/* ---------- Mobile hero compression (Day 2: get email field above the fold) ---------- */
@media (max-width: 600px) {
  /* Reduce hero min-height on mobile so the CTA section is reachable faster */
  .hero { min-height: auto !important; }
  .hero--persona, .hero--home { min-height: clamp(440px, 70vh, 600px) !important; }
  /* Tighten section padding on mobile */
  .section { padding: 60px 0 !important; }
  /* Hero title sizing */
  .hero__title { font-size: clamp(36px, 9vw, 48px) !important; line-height: 1.04; }
  .hero__sub { font-size: 16px !important; }
  /* CTA button on mobile: full-width comfortable tap target */
  .hero__ctas .btn { padding: 14px 22px; font-size: 15px; }
  /* Ensure all buttons meet 44x44 minimum tap target */
  .btn { min-height: 44px; }
}



