/* 723 Labs — Flagship brand site. Mobile-first. Lime/dark operating-layer system. */

:root {
  --bg: #0a0b10;
  --bg-soft: #11131b;
  --panel: #171a24;
  --panel-2: #202431;
  --text: #f7f7f2;
  --muted: #a9adba;
  --muted-2: #7e8493;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.22);
  --green: #b7ff3c;
  --green-2: #66f26f;
  --cream: #fff6dd;
  --cream-card-surface:
    linear-gradient(180deg, rgba(255, 255, 248, 0.96) 0%, rgba(241, 234, 207, 0.78) 100%),
    rgba(255, 246, 221, 0.5);
  --cream-card-border: rgba(6, 7, 10, 0.07);
  --cream-card-shadow: 0 22px 54px rgba(66, 57, 30, 0.14), inset 0 1px rgba(255, 255, 255, 0.92);
  --ink: #06070a;
  --danger: #ff5f57;
  --blue: #5aa7ff;
  --black-0: #05060a;
  --black-1: #07080d;
  --black-2: #0d1017;
  --green-deep: #13210f;
  --green-dim: #477500;
  --lime-glow: rgba(183, 255, 60, 0.18);
  --cream-warm: #fff0c8;
  --cream-muted: #ede2c5;
  --graphite: #1c202b;
  --line-ink: rgba(6, 7, 10, 0.1);
  --line-ink-strong: rgba(6, 7, 10, 0.18);
  --dark-card-surface:
    linear-gradient(180deg, rgba(28, 32, 43, 0.92), rgba(23, 26, 36, 0.84));
  --dark-card-border: rgba(255, 255, 255, 0.13);
  --dark-card-shadow: 0 20px 48px rgba(0, 0, 0, 0.48), inset 0 1px rgba(255, 255, 255, 0.06);
  /* UI-looking assets are never background images; backgrounds stay texture, atmosphere, or motif only. */
  --asset-command-dark: url("assets/design-system/backgrounds/command-dark-genspark-v2.webp");
  --asset-machine-dark: url("assets/design-system/backgrounds/machine-dark-stage-genspark-v2.webp");
  --asset-hero-proof-transition: url("assets/design-system/transitions/hero-proof-transition-band-genspark-v1.webp");
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --fs-hero: clamp(2.8rem, 10.5vw, 6.2rem);
  --fs-h2: clamp(2.4rem, 8vw, 3.4rem);
  --fs-lead: clamp(1.05rem, 4vw, 1.25rem);
  --fs-body: 1rem;
  --fs-small: 0.85rem;
  --fs-caption: 0.72rem;
  --fs-micro: 0.62rem;
  --max: 1180px;
  --page-pad: clamp(18px, 4vw, 54px);
  --section-pad: clamp(46px, 8vw, 92px);
  --section-pad-lg: clamp(64px, 10vw, 124px);
  --content-gutter: clamp(36px, 8vw, 108px);
  --content-spine: min(var(--max), calc(100% - var(--content-gutter)));
  --header-height: 68px;
  --scene-r: 10;
  --scene-g: 11;
  --scene-b: 16;
  --scene-cream: 0;
  --scene-low: 0;
}

* { box-sizing: border-box; min-width: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: rgb(var(--scene-r) var(--scene-g) var(--scene-b));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 110%, rgba(255, 246, 221, calc(var(--scene-cream) * 0.24)), transparent 58%),
    radial-gradient(circle at 50% 18%, rgba(5, 6, 10, calc(var(--scene-low) * 0.42)), transparent 46%);
}

body::selection { color: var(--ink); background: var(--green); }

img, svg, video, picture { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px; top: 16px;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--green);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
}
.skip-link:focus { transform: translateY(0); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(16px, 4vw, 54px);
  /* Floats clean on the page at rest — the hairline and glass only arrive
     once you scroll. */
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transform: translate3d(0, 0, 0);
  transition: border-color 220ms ease, background 220ms ease, backdrop-filter 220ms ease, opacity 180ms ease; /* transform is scroll-locked: the hero video pushes the nav out mechanically */
}
.site-header.is-scrolled { background: rgba(10, 11, 16, 0.78); backdrop-filter: blur(18px); border-color: var(--line); }
body.is-in-low .site-header {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, calc(-100% - 14px), 0);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 950;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  min-width: 50px;
  min-height: 33px;
  padding: 0 8px;
  color: var(--ink);
  background: var(--green);
  border-radius: 12px;
  font-weight: 1000;
  letter-spacing: -0.02em;
  transform: rotate(-2deg);
  box-shadow: 0 0 0 5px rgba(183, 255, 60, 0.08);
}
.brand-name { color: var(--text); font-size: var(--fs-body); }

.menu-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 850;
  text-transform: lowercase;
}
.menu-button i, .menu-button i::before, .menu-button i::after {
  display: block; width: 28px; height: 3px; background: var(--text); border-radius: 999px;
}
.menu-button i { position: relative; }
.menu-button i::before, .menu-button i::after { content: ""; position: absolute; left: 0; }
.menu-button i::before { top: -8px; }
.menu-button i::after { top: 8px; }

.site-nav {
  position: fixed;
  top: var(--header-height);
  right: 14px; left: 14px;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  padding: 14px;
  background: rgba(17, 19, 27, 0.98);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  color: var(--muted);
  font-weight: 800;
}
.site-nav.is-open { display: flex; }
.site-nav a { padding: 13px 14px; border-radius: 14px; background: rgba(255, 255, 255, 0.04); transition: color 160ms ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--text); }
.nav-cta,
.site-nav .nav-cta {
  /* .site-nav .nav-cta outranks the dropdown's .site-nav a background at
     every width — the CTA stays green on mobile (was ink-on-dark). */
  color: var(--ink) !important;
  background: var(--green);
  text-align: center;
  font-weight: 950;
  box-shadow: 0 10px 28px rgba(183, 255, 60, 0.16);
}

/* ---------- Typography ---------- */
.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: var(--fs-caption);
  font-weight: 950;
  letter-spacing: 0.16em;
  line-height: 1.35;
  overflow-wrap: break-word;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -0.055em; line-height: 0.94; }
h1 {
  margin-bottom: clamp(16px, 3vw, 24px);
  font-size: var(--fs-hero);
  font-weight: 1000;
  text-wrap: balance;
  overflow-wrap: break-word;
}
h2 {
  margin-bottom: 18px;
  font-size: var(--fs-h2);
  font-weight: 1000;
  text-wrap: balance;
  overflow-wrap: break-word;
}
h3 { margin-bottom: 10px; font-size: var(--fs-lead); line-height: 1.05; letter-spacing: -0.04em; }
.hl { box-shadow: inset 0 -0.28em rgba(183, 255, 60, 0.5); }
.text-mark {
  color: inherit;
  box-shadow: inset 0 -0.24em rgba(183, 255, 60, 0.56);
}
.mobile-text { display: none; }

/* ---------- Buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 15px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 950;
  letter-spacing: -0.015em;
  cursor: pointer;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary, .button-form {
  color: var(--ink);
  background: var(--green);
  box-shadow: 0 14px 30px rgba(183, 255, 60, 0.14);
}
.button-primary:hover, .button-form:hover,
.button-primary:focus-visible, .button-form:focus-visible { box-shadow: 0 18px 38px rgba(183, 255, 60, 0.22); }

/* ---------- Layout ---------- */
.section { padding: var(--section-pad-lg) 0; scroll-margin-top: calc(var(--header-height) + 18px); }
.section-wrap { width: var(--content-spine); margin: 0 auto; }
.section-heading { max-width: 820px; margin-bottom: clamp(30px, 8vw, 54px); }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading > p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: var(--fs-lead); line-height: 1.5; }
.section-heading.centered > p:not(.eyebrow) { max-width: 620px; margin: 0 auto; }

.copy-stack { display: grid; gap: 16px; color: #d8d9df; font-size: var(--fs-lead); }
.copy-stack p { margin: 0; }
.copy-stack strong { color: var(--text); }
.copy-stack em { color: var(--green); font-style: normal; }

/* ---------- Cards (shared surface) ---------- */
.phone-card, .start-form-card, .numbers-card, .thanks-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  padding: calc(var(--header-height) + clamp(54px, 10vw, 92px)) 0 clamp(68px, 9vw, 106px);
  overflow: hidden;
  background: var(--black-0);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 10, 0.96) 0%, rgba(5, 6, 10, 0.9) 36%, rgba(5, 6, 10, 0.66) 68%, rgba(5, 6, 10, 0.5) 100%),
    linear-gradient(180deg, rgba(5, 6, 10, 0.3) 0%, rgba(5, 6, 10, 0.1) 48%, rgba(5, 6, 10, 0.82) 100%),
    var(--asset-command-dark);
  background-position: center top;
  background-size: cover;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  height: clamp(112px, 14vw, 210px);
  background:
    linear-gradient(180deg, rgba(5, 6, 10, 0) 0%, rgba(5, 6, 10, 0.62) 44%, rgba(5, 6, 10, 0.02) 45%),
    var(--asset-hero-proof-transition) center bottom / cover no-repeat;
  opacity: 0.72;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 24%, #000 100%);
}
.hero-noise {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.24;
  mix-blend-mode: screen;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 92%);
  animation: hero-routes 36s linear infinite;
}
.hero-noise::before,
.hero-noise::after {
  content: "";
  position: absolute;
  inset: 14% 8% 22%;
  background:
    radial-gradient(circle at 18% 28%, rgba(183, 255, 60, 0.22), transparent 2.2%),
    radial-gradient(circle at 54% 18%, rgba(255, 246, 221, 0.12), transparent 1.8%),
    radial-gradient(circle at 78% 56%, rgba(183, 255, 60, 0.16), transparent 2%),
    radial-gradient(circle at 36% 72%, rgba(255, 246, 221, 0.1), transparent 1.7%);
  filter: blur(0.2px);
  opacity: 0.72;
  animation: hero-glow-drift 42s ease-in-out infinite alternate;
}
.hero-noise::after {
  inset: 22% 14% 18%;
  opacity: 0.38;
  animation-duration: 54s;
  animation-direction: alternate-reverse;
}
.hero-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: min(var(--max), calc(100% - 36px));
  min-height: clamp(360px, 47vh, 520px);
  margin: 0 auto;
}
.hero-split {
  display: grid;
  justify-items: center;
  gap: clamp(34px, 8vw, 58px);
  align-items: center;
}
.hero-copy {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}
.hero-subhead {
  max-width: 620px;
  margin: 0 auto clamp(24px, 5vw, 34px);
  color: #d8d9de;
  font-size: var(--fs-lead);
  line-height: 1.38;
  text-wrap: pretty;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.hero-actions .button-primary {
  animation: cta-breathe 3.8s ease-in-out infinite;
}

@keyframes cta-breathe {
  0%, 100% {
    box-shadow: 0 14px 30px rgba(183, 255, 60, 0.14);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 18px 42px rgba(183, 255, 60, 0.28), 0 0 34px rgba(183, 255, 60, 0.14);
    transform: translateY(-1px);
  }
}

@keyframes hero-routes {
  from { background-position: 0 0, 0 0; }
  to { background-position: 56px 84px, 84px 56px; }
}

@keyframes hero-glow-drift {
  from { transform: translate3d(-1.2%, 0.6%, 0); }
  to { transform: translate3d(1.6%, -1%, 0); }
}

.phone-card {
  position: relative;
  width: min(100%, 304px);
  padding: 10px;
  border-radius: 56px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.045) 17%, rgba(0, 0, 0, 0.55) 58%, rgba(255, 255, 255, 0.12)),
    #151922;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.56), 0 0 70px rgba(183, 255, 60, 0.06);
}
.phone-card::before {
  content: ""; position: absolute; top: 18px; left: 50%; z-index: 4;
  width: 92px; height: 25px; border-radius: 999px; background: #05060a;
  transform: translateX(-50%); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}
.phone-card::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 132px;
  width: 3px;
  height: 78px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}
.phone-screen {
  min-height: 588px;
  overflow: hidden;
  border-radius: 46px;
  background:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 17, 25, 0.96), rgba(8, 10, 15, 0.99));
  background-size: 52px 52px, 52px 52px, 100% 100%;
  border: 1px solid rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.7), inset 0 -38px 76px rgba(0, 0, 0, 0.34);
}
.phone-top {
  display: grid; grid-template-columns: 54px 1fr 54px; align-items: start;
  min-height: 118px;
  padding: 36px 15px 11px;
  background: rgba(10, 12, 18, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.phone-top p {
  display: grid;
  justify-items: center;
  gap: 5px;
  margin: 0;
  text-align: center;
  font-size: var(--fs-caption);
  font-weight: 900;
  color: #e8e9ee;
}
.phone-top p::before {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 246, 221, 0.95) 0 24%, transparent 25%),
    radial-gradient(circle at 50% 74%, rgba(255, 246, 221, 0.9) 0 34%, transparent 35%),
    linear-gradient(145deg, rgba(183, 255, 60, 0.9), rgba(102, 242, 111, 0.56));
  box-shadow: 0 0 0 4px rgba(183, 255, 60, 0.09);
}
.phone-time { color: #f0f1f4; font-size: var(--fs-caption); font-weight: 900; padding-top: 4px; }
.phone-status { justify-self: end; color: var(--green); font-size: var(--fs-caption); font-weight: 900; padding-top: 4px; }
.thread {
  display: flex; flex-direction: column; gap: 7px;
  min-height: 470px;
  padding: 12px 14px 14px;
}
.bubble { width: fit-content; max-width: 82%; padding: 8px 11px; border-radius: 17px; font-size: var(--fs-caption); line-height: 1.3; box-shadow: none; }
.bubble strong { color: #fff; }
.bubble-left { color: #f1f1f3; background: rgba(42, 47, 61, 0.98); border-bottom-left-radius: 6px; }
.bubble-right { align-self: flex-end; color: var(--ink); background: linear-gradient(135deg, var(--green), #dfff80); border-bottom-right-radius: 7px; }
.bubble-right strong { color: var(--ink); }
.system-chip {
  align-self: center;
  width: fit-content;
  max-width: 92%;
  padding: 6px 9px;
  color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  font-size: var(--fs-micro);
  font-weight: 900;
  letter-spacing: 0.01em;
}
.portal-card,
.booked-card {
  align-self: flex-end;
  width: min(88%, 218px);
  text-align: left;
  color: var(--text);
  background: linear-gradient(160deg, rgba(27, 32, 45, 0.96), rgba(10, 12, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px 22px 7px 22px;
  padding: 9px 11px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .26);
}
.portal-card {
  align-self: flex-start;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 22px;
  background: linear-gradient(160deg, rgba(31, 36, 49, 0.98), rgba(14, 17, 25, 0.98));
}
.booked-card {
  background: radial-gradient(circle at 78% 16%, rgba(183, 255, 60, 0.24), transparent 48%), linear-gradient(160deg, rgba(27, 32, 45, 0.96), rgba(10, 12, 18, 0.98));
  border-color: rgba(183, 255, 60, 0.34);
}
.portal-card span,
.booked-card span { display: block; color: var(--muted); font-size: var(--fs-micro); font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; }
.portal-card strong,
.booked-card strong { display: block; margin: 3px 0 1px; color: var(--green); font-size: var(--fs-small); font-weight: 1000; letter-spacing: -0.03em; }
.portal-card em,
.booked-card em { display: block; color: var(--muted); font-style: normal; font-size: var(--fs-micro); line-height: 1.22; font-weight: 750; }
.message-input {
  margin-top: auto;
  min-height: 31px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  font-size: var(--fs-caption);
  font-weight: 800;
}

/* ---------- Reveal ---------- */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(16px) scale(0.99); transition: opacity 440ms ease, transform 440ms cubic-bezier(0.22, 0.61, 0.36, 1); }
.js .reveal.is-visible { opacity: 1; transform: none; }

.gsap-scroll-ready .scroll-beat .beat-wrap,
.gsap-scroll-ready .proof-convergence .proof-phone-card,
.gsap-scroll-ready .beat-proof .beat-copy p,
.gsap-scroll-ready .lean-team-card,
.gsap-scroll-ready .beat-receipts .revenue-line,
.gsap-scroll-ready .beat-receipts .revenue-fill,
.gsap-scroll-ready .beat-receipts .revenue-label,
.gsap-scroll-ready .beat-receipts .revenue-node,
.gsap-scroll-ready .beat-receipts .receipt-meter .goal-fill,
.gsap-scroll-ready .beat-receipts .receipt-meter .goal-pace,
.gsap-scroll-ready .beat-receipts .beat-copy,
.gsap-scroll-ready .beat-receipts .growth-figure,
.gsap-scroll-ready .beat-receipts .receipt-chart,
.gsap-scroll-ready .beat-receipts .receipt-meter,
.gsap-scroll-ready .beat-receipts .receipt-stats,
.gsap-scroll-ready .beat-receipts .receipt-motion,
.gsap-scroll-ready .beat-receipts .receipts-disclosure,
.gsap-scroll-ready .low-screen h2,
.gsap-scroll-ready .low-screen p,
.gsap-scroll-ready .low-symptoms span,
.gsap-scroll-ready .beat-imagine h2,
.gsap-scroll-ready .beat-soil h2,
.gsap-scroll-ready .relief-chips span,
.gsap-scroll-ready .start-steps li {
  transition: none !important;
  animation: none !important;
}

/* ---------- Proof strip (cream) ---------- */
.proof-strip {
  position: relative; z-index: 3;
  width: min(var(--max), calc(100% - 36px));
  margin: clamp(48px, 8vw, 92px) auto 0;
  padding: 0;
  display: grid; gap: clamp(18px, 3vw, 30px);
  color: var(--ink);
}
.proof-strip::before {
  content: "";
  position: absolute;
  inset: 20% 8% auto;
  z-index: -1;
  height: 42%;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(183, 255, 60, 0.18), transparent 66%);
  filter: blur(20px);
  opacity: 0.82;
}
.proof-media-spread {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  justify-items: center;
  width: min(610px, 100%);
  margin: 0 auto -4px;
  min-height: clamp(124px, 18vw, 192px);
}
.proof-phone-card {
  position: relative;
  width: clamp(82px, 12vw, 132px);
  aspect-ratio: 9 / 16;
  margin: 0;
  padding: clamp(7px, 1vw, 10px);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.05) 18%, rgba(0, 0, 0, 0.72) 48%, rgba(255, 255, 255, 0.12)),
    linear-gradient(180deg, #11131b 0%, #05060a 100%);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(183, 255, 60, 0.04),
    inset 0 1px rgba(255, 255, 255, 0.1);
}
.proof-phone-card::before {
  content: "";
  position: absolute;
  top: clamp(10px, 1.4vw, 14px);
  left: 50%;
  width: 34%;
  height: clamp(5px, 0.9vw, 8px);
  z-index: 2;
  border: 0;
  border-radius: 999px;
  background: rgba(5, 6, 10, 0.9);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
  pointer-events: none;
}
.proof-phone-card::after {
  content: "";
  position: absolute;
  inset: clamp(7px, 1vw, 10px);
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: calc(clamp(22px, 3vw, 34px) - 9px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 15%, transparent 84%, rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, rgba(5, 6, 10, 0.02), rgba(5, 6, 10, 0.2));
  pointer-events: none;
}
.proof-phone-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(clamp(22px, 3vw, 34px) - 11px);
  opacity: 0.96;
}
.proof-phone-card-face {
  z-index: 1;
  transform: translate(16px, 22px) rotate(-8deg) scale(0.93);
}
.proof-phone-card-thread {
  z-index: 3;
  transform: translateY(-12px) scale(1.08);
  border-color: rgba(183, 255, 60, 0.28);
  box-shadow:
    0 34px 86px rgba(0, 0, 0, 0.5),
    0 0 54px rgba(183, 255, 60, 0.12),
    inset 0 1px rgba(255, 255, 255, 0.12);
}
.proof-phone-card-showtime {
  z-index: 2;
  transform: translate(-16px, 24px) rotate(7deg) scale(0.94);
}
.proof-strip ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; width: min(760px, 100%); margin: 0 auto; padding: 0; list-style: none; }
.proof-strip li {
  min-width: 0;
  min-height: 78px; padding: 13px 16px;
  display: grid; align-content: center; gap: 3px;
  color: rgba(6, 7, 10, 0.62);
  background:
    linear-gradient(180deg, rgba(255, 255, 248, 0.98) 0%, rgba(239, 231, 204, 0.82) 100%),
    rgba(255, 246, 221, 0.62);
  border: 1px solid var(--cream-card-border);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(66, 57, 30, 0.14), 0 18px 48px rgba(0, 0, 0, 0.16), inset 0 1px rgba(255, 255, 255, 0.92);
  font-size: var(--fs-caption); font-weight: 850;
}
.proof-strip li strong { display: block; color: var(--ink); font-size: var(--fs-lead); line-height: 0.95; letter-spacing: -0.055em; white-space: nowrap; }

/* ---------- What we build (cream) ---------- */
.build-section {
  padding: clamp(64px, 10vw, 112px) 0;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 255, 255, 0.5), transparent 28%),
    radial-gradient(circle at 8% 16%, rgba(183, 255, 60, 0.08), transparent 24%),
    var(--cream);
  color: var(--ink);
}
.build-section .section-wrap { width: min(var(--max), calc(100% - 36px)); }
.build-section .section-heading {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.build-section .eyebrow { color: rgba(6, 7, 10, 0.5); }
.build-section .section-heading > p:not(.eyebrow) {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(6, 7, 10, 0.6);
}
.foundation-system {
  display: grid;
  gap: clamp(26px, 6vw, 42px);
}
.foundation-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.foundation-step {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 136px;
  padding: 18px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 248, 0.98) 0%, rgba(239, 231, 204, 0.82) 100%),
    rgba(255, 246, 221, 0.66);
  border: 1px solid var(--cream-card-border);
  border-radius: var(--radius-md);
  box-shadow: var(--cream-card-shadow);
  text-align: left;
}
.foundation-step span {
  display: block;
  color: rgba(6, 7, 10, 0.38);
  font-size: var(--fs-micro);
  font-weight: 1000;
  line-height: 1;
  letter-spacing: 0.14em;
}
.foundation-step h3 {
  margin: 0;
  color: var(--ink);
  font-size: var(--fs-lead);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 1000;
}
.foundation-step p {
  max-width: 100%;
  margin: 0;
  color: rgba(6, 7, 10, 0.62);
  font-size: var(--fs-small);
  line-height: 1.28;
  font-weight: 740;
}
.foundation-close {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  color: var(--ink);
  border-top: 0;
  font-size: var(--fs-lead);
  line-height: 1.25;
  letter-spacing: 0.02em;
  font-weight: 1000;
  text-transform: uppercase;
  text-align: center;
  overflow-wrap: break-word;
}
.foundation-close::before {
  content: none;
}
@media (max-width: 520px) {
  .desktop-text { display: none; }
  .mobile-text { display: inline; }
  h1 {
    font-size: var(--fs-hero);
    line-height: 0.9;
  }
  h2 {
    font-size: var(--fs-h2);
  }
  .eyebrow {
    font-size: var(--fs-caption);
    letter-spacing: 0.12em;
  }
  .hero-wrap,
  .section-wrap,
  .proof-strip {
    width: calc(100% - 32px);
  }
  .hero {
    padding-top: calc(var(--header-height) + 50px);
  }
  .hero-wrap {
    min-height: 410px;
  }
  .hero-actions .button {
    max-width: 292px;
  }
  .hero-subhead {
    max-width: 310px;
  }
  .hero::before {
    background-position: 62% top;
  }
  .hero::after {
    height: 118px;
    opacity: 0.48;
  }
  .site-header {
    padding-left: 12px;
    padding-right: 12px;
  }
  .brand-mark {
    min-width: 44px;
    min-height: 30px;
    border-radius: 11px;
  }
  .brand-name {
    font-size: var(--fs-body);
  }
  .menu-button {
    gap: 8px;
  }
  .phone-card {
    width: min(100%, 292px);
  }
  .build-section .section-wrap {
    width: calc(100% - 32px);
  }
  .build-section .section-heading > p:not(.eyebrow) { font-size: var(--fs-body); }
  .build-section .section-heading h2 {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    font-size: var(--fs-h2);
    line-height: 0.94;
  }
  .proof-strip {
    margin-top: 36px;
    gap: 16px;
    width: calc(100% - 42px);
  }
  .proof-media-spread {
    width: min(100%, 238px);
    min-height: 118px;
    margin-bottom: 0;
  }
  .proof-phone-card {
    width: min(20vw, 72px);
    padding: 5px;
    border-radius: 16px;
  }
  .proof-phone-card::before { top: 8px; height: 4px; }
  .proof-phone-card::after { inset: 5px; border-radius: 12px; }
  .proof-phone-card img { border-radius: 10px; }
  .proof-phone-card-face {
    transform: translate(4px, 9px) rotate(-5deg) scale(0.9);
  }
  .proof-phone-card-thread {
    transform: translateY(-4px) scale(1.02);
  }
  .proof-phone-card-showtime {
    transform: translate(-4px, 9px) rotate(5deg) scale(0.9);
  }
  .proof-strip ul {
    grid-template-columns: 1fr;
    gap: 8px;
    width: min(100%, 282px);
  }
  .proof-strip li {
    min-width: 0;
    min-height: 66px;
    padding: 10px 14px;
    border-radius: 16px;
  }
  .proof-strip li strong {
    font-size: var(--fs-lead);
    white-space: nowrap;
  }
  .proof-stage {
    background-position: center top;
  }
}
@media (max-width: 899px) {
  .build-section {
    padding: clamp(60px, 14vw, 96px) 0;
  }
  .build-section .section-heading {
    max-width: 640px;
    margin-bottom: 34px;
  }
  .build-section h2 {
    max-width: 14ch;
    margin-left: auto;
    margin-right: auto;
    font-size: var(--fs-h2);
    line-height: 0.96;
    text-wrap: pretty;
  }
  .build-section .section-heading > p:not(.eyebrow) {
    max-width: 620px;
  }
  .foundation-system {
    gap: 28px;
  }
  .foundation-step {
    min-height: 154px;
  }
  .foundation-step h3 {
    font-size: var(--fs-lead);
  }
  .foundation-step p {
    max-width: 100%;
  }
  .foundation-close {
    max-width: min(620px, 100%);
    padding-bottom: 40px;
  }
}
@media (min-width: 700px) and (max-width: 899px) {
  .foundation-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .foundation-step {
    min-height: 176px;
    padding: 20px;
  }
  .foundation-step h3 {
    font-size: var(--fs-lead);
  }
  .foundation-step p {
    font-size: var(--fs-small);
    line-height: 1.36;
  }
}
@media (max-width: 520px) {
  .build-section h2 {
    max-width: 12ch;
    margin-left: auto;
    margin-right: auto;
    font-size: var(--fs-h2);
    line-height: 0.96;
  }
  .build-section .section-heading > p:not(.eyebrow) {
    max-width: 30ch;
    margin-left: auto;
    margin-right: auto;
    font-size: var(--fs-body);
  }
  .foundation-step p {
    max-width: 100%;
  }
  .motion-copy h2 {
    font-size: var(--fs-h2);
    line-height: 1;
  }
  .motion-copy p:not(.eyebrow) {
    max-width: 32ch;
  }
}
@media (min-width: 900px) {
  .foundation-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .foundation-step {
    min-height: 190px;
    padding: 22px;
    border-radius: var(--radius-lg);
  }
  .foundation-step h3 {
    font-size: var(--fs-lead);
  }
  .foundation-step p {
    font-size: var(--fs-small);
    line-height: 1.38;
  }
}

/* ---------- Demo section (dark) ---------- */
.demo-section {
  background:
    radial-gradient(circle at 88% 6%, rgba(90, 167, 255, 0.08), transparent 30%),
    radial-gradient(circle at 6% 20%, rgba(183, 255, 60, 0.1), transparent 26%),
    #0a0b10;
}
.motion-band { display: grid; gap: clamp(34px, 8vw, 56px); align-items: center; }
.motion-copy .eyebrow { margin-bottom: 12px; }
.motion-copy h2 { margin-bottom: 14px; font-size: var(--fs-h2); letter-spacing: -0.05em; line-height: 0.98; }
.motion-copy p:not(.eyebrow) { color: var(--muted); font-size: var(--fs-lead); line-height: 1.5; margin: 0 0 12px; }
.motion-note { color: var(--muted-2) !important; font-weight: 700; }

.workstation-demo { display: grid; place-items: center; perspective: 1200px; }
.demo-device {
  width: min(100%, 400px);
  padding: 9px;
  border-radius: 44px;
  background: linear-gradient(150deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .03) 18%, rgba(0, 0, 0, .35) 70%, rgba(255, 255, 255, .12));
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .46), 0 0 80px rgba(183, 255, 60, .07);
}
.demo-screen {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: var(--ink);
  background: #f6f7fb;
  border-radius: 36px;
}
.demo-screen::before {
  content: ""; position: absolute; top: 10px; left: 50%; z-index: 6;
  width: 90px; height: 20px; border-radius: 999px; background: #0b0c10; transform: translateX(-50%);
}
.demo-screen::after {
  content: ""; position: absolute; inset: 0; z-index: 7;
  background: rgba(15, 16, 20, .2); opacity: 0; pointer-events: none; transition: opacity 260ms ease;
}
.workstation-demo.menu-open .demo-screen::after { opacity: 1; }

.demo-top { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 10px; padding: 34px 18px 12px; background: rgba(255, 255, 255, .93); border-bottom: 1px solid rgba(6, 7, 10, .08); }
.demo-top strong { display: block; font-size: 1.04rem; font-weight: 1000; letter-spacing: -0.04em; }
.demo-top small { display: block; margin-top: 1px; color: #7c8190; font-weight: 850; font-size: 0.72rem; }
.demo-live { display: inline-flex; align-items: center; gap: 5px; color: #4d7500; font-size: 0.68rem; font-weight: 1000; letter-spacing: 0.08em; text-transform: uppercase; }
.demo-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--green-2); box-shadow: 0 0 0 3px rgba(102, 242, 111, 0.2); }

.demo-icon-button {
  display: grid; place-items: center; width: 40px; height: 40px; border: 0; border-radius: 13px;
  color: var(--ink); background: #fff; box-shadow: 0 8px 20px rgba(0, 0, 0, .08); cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background 180ms ease;
}
.demo-icon-button span { display: block; width: 17px; height: 2px; margin: 2px 0; border-radius: 999px; background: currentColor; }
.demo-icon-button:active { transform: scale(0.94); }

.demo-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; padding: 10px 12px; background: rgba(239, 241, 247, .92); }
.demo-tabs button {
  min-height: 36px; border: 0; border-radius: 11px; color: #777d8b; background: transparent;
  font-weight: 950; font-size: 0.82rem; cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
.demo-tabs button.is-active { color: var(--ink); background: #fff; box-shadow: 0 4px 14px rgba(0, 0, 0, .07); }
.demo-tabs button:active { transform: scale(0.95); }

.demo-view { display: none; padding: 18px; animation: demo-slide 340ms cubic-bezier(0.22, 0.61, 0.36, 1); }
.demo-view.is-active { display: block; }
@keyframes demo-slide { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* Thread view */
.demo-thread-head {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 14px; padding: 15px;
  background: #fff; border: 1px solid rgba(6, 7, 10, .07); border-radius: 18px; box-shadow: 0 14px 34px rgba(0, 0, 0, .06);
}
.demo-thread-head strong { display: block; font-size: 0.98rem; font-weight: 1000; letter-spacing: -0.03em; }
.demo-thread-head span { display: block; margin-top: 2px; color: #7b8090; font-size: 0.76rem; font-weight: 800; }
.demo-thread-head em { padding: 7px 10px; color: var(--ink); background: var(--green); border-radius: 999px; font-size: 0.64rem; font-style: normal; font-weight: 1000; letter-spacing: 0.08em; text-transform: uppercase; }
.demo-thread { display: flex; flex-direction: column; gap: 8px; min-height: 320px; padding-bottom: 10px; }
.demo-bubble { width: fit-content; max-width: 84%; margin: 0; padding: 11px 13px; border-radius: 17px; font-size: 0.85rem; line-height: 1.34; box-shadow: 0 8px 18px rgba(0, 0, 0, .07); animation: demo-pop 500ms cubic-bezier(0.34, 1.56, 0.64, 1) both; }
.demo-bubble.in { color: var(--ink); background: #e9ebf1; border-bottom-left-radius: 6px; }
.demo-bubble.out { align-self: flex-end; color: var(--ink); background: var(--green); border-bottom-right-radius: 6px; }
.demo-update, .demo-money {
  align-self: center; width: min(100%, 300px); padding: 9px 12px; color: #666d7d; background: #ebeef4;
  border: 1px solid rgba(6, 7, 10, .06); border-radius: 999px; text-align: center; font-size: 0.72rem; font-weight: 900;
  animation: demo-pop 500ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.demo-money { color: var(--ink); background: #fff; border-color: rgba(183, 255, 60, .6); box-shadow: 0 14px 34px rgba(0, 0, 0, .08), 0 0 28px rgba(183, 255, 60, .18); }
.demo-thread > *:nth-child(2) { animation-delay: 70ms; }
.demo-thread > *:nth-child(3) { animation-delay: 140ms; }
.demo-thread > *:nth-child(4) { animation-delay: 210ms; }
.demo-thread > *:nth-child(5) { animation-delay: 280ms; }
.demo-thread > *:nth-child(6) { animation-delay: 350ms; }
.demo-thread > *:nth-child(7) { animation-delay: 420ms; }
@keyframes demo-pop { from { opacity: 0; transform: translateY(14px) scale(0.98); } to { opacity: 1; transform: none; } }

.demo-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin: 6px -18px -18px; padding: 14px 18px 18px; background: linear-gradient(180deg, rgba(246, 247, 251, 0), #f6f7fb 34%); }
.demo-action { min-height: 46px; border: 0; border-radius: 14px; color: var(--ink); background: var(--green); font-size: 0.88rem; font-weight: 1000; cursor: pointer; box-shadow: 0 14px 30px rgba(183, 255, 60, .18); transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1); }
.demo-action.ghost { color: #5c6271; background: #fff; border: 1px solid rgba(6, 7, 10, .08); box-shadow: none; }
.demo-action:active { transform: scale(0.96); }

/* Memory view — the differentiator */
.mem-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.mem-avatar { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; color: var(--ink); background: linear-gradient(135deg, var(--green), #dfff80); font-weight: 1000; font-size: 1rem; letter-spacing: -0.02em; }
.mem-head strong { display: block; font-size: 1.04rem; font-weight: 1000; letter-spacing: -0.03em; }
.mem-head span { display: block; margin-top: 2px; color: #7b8090; font-size: 0.76rem; font-weight: 800; }
.mem-label { margin: 0 0 12px; color: #6c7200; font-size: 0.68rem; font-weight: 1000; letter-spacing: 0.12em; text-transform: uppercase; }
.mem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.mem-cell { padding: 13px 14px; background: #fff; border: 1px solid rgba(6, 7, 10, .07); border-radius: 15px; box-shadow: 0 10px 24px rgba(0, 0, 0, .05); }
.mem-cell.mem-wide { grid-column: 1 / -1; }
.mem-cell small { display: block; color: #8b91a0; font-size: 0.64rem; font-weight: 1000; letter-spacing: 0.1em; text-transform: uppercase; }
.mem-cell b { display: block; margin-top: 4px; color: var(--ink); font-size: 0.98rem; font-weight: 1000; letter-spacing: -0.02em; }
.mem-timeline { display: grid; gap: 2px; padding: 6px 4px; }
.mem-event { display: grid; grid-template-columns: 16px 1fr auto; align-items: center; gap: 10px; padding: 8px 0; color: #6b7280; font-size: 0.82rem; font-weight: 850; }
.mem-event i { width: 9px; height: 9px; border-radius: 50%; background: #cfd4de; }
.mem-event em { color: #9098a6; font-style: normal; font-size: 0.72rem; font-weight: 900; }
.mem-event.mem-now { color: var(--ink); }
.mem-event.mem-now i { background: var(--green); box-shadow: 0 0 0 4px rgba(183, 255, 60, 0.2); }

/* Calendar view */
.calendar-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 6px 0 16px; }
.calendar-strip div { min-height: 70px; padding: 12px 8px; border: 1px solid rgba(6, 7, 10, .07); border-radius: 16px; background: #f3f4f8; text-align: center; }
.calendar-strip b, .calendar-strip small { display: block; }
.calendar-strip b { color: var(--ink); font-size: 1.3rem; line-height: 1; font-weight: 1000; }
.calendar-strip small { margin-top: 8px; color: #777d8b; font-size: 0.64rem; font-weight: 1000; text-transform: uppercase; letter-spacing: 0.06em; }
.calendar-strip .is-open { background: #fff; }
.calendar-strip .is-active { background: var(--green); box-shadow: 0 14px 30px rgba(183, 255, 60, .2); }
.calendar-strip .is-active small { color: #4d6b00; }
.calendar-card { padding: 16px; border: 1px solid rgba(6, 7, 10, .07); border-radius: 18px; background: #fff; box-shadow: 0 14px 34px rgba(0, 0, 0, .06); }
.calendar-card strong { display: block; color: var(--ink); font-size: 0.98rem; font-weight: 1000; }
.calendar-card p { margin: 5px 0 12px; color: #6b7280; font-size: 0.8rem; line-height: 1.4; font-weight: 800; }

/* Money view */
.money-total { padding: 18px; margin: 6px 0 12px; border: 1px solid rgba(183, 255, 60, .5); border-radius: 18px; background: linear-gradient(180deg, #fff, #f8ffe7); box-shadow: 0 14px 34px rgba(0, 0, 0, .06); }
.money-total small { display: block; color: #6c7200; font-size: 0.68rem; font-weight: 1000; letter-spacing: 0.1em; text-transform: uppercase; }
.money-total strong { display: block; margin-top: 5px; color: var(--ink); font-size: 2.15rem; line-height: 1; font-weight: 1000; letter-spacing: -0.03em; }
.money-list { padding: 2px 16px; border: 1px solid rgba(6, 7, 10, .07); border-radius: 18px; background: #fff; box-shadow: 0 14px 34px rgba(0, 0, 0, .06); }

.mini-row { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-top: 1px solid rgba(6, 7, 10, .06); color: #697080; font-size: 0.8rem; font-weight: 850; }
.mini-row:first-child { border-top: 0; }
.calendar-card .mini-row { padding: 9px 0; }
.mini-row b { color: var(--ink); text-align: right; }
.panel-note { margin: 14px 0 0; padding: 13px 14px; border-radius: 16px; background: #f3f4f8; color: #707685; font-size: 0.8rem; line-height: 1.45; font-weight: 800; }

/* In-phone slide-out menu (mirrors the real signature) */
.demo-menu {
  position: absolute; top: 78px; bottom: 14px; left: 12px; z-index: 9;
  width: min(72%, 262px); padding: 16px 13px;
  color: var(--ink); background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(22px) saturate(130%);
  border: 1px solid rgba(6, 7, 10, .08); border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
  transform: translateX(calc(-100% - 22px)) scale(.98);
  transition: transform 360ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.workstation-demo.menu-open .demo-menu { transform: none; }
.demo-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.demo-menu-head strong { font-size: 1.2rem; font-weight: 1000; letter-spacing: -0.05em; }
.demo-menu .close { width: 34px; height: 34px; font-size: 1.3rem; font-weight: 800; }
.demo-menu > button:not(.demo-icon-button) {
  display: block; width: 100%; min-height: 42px; margin-bottom: 8px; padding: 0 12px;
  border: 1px solid rgba(6, 7, 10, .07); border-radius: 13px; color: #6b7080; background: #fff;
  text-align: left; font-weight: 950; cursor: pointer;
}
.demo-menu > button.is-active { color: var(--text); background: var(--ink); }

.real-workstation-proof {
  display: grid;
  gap: clamp(22px, 5vw, 34px);
  margin-top: clamp(40px, 8vw, 68px);
  padding-top: clamp(24px, 5vw, 34px);
  border-top: 1px solid var(--line);
}
.real-proof-copy {
  display: grid;
  gap: 10px;
  max-width: 680px;
}
.real-proof-copy span {
  color: var(--green);
  font-size: var(--fs-caption);
  font-weight: 1000;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}
.real-proof-copy h3 {
  max-width: 12ch;
  margin: 0;
  color: var(--text);
  font-size: var(--fs-h2);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 1000;
  text-wrap: balance;
}
.real-proof-copy p {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-lead);
  line-height: 1.48;
  font-weight: 780;
}
.proof-stage {
  position: relative;
  display: grid;
  gap: clamp(18px, 4vw, 28px);
  overflow: hidden;
  padding: clamp(18px, 4vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(5, 6, 10, 0.12), rgba(5, 6, 10, 0.62)),
    linear-gradient(90deg, rgba(5, 6, 10, 0.9) 0%, rgba(5, 6, 10, 0.18) 52%, rgba(5, 6, 10, 0.88) 100%),
    var(--asset-machine-dark) center / cover no-repeat,
    var(--black-1);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.46), inset 0 1px rgba(255, 255, 255, 0.06);
  isolation: isolate;
}
.proof-stage::before {
  content: "";
  position: absolute;
  inset: auto 6% 18%;
  z-index: -1;
  height: 30%;
  background: radial-gradient(ellipse at center, rgba(183, 255, 60, 0.16), transparent 64%);
  filter: blur(18px);
  opacity: 0.72;
}
.proof-stage-copy {
  display: grid;
  gap: 8px;
  max-width: 560px;
  position: relative;
  z-index: 1;
}
.proof-stage-copy span {
  color: var(--green);
  font-size: var(--fs-micro);
  font-weight: 1000;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}
.proof-stage-copy strong {
  display: block;
  color: var(--text);
  font-size: var(--fs-lead);
  line-height: 1;
  letter-spacing: -0.025em;
  word-spacing: 0.08em;
  font-weight: 1000;
}
.proof-stage-copy p {
  max-width: 52ch;
  margin: 0;
  color: rgba(247, 247, 242, 0.68);
  font-size: var(--fs-body);
  line-height: 1.48;
  font-weight: 760;
}
.proof-stage-visual {
  position: relative;
  display: block;
  margin: 0;
  min-width: 0;
}
.proof-stage-visual picture {
  display: block;
}
.proof-stage-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 84px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(183, 255, 60, 0.05);
}
.proof-stage-visual figcaption {
  margin-top: 12px;
  color: rgba(247, 247, 242, 0.58);
  font-size: var(--fs-caption);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.proof-stage-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  overflow: hidden;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
}
.proof-stage-points li {
  display: grid;
  align-content: start;
  gap: 5px;
  min-height: 118px;
  padding: 15px;
  background:
    linear-gradient(180deg, rgba(28, 32, 43, 0.72), rgba(10, 11, 16, 0.78)),
    rgba(10, 11, 16, 0.72);
}
.proof-stage-points span {
  color: rgba(183, 255, 60, 0.78);
  font-size: var(--fs-micro);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: 0.12em;
}
.proof-stage-points strong {
  color: var(--text);
  font-size: var(--fs-lead);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 1000;
}
.proof-stage-points em {
  color: rgba(247, 247, 242, 0.58);
  font-size: var(--fs-caption);
  line-height: 1.32;
  font-style: normal;
  font-weight: 760;
}

.product-progression {
  position: relative;
  display: grid;
  gap: 16px;
  overflow: hidden;
  padding: clamp(16px, 4vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background:
    radial-gradient(circle at 78% 22%, rgba(183, 255, 60, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(28, 32, 43, 0.74), rgba(10, 11, 16, 0.82)),
    rgba(10, 11, 16, 0.7);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.32), inset 0 1px rgba(255, 255, 255, 0.05);
}

.product-progression-copy {
  display: grid;
  gap: 6px;
  max-width: 520px;
}

.product-progression-copy span {
  color: var(--green);
  font-size: var(--fs-micro);
  font-weight: 1000;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.product-progression-copy strong {
  color: var(--text);
  font-size: var(--fs-lead);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 1000;
}

.product-progression figure {
  margin: 0;
}

.product-progression picture,
.product-progression img {
  display: block;
}

.product-progression img {
  width: 100%;
  height: auto;
  border-radius: clamp(14px, 2.5vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.46);
}

.product-progression figcaption {
  margin-top: 10px;
  color: rgba(247, 247, 242, 0.56);
  font-size: var(--fs-caption);
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

@media (min-width: 760px) {
  .real-workstation-proof {
    align-items: start;
  }
  .real-proof-copy {
    max-width: 760px;
  }
  .proof-stage-points {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1060px) {
  .real-workstation-proof {
    grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
    gap: clamp(30px, 5vw, 54px);
  }
  .real-proof-copy {
    position: sticky;
    top: calc(var(--header-height) + 30px);
    grid-row: 1 / span 2;
  }
  .proof-stage {
    grid-column: 2;
    padding: clamp(22px, 3vw, 34px);
  }
  .product-progression {
    grid-column: 2;
  }
  .proof-stage-copy {
    margin-left: clamp(6px, 1vw, 12px);
  }
}

/* ---------- Origin (dark) ---------- */
.origin-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(183, 255, 60, 0.08), transparent 28%),
    radial-gradient(circle at 96% 8%, rgba(90, 167, 255, 0.06), transparent 24%),
    linear-gradient(180deg, var(--black-0), var(--black-1) 68%, var(--black-0));
}
.origin-grid { display: grid; gap: clamp(28px, 7vw, 48px); align-items: start; }
.origin-revelation {
  padding: clamp(18px, 4vw, 24px);
  color: var(--text);
  font-weight: 820;
  background: var(--dark-card-surface);
  border: 1px solid var(--dark-card-border);
  border-radius: 24px;
  box-shadow: var(--dark-card-shadow);
}
.origin-revelation strong {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-size: var(--fs-lead);
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.origin-kicker { color: var(--text); font-size: var(--fs-lead) !important; letter-spacing: -0.02em; }
.origin-kicker strong { color: var(--green); }

.origin-proof { display: grid; gap: 16px; }
.numbers-card {
  padding: clamp(20px, 5vw, 28px);
  background: var(--dark-card-surface);
  border-color: var(--dark-card-border);
  box-shadow: var(--dark-card-shadow);
}
.numbers-copy { display: grid; gap: 10px; margin-bottom: 18px; }
.numbers-copy p { margin: 0; font-size: var(--fs-h2); line-height: 0.98; letter-spacing: -0.05em; font-weight: 1000; color: var(--text); }
.numbers-copy p strong { color: var(--green); }
.numbers-copy span { color: var(--muted); font-size: var(--fs-small); font-weight: 850; line-height: 1.35; }

.revenue-line-asset {
  display: block;
  width: min(100%, 600px);
  height: auto;
  margin: 0 auto;
  overflow: visible;
}

.revenue-fill {
  fill: url(#receiptRevenueFill);
}

.revenue-baseline {
  fill: none;
  stroke: rgba(255, 246, 221, 0.18);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-dasharray: 1 12;
  vector-effect: non-scaling-stroke;
}

.revenue-line {
  fill: none;
  stroke: var(--green);
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(183, 255, 60, 0.18));
  vector-effect: non-scaling-stroke;
}

.revenue-structure {
  /* The ghost: the shape of the story before it's told — barely there.
     A faded whisper of lime, no glow; the spark brings the real green. */
  stroke: rgba(223, 255, 128, 0.13);
  filter: none;
  pointer-events: none;
}

.revenue-charge {
  /* The traveling light: rides the same path, brighter and hotter than the
     line beneath it. Dash pattern + offset are set by JS. */
  fill: none;
  stroke: var(--green-light, #dfff80);
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(183, 255, 60, 0.65));
  vector-effect: non-scaling-stroke;
  pointer-events: none;
}

.revenue-label {
  fill: rgba(247, 247, 242, 0.78);
  font-family: inherit;
  text-anchor: middle;
  letter-spacing: 0;
}

.revenue-label-value {
  font-size: var(--fs-small);
  font-weight: 840;
}

.revenue-label-month,
.revenue-tag {
  font-size: var(--fs-caption);
  font-weight: 780;
}

.revenue-label-month {
  fill: rgba(247, 247, 242, 0.48);
}

.revenue-tag {
  /* Build + Best: the story markers — fully legible at every size. */
  fill: var(--green);
  opacity: 1;
  font-weight: 850;
}

.revenue-node {
  pointer-events: none;
}

.revenue-peak-glow,
.revenue-peak-core {
  fill: var(--green);
}

.revenue-peak-glow {
  opacity: 0.2;
  transform-box: fill-box;
  transform-origin: center;
}

.revenue-peak-core {
  opacity: 0.92;
  filter: drop-shadow(0 0 10px rgba(183, 255, 60, 0.44));
}

@keyframes receipt-node-breathe {
  0%, 100% { opacity: 0.2; transform: scale(0.9); }
  50% { opacity: 0.58; transform: scale(1.55); }
}

.goal-proof {
  position: relative; display: grid; gap: 18px; padding: 24px 20px 20px; overflow: hidden; color: var(--text);
  background: var(--dark-card-surface);
  border: 1px solid var(--dark-card-border);
  border-radius: 24px;
  box-shadow: var(--dark-card-shadow);
}
.goal-proof-head { display: flex; flex-direction: column; gap: 6px; }
.goal-proof-head span { color: var(--green); font-size: 0.74rem; font-weight: 1000; letter-spacing: 0.14em; line-height: 1; text-transform: uppercase; }
.goal-proof-head strong { color: var(--text); font-size: clamp(1.8rem, 8vw, 2.6rem); font-weight: 1000; letter-spacing: -0.06em; line-height: 0.9; }
.goal-proof-head em { color: rgba(247, 247, 242, 0.55); font-size: 0.42em; font-style: normal; }
.goal-track { position: relative; height: 3px; overflow: visible; background: rgba(255, 246, 221, 0.18); border-radius: 999px; box-shadow: none; }
.goal-fill { position: absolute; top: 0; bottom: 0; left: 0; transform-origin: 0 50%; }
.goal-collected { width: 41.6%; z-index: 3; background: var(--green); border-radius: 999px 0 0 999px; box-shadow: none; }
.goal-booked { left: 41.6%; width: 11.1%; z-index: 2; background: rgba(183, 255, 60, 0.36); border-radius: 0 999px 999px 0; box-shadow: none; }
.goal-pace { position: absolute; left: 50%; top: -6px; z-index: 5; width: 1px; height: 15px; background: rgba(255, 246, 221, 0.52); border-radius: 999px; box-shadow: none; }
.goal-pace::before { content: "pace"; position: absolute; left: 50%; top: calc(100% + 6px); translate: -50% 0; color: rgba(255, 246, 221, 0.46); font-size: var(--fs-caption); font-weight: 760; letter-spacing: 0; line-height: 1; }
.goal-spark {
  /* The bar's traveling spark (runtime-built; GSAP drives x). Centering
     uses the translate property so GSAP's transform never clobbers it. */
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 6;
  width: 26px;
  height: 5px;
  translate: -13px -50%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(183, 255, 60, 0), #dfff80);
  box-shadow: 0 0 14px rgba(183, 255, 60, 0.75);
  pointer-events: none;
}
.goal-proof-foot { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; color: rgba(247, 247, 242, 0.68); font-size: 0.86rem; font-weight: 900; }
.goal-proof-foot span { display: inline-flex; align-items: center; gap: 0; }
.goal-proof-foot span i { display: none; }
.goal-proof-foot span:nth-child(2) i { opacity: 0.55; }
.goal-proof-foot strong { color: var(--text); font-size: 1rem; font-weight: 1000; }

.origin-close { margin: 0; color: var(--text); font-size: var(--fs-lead); font-weight: 850; letter-spacing: -0.01em; }

.chef-proof-board {
  position: relative;
  overflow: hidden;
  padding: clamp(16px, 4vw, 24px);
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 10%, rgba(183, 255, 60, 0.15), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 248, 0.96), rgba(237, 226, 197, 0.84)),
    var(--cream);
  border: 1px solid rgba(255, 255, 248, 0.62);
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34), inset 0 1px rgba(255, 255, 255, 0.92);
}

.chef-proof-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(6, 7, 10, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 7, 10, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.4;
  pointer-events: none;
}

.chef-proof-board > * {
  position: relative;
  z-index: 1;
}

.chef-proof-board .numbers-card,
.chef-proof-board .goal-proof {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 248, 0.92), rgba(246, 239, 214, 0.86)),
    rgba(255, 246, 221, 0.72);
  border-color: rgba(6, 7, 10, 0.08);
  box-shadow: 0 18px 42px rgba(66, 57, 30, 0.12), inset 0 1px rgba(255, 255, 255, 0.94);
}

.chef-proof-board .numbers-copy p,
.chef-proof-board .goal-proof-head strong,
.chef-proof-board .goal-proof-foot strong {
  color: var(--ink);
}

.chef-proof-board .numbers-copy p strong,
.chef-proof-board .goal-proof-head span {
  color: var(--green-dim);
}

.chef-proof-board .numbers-copy span,
.chef-proof-board .goal-proof-foot {
  color: rgba(6, 7, 10, 0.62);
}

.chef-proof-board .goal-track {
  background: rgba(6, 7, 10, 0.12);
  box-shadow: inset 0 0 0 1px rgba(6, 7, 10, 0.08);
}

.chef-proof-board .goal-booked {
  background: rgba(71, 117, 0, 0.36);
}

.chef-proof-board .goal-pace {
  background: rgba(6, 7, 10, 0.48);
}

.chef-proof-board .goal-pace::before {
  color: var(--ink);
  background: var(--green);
}

.operator-principle {
  display: grid;
  gap: 8px;
  padding: clamp(20px, 5vw, 28px);
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 92% 8%, rgba(183, 255, 60, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(28, 32, 43, 0.96), rgba(10, 11, 16, 0.98));
  border: 1px solid rgba(6, 7, 10, 0.14);
  border-radius: 24px;
  box-shadow: 0 22px 54px rgba(66, 57, 30, 0.2), inset 0 1px rgba(255, 255, 255, 0.07);
}

.operator-principle span {
  color: var(--green);
  font-size: var(--fs-micro);
  font-weight: 1000;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.operator-principle strong {
  max-width: 15ch;
  color: var(--text);
  font-size: var(--fs-h2);
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-weight: 1000;
}

/* ---------- Believe ---------- */
.believe-section {
  position: relative;
  padding: clamp(64px, 10vw, 112px) 0;
  background: #0a0b10;
}
.belief-wrap {
  position: relative;
  z-index: 1;
}
.belief-hero {
  max-width: 880px;
  margin: 0 auto clamp(30px, 8vw, 58px);
  text-align: center;
}
.belief-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: var(--fs-lead);
  line-height: 1.5;
}
.belief-principles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.belief-card {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 136px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.015);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}
.belief-card span {
  color: rgba(247, 247, 242, 0.42);
  font-size: var(--fs-micro);
  font-weight: 1000;
  letter-spacing: 0.12em;
}
.belief-card h3 {
  margin: 0;
  color: var(--text);
  font-size: var(--fs-lead);
  line-height: 1;
  letter-spacing: -0.045em;
}
.belief-card p {
  max-width: 100%;
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-small);
  line-height: 1.28;
  font-weight: 740;
}
.belief-close {
  margin: clamp(24px, 5vw, 38px) auto 0;
  max-width: 820px;
  padding-top: clamp(18px, 4vw, 24px);
  border-top: 1px solid var(--line);
  text-align: center;
}
.belief-close span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: var(--fs-caption);
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.belief-close strong {
  display: block;
  color: var(--text);
  font-size: var(--fs-h2);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 1000;
}
.belief-close p {
  max-width: 660px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: var(--fs-lead);
  line-height: 1.5;
  font-weight: 760;
}
@media (min-width: 700px) {
  .belief-hero p:not(.eyebrow) { font-size: var(--fs-lead); }
  .belief-principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 4vw, 28px);
  }
  .belief-card {
    min-height: 168px;
    padding: 22px;
    border-radius: var(--radius-lg);
  }
  .belief-card h3 { font-size: var(--fs-lead); }
  .belief-card p { max-width: 250px; font-size: var(--fs-small); line-height: 1.4; }
  .belief-close strong { font-size: var(--fs-h2); }
  .belief-close p { font-size: var(--fs-lead); }
}
@media (min-width: 1000px) {
  .belief-principles { grid-template-columns: repeat(4, 1fr); }
  .belief-close strong { font-size: var(--fs-h2); }
}
.ascent-section {
  padding: clamp(64px, 10vw, 112px) 0;
  background:
    radial-gradient(circle at 50% -8%, rgba(183, 255, 60, 0.1), transparent 34%),
    #0a0b10;
}
.growth-system {
  display: grid;
  gap: clamp(22px, 5vw, 34px);
}
.plan-grid {
  display: grid;
  gap: clamp(18px, 4vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: clamp(24px, 4vw, 32px);
  overflow: hidden;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}
.plan-card.featured {
  border-color: rgba(183, 255, 60, 0.5);
  background:
    radial-gradient(circle at 78% 10%, rgba(183, 255, 60, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(183, 255, 60, 0.095), rgba(255, 255, 255, 0.025));
  box-shadow: 0 0 0 1px rgba(183, 255, 60, 0.18), 0 34px 80px rgba(0, 0, 0, 0.4);
}
.plan-badge {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 6px 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: var(--fs-micro);
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.plan-card.featured .plan-badge {
  color: var(--ink);
  background: var(--green);
  border-color: transparent;
}
.plan-icon {
  width: 62px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--green);
  filter: drop-shadow(0 0 9px rgba(183, 255, 60, 0.4));
}
.plan-icon svg {
  display: block;
  width: auto;
  height: 100%;
  overflow: visible;
}
.plan-name {
  margin: 0;
  color: var(--text);
  font-size: var(--fs-lead);
  line-height: 0.96;
  letter-spacing: -0.045em;
  font-weight: 1000;
}
.plan-desc {
  margin: 12px 0 22px;
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 1.5;
  font-weight: 720;
}
.plan-features {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}
.plan-features li {
  position: relative;
  min-height: 20px;
  padding-left: 0;
  color: var(--text);
  font-size: var(--fs-small);
  line-height: 1.38;
  font-weight: 760;
}
.plan-features li::before {
  content: none;
}
.ic-pulse {
  stroke-dasharray: 32 128;
  animation: ic-pulse 1.9s linear infinite;
}
@keyframes ic-pulse { to { stroke-dashoffset: -160; } }
.ic-ring {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  animation: ic-beacon 2.6s ease-out infinite;
}
.ic-ring2 { animation-delay: 0.85s; }
.ic-ring3 { animation-delay: 1.7s; }
@keyframes ic-beacon {
  0% { transform: scale(1); opacity: 0.75; }
  100% { transform: scale(3.6); opacity: 0; }
}
.ic-orbit {
  transform-box: view-box;
  transform-origin: 32px 32px;
}
.ic-orbit1 { animation: ic-spin 7s linear infinite; }
.ic-orbit2 { animation: ic-spin 9s linear infinite reverse; }
@keyframes ic-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .ic-pulse,
  .ic-ring,
  .ic-orbit,
  .hero-actions .button-primary {
    animation: none;
  }
  .ic-ring { opacity: 0.5; }
}
.growth-close {
  display: grid;
  gap: 18px;
  align-items: center;
  padding-top: clamp(12px, 3vw, 18px);
  border-top: 0;
}
.growth-close p {
  margin: 0;
  color: var(--text);
  font-size: var(--fs-lead);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 1000;
}
@media (min-width: 900px) {
  .plan-grid { grid-template-columns: repeat(3, 1fr); }
  .plan-card { min-height: 390px; }
  .growth-close { grid-template-columns: 1fr auto; }
}

/* ---------- Capacity back (cream) ---------- */
.saturday-section {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 10vw, 112px) 0;
  background:
    radial-gradient(circle at 9% 48%, rgba(183, 255, 60, 0.12), transparent 27%),
    radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.52), transparent 26%),
    var(--cream-warm);
  color: var(--ink);
}

.saturday-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--asset-hero-proof-transition) center top / cover no-repeat;
  opacity: 0.22;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.saturday-section .section-wrap { position: relative; z-index: 1; }
.saturday-section .eyebrow { color: #477500; }
.saturday-section .copy-stack {
  max-width: 680px;
  color: rgba(6, 7, 10, 0.72);
}
.saturday-section .copy-stack strong { color: var(--ink); }
.saturday-section .copy-stack > p:not(.eyebrow) {
  max-width: 620px;
  font-size: var(--fs-lead);
  line-height: 1.48;
  font-weight: 660;
}
.saturday-section h2 {
  max-width: 720px;
  margin-bottom: 16px;
  color: rgba(6, 7, 10, 0.72);
}
.saturday-grid { display: grid; gap: clamp(24px, 6vw, 56px); align-items: center; }
.saturday-image {
  position: relative; order: -1;
  width: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  overflow: hidden;
  display: grid; place-items: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 60% 46%, rgba(183, 255, 60, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 248, 0.86), rgba(237, 226, 197, 0.48)),
    linear-gradient(155deg, #171a22 0%, #07090d 66%);
  border: 1px solid rgba(6, 7, 10, 0.08);
  box-shadow: 0 28px 70px rgba(66, 57, 30, 0.18), inset 0 1px rgba(255, 255, 255, 0.72);
}
.saturday-image picture {
  width: 100%;
  display: grid;
  place-items: center;
}
.saturday-image::before {
  content: "";
  position: absolute;
  inset: auto -18% 8% -12%;
  z-index: -1;
  height: 70px;
  background: linear-gradient(90deg, #10140f, var(--green), #78f255);
  transform: rotate(-8deg);
  transform-origin: center;
  box-shadow: 0 0 42px rgba(183, 255, 60, 0.32);
}
.saturday-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.32;
}
.saturday-side-asset {
  position: relative;
  z-index: 1;
  width: min(70%, 320px);
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.36));
}
.text-message {
  width: fit-content;
  max-width: 100%;
  margin: 8px 0 6px;
  padding: 11px 18px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--green), #dfff80);
  border: 1px solid rgba(6, 7, 10, 0.08);
  border-radius: 13px;
  box-shadow: 0 16px 32px rgba(183, 255, 60, 0.2);
  font-size: var(--fs-lead);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 1000;
}
.mini-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 4px;
}
.mini-flow span {
  position: relative;
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 10px 12px 10px 42px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 248, 0.98) 0%, rgba(239, 231, 204, 0.84) 100%),
    rgba(255, 246, 221, 0.62);
  border: 1px solid var(--cream-card-border);
  border-radius: 13px;
  box-shadow: 0 16px 36px rgba(66, 57, 30, 0.13), inset 0 1px rgba(255, 255, 255, 0.9);
  font-size: var(--fs-small);
  line-height: 1.08;
  font-weight: 900;
}
.mini-flow span::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(183, 255, 60, 0.18);
}
.mini-flow span::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 50%;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: translateY(-62%) rotate(-45deg);
}
/* ---------- Start / close ---------- */
.start-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #0a0b10;
}
.start-grid {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: clamp(30px, 8vw, 60px);
  align-items: start;
}
.start-copy p:not(.eyebrow) { color: #d8d9df; font-size: var(--fs-lead); line-height: 1.5; margin: 0 auto 14px; }
.start-copy em { color: var(--green); font-style: normal; }
.start-form-card {
  width: min(100%, 760px);
  padding: clamp(22px, 5vw, 30px);
  background:
    radial-gradient(circle at 82% 8%, rgba(183, 255, 60, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(28, 32, 43, 0.88), rgba(10, 12, 18, 0.92));
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.44), inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(130%);
}
.card-kicker { display: inline-flex; margin: 0 0 12px; padding: 8px 12px; color: var(--ink); background: var(--green); border-radius: 999px; font-size: var(--fs-caption); font-weight: 950; letter-spacing: 0.1em; text-transform: uppercase; }
.card-title { margin-bottom: 8px; font-size: var(--fs-h2); letter-spacing: -0.04em; }
.card-sub { margin: 0 0 18px; color: var(--muted); font-size: var(--fs-body); }

/* ---------- Forms ---------- */
.lead-form { display: grid; gap: 13px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lead-form label { display: grid; gap: 7px; }
.lead-form label > span { color: #e6e7eb; font-size: var(--fs-small); font-weight: 850; }
.stack-field em { color: var(--muted-2); font-style: normal; font-weight: 700; font-size: var(--fs-caption); }
.lead-form input[type="text"], .lead-form input[type="email"], .lead-form input[type="tel"], .lead-form textarea, .lead-form select {
  width: 100%; color: var(--text); background: rgba(255, 255, 255, 0.075); border: 1px solid var(--line);
  border-radius: 14px; outline: 0; padding: 13px 14px;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
.lead-form textarea { resize: vertical; min-height: 76px; }
.lead-form select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  color-scheme: dark;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%23a9adba' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px;
}
.lead-form select:invalid { color: var(--muted-2); }
.lead-form select option { color: var(--text); background: #14161d; }
.lead-form input:focus, .lead-form textarea:focus, .lead-form select:focus { background: rgba(255, 255, 255, 0.1); border-color: rgba(183, 255, 60, 0.72); box-shadow: 0 0 0 4px rgba(183, 255, 60, 0.12); }
.checkline { grid-template-columns: 18px 1fr; align-items: start; gap: 10px !important; margin: 6px 0 2px; }
.checkline input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green); }
.checkline span { color: var(--muted) !important; font-size: var(--fs-caption) !important; line-height: 1.4; }
.checkline span a { color: var(--green); font-weight: 700; }
.checkline span a:hover { text-decoration: underline; }
.button-form { margin-top: 4px; }
.lead-form small { color: var(--muted-2); text-align: center; line-height: 1.4; }
.hidden-field { display: none !important; }

/* ---------- Footer ---------- */
/* One quiet row: brand, copyright, Privacy. Nothing else needs saying. */
.site-footer { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; padding: 26px clamp(18px, 4vw, 54px) 72px; background: #05060a; border-top: 1px solid var(--line); }
.footer-brand .brand-mark { min-width: 48px; min-height: 30px; }
.footer-small { margin: 0 0 0 4px; color: var(--muted-2); font-size: var(--fs-small); }
.site-footer .footer-link { margin-left: auto; }

/* ---------- Intake drawer (signature) ---------- */
.drawer-shell { position: fixed; inset: 0; z-index: 80; pointer-events: none; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.56); opacity: 0; transition: opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1); }
.drawer {
  position: absolute; top: 8px; right: 8px; bottom: 8px;
  width: min(480px, calc(100vw - 16px)); overflow: auto; padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 26px;
  background:
    radial-gradient(circle at 88% 4%, rgba(183, 255, 60, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(28, 32, 43, 0.98), rgba(11, 13, 16, 0.98));
  box-shadow: -30px 0 90px rgba(0, 0, 0, 0.5), inset 0 1px rgba(255, 255, 255, 0.07);
  transform: translateX(calc(100% + 24px)); transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
body.drawer-open { overflow: hidden; }
/* Open state is per-shell (aria-hidden), so the intake and call drawers can
   coexist on one page without opening together. */
.drawer-shell[aria-hidden="false"] { pointer-events: auto; }
.drawer-shell[aria-hidden="false"] .drawer-backdrop { opacity: 1; }
.drawer-shell[aria-hidden="false"] .drawer { transform: none; }

.drawer-head {
  position: sticky; top: -20px; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin: -20px -20px 18px; padding: 16px 18px; border-bottom: 1px solid var(--line);
  background: rgba(11, 13, 16, 0.82); backdrop-filter: blur(18px);
}
.drawer-title { display: flex; align-items: center; gap: 10px; }
.drawer-title b { display: block; line-height: 1; font-size: var(--fs-body); }
.drawer-title span span { display: block; margin-top: 3px; opacity: 0.55; font-size: var(--fs-micro); font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.drawer-close { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255, 255, 255, 0.07); color: #fff; cursor: pointer; font-size: var(--fs-lead); line-height: 1; }
.drawer h2 { font-size: var(--fs-h2); margin-top: 6px; }
.drawer-sub { margin: 0 0 6px; color: var(--muted); }
.drawer .lead-form { margin-top: 18px; }

/* ---------- The Scroll ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.scroll-beat {
  --p: 0;
  --i: 1;
  --decor-x: 0px;
  --decor-x-reverse: 0px;
  --beat-pad: var(--section-pad);
  --field-base:
    linear-gradient(180deg, rgba(10, 11, 16, 0.98) 0%, rgba(5, 6, 10, 0.98) 100%);
  --field-asset: linear-gradient(transparent, transparent);
  --grid-opacity: 0.12;
  --grid-size: 58px;
  --field-glow-x: 70%;
  --field-glow-y: 34%;
  --field-glow-alpha: 0.14;
  --field-glow-size: 34%;
  --field-motif-opacity: 0;
  --field-motif-position: 50% 50%;
  --field-motif-size: 1220px auto;
  --field-motif-transform: translate3d(0, 0, 0) scale(1);
  --field-sweep-alpha: 0.08;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(620px, 88svh, 900px);
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + var(--beat-pad)) 0 var(--beat-pad);
  scroll-margin-top: var(--header-height);
  background: transparent;
}

.beat-field {
  position: absolute;
  inset: -1px;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(circle at var(--field-glow-x) var(--field-glow-y), rgba(183, 255, 60, var(--field-glow-alpha)), transparent var(--field-glow-size)),
    var(--field-asset),
    var(--field-base);
  background-size: auto, cover, auto;
  background-position: center, center, center;
  transform: translate3d(var(--decor-x), calc(var(--p) * -16px), 0) scale(1.01);
  transform-origin: 50% 0%;
  will-change: transform, opacity;
}

.beat-field::before,
.beat-field::after,
.decor-grid,
.beat-fade,
.cta-glow {
  content: "";
  position: absolute;
  pointer-events: none;
}

.beat-field::before {
  inset: 0;
  opacity: var(--field-motif-opacity);
  background: url("assets/design-system/motif/connective-field-v1.svg") var(--field-motif-position) / var(--field-motif-size) no-repeat;
  mix-blend-mode: screen;
  transform: translate3d(var(--decor-x), 0, 0) var(--field-motif-transform);
  transform-origin: 50% 50%;
  mask-image: radial-gradient(ellipse at center, #000 0%, #000 52%, transparent 84%);
  will-change: transform, opacity;
}

.beat-field::after {
  inset: 0;
  opacity: calc(0.72 + (var(--p) * 0.12));
  background:
    radial-gradient(circle at 22% 70%, rgba(223, 255, 128, var(--field-sweep-alpha)), transparent 1.6%),
    radial-gradient(circle at 78% 28%, rgba(183, 255, 60, var(--field-sweep-alpha)), transparent 1.45%),
    linear-gradient(116deg, transparent 0 43%, rgba(183, 255, 60, var(--field-sweep-alpha)) 43.4%, rgba(223, 255, 128, var(--field-sweep-alpha)) 43.9%, transparent 45.2%),
    linear-gradient(90deg, transparent 0 18%, rgba(255, 246, 221, var(--field-sweep-alpha)) 18.2%, transparent 18.6% 71%, rgba(183, 255, 60, var(--field-sweep-alpha)) 71.2%, transparent 71.7%);
  transform: translate3d(var(--decor-x-reverse), calc(var(--p) * 1.4%), 0);
  will-change: transform, opacity;
}

.decor-grid {
  inset: -1px;
  z-index: 0;
  opacity: var(--grid-opacity);
  background:
    linear-gradient(rgba(255, 255, 255, 0.68) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.68) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  transform: translate3d(0, calc(var(--p) * -8px), 0);
  mask-image: radial-gradient(ellipse at center, #000 0%, #000 54%, transparent 82%);
  will-change: transform, opacity;
}

.beat-fade {
  left: 0;
  right: 0;
  z-index: 1;
  height: clamp(74px, 11vw, 150px);
}

.beat-fade-top {
  top: -1px;
  background: linear-gradient(180deg, rgba(5, 6, 10, 0.82), rgba(5, 6, 10, 0));
}

.beat-fade-bottom {
  bottom: -1px;
  background: linear-gradient(180deg, rgba(5, 6, 10, 0), rgba(5, 6, 10, 0.78));
}

.cta-glow {
  inset: 18% 18% 16%;
  z-index: 0;
  background: radial-gradient(circle at 50% 52%, rgba(183, 255, 60, 0.2), transparent 42%);
  opacity: calc(0.72 + (var(--p) * 0.12));
}

.beat-wrap {
  position: relative;
  z-index: 2;
  width: var(--content-spine);
  margin: 0 auto;
}

.beat-center {
  display: grid;
  justify-items: center;
  text-align: center;
}

.beat-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.beat-copy p,
.beat-subhead {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(247, 247, 242, 0.74);
  font-size: var(--fs-lead);
  line-height: 1.42;
  font-weight: 720;
  text-wrap: balance;
}

.scroll-beat h1,
.scroll-beat h2 {
  margin: 0 0 clamp(18px, 4vw, 30px);
  line-height: 0.88;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.scroll-beat h1 {
  font-size: var(--fs-hero);
}

.scroll-beat h2 {
  font-size: var(--fs-h2);
}

.beat-caption {
  margin: clamp(18px, 4vw, 30px) 0 0;
  color: rgba(247, 247, 242, 0.44);
  font-size: var(--fs-caption);
  font-weight: 850;
  letter-spacing: 0.08em;
}

.beat-hero,
.beat-proof,
.beat-receipts {
  background: #0a0b10;
  /* The proof floats in space: grid behind, no chrome anywhere. */
  --grid-opacity: 0.12;
  --grid-size: 60px;
  /* Full frame: the assembled composition (title / graph / meter / stats)
     needs the whole viewport for its held moment. */
  min-height: 100svh;
}

.beat-hero {
  --beat-pad: var(--section-pad-lg);
  --field-asset: var(--asset-command-dark);
  --grid-opacity: 0.1;
  --grid-size: 60px;
  /* Glow routed off-axis + sweep dimmed: decor grazes the frame, never washes the copy. */
  --field-glow-x: 82%;
  --field-glow-y: 18%;
  --field-glow-alpha: 0.16;
  --field-glow-size: 32%;
  --field-motif-opacity: 0.24;
  --field-motif-position: 78% 22%;
  --field-motif-size: 1360px auto;
  --field-motif-transform: translate3d(5%, -4%, 0) scale(1.08);
  --field-sweep-alpha: 0.05;
  min-height: clamp(600px, 84svh, 860px);
  overflow: hidden; /* clip the expanding handoff layers */
}

/* Text-protection scrim: copy on hero/door always sits on quiet dark ground;
   the circuitry lives around the words, never through them. */
.beat-hero .beat-wrap,
.beat-door .beat-wrap {
  position: relative;
}
.beat-hero .beat-wrap {
  /* Sit high: more of the story (copy, CTA, the talent peeking at the
     seam) lands in the first glance. Layout-based lift — GSAP owns this
     element's transform. */
  margin-top: -6svh;
}
.beat-hero .beat-wrap::before,
.beat-door .beat-wrap::before {
  content: "";
  position: absolute;
  inset: -10% -14%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse 74% 64% at 50% 46%,
    rgba(5, 6, 10, 0.78),
    rgba(5, 6, 10, 0.32) 56%,
    transparent 78%);
}

.beat-proof {
  --beat-pad: var(--section-pad-lg);
  --grid-opacity: 0.12;
  --grid-size: 62px;
  min-height: clamp(720px, 92svh, 1040px);
}

.beat-receipts {
  min-height: auto;
  /* This beat pins as one full-screen composition — headline, arc, meter,
     stat boxes all visible at once. The nav has evaporated by this depth,
     so no header allowance; tight rhythm so nothing falls off screen. */
  padding: clamp(30px, 4.5svh, 44px) 0 clamp(24px, 3.5svh, 36px);
}

.beat-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 10, 0.92), rgba(5, 6, 10, 0.78) 52%, rgba(5, 6, 10, 0.96)),
    var(--asset-command-dark) center / cover no-repeat;
  opacity: 0.38;
  pointer-events: none;
  transform: translate3d(0, calc(var(--p) * -24px), 0) scale(1.02);
  transform-origin: 50% 0%;
}

.beat-hero .button {
  margin-top: clamp(24px, 5vw, 38px);
}

.beat-hero .beat-center {
  will-change: transform, opacity;
}

.js .beat-hero .beat-center {
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.992);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .beat-hero .beat-center.is-visible {
  opacity: 1;
  transform: translate3d(0, calc(var(--p) * -7svh), 0);
}

.beat-hero .button-primary,
.beat-door .button-primary,
.button-form {
  animation: cta-breathe 4.2s ease-in-out infinite;
}

.beat-proof .beat-copy h2 {
  transform: translate3d(0, calc(var(--i) * 8px), 0);
}

.js .beat-proof .beat-copy p {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition: opacity 420ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .beat-proof.is-converged .beat-copy p {
  opacity: 1;
  transform: none;
}

.proof-convergence {
  position: relative;
  min-height: clamp(280px, 46vw, 520px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  justify-items: center;
  gap: 0;
  margin-top: clamp(42px, 8vw, 92px);
}

.proof-convergence .proof-phone-card {
  --x: 0%;
  --y: 0%;
  --r: 0deg;
  --end-scale: 1;
  width: clamp(92px, 24vw, 238px);
  max-width: 100%;
  opacity: calc(0.32 + (var(--p) * 0.68));
  transform:
    translate3d(calc(var(--x) * var(--i)), calc(var(--y) * var(--i)), 0)
    rotate(calc(var(--r) * var(--i)))
    scale(calc(var(--end-scale) - (var(--i) * 0.08)));
  transform-origin: 50% 72%;
  will-change: transform, opacity;
}

.proof-convergence .proof-phone-card-face {
  --x: -18%;
  --y: 6%;
  --r: -6deg;
  --end-scale: 1;
}

.proof-convergence .proof-phone-card-thread {
  --x: 0%;
  --y: -6%;
  --r: 2deg;
  --end-scale: 1.07;
}

.proof-convergence .proof-phone-card-showtime {
  --x: 18%;
  --y: 6%;
  --r: 6deg;
  --end-scale: 1;
}

.beat-receipts .beat-copy {
  margin-bottom: clamp(16px, 3vw, 24px);
}

.chart-caption {
  color: rgba(247, 247, 242, 0.58) !important;
  font-size: var(--fs-small) !important;
  font-weight: 850 !important;
  letter-spacing: 0.02em;
}

.receipts-grid {
  display: grid;
  gap: clamp(12px, 2vw, 16px);
  align-items: stretch;
}

.receipt-chart {
  padding: clamp(4px, 2vw, 14px);
}

.receipt-meter {
  display: grid;
  align-content: center;
  gap: clamp(10px, 2vw, 14px);
  padding: 0 clamp(8px, 3vw, 18px);
  color: var(--text);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.receipt-meter p {
  margin: 0;
  color: rgba(247, 247, 242, 0.56);
  font-size: var(--fs-small);
  line-height: 1.45;
  font-weight: 720;
}

.receipt-meter strong {
  display: inline;
  margin: 0;
  color: var(--green);
  font-size: var(--fs-small);
  line-height: inherit;
  letter-spacing: 0;
}

.js .beat-receipts.receipts-active .revenue-peak-glow {
  animation: receipt-node-breathe 2s ease-in-out infinite;
}

.receipt-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: clamp(12px, 2.5vw, 18px) 0 0;
  padding: 0;
  list-style: none;
}

.receipt-motion {
  /* The motion behind the levers: all the back-and-forth the machine
     carried — big numbers, no chrome, one quiet line. */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 8px 16px;
  margin: clamp(8px, 1.6vw, 12px) 0 0;
  color: rgba(247, 247, 242, 0.56);
  font-size: var(--fs-small);
  font-weight: 760;
  text-align: center;
}

.receipt-motion strong {
  color: var(--text);
  font-size: var(--fs-lead);
  font-weight: 860;
  letter-spacing: -0.01em;
}

.receipt-motion-dot {
  color: rgba(183, 255, 60, 0.6);
}

.case-study-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.case-study-link::after {
  content: "→";
  font-weight: 900;
  transition: transform 240ms ease;
}

.case-study-link:hover::after {
  transform: translateX(4px);
}

.receipt-stats li {
  display: grid;
  gap: 5px;
  min-height: 82px;
  align-content: center;
  padding: 12px 14px;
  color: rgba(247, 247, 242, 0.64);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
}

.receipt-stats strong {
  color: var(--text);
  font-size: calc(var(--fs-h2) * 0.82);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.receipt-stats span {
  font-size: var(--fs-caption);
  font-weight: 850;
  line-height: 1.25;
}

.depth-disclosure {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: clamp(22px, 5vw, 36px);
}

.receipts-disclosure {
  margin-top: clamp(10px, 2vw, 16px);
}

.depth-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 17px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.depth-toggle:hover,
.depth-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(183, 255, 60, 0.42);
  background: rgba(255, 255, 255, 0.09);
}

.depth-panel {
  width: 100%;
  overflow: hidden;
}

.depth-panel[hidden] {
  display: none !important;
}

.depth-panel:not([hidden]) {
  display: block;
  animation: disclosure-in 280ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes disclosure-in {
  from { opacity: 0; transform: translate3d(0, 12px, 0); }
  to { opacity: 1; transform: none; }
}

.proof-disclosure {
  justify-items: center;
  margin-top: clamp(34px, 7vw, 70px);
}

.proof-depth-panel {
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 30px);
  background: var(--dark-card-surface);
  border: 1px solid var(--dark-card-border);
  border-radius: 28px;
  box-shadow: var(--dark-card-shadow);
}

.proof-depth-panel .workstation-demo {
  width: min(100%, 430px);
}

.receipts-depth-panel {
  max-width: 820px;
  padding: clamp(14px, 3vw, 22px);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.receipts-detail-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--text);
  font-size: var(--fs-small);
}

.receipts-detail-table caption {
  margin-bottom: 12px;
  color: rgba(247, 247, 242, 0.58);
  font-size: var(--fs-caption);
  font-weight: 900;
  text-align: left;
}

.receipts-detail-table th,
.receipts-detail-table td {
  padding: 11px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  text-align: left;
}

.receipts-detail-table th {
  color: var(--green);
  font-size: var(--fs-micro);
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.receipts-detail-table td:nth-child(2) {
  color: var(--text);
  font-weight: 1000;
}

.receipts-detail-table td:nth-child(3) {
  color: rgba(247, 247, 242, 0.58);
  font-weight: 820;
}

.beat-lean-team {
  min-height: clamp(650px, 86svh, 880px);
  background: #090a0f;
}

.beat-lean-team .beat-copy {
  margin-bottom: clamp(34px, 7vw, 68px);
}

.lean-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 2.4vw, 22px);
  align-items: stretch;
  justify-content: center;
}

.lean-team-card {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 14px;
  min-width: 0;
  margin: 0;
}

.lean-team-photo,
.lean-team-placeholder {
  position: relative;
  min-height: clamp(190px, 30vw, 390px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--graphite);
  box-shadow: var(--dark-card-shadow);
}

.lean-team-photo::after,
.lean-team-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%, rgba(0, 0, 0, 0.22)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.07));
}

.lean-team-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.lean-team-product {
  display: grid;
  place-items: center;
  padding: clamp(10px, 2vw, 18px);
}

.lean-team-product img {
  width: auto;
  max-width: min(86%, 230px);
  height: 100%;
  object-fit: contain;
}

.lean-team-placeholder {
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: var(--fs-hero);
  font-weight: 1000;
  letter-spacing: -0.08em;
  background:
    radial-gradient(circle at 50% 35%, rgba(183, 255, 60, 0.1), transparent 34%),
    linear-gradient(160deg, rgba(32, 36, 49, 0.96), rgba(9, 10, 15, 0.98));
}

.lean-team-card figcaption {
  min-height: 3.4em;
  margin: 0;
  color: rgba(247, 247, 242, 0.76);
  font-size: var(--fs-small);
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: -0.01em;
}

.beat-early-door {
  min-height: 64svh;
  background: #07080d;
}

.beat-early-door .beat-center {
  max-width: 780px;
}

.beat-early-door .button {
  margin-top: clamp(4px, 1vw, 8px);
}

.early-door-release,
.door-risk-line {
  margin: 14px 0 0;
  color: rgba(247, 247, 242, 0.56);
  font-size: var(--fs-small);
  font-weight: 850;
  letter-spacing: 0.01em;
}

.beat-handoff {
  min-height: 72svh;
  background: #05060a;
}

.beat-handoff .beat-copy {
  max-width: 980px;
}

.beat-handoff h2 {
  max-width: 10ch;
}

.beat-low {
  display: block;
  padding: 0;
  background: #000;
}

.low-screen {
  position: relative;
  z-index: 1;
  min-height: 84svh;
  display: grid;
  align-content: center;
  justify-items: center;
  width: var(--content-spine);
  margin: 0 auto;
  padding: calc(var(--header-height) + var(--section-pad)) 0 var(--section-pad);
  text-align: center;
}

.low-screen p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(247, 247, 242, 0.7);
  font-size: var(--fs-lead);
  line-height: 1.38;
  font-weight: 740;
}

.low-symptoms span {
  display: inline-block;
  transform-origin: 50% 100%;
}

.js .low-screen.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.js .low-screen h2,
.js .low-screen p {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition: opacity 580ms ease, transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .low-screen.is-visible h2,
.js .low-screen.is-visible p {
  opacity: 1;
  transform: none;
}

.js .low-screen.is-visible p {
  transition-delay: 400ms;
}

.low-alone {
  justify-items: center;
  text-align: center;
}

.low-alone h2 {
  max-width: 1020px;
  transform-origin: 50% 50%;
}

.low-alone p {
  max-width: 760px;
  margin: clamp(18px, 4vw, 28px) auto 0;
  text-align: center;
}

.js .low-alone.is-visible h2 {
  transform: scale(calc(1 + (var(--p) * 0.04)));
  transition-delay: 0ms;
}

.beat-imagine {
  min-height: 72svh;
  background: #000;
}

.beat-imagine h2 {
  margin-bottom: 0;
}

.beat-soil {
  min-height: clamp(560px, 78svh, 780px);
  color: var(--ink);
  background: var(--cream-warm);
}

.beat-soil h2 {
  max-width: 13ch;
  font-size: var(--fs-h2);
}

.beat-root {
  min-height: clamp(560px, 78svh, 780px);
  position: relative;
  background:
    linear-gradient(180deg, rgba(42, 49, 36, 0.92) 0%, rgba(25, 31, 25, 0.96) 62%, rgba(14, 17, 15, 0.98) 100%);
}

.beat-lift {
  min-height: clamp(560px, 78svh, 780px);
  position: relative;
  background:
    linear-gradient(180deg, rgba(42, 47, 40, 0.96) 0%, rgba(61, 63, 55, 0.96) 100%);
}

.beat-matures {
  min-height: clamp(560px, 78svh, 780px);
  color: var(--ink);
  background: var(--cream-warm);
}

.beat-matures .beat-copy p,
.beat-built .beat-copy p {
  color: rgba(6, 7, 10, 0.66);
}

.beat-built {
  min-height: clamp(560px, 78svh, 780px);
  color: var(--ink);
  background: var(--cream);
}

.beat-built h2 {
  max-width: 1060px;
}

.beat-built .beat-copy {
  position: relative;
}

.relief-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(32px, 7vw, 54px);
}

.js .relief-chips.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.relief-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  font-size: var(--fs-small);
  font-weight: 900;
}

.js .relief-chips span {
  opacity: 0;
  transform: translate3d(var(--chip-x, 0), 16px, 0) scale(0.98);
  transition: opacity 360ms ease, transform 620ms cubic-bezier(0.2, 1.36, 0.36, 1);
}

.js .relief-chips.is-visible span {
  opacity: 1;
  transform: none;
}

.js .relief-chips.is-visible span:nth-child(1) { transition-delay: 0ms; }
.js .relief-chips.is-visible span:nth-child(2) { transition-delay: 120ms; }
.js .relief-chips.is-visible span:nth-child(3) { transition-delay: 240ms; }
.js .relief-chips.is-visible span:nth-child(4) { transition-delay: 360ms; }
.relief-chips span:nth-child(1) { --chip-x: -18px; }
.relief-chips span:nth-child(2) { --chip-x: 12px; }
.relief-chips span:nth-child(3) { --chip-x: -10px; }
.relief-chips span:nth-child(4) { --chip-x: 16px; }

.js .beat-matures .beat-copy.reveal,
.js .beat-built .beat-copy.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.js .beat-matures .beat-copy h2,
.js .beat-built .beat-copy h2 {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity 520ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .beat-matures .beat-copy p,
.js .beat-built .beat-copy p {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition: opacity 520ms ease 300ms, transform 620ms cubic-bezier(0.22, 1, 0.36, 1) 300ms;
}

.js .beat-matures .beat-copy.is-visible h2,
.js .beat-built .beat-copy.is-visible h2 {
  opacity: 1;
  transform: none;
}

.js .beat-matures .beat-copy.is-visible p,
.js .beat-built .beat-copy.is-visible p {
  opacity: 1;
  transform: none;
}

.beat-how {
  --grid-opacity: 0.12;
  --grid-size: 64px;
  min-height: clamp(600px, 82svh, 840px);
  background: #0a0b10;
}

.beat-how .beat-wrap {
  display: grid;
  gap: clamp(26px, 6vw, 42px);
}

.start-steps {
  position: relative;
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  list-style-position: inside;
  color: var(--text);
  font-size: var(--fs-lead);
  line-height: 1.3;
  font-weight: 900;
  text-align: left;
}

.start-steps li {
  margin: 0;
  padding: 18px 20px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.js .start-steps.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.js .start-steps li {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity 420ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .start-steps.is-visible li {
  opacity: 1;
  transform: none;
}

.js .start-steps.is-visible li:nth-child(1) { transition-delay: 0ms; }
.js .start-steps.is-visible li:nth-child(2) { transition-delay: 150ms; }
.js .start-steps.is-visible li:nth-child(3) { transition-delay: 300ms; }

.js .how-close.reveal {
  transition-delay: 560ms;
}

.how-close {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(247, 247, 242, 0.72);
  font-size: var(--fs-lead);
  line-height: 1.42;
  font-weight: 780;
  text-align: center;
}

.beat-door {
  --beat-pad: var(--section-pad-lg);
  --field-base:
    linear-gradient(180deg, rgba(10, 11, 16, 0.98), rgba(5, 6, 10, 0.96));
  --field-glow-x: 78%;
  --field-glow-y: 42%;
  --field-glow-alpha: 0.2;
  --field-glow-size: 34%;
  --field-motif-opacity: 0.16;
  --field-motif-position: 78% 42%;
  --field-motif-size: 1160px auto;
  --field-motif-transform: translate3d(7%, 0, 0) scale(1.04);
  --field-sweep-alpha: 0.06;
  min-height: clamp(720px, 92svh, 980px);
}

.beat-door .beat-field {
  transform: translate3d(0, calc(var(--p) * -12px), 0) scale(1.01);
}

.beat-door .beat-field::before {
  transform: translate3d(var(--decor-x-reverse), 0, 0) var(--field-motif-transform);
}

.beat-door .beat-field::after {
  transform: translate3d(0, calc(var(--p) * 1.4%), 0);
}

.beat-door .start-copy {
  display: grid;
  justify-items: center;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.beat-door .start-copy .button {
  margin-top: 14px;
}

.form-status {
  min-height: 1.2em;
  margin: 0;
  color: var(--green);
  font-size: var(--fs-small);
  font-weight: 850;
}

.form-status.is-error {
  color: #ff8f86;
}

.lead-form button[disabled] {
  cursor: wait;
  opacity: 0.74;
  transform: none;
}

.footer-link {
  color: var(--muted);
  font-size: var(--fs-small);
  font-weight: 850;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--text);
}

.legal-page {
  background: var(--cream);
  color: var(--ink);
}

.legal-page .site-header {
  background: rgba(10, 11, 16, 0.94);
  border-color: var(--line);
}

.legal-page .site-nav,
.thanks-page .site-nav {
  position: static;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: auto;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.legal-page .site-nav a,
.thanks-page .site-nav a {
  padding: 10px 16px;
  border-radius: 999px;
}

.legal-wrap {
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: calc(var(--header-height) + clamp(56px, 9vw, 92px)) 0 clamp(68px, 10vw, 120px);
}

.legal-hero {
  padding-bottom: clamp(32px, 6vw, 52px);
  border-bottom: 1px solid rgba(6, 7, 10, 0.14);
}

.legal-hero h1 {
  color: var(--ink);
  font-size: var(--fs-hero);
}

.legal-meta {
  margin: 0;
  color: rgba(6, 7, 10, 0.58);
  font-size: var(--fs-small);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-section {
  padding: clamp(28px, 6vw, 46px) 0;
  border-bottom: 1px solid rgba(6, 7, 10, 0.1);
}

.legal-section h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: var(--fs-h2);
  letter-spacing: -0.04em;
}

.legal-section p,
.legal-section li {
  color: rgba(6, 7, 10, 0.68);
  font-size: var(--fs-body);
  line-height: 1.68;
}

.legal-section a {
  color: var(--green-dim);
  font-weight: 850;
}

.legal-section ul {
  margin: 0;
  padding-left: 1.2em;
}

.legal-callout {
  margin-top: 18px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(6, 7, 10, 0.1);
  border-radius: 18px;
}

@media (max-width: 520px) {
  .scroll-beat {
    --grid-size: 44px;
    min-height: clamp(520px, 82svh, 680px);
    padding-left: 0;
    padding-right: 0;
  }

  .beat-field {
    transform: translate3d(var(--decor-x), calc(var(--p) * -8px), 0) scale(1.01);
  }

  .beat-hero {
    --field-motif-opacity: 0.2;
    --field-motif-position: 68% 30%;
    --field-motif-size: 920px auto;
    min-height: 86svh;
  }

  .beat-door {
    --field-motif-size: 900px auto;
    --field-motif-position: 76% 44%;
  }

  .beat-early-door,
  .beat-handoff,
  .beat-imagine {
    min-height: 62svh;
  }

  .beat-root,
  .beat-lift,
  .beat-matures,
  .beat-built,
  .beat-how {
    min-height: clamp(520px, 74svh, 660px);
  }

  .beat-door {
    min-height: auto;
  }

  .scroll-beat h1,
  .scroll-beat h2 {
    line-height: 0.9;
  }

  .proof-convergence {
    min-height: 304px;
    margin-top: 34px;
  }

  .proof-convergence .proof-phone-card {
    width: clamp(88px, 28vw, 112px);
    padding: 7px;
  }

  .proof-convergence .proof-phone-card-face {
    --x: -14%;
    --y: 7%;
    --r: -6deg;
  }

  .proof-convergence .proof-phone-card-thread {
    --y: -5%;
    --r: 2deg;
  }

  .proof-convergence .proof-phone-card-showtime {
    --x: 14%;
    --y: 7%;
    --r: 6deg;
  }

  .receipt-chart {
    padding: 0;
  }

  .revenue-line-asset {
    width: min(106%, 760px);
    margin-left: -3%;
  }

  /* The SVG scales to ~half the viewBox on phones, which halves the
     rendered text. Scale the type up in SVG units so the values, months,
     and the Build/Best story tags stay clearly readable. */
  .revenue-label-value { font-size: calc(var(--fs-small) * 1.4); }
  .revenue-label-month { font-size: calc(var(--fs-caption) * 1.4); }
  .revenue-tag { font-size: calc(var(--fs-caption) * 1.55); }

  .receipt-stats {
    grid-template-columns: 1fr;
  }

  .beat-lean-team .beat-copy {
    margin-bottom: 28px;
  }

  .lean-team-grid {
    gap: 7px;
  }

  .lean-team-photo,
  .lean-team-placeholder {
    min-height: clamp(132px, 42vw, 170px);
    border-radius: 16px;
  }

  .lean-team-product {
    padding: 7px;
  }

  .lean-team-product img {
    max-width: 88%;
  }

  .lean-team-card {
    gap: 10px;
  }

  .lean-team-card figcaption {
    min-height: 4.8em;
    font-size: var(--fs-caption);
    line-height: 1.16;
  }

  .beat-handoff h2 {
    max-width: 9.5ch;
  }

  .low-screen {
    width: var(--content-spine);
    min-height: 78svh;
  }

  .low-alone h2 {
    line-height: 0.93;
  }

  .beat-soil h2 {
    max-width: 12ch;
    line-height: 0.96;
  }

  .relief-chips {
    display: grid;
  }

  .start-steps {
    list-style-position: outside;
    padding-left: 1.35em;
  }

  .start-steps li {
    padding: 16px;
  }

  .saturday-section {
    padding: 56px 0 64px;
  }
  .saturday-grid { gap: 24px; }
  .saturday-section .copy-stack > p:not(.eyebrow) { font-size: var(--fs-body); }
  .saturday-side-asset { width: min(66%, 260px); }
  .growth-close p,
  .start-copy,
  .start-form-card,
  .lead-form,
  .footer-small {
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .growth-close .button,
  .start-form-card .button {
    width: 100%;
    max-width: 100%;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .lead-form label > span,
  .checkline span,
  .lead-form small {
    overflow-wrap: break-word;
  }
}

/* =========================================================
   TABLET  ≥ 700px
   ========================================================= */
@media (min-width: 700px) {
  .button { width: auto; }
  .button-form { width: 100%; }
  .proof-strip { padding: 0; }
  .proof-strip ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field-row { gap: 14px; }
}

/* =========================================================
   DESKTOP  ≥ 1000px
   ========================================================= */
@media (min-width: 1000px) {
  :root { --header-height: 78px; }

  .menu-button { display: none; }
  .site-nav {
    position: static; display: flex; flex-direction: row; align-items: center; gap: 22px;
    padding: 0; background: none; border: 0; box-shadow: none;
    font-size: var(--fs-small);
  }
  .site-nav a { padding: 0; background: none; border-radius: 0; }
  .site-nav a.nav-cta { padding: 10px 16px; border-radius: 999px; background: var(--green); }


  h1 { font-size: var(--fs-hero); }
  h2 { font-size: var(--fs-h2); }

  .button { width: auto; }
  .button-form { width: 100%; }

  .hero-split { grid-template-columns: 1fr; }
  .hero-copy { max-width: 910px; }

  .proof-strip { grid-template-columns: 1fr; align-items: center; }
  .proof-strip ul { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .proof-strip li { min-height: 78px; padding: 13px 16px; }
  .proof-strip li strong { font-size: var(--fs-lead); }

  .motion-band { grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr); gap: clamp(40px, 5vw, 70px); }

  .origin-grid { grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr); gap: clamp(40px, 5vw, 70px); }

  .saturday-grid { grid-template-columns: minmax(0, 430px) minmax(0, 1fr); gap: clamp(56px, 7vw, 86px); }
  .saturday-image { order: 0; min-height: 340px; max-width: 430px; justify-self: start; }
  .saturday-side-asset { width: min(72%, 380px); }

  .start-grid {
    grid-template-columns: 1fr;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
  }

  .goal-proof-head { flex-direction: row; align-items: end; justify-content: space-between; }
  .goal-proof-foot { flex-direction: row; align-items: center; flex-wrap: wrap; gap: 16px; }
}

/* larger display headline on very wide screens */
@media (min-width: 1280px) {
  h1 { font-size: var(--fs-hero); }
}

/* ---------- Thank-you page ---------- */
.thanks-page { min-height: 100vh; background: radial-gradient(circle at 20% 0%, rgba(183, 255, 60, 0.16), transparent 30%), #0a0b10; }
.thanks-wrap { width: min(720px, calc(100% - 36px)); min-height: 100vh; display: grid; place-content: center; gap: 28px; margin: 0 auto; padding: calc(var(--header-height) + 40px) 0 60px; }
.thanks-card { padding: clamp(28px, 7vw, 54px); }
.thanks-card h1 { font-size: var(--fs-h2); }
.thanks-card p:not(.eyebrow) { color: #d8d9df; font-size: var(--fs-lead); }
.thanks-card .steps { display: grid; gap: 10px; margin: 6px 0 24px; }
.thanks-card .steps span { display: flex; gap: 12px; align-items: baseline; padding: 14px 16px; background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line); border-radius: 16px; color: var(--text); font-weight: 700; line-height: 1.4; }
.thanks-card .steps span b { color: var(--green); font-weight: 1000; }
.thanks-card .button { width: 100%; }
@media (min-width: 1000px) { .thanks-card .button { width: auto; } }

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body { background: var(--bg); }
  body::before { display: none; }

  .beat-hero,
  .beat-proof,
  .beat-receipts,
  .beat-lean-team,
  .beat-early-door { background: #0a0b10; }
  .beat-handoff { background: #05060a; }
  .beat-low,
  .beat-imagine { background: #000; }
  .beat-soil { background: var(--cream-warm); }
  .beat-root { background: linear-gradient(180deg, rgba(42, 49, 36, 0.92) 0%, rgba(25, 31, 25, 0.96) 62%, rgba(14, 17, 15, 0.98) 100%); }
  .beat-lift { background: linear-gradient(180deg, rgba(42, 47, 40, 0.96) 0%, rgba(61, 63, 55, 0.96) 100%); }
  .beat-matures { background: var(--cream-warm); }
  .beat-built { background: var(--cream); }
  .beat-how { background: #0a0b10; }

  body.is-in-low .site-header {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .reveal,
  .js .reveal,
  .js .beat-hero .beat-center,
  .js .beat-proof .beat-copy p,
  .js .low-screen h2,
  .js .low-screen p,
  .js .low-symptoms span,
  .js .relief-chips span,
  .js .beat-matures .beat-copy h2,
  .js .beat-built .beat-copy h2,
  .js .beat-matures .beat-copy p,
  .js .beat-built .beat-copy p,
  .js .start-steps li {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .site-header,
  .drawer,
  .drawer-backdrop,
  .demo-menu,
  .beat-field,
  .beat-field::before,
  .beat-field::after,
  .beat-fade,
  .cta-glow,
  .proof-convergence .proof-phone-card,
  .beat-receipts .revenue-line,
  .beat-receipts .revenue-fill,
  .beat-receipts .revenue-label,
  .beat-receipts .revenue-node,
  .beat-receipts .receipt-meter .goal-fill,
  .beat-receipts .receipt-meter .goal-pace {
    transition: none;
  }

  .beat-hero::before,
  .decor-grid,
  .beat-fade,
  .cta-glow {
    filter: none;
    transform: none;
  }

  .beat-hero::before { opacity: 0.38; }
  .decor-grid { opacity: var(--grid-opacity); }
  .cta-glow { opacity: 0.72; }

  .proof-convergence .proof-phone-card,
  .low-alone h2,
  .low-symptoms span,
  .beat-receipts .revenue-label,
  .beat-receipts .revenue-node,
  .beat-receipts .receipt-meter .goal-fill,
  .beat-receipts .receipt-meter .goal-pace {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .beat-field,
  .beat-field::before,
  .beat-field::after {
    filter: none;
    transform: none;
  }

  .hero-noise,
  .hero-noise::before,
  .hero-noise::after,
  .beat-field,
  .beat-field::before,
  .beat-field::after,
  .decor-grid,
  .beat-fade,
  .cta-glow,
  .beat-hero .button-primary,
  .beat-door .button-primary,
  .button-form,
  .demo-view,
  .demo-bubble,
  .demo-update,
  .demo-money,
  .depth-panel:not([hidden]),
  .beat-receipts.receipts-active .revenue-peak-glow {
    animation: none;
  }
}

/* ---- Hero talent (Chef G at work) — floats on the hero/proof seam ---- */
main { position: relative; }
.hero-talent-anchor {
  /* Positioning lives here (and the pin grabs this); the card inside is
     free to scale/fade without fighting the pin. */
  position: absolute;
  left: 50%;
  top: 0; /* set by positionHeroTalent(): centered on the hero/proof seam */
  z-index: 6; /* above both pages, below nav (40) and drawer (80) */
  width: min(38vh, 340px);
  aspect-ratio: 9 / 16;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-talent {
  /* The video lives inside a phone — the Workstation's native habitat.
     Rests small and tilted like a phone set down on the counter;
     GSAP straightens it as it expands (rest transform must match the
     tween's from-state so the landing frame is the true start). */
  position: relative;
  width: 100%;
  height: 100%;
  transform: scale(0.4) rotate(-9deg);
  border-radius: 44px;
  overflow: hidden;
  padding: 11px;
  background: #06070a;
  border: 1px solid rgba(247, 247, 242, 0.22);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.55);
  will-change: transform, opacity;
}
.hero-talent::before {
  /* Camera island */
  content: '';
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 27%;
  height: 21px;
  border-radius: 999px;
  background: #06070a;
  z-index: 2;
}
.hero-talent video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 34px;
}
@media (prefers-reduced-motion: reduce) {
  /* The floating video is pure scroll choreography — without the JS that
     positions and expands it, it has no home (anchor top is JS-set), so it
     doesn't appear. The page reads hero → proof directly. */
  .hero-talent-anchor { display: none; }
}


/* ---- Nav polish: floating chrome, living logo, text-roll CTAs ---- */
.brand-mark {
  transition: transform 340ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.brand-name {
  transition: transform 340ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 300ms ease;
  transform-origin: 0% 60%;
}
.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  transform: rotate(-8deg) scale(1.07);
}
.brand:hover .brand-name,
.brand:focus-visible .brand-name {
  transform: rotate(-8deg);
  opacity: 0;
}

.nav-cta, .button-primary, .button-form {
  transition: filter 220ms ease, transform 220ms ease;
}
.nav-cta:hover, .button-primary:hover, .button-form:hover {
  filter: brightness(1.07);
}
/* The mask stands still; the two-line stack moves inside it. The twin is
   invisible until the moment of the roll. */
.btn-roll {
  display: block;
  overflow: hidden;
  height: 1.25em;
  line-height: 1.25;
}
.btn-roll-inner {
  display: block;
  transition: transform 340ms cubic-bezier(0.76, 0, 0.24, 1);
}
.btn-roll-inner > span {
  display: block;
  height: 1.25em;
  line-height: 1.25;
}
.nav-cta:hover .btn-roll-inner,
.button-primary:hover .btn-roll-inner,
.button-form:hover .btn-roll-inner,
.nav-cta:focus-visible .btn-roll-inner,
.button-primary:focus-visible .btn-roll-inner,
.button-form:focus-visible .btn-roll-inner {
  transform: translateY(-50%);
}
@media (prefers-reduced-motion: reduce) {
  .brand:hover .brand-mark, .brand:hover .brand-name { transform: none; opacity: 1; }
  .btn-roll-inner, .brand-mark, .brand-name { transition: none; }
  .nav-cta:hover .btn-roll-inner, .button-primary:hover .btn-roll-inner, .button-form:hover .btn-roll-inner { transform: none; }
}
