/* HOA Fine Print
   Bright white and deep black sections, precise sans type (Inter Tight / Inter),
   and HOA documents set in a serif (Newsreader) with a highlighter, the one
   visual idea that belongs to this product. Motion is scroll-linked and calm. */

:root {
  --bg: #fbfbfd;
  --bg-alt: #f2f3f5;
  --surface: #ffffff;
  --ink: #1d1d1f;
  --ink-2: #424245;
  --muted: #6e6e73;
  --line: #d9dadf;
  --line-soft: #e8e8ed;
  --accent: #0a7a6d;
  --accent-hover: #086659;
  --accent-soft: #e3f3f0;
  --on-accent: #ffffff;
  --marker: #ffe066;
  --marker-soft: #fff3b8;
  --red: #c4231a;
  --red-soft: #fdecea;
  --amber: #a35a00;
  --amber-soft: #fdf1dc;
  --green: #127a45;
  --green-soft: #e2f4e9;
  --black: #000000;
  --on-black: #f5f5f7;
  --on-black-dim: #a1a1a6;
  --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.04), 0 2px 8px rgb(0 0 0 / 0.04);
  --shadow: 0 2px 6px rgb(0 0 0 / 0.04), 0 24px 48px -16px rgb(0 0 0 / 0.16);
  --shadow-lg: 0 4px 12px rgb(0 0 0 / 0.05), 0 48px 96px -24px rgb(0 0 0 / 0.25);
  --r-sm: 10px;
  --r: 18px;
  --r-lg: 28px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --display: "Inter Tight", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --text: "Inter", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --doc: "Newsreader", "Iowan Old Style", Georgia, serif;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #000000;
    --bg-alt: #0d0d0f;
    --surface: #161618;
    --ink: #f5f5f7;
    --ink-2: #d2d2d7;
    --muted: #a1a1a6;
    --line: #3a3a3c;
    --line-soft: #2c2c2e;
    --accent: #3fd0bc;
    --accent-hover: #6ee0d0;
    --accent-soft: #0f2e2a;
    --on-accent: #00201c;
    --marker: #806400;
    --marker-soft: #4a3b06;
    --red: #ff8a80;
    --red-soft: #3a1714;
    --amber: #ffbf5e;
    --amber-soft: #3a2a10;
    --green: #6fdc9d;
    --green-soft: #113322;
    --black: #000000;
    --shadow-sm: none;
    --shadow: 0 0 0 1px var(--line-soft), 0 24px 48px -16px rgb(0 0 0 / 0.8);
    --shadow-lg: 0 0 0 1px var(--line-soft), 0 48px 96px -24px rgb(0 0 0 / 0.9);
    color-scheme: dark;
  }
}

/* ---------------- Base ---------------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 17px/1.53 var(--text); letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility;
}
h1, h2, h3 { margin: 0; font-family: var(--display); text-wrap: balance; }
h1 { font-size: clamp(3rem, 8.4vw, 6.4rem); line-height: 1.02; font-weight: 700; letter-spacing: -0.045em; }
h2 { font-size: clamp(2.2rem, 5.2vw, 4rem); line-height: 1.06; font-weight: 700; letter-spacing: -0.035em; }
h3 { font-size: 1.3rem; line-height: 1.2; font-weight: 600; letter-spacing: -0.02em; }
p { margin: 0; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
h1:focus, .joined:focus { outline: none; }
:focus-visible { outline: 3px solid color-mix(in srgb, var(--accent) 60%, transparent); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--marker); color: #1d1d1f; }
mark { color: inherit; background: none; padding: 0 1px; border-radius: 3px; box-decoration-break: clone; -webkit-box-decoration-break: clone;
  background-image: linear-gradient(transparent 12%, var(--marker) 12%, var(--marker) 88%, transparent 88%); background-repeat: no-repeat; background-size: 100% 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 16px; top: -60px; z-index: 100; padding: 10px 16px; background: var(--ink); color: var(--bg); border-radius: var(--r-sm); }
.skip:focus { top: 12px; }
.wrap { max-width: 1120px; margin: 0 auto; padding-inline: 22px; }
.narrow { max-width: 760px; }
.center { text-align: center; }
.flow { display: grid; gap: 32px; align-content: start; }
.flow-lg { display: grid; gap: 44px; align-content: start; }
.dim { color: var(--muted); }
.grad { background: linear-gradient(95deg, var(--accent) 10%, #2a9d8f 45%, #7a8b2e 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Launch mode: the server sets data-mode on <html>. */
[data-mode="waitlist"] .live-only, [data-mode="live"] .waitlist-only { display: none !important; }
html:not([data-mode]) .waitlist-only { display: none !important; }

.icon { width: 20px; height: 20px; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-xs { width: 14px; height: 14px; }
.icon-sm { width: 18px; height: 18px; }
.icon-lg { width: 30px; height: 30px; }

.eyebrow { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em; color: var(--accent); margin-bottom: 14px; }
.lede { font-size: clamp(1.1rem, 1.9vw, 1.35rem); line-height: 1.45; color: var(--muted); max-width: 40ch; letter-spacing: -0.015em; }
.fine { font-size: 0.88rem; color: var(--muted); }
.hint { font-size: 0.86rem; color: var(--muted); }
.more { display: inline-flex; align-items: center; gap: 4px; font-weight: 500; color: var(--accent); }
.more span { transition: transform 0.25s var(--ease-out); }
.more:hover span { transform: translateX(3px); }
.more-lg { font-size: 1.15rem; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 0 22px;
  border: 0; border-radius: 980px; background: var(--accent); color: var(--on-accent);
  font: 500 1rem/1 var(--text); letter-spacing: -0.01em; cursor: pointer; white-space: nowrap; text-decoration: none !important;
  transition: background 0.25s var(--ease), transform 0.2s var(--ease), box-shadow 0.25s var(--ease), opacity 0.2s;
}
.btn:hover { background: var(--accent-hover); }
.btn:active { transform: scale(0.97); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.btn-xs { min-height: 30px; padding: 0 14px; font-size: 0.8rem; }
.btn-sm { min-height: 36px; padding: 0 16px; font-size: 0.9rem; }
.btn-lg { min-height: 52px; padding: 0 30px; font-size: 1.06rem; }
.btn-ghost { background: transparent; color: var(--accent); box-shadow: inset 0 0 0 1.5px var(--accent); }
.btn-ghost:hover { background: var(--accent-soft); }
.btn-light { background: var(--on-black); color: #1d1d1f; }
.btn-light:hover { background: #ffffff; }

/* ---------------- Nav ---------------- */
.nav {
  position: sticky; top: 0; z-index: 50; height: 52px;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent; transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line-soft); }
/* Over the dark hero, the nav goes dark too. */
.nav.on-dark { background: rgb(0 0 0 / 0.9); border-bottom-color: rgb(255 255 255 / 0.08); }
.nav.on-dark .brand { color: #f5f5f7; }
.nav.on-dark .brand-mark { color: #3fd0bc; }
.nav.on-dark .nav-links a { color: #d2d2d7; }
.nav.on-dark .nav-links a:hover { color: #fff; }
.nav-inner { display: flex; align-items: center; gap: 28px; height: 100%; }
.brand { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); font: 600 1.06rem/1 var(--display); letter-spacing: -0.02em; white-space: nowrap; text-decoration: none !important; }
.brand-mark { width: 24px; height: 24px; color: var(--accent); }
.brand-sm { font-size: 1rem; }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { color: var(--ink-2); font-size: 0.8rem; text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }

/* ---------------- Hero ---------------- */
.hero { position: relative; padding-top: clamp(56px, 9vw, 110px); overflow: hidden;
  background: radial-gradient(900px 500px at 50% 120%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 70%); }
.hero-copy { display: grid; justify-items: center; text-align: center; gap: 26px; }
.hero .lede { margin-inline: auto; max-width: 46ch; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 980px; background: var(--surface); box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line-soft); font-size: 0.85rem; font-weight: 500; color: var(--ink-2); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent); }
.hero-actions { display: grid; justify-items: center; gap: 18px; width: 100%; }
.hero-buttons { display: flex; gap: 12px; }

.waitlist-form { display: grid; justify-items: center; gap: 14px; width: 100%; max-width: 480px; }
.pill-input { display: flex; width: 100%; padding: 6px; border-radius: 980px; background: var(--surface); box-shadow: var(--shadow), inset 0 0 0 1px var(--line-soft); transition: box-shadow 0.25s var(--ease); }
.pill-input:focus-within { box-shadow: var(--shadow), inset 0 0 0 2px var(--accent); }
.pill-input input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--ink); font: 400 1.02rem var(--text); padding: 0 16px; }
.pill-input input::placeholder { color: var(--muted); }
.pill-input .btn { min-height: 46px; }
.role { display: inline-flex; padding: 3px; border-radius: 980px; background: color-mix(in srgb, var(--ink) 6%, transparent); }
.role label { position: relative; cursor: pointer; }
.role input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.role span { display: block; padding: 6px 14px; border-radius: 980px; font-size: 0.85rem; font-weight: 500; color: var(--muted); transition: background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.role input:checked + span { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }
.role input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 1px; }
.form-error { color: var(--red); background: var(--red-soft); padding: 10px 14px; border-radius: var(--r-sm); font-size: 0.92rem; }

.joined { display: grid; justify-items: center; gap: 10px; width: 100%; max-width: 480px; padding: 28px 24px; border-radius: var(--r-lg); background: var(--surface); box-shadow: var(--shadow-lg); text-align: center; animation: pop 0.6s var(--ease-out) both; }
.dark .joined { background: #1c1c1e; color: var(--on-black); box-shadow: 0 0 0 1px #2c2c2e; }
.joined-kicker { font-weight: 600; color: var(--accent); }
.joined-pos { font: 700 clamp(3rem, 9vw, 4.6rem)/1 var(--display); letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.joined-text { color: var(--muted); max-width: 36ch; }
.dark .joined-text { color: var(--on-black-dim); }
.share { display: flex; gap: 8px; width: 100%; margin-top: 6px; }
.share input { flex: 1; min-width: 0; min-height: 36px; padding: 0 14px; border-radius: 980px; border: 1px solid var(--line); background: transparent; color: inherit; font: 400 0.9rem var(--text); }
.joined-reset { margin-top: 4px; padding: 6px; border: 0; background: none; color: var(--muted); font: inherit; font-size: 0.82rem; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.joined-reset:hover { color: var(--ink); }
.joined-refs { font-size: 0.88rem; color: var(--green); font-weight: 500; }
@keyframes pop { from { opacity: 0; transform: scale(0.94) translateY(8px); } }

/* The product shot: a real document with a report floating over it. */
.stage-wrap { perspective: 1800px; margin-top: clamp(48px, 7vw, 84px); padding-inline: 22px; }
.stage { position: relative; max-width: 980px; margin: 0 auto; transform-origin: 50% 0%; }
.sheet {
  display: grid; gap: 18px; max-width: 630px; padding: clamp(28px, 5vw, 56px) clamp(24px, 5vw, 60px) clamp(28px, 4vw, 48px);
  border-radius: var(--r) var(--r) 0 0; background: var(--surface); box-shadow: var(--shadow-lg);
  font: 400 clamp(1rem, 1.6vw, 1.2rem)/1.65 var(--doc); color: var(--ink-2); letter-spacing: 0;
}
.sheet b { font-weight: 500; color: var(--ink); }
.sheet-head { font: 600 0.72rem/1 var(--text); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding-bottom: 16px; border-bottom: 1px solid var(--line-soft); }
.sheet-foot { font: 400 0.78rem/1 var(--text); color: var(--muted); text-align: right; }
.glass {
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  backdrop-filter: saturate(180%) blur(24px); -webkit-backdrop-filter: saturate(180%) blur(24px);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px color-mix(in srgb, var(--ink) 8%, transparent);
}
.report-mini { position: absolute; right: 0; top: 16%; width: min(380px, 46%); display: grid; gap: 12px; padding: 22px; border-radius: var(--r); }
.rm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line-soft); }
.rm-row > div { display: grid; gap: 2px; justify-items: start; }
.rm-label { font-size: 0.75rem; font-weight: 500; color: var(--muted); }
.rm-num { font: 700 2.4rem/1 var(--display); letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.rm-num.red { color: var(--red); }
.rm-plan { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: 0.92rem; font-weight: 500; }
.rm-verified { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 500; color: var(--green); }
.tag { display: inline-flex; padding: 3px 10px; border-radius: 980px; font-size: 0.75rem; font-weight: 600; white-space: nowrap; }
.tag-red { background: var(--red-soft); color: var(--red); }
.tag-amber { background: var(--amber-soft); color: var(--amber); }
.tag-green { background: var(--green-soft); color: var(--green); }
.tag-grey { background: var(--bg-alt); color: var(--muted); }

/* ---------------- Sections ---------------- */
.section { padding-block: clamp(88px, 12vw, 150px); }
.section-alt { background: var(--bg-alt); }
.section-head { display: grid; gap: 16px; margin-bottom: clamp(44px, 6vw, 72px); max-width: 860px; }
.section-head.center { max-width: none; justify-items: center; }
.section-head p, .section-lede { color: var(--muted); font-size: 1.15rem; max-width: 46ch; }

.dark { background: var(--black); color: var(--on-black); }
.dark .dim { color: #86868b; }
.dark .eyebrow { color: #5fe0cc; }
.dark .grad { background-image: linear-gradient(95deg, #5fe0cc 10%, #9be7c4 50%, #f5e27a 100%); }

.statement { padding-block: clamp(100px, 14vw, 180px); }
.statement h2 { max-width: 900px; }
.proof { margin-top: clamp(48px, 7vw, 80px); max-width: 820px; padding: clamp(24px, 4vw, 40px); border-radius: var(--r-lg); background: #111113; box-shadow: 0 0 0 1px #242426; }
.proof blockquote { margin: 0; font: 400 clamp(1.3rem, 2.8vw, 2rem)/1.45 var(--doc); color: #e8e8ed; }
.proof mark { --marker: #f5d547; color: #1d1d1f; }
.proof-meta { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-top: 22px; font-size: 0.9rem; color: var(--on-black-dim); }
.verified { display: inline-flex; align-items: center; gap: 6px; color: #6fdc9d; font-weight: 600; }
.triad { list-style: none; margin: clamp(56px, 8vw, 96px) 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; }
.triad strong { display: block; font: 600 clamp(1.6rem, 3vw, 2.2rem)/1.1 var(--display); letter-spacing: -0.03em; margin-bottom: 10px; }
.triad span { color: var(--on-black-dim); }

/* Bento */
.bento { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.tile { transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); position: relative; display: grid; gap: 12px; align-content: start; padding: clamp(26px, 3.4vw, 40px); border-radius: var(--r-lg); background: var(--surface); box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line-soft); overflow: hidden; transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out); }
.tile:hover { box-shadow: var(--shadow), inset 0 0 0 1px var(--line-soft); }
.tile-wide { grid-column: span 2; }
.tile h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); letter-spacing: -0.03em; }
.tile p { color: var(--muted); }
.tile-kicker { font-size: 0.85rem; font-weight: 600; color: var(--accent) !important; }
.tile-dark { background: #0b0b0c; color: var(--on-black); box-shadow: none; }
.tile-dark p { color: var(--on-black-dim); }
.tile-dark .tile-kicker { color: #ff8a80 !important; }
.big-num { font: 700 clamp(5rem, 11vw, 8rem)/0.9 var(--display) !important; letter-spacing: -0.06em; color: #ff6b5e !important; }
.tile-icon { position: absolute; right: 28px; bottom: 28px; width: 44px; height: 44px; color: var(--line); }
.verdicts { list-style: none; margin: 10px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.verdicts li { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 14px; background: var(--bg-alt); font-size: 0.92rem; font-weight: 500; }
.ring { position: relative; width: 150px; height: 150px; margin: 12px auto 0; }
.ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring circle { fill: none; stroke-width: 11; stroke-linecap: round; }
.ring-track { stroke: var(--bg-alt); }
.ring-fill { stroke: var(--red); stroke-dasharray: 314.16; stroke-dashoffset: 235.6; }
.ring span { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; font-size: 0.8rem; color: var(--muted); }
.ring b { font: 700 2rem/1 var(--display); letter-spacing: -0.04em; color: var(--ink); }
.mini-chat { display: grid; gap: 8px; margin-top: 8px; font-size: 0.9rem; }
.mini-chat .q { justify-self: end; padding: 9px 14px; border-radius: 18px 18px 4px 18px; background: var(--accent); color: var(--on-accent) !important; }
.mini-chat .a { justify-self: start; padding: 9px 14px; border-radius: 18px 18px 18px 4px; background: var(--bg-alt); color: var(--ink) !important; }
.mini-chat sup { color: var(--accent); font-weight: 600; }
.mini-chat .a span { display: block; margin-top: 4px; font-size: 0.78rem; color: var(--muted); }
.topics { list-style: none; margin: 10px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.topics li { padding: 8px 14px; border-radius: 980px; background: var(--bg-alt); font-size: 0.9rem; font-weight: 500; color: var(--ink-2); }

.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; position: relative; }
.steps::before { content: ""; position: absolute; left: 0; right: 0; top: 30px; height: 1px; background: var(--line); transform-origin: left; }
.steps li { position: relative; display: grid; gap: 10px; align-content: start; }
.step-n { display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; background: var(--bg-alt); box-shadow: inset 0 0 0 1px var(--line); font: 600 1.5rem/1 var(--display); color: var(--accent); margin-bottom: 12px; }
.section-alt .step-n { background: var(--bg-alt); }
.steps p { color: var(--muted); }

.upload { display: grid; gap: 16px; padding: 22px; border-radius: var(--r-lg); background: var(--surface); box-shadow: var(--shadow-lg); }
.upload .btn { justify-self: center; }
.dropzone { display: grid; justify-items: center; gap: 8px; text-align: center; padding: 44px 16px; border: 1.5px dashed var(--line); border-radius: var(--r); color: var(--accent); cursor: pointer; transition: border-color 0.25s var(--ease), background 0.25s var(--ease); }
.dropzone:hover, .dropzone.over, .dropzone:focus-within { border-color: var(--accent); background: var(--accent-soft); }
.dropzone input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.dz-title { font-weight: 600; color: var(--ink); }
.dz-hint { font-size: 0.88rem; color: var(--muted); }
.file-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.file-list:empty { display: none; }
.file-list li { display: flex; gap: 12px; align-items: center; padding: 10px 14px; background: var(--bg-alt); border-radius: var(--r-sm); font-size: 0.95rem; animation: pop 0.4s var(--ease-out) both; }
.file-list li span:first-child { flex: 1; min-width: 0; overflow-wrap: anywhere; }
.file-list .size { color: var(--muted); font-size: 0.82rem; font-variant-numeric: tabular-nums; }
.file-list button { min-height: 32px; border: 0; background: none; color: var(--muted); font: inherit; font-size: 0.85rem; cursor: pointer; }
.file-list button:hover { color: var(--red); }

.sample-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 80px); align-items: center; }
.sample-grid > div:first-child { display: grid; gap: 22px; justify-items: start; }
.sample-finding { box-shadow: var(--shadow-lg) !important; }

.price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 380px)); justify-content: center; gap: 22px; margin-bottom: 28px; }
.price-card { position: relative; display: grid; gap: 6px; align-content: start; padding: 40px 34px 34px; border-radius: var(--r-lg); background: var(--surface); box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line-soft); }
.price-card.featured { box-shadow: var(--shadow-lg), inset 0 0 0 2px var(--accent); }
.price-card .btn { margin-top: 24px; }
.badge { position: absolute; top: -13px; left: 34px; padding: 4px 12px; border-radius: 980px; background: var(--accent); color: var(--on-accent); font-size: 0.78rem; font-weight: 600; }
.price span { font: 700 3.6rem/1 var(--display); letter-spacing: -0.045em; font-variant-numeric: tabular-nums; }
.price-note { color: var(--muted); margin-bottom: 18px; }
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 28px; color: var(--ink-2); }
.ticks li::before { content: ""; position: absolute; left: 3px; top: 0.4em; width: 12px; height: 7px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }

.faq { margin-top: 48px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 24px 0; cursor: pointer; font: 600 1.15rem/1.3 var(--display); letter-spacing: -0.02em; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; flex: none; width: 10px; height: 10px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg) translate(-3px, -3px); transition: transform 0.35s var(--ease-out); }
.faq details[open] summary::after { transform: rotate(225deg); }
.faq details p { padding-bottom: 24px; color: var(--muted); max-width: 62ch; }
.faq details[open] p { animation: pop 0.4s var(--ease-out) both; }

.finale { padding-block: clamp(110px, 15vw, 200px); background: radial-gradient(700px 360px at 50% 110%, rgb(63 208 188 / 0.28), transparent 70%), #000; }
.finale .wrap { display: grid; justify-items: center; gap: 40px; }

.footer { padding-block: 32px 48px; background: var(--bg-alt); border-top: 1px solid var(--line-soft); font-size: 0.85rem; }
.footer-inner { display: grid; grid-template-columns: auto 1fr; gap: 16px 32px; align-items: center; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: flex-end; }
.footer-links a { color: var(--ink-2); }
.footer-legal { grid-column: 1 / -1; padding-top: 16px; border-top: 1px solid var(--line); max-width: none; }

/* ---------------- Interactive homepage ---------------- */
.progress-bar { position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: linear-gradient(90deg, var(--accent), #7fd6ca); transform-origin: left; transform: scaleX(0); }
@supports not (animation-timeline: scroll()) { .progress-bar { display: none; } }

.hero h1 { display: grid; justify-items: center; font-size: clamp(2.7rem, 7.2vw, 6rem); }
.h1-line { display: block; }
.rotator { display: grid; justify-items: center; padding-bottom: 0.08em; }
.rotator > span {
  grid-area: 1 / 1; white-space: nowrap; opacity: 0; transform: translateY(0.45em); filter: blur(8px);
  background: linear-gradient(95deg, var(--accent) 10%, #2a9d8f 45%, #7a8b2e 100%); -webkit-background-clip: text; background-clip: text; color: transparent;
  transition: opacity 0.6s var(--ease-out), transform 0.7s var(--ease-out), filter 0.6s var(--ease-out);
}
.rotator > span.on { opacity: 1; transform: none; filter: none; }
.rotator > span.off { opacity: 0; transform: translateY(-0.45em); filter: blur(8px); }
.rotator.grad { background: none; color: inherit; }

.sheet { position: relative; overflow: hidden; }
.scan-beam { position: absolute; left: 0; right: 0; top: -30%; height: 30%; pointer-events: none;
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--accent) 14%, transparent) 70%, color-mix(in srgb, var(--accent) 55%, transparent) 99%, transparent);
  opacity: 0; }
mark[data-note] { position: relative; cursor: help; }
mark[data-note]::after {
  content: attr(data-note); position: absolute; left: 50%; bottom: calc(100% + 10px); z-index: 3; transform: translate(-50%, 6px); white-space: nowrap;
  padding: 7px 12px; border-radius: 10px; background: var(--ink); color: var(--bg); font: 600 0.78rem/1.2 var(--text);
  opacity: 0; pointer-events: none; transition: opacity 0.2s var(--ease), transform 0.25s var(--ease-out);
}
mark[data-note]:hover::after { opacity: 1; transform: translate(-50%, 0); }
.stage-wrap[aria-hidden="true"] { pointer-events: auto; }

.ticker { padding-block: 34px; border-block: 1px solid var(--line-soft); background: var(--surface); overflow: hidden; }
.ticker-label { text-align: center; font-size: 0.8rem; font-weight: 600; color: var(--muted); margin-bottom: 16px; }
.ticker-track { -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.ticker-track > div { display: flex; width: max-content; }
.ticker ul { list-style: none; margin: 0; padding: 0 12px 0 0; display: flex; gap: 12px; }
.ticker li { display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px 10px 10px; border-radius: 980px; background: var(--bg-alt); font-size: 0.95rem; font-weight: 500; white-space: nowrap; }

.ba { position: relative; height: clamp(420px, 52vw, 540px); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); box-shadow: var(--shadow-lg); --pos: 50%; user-select: none; }
.ba-pane { position: absolute; inset: 0; padding: clamp(24px, 4vw, 44px); }
.ba-before { background: var(--surface); }
.ba-after { background: linear-gradient(160deg, var(--accent-soft), var(--surface) 60%); clip-path: inset(0 0 0 var(--pos)); }
.ba-tag { display: inline-block; margin-bottom: 18px; padding: 5px 12px; border-radius: 980px; background: var(--bg-alt); font-size: 0.78rem; font-weight: 600; color: var(--muted); }
.ba-tag-after { background: var(--accent); color: var(--on-accent); }
.ba-after .ba-tag { position: absolute; right: clamp(24px, 4vw, 44px); }
.legal { font: 400 0.78rem/1.6 var(--doc); color: var(--muted); text-align: justify; hyphens: auto; }
.legal p { margin-bottom: 10px; }
.ba-before::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 90px; background: linear-gradient(transparent, var(--surface)); }
.ba-report { display: grid; gap: 12px; max-width: 520px; margin: 44px 0 0 auto; }
.ba-item { display: grid; grid-template-columns: auto 1fr; gap: 4px 12px; align-items: center; padding: 16px 18px; border-radius: 16px; background: var(--surface); box-shadow: var(--shadow); }
.ba-item strong { font-size: 1rem; }
.ba-item > span:last-child { grid-column: 2; font-size: 0.82rem; color: var(--muted); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; margin-left: -1px; background: var(--accent); pointer-events: none; }
.ba-handle span { position: absolute; top: 50%; left: 50%; width: 46px; height: 46px; margin: -23px 0 0 -23px; border-radius: 50%; background: var(--surface); box-shadow: var(--shadow), inset 0 0 0 2px var(--accent); }
.ba-handle span::before, .ba-handle span::after { content: ""; position: absolute; top: 50%; width: 8px; height: 8px; margin-top: -4px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); }
.ba-handle span::before { left: 12px; transform: rotate(45deg); }
.ba-handle span::after { right: 12px; transform: rotate(-135deg); }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.ba-range:focus-visible + * , .ba:focus-within .ba-handle span { box-shadow: var(--shadow), inset 0 0 0 3px var(--accent), 0 0 0 6px color-mix(in srgb, var(--accent) 25%, transparent); }

.story { padding-block: clamp(88px, 12vw, 150px) clamp(40px, 6vw, 80px); }
.story-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 80px); }
.story-steps { list-style: none; margin: 0; padding: 0; }
.story-step { min-height: 72vh; display: grid; align-content: center; gap: 12px; opacity: 0.28; transition: opacity 0.5s var(--ease); }
.story-step:first-child { min-height: 56vh; align-content: start; padding-top: 8vh; }
.story-step.is-active { opacity: 1; }
.story-step h3 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); letter-spacing: -0.035em; }
.story-step p { color: var(--muted); font-size: 1.12rem; max-width: 38ch; }
.story-step .step-n { width: 44px; height: 44px; font-size: 1.1rem; margin-bottom: 4px; }
.story-stage { position: sticky; top: calc(50vh - 250px); height: 500px; border-radius: var(--r-lg); background: radial-gradient(120% 90% at 70% 10%, var(--accent-soft), var(--bg-alt) 65%); box-shadow: inset 0 0 0 1px var(--line-soft); overflow: hidden; }
.scene { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 18px; padding: 28px; opacity: 0; transform: scale(0.94) translateY(16px); filter: blur(6px); transition: opacity 0.6s var(--ease-out), transform 0.8s var(--ease-out), filter 0.6s var(--ease-out); pointer-events: none; }
.story-stage[data-scene="1"] .scene-1, .story-stage[data-scene="2"] .scene-2, .story-stage[data-scene="3"] .scene-3, .story-stage[data-scene="4"] .scene-4 { opacity: 1; transform: none; filter: none; }
.scene-caption { font-size: 0.9rem; font-weight: 600; color: var(--muted); }
.tray { display: grid; grid-template-columns: repeat(2, 170px); gap: 14px; }
.pdf { display: grid; gap: 2px; padding: 16px; border-radius: 16px; background: var(--surface); box-shadow: var(--shadow); transform: translateY(40px) rotate(-4deg); opacity: 0; transition: transform 0.7s var(--ease-out), opacity 0.5s var(--ease); }
.pdf:nth-child(2) { transition-delay: 0.08s; } .pdf:nth-child(3) { transition-delay: 0.16s; } .pdf:nth-child(4) { transition-delay: 0.24s; }
.story-stage[data-scene="1"] .pdf { transform: none; opacity: 1; }
.pdf-ico { justify-self: start; margin-bottom: 8px; padding: 3px 7px; border-radius: 6px; background: var(--red); color: #fff; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em; }
.pdf strong { font-size: 0.98rem; }
.pdf span:last-child { font-size: 0.8rem; color: var(--muted); }
.mini-sheet { display: grid; gap: 11px; width: min(340px, 70vw); padding: 30px 28px; border-radius: 14px; background: var(--surface); box-shadow: var(--shadow-lg); }
.ln { display: block; height: 9px; border-radius: 5px; background: var(--line-soft); position: relative; overflow: hidden; }
.ln.short { width: 60%; }
.ln.hl::after { content: ""; position: absolute; inset: -2px 0; background: var(--marker); transform: scaleX(0); transform-origin: left; transition: transform 0.8s var(--ease-out); }
.ln.hl:nth-of-type(7)::after { transition-delay: 0.25s; } .ln.hl:nth-of-type(10)::after { transition-delay: 0.5s; }
.story-stage[data-scene="2"] .ln.hl::after { transform: scaleX(1); }
.float-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; max-width: 360px; }
.float-tags .tag { font-size: 0.82rem; padding: 6px 12px; opacity: 0; transform: translateY(10px) scale(0.9); transition: opacity 0.4s var(--ease), transform 0.5s var(--ease-out); }
.story-stage[data-scene="2"] .float-tags .tag { opacity: 1; transform: none; }
.float-tags .tag:nth-child(1) { transition-delay: 0.5s; } .float-tags .tag:nth-child(2) { transition-delay: 0.62s; } .float-tags .tag:nth-child(3) { transition-delay: 0.74s; } .float-tags .tag:nth-child(4) { transition-delay: 0.86s; }
.checks { display: grid; gap: 10px; width: min(440px, 80vw); }
.chk { display: grid; gap: 4px; padding: 14px 16px 14px 48px; border-radius: 14px; background: var(--surface); box-shadow: var(--shadow); position: relative; opacity: 0; transform: translateX(20px); transition: opacity 0.4s var(--ease), transform 0.5s var(--ease-out); }
.chk::before { content: ""; position: absolute; left: 14px; top: 50%; width: 22px; height: 22px; margin-top: -11px; border-radius: 50%; background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5L20 7'/%3E%3C/svg%3E") center / 12px no-repeat; }
.chk.bad::before { background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6 6 18'/%3E%3C/svg%3E") center / 11px no-repeat; }
.chk-q { font: 400 0.98rem/1.35 var(--doc); }
.chk.bad .chk-q { text-decoration: line-through; color: var(--muted); }
.chk-r { font-size: 0.78rem; font-weight: 600; color: var(--green); }
.chk.bad .chk-r { color: var(--red); }
.story-stage[data-scene="3"] .chk { opacity: 1; transform: none; }
.chk:nth-child(2) { transition-delay: 0.15s; } .chk:nth-child(3) { transition-delay: 0.3s; } .chk:nth-child(4) { transition-delay: 0.45s; }
.mini-report { display: grid; gap: 12px; width: min(420px, 82vw); padding: 24px; border-radius: 22px; background: var(--surface); box-shadow: var(--shadow-lg); }
.mr-top { display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; align-items: center; padding-bottom: 12px; border-bottom: 1px solid var(--line-soft); }
.mr-top > div:not(.mr-ring) { display: grid; }
.rm-num.amber { color: var(--amber); }
.mr-ring { position: relative; width: 64px; height: 64px; }
.mr-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.mr-ring circle { fill: none; stroke-width: 12; stroke-linecap: round; }
.ring-fill-static { stroke: var(--red); stroke-dasharray: 314.16; stroke-dashoffset: 314.16; transition: stroke-dashoffset 1.2s var(--ease-out) 0.2s; }
.story-stage[data-scene="4"] .ring-fill-static { stroke-dashoffset: 235.6; }
.mr-ring span { position: absolute; inset: 0; display: grid; place-content: center; font-size: 0.78rem; font-weight: 700; }
.mr-line { font-size: 0.92rem; color: var(--muted); }
.story-dots { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); display: flex; gap: 8px; }
.story-dots span { width: 7px; height: 7px; border-radius: 980px; background: var(--line); transition: width 0.4s var(--ease-out), background 0.4s; }
.story-stage[data-scene="1"] [data-dot="1"], .story-stage[data-scene="2"] [data-dot="2"], .story-stage[data-scene="3"] [data-dot="3"], .story-stage[data-scene="4"] [data-dot="4"] { width: 24px; background: var(--accent); }

.try { display: grid; gap: 28px; justify-items: center; }
.try-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 760px; }
.try-chips button { min-height: 44px; padding: 0 18px; border: 0; border-radius: 980px; background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); color: var(--ink-2); font: 500 0.95rem var(--text); cursor: pointer; transition: background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.15s var(--ease); }
.try-chips button:hover { box-shadow: inset 0 0 0 1px var(--accent); }
.try-chips button:active { transform: scale(0.96); }
.try-chips button[aria-checked="true"] { background: var(--ink); color: var(--bg); box-shadow: none; }
.try-result { display: grid; gap: 10px; width: 100%; max-width: 640px; padding: 28px; border-radius: var(--r-lg); background: var(--surface); box-shadow: var(--shadow-lg); }
.try-result.swap { animation: pop 0.45s var(--ease-out); }
.try-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.try-top h3 { font-size: 1.35rem; }
.try-result .tag { font-size: 0.85rem; padding: 5px 12px; }
.try-result > p { color: var(--muted); font-size: 1.05rem; }

.tile::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity 0.3s var(--ease);
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), color-mix(in srgb, var(--accent) 12%, transparent), transparent 60%); }
.tile:hover::after { opacity: 1; }
.tile-dark::after { background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgb(255 107 94 / 0.18), transparent 60%); }

.numbers { padding-block: clamp(64px, 9vw, 110px); background: var(--surface); border-block: 1px solid var(--line-soft); }
.numbers-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; text-align: center; }
.numbers strong { display: block; font: 700 clamp(2.6rem, 5.6vw, 4.4rem)/1 var(--display); letter-spacing: -0.05em; font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, var(--ink), color-mix(in srgb, var(--ink) 55%, var(--accent))); -webkit-background-clip: text; background-clip: text; color: transparent; }
.numbers span:not([data-count]) { display: block; margin-top: 10px; color: var(--muted); font-size: 0.95rem; }

/* ---------------- Hero (dark, conversion-first) ---------------- */
.hero-dark { position: relative; overflow: hidden; background: #000; color: #f5f5f7; padding-block: clamp(48px, 8vw, 96px) clamp(64px, 9vw, 110px); }
.hero-dark .hero-copy { justify-items: start; text-align: left; gap: 24px; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(40px, 6vw, 80px); align-items: center; }
.hero-glow { position: absolute; inset: -20% -10% auto; height: 120%; pointer-events: none;
  background: radial-gradient(600px 420px at 78% 38%, rgb(63 208 188 / 0.22), transparent 70%), radial-gradient(520px 380px at 10% 0%, rgb(255 205 80 / 0.10), transparent 70%); }
.hero-dark h1 { display: block; justify-items: start; font-size: clamp(2.7rem, 5vw, 4.5rem); line-height: 1.02; letter-spacing: -0.045em; color: #fff; }
.grad-hot { display: block; background: linear-gradient(100deg, #f6e3b4 0%, #e8c07a 45%, #c9954a 100%); -webkit-background-clip: text; background-clip: text; color: transparent; padding-bottom: 0.06em; }
.hero-dark .lede { color: #a1a1a6; max-width: 34em; margin: 0; }
.chip-dark { background: rgb(255 255 255 / 0.06); color: #d2d2d7; box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.12); }
.chip-dark .dot { background: #3fd0bc; box-shadow: 0 0 0 4px rgb(63 208 188 / 0.2); animation: pulse 2s var(--ease) infinite; }
.hero-dark .hero-actions { justify-items: start; gap: 16px; }
.hero-form { justify-items: start; max-width: 520px; }
.hero-dark .pill-input { background: rgb(255 255 255 / 0.08); box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.16); }
.hero-dark .pill-input:focus-within { box-shadow: inset 0 0 0 2px #3fd0bc, 0 0 0 6px rgb(63 208 188 / 0.15); }
.hero-dark .pill-input input { color: #fff; font-size: 1.05rem; }
.hero-dark .pill-input input::placeholder { color: #86868b; }
.hero-dark .role { background: rgb(255 255 255 / 0.08); }
.hero-dark .role span { color: #a1a1a6; }
.hero-dark .role input:checked + span { background: rgb(255 255 255 / 0.16); color: #fff; box-shadow: none; }
.btn-glow { background: linear-gradient(180deg, #19b3a0, #0a8a7b); color: #fff; box-shadow: 0 8px 24px -6px rgb(25 179 160 / 0.6), inset 0 1px 0 rgb(255 255 255 / 0.25); font-weight: 600; }
.btn-glow:hover { background: linear-gradient(180deg, #22c4b0, #0c9888); box-shadow: 0 10px 30px -6px rgb(25 179 160 / 0.8), inset 0 1px 0 rgb(255 255 255 / 0.3); }
.hero-dark .pill-input .btn { min-height: 48px; padding: 0 24px; }
.perks { list-style: none; margin: 4px 0 0; padding: 0; display: grid; gap: 10px; color: #d2d2d7; font-size: 0.95rem; }
.perks li { display: flex; align-items: center; gap: 10px; }
.perks .icon { color: #ffd166; }
.perks b { color: #fff; font-weight: 600; }
.more-light { color: #5fe0cc; }
.hero-dark .form-error { background: rgb(255 92 92 / 0.14); color: #ff9a9a; }
.hero-dark .joined { background: #111113; color: #f5f5f7; box-shadow: 0 0 0 1px #2c2c2e, 0 30px 60px -20px rgb(0 0 0 / 0.8); justify-self: start; }
.hero-dark .joined-text { color: #a1a1a6; }
.joined-gift { margin: 4px 0; }

.hero-visual { position: relative; min-height: 460px; }
.doc-card {
  position: relative; overflow: hidden; display: grid; gap: 14px; padding: 30px 30px 34px; border-radius: 22px;
  background: linear-gradient(180deg, #1c1c1e, #141416); box-shadow: 0 0 0 1px #2c2c2e, 0 40px 80px -30px rgb(0 0 0 / 0.9);
  font: 400 1.02rem/1.62 var(--doc); color: #b8b8be; transform: rotate(-2deg);
}
.doc-card b { color: #f5f5f7; font-weight: 500; }
.doc-card mark { --marker: #f5c542; color: #1d1d1f; }
.doc-head { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid #2c2c2e; font: 600 0.7rem/1.2 var(--text); letter-spacing: 0.08em; text-transform: uppercase; color: #86868b; }
.alerts { list-style: none; margin: 0; padding: 0; position: absolute; right: -12px; bottom: -28px; width: min(330px, 78%); display: grid; gap: 10px; }
.alert {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 16px;
  background: rgb(38 38 42 / 0.72); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 0 0 1px rgb(255 255 255 / 0.1), 0 18px 40px -12px rgb(0 0 0 / 0.8); color: #f5f5f7;
}
.alert strong { display: block; font-size: 0.95rem; font-weight: 600; letter-spacing: -0.01em; }
.alert em { display: block; font-style: normal; font-size: 0.78rem; color: #a1a1a6; }
.alert-ico { flex: none; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px; font: 700 0.95rem/1 var(--display); color: #fff; }
.alert-ico.red { background: linear-gradient(180deg, #ff6b5e, #e0352b); }
.alert-ico.amber { background: linear-gradient(180deg, #ffc15e, #f09a1a); }
.hero-scroll { position: absolute; left: 50%; bottom: 22px; width: 22px; height: 34px; margin-left: -11px; border-radius: 12px; box-shadow: inset 0 0 0 1.5px rgb(255 255 255 / 0.3); }
.hero-scroll span { position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; margin-left: -1.5px; border-radius: 2px; background: #fff; }
.push-right { margin-left: auto; }

.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom, 0px)); z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 10px 10px 18px; border-radius: 980px;
  background: rgb(20 20 22 / 0.86); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px);
  color: #f5f5f7; font-size: 0.88rem; font-weight: 500; box-shadow: 0 16px 40px -10px rgb(0 0 0 / 0.5);
  transform: translateY(0); transition: transform 0.4s var(--ease-out), opacity 0.3s;
}
.sticky-cta.away { transform: translateY(140%); opacity: 0; }
@media (min-width: 701px) { .sticky-cta { display: none !important; } }

.checklist { max-width: 780px; padding-block: 56px 96px; display: grid; gap: 22px; }
.checklist h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); letter-spacing: -0.04em; }
.red-flags { counter-reset: flag; list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 14px; }
.red-flags li { counter-increment: flag; position: relative; display: grid; gap: 8px; padding: 24px 26px 24px 78px; border-radius: var(--r); background: var(--surface); box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line-soft); break-inside: avoid; }
.red-flags li::before { content: counter(flag); position: absolute; left: 24px; top: 22px; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--red-soft); color: var(--red); font: 700 1rem/1 var(--display); }
.red-flags h2 { font-size: 1.3rem; letter-spacing: -0.02em; }
.red-flags p { color: var(--ink-2); }
.red-flags .where, .red-flags .ask { font-size: 0.93rem; color: var(--muted); }
.red-flags .ask { padding: 10px 14px; border-radius: 10px; background: var(--bg-alt); color: var(--ink-2); }
.checklist-cta { display: grid; gap: 12px; justify-items: start; margin-top: 12px; padding: 30px; border-radius: var(--r-lg); background: var(--accent-soft); }
.checklist-cta h2 { font-size: 1.7rem; }

/* ---------------- Tiles (hover grid behind the hero) ----------------
   A dependency-free port of the "Tiles" React component: a grid of squares
   that fill with --tile instantly on hover and fade back over 2 seconds. */
.tiles {
  --tile: rgb(63 208 188 / 0.28); --tile-line: rgb(255 255 255 / 0.055); --tile-size: 36px;
  position: absolute; inset: 0; z-index: 0; display: grid; overflow: hidden;
  grid-template-columns: repeat(var(--tile-cols, 40), var(--tile-size)); grid-auto-rows: var(--tile-size); justify-content: center;
  border-left: 1px solid var(--tile-line);
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 60% 45%, #000 35%, transparent 85%);
  mask-image: radial-gradient(ellipse 75% 70% at 60% 45%, #000 35%, transparent 85%);
}
@media (min-width: 768px) { .tiles { --tile-size: 48px; } }
.tile-cell { border-right: 1px solid var(--tile-line); border-top: 1px solid var(--tile-line); transition: background-color 2s var(--ease); }
.tile-cell:hover { background-color: var(--tile); transition-duration: 0s; }
.hero-dark .hero-glow { z-index: 0; }
.hero-dark .hero-grid { z-index: 1; pointer-events: none; }
.hero-dark .hero-grid :is(a, button, input, label, form, .joined, .hero-visual) { pointer-events: auto; }

/* ---------------- Sparkles text ----------------
   Port of the "SparklesText" React component: four-point stars that
   twinkle over a word and move to a new spot every 5 to 15 seconds. */
.sparkles { position: relative; display: inline-block; --sparkles-first-color: #3fd0bc; --sparkles-second-color: #ffd166; }
.sparkle { position: absolute; z-index: 2; width: 21px; height: 21px; margin: -10px 0 0 -10px; pointer-events: none; opacity: 0;
  animation: sparkle 0.8s linear infinite; animation-delay: var(--delay, 0s); }
@keyframes sparkle {
  0% { opacity: 0; transform: scale(0) rotate(75deg); }
  50% { opacity: 1; transform: scale(var(--scale, 1)) rotate(120deg); }
  100% { opacity: 0; transform: scale(0) rotate(150deg); }
}
@media (prefers-reduced-motion: reduce) { .sparkle { display: none; } }
#pricingTitle .sparkles { --sparkles-first-color: #0fa392; --sparkles-second-color: #f29a16; }

/* ---------------- Launch offer ---------------- */
.price-grid-3 { grid-template-columns: repeat(3, minmax(0, 340px)); }
.price s, .plan-price s, .unlock-price s { font: 500 1.1rem/1 var(--text); color: var(--muted); margin-left: 8px; letter-spacing: 0; vertical-align: 0.5em; }
.price s { font-size: 1.4rem; }
.offer-tag { display: inline-flex; margin-left: 6px; padding: 2px 8px; border-radius: 980px; background: linear-gradient(95deg, #ffd166, #ff8a5c); color: #3b1d00; font-size: 0.72rem; font-weight: 700; vertical-align: 2px; white-space: nowrap; }
.plan-free { background: linear-gradient(160deg, var(--accent-soft), var(--surface) 70%); }
.plan-free .plan-price { color: var(--accent); }
.finale-sub { color: var(--on-black-dim); font-size: 1.15rem; margin-top: -20px; }

.unlock {
  display: grid; gap: 18px; padding: clamp(24px, 4vw, 36px); border-radius: var(--r-lg); color: #f5f5f7;
  background: radial-gradient(500px 260px at 90% 0%, rgb(63 208 188 / 0.25), transparent 70%), #0b0b0c;
  box-shadow: 0 30px 60px -30px rgb(0 0 0 / 0.6);
}
.unlock .eyebrow { color: #5fe0cc; margin-bottom: 8px; }
.unlock h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -0.035em; color: #fff; }
.unlock-sub { color: #a1a1a6; max-width: 60ch; margin-top: 8px; }
.unlock-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 12px; }
.unlock-btn {
  display: grid; gap: 4px; justify-items: start; padding: 18px 20px; border: 0; border-radius: 18px; cursor: pointer; text-align: left;
  background: rgb(255 255 255 / 0.07); color: #f5f5f7; box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.14); font: inherit;
  transition: background 0.25s var(--ease), transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
}
.unlock-btn:hover { background: rgb(255 255 255 / 0.12); }
.unlock-btn:active { transform: scale(0.98); }
.unlock-btn:disabled { opacity: 0.6; cursor: wait; }
.unlock-best { background: linear-gradient(180deg, #19b3a0, #0a8a7b); box-shadow: 0 10px 30px -10px rgb(25 179 160 / 0.7); }
.unlock-best:hover { background: linear-gradient(180deg, #22c4b0, #0c9888); }
.unlock-name { font-size: 0.9rem; font-weight: 600; opacity: 0.9; }
.unlock-price { font: 700 2rem/1.1 var(--display); letter-spacing: -0.04em; }
.unlock-price s { color: rgb(255 255 255 / 0.55); }
.unlock-cta { font-size: 0.88rem; font-weight: 600; }
.unlock .hint { color: #86868b; }
.unlock .form-error { background: rgb(255 92 92 / 0.14); color: #ff9a9a; }

.finding-locked { gap: 10px; }
.finding-locked .lock-note { display: inline-flex; align-items: center; gap: 6px; margin-left: auto; font-size: 0.82rem; font-weight: 600; color: var(--muted); }
.bar { display: block; height: 12px; border-radius: 6px; width: 92%; background: linear-gradient(90deg, var(--bg-alt), var(--line-soft), var(--bg-alt)); background-size: 200% 100%; animation: shimmer 2.4s linear infinite; }
.bar-lg { height: 18px; width: 70%; }
.bar-short { width: 55%; }
@keyframes shimmer { to { background-position: -200% 0; } }
.plan-locked { display: flex; align-items: center; gap: 12px; color: var(--muted); }
.plan-locked .icon { color: var(--accent); flex: none; }
.is-locked { color: var(--muted); font-style: italic; }
.questions .is-locked { list-style: none; margin-left: -24px; }

/* ---------------- App screens ---------------- */
.app { padding-block: 64px 110px; }
.app h1 { font-size: clamp(2.4rem, 5.6vw, 4rem); letter-spacing: -0.04em; }
.app .lede { max-width: 56ch; }
fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
legend { font: 600 1.25rem/1.3 var(--display); letter-spacing: -0.02em; padding: 0; margin-bottom: 6px; }
.optional { font: 400 0.85rem var(--text); color: var(--muted); margin-left: 6px; }
.goals, .plans { display: grid; gap: 14px; }
.goal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.goal { display: flex; align-items: center; gap: 12px; min-height: 54px; padding: 10px 16px; border-radius: 14px; background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); cursor: pointer; transition: box-shadow 0.25s var(--ease), background 0.25s var(--ease), transform 0.2s var(--ease); }
.goal:hover { box-shadow: inset 0 0 0 1px var(--accent); }
.goal:active { transform: scale(0.98); }
.goal:has(input:checked) { box-shadow: inset 0 0 0 2px var(--accent); background: var(--accent-soft); }
.goal input { width: 18px; height: 18px; accent-color: var(--accent); flex: none; }
.plan-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.plan { position: relative; display: grid; gap: 4px; align-content: start; padding: 22px 22px 20px 54px; border-radius: var(--r); background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); cursor: pointer; transition: box-shadow 0.25s var(--ease); }
.plan input { position: absolute; left: 22px; top: 26px; width: 18px; height: 18px; accent-color: var(--accent); }
.plan:has(input:checked) { box-shadow: inset 0 0 0 2px var(--accent), var(--shadow); }
.plan.unavailable { opacity: 0.5; cursor: not-allowed; }
.plan-name { font-weight: 600; }
.plan-price { font: 700 2.2rem/1.1 var(--display); letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.plan ul { margin: 6px 0 0; padding-left: 18px; color: var(--muted); font-size: 0.9rem; }
.field { display: grid; gap: 8px; max-width: 480px; }
.field > span:first-child { font-weight: 600; }
.field input { min-height: 50px; padding: 0 16px; border: 0; border-radius: 12px; box-shadow: inset 0 0 0 1px var(--line); background: var(--surface); color: var(--ink); font: inherit; transition: box-shadow 0.2s var(--ease); }
.field input:focus { outline: none; box-shadow: inset 0 0 0 2px var(--accent); }
.field-area { max-width: none; }
.field textarea { min-height: 120px; padding: 14px 16px; border: 0; border-radius: 12px; box-shadow: inset 0 0 0 1px var(--line); background: var(--surface); color: var(--ink); font: inherit; line-height: 1.5; resize: vertical; transition: box-shadow 0.2s var(--ease); }
.field textarea:focus { outline: none; box-shadow: inset 0 0 0 2px var(--accent); }
.question-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.question-chips button { min-height: 36px; padding: 0 14px; border: 0; border-radius: 980px; background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); color: var(--ink); font: inherit; font-size: 0.86rem; cursor: pointer; transition: box-shadow 0.2s var(--ease), opacity 0.2s var(--ease); }
.question-chips button:hover { box-shadow: inset 0 0 0 1px var(--accent); }
.question-chips button:disabled { opacity: 0.4; cursor: default; box-shadow: inset 0 0 0 1px var(--line); }
.goal-sub { margin-top: 10px; }
.field input[aria-invalid="true"] { box-shadow: inset 0 0 0 2px var(--red); }
.pay-row { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.pay-row .hint { display: flex; align-items: center; gap: 6px; max-width: 44ch; }
.notice { padding: 14px 18px; border-radius: 14px; background: var(--accent-soft); }

.progress { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.progress li { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 1.05rem; transition: color 0.4s var(--ease); }
.progress li::before { content: ""; width: 22px; height: 22px; border-radius: 50%; box-shadow: inset 0 0 0 2px var(--line); flex: none; transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.progress li.active { color: var(--ink); font-weight: 600; }
.progress li.active::before { box-shadow: inset 0 0 0 2px var(--accent); border: 2px solid transparent; border-top-color: var(--accent); animation: spin 0.9s linear infinite; }
.progress li.done { color: var(--ink); }
.progress li.done::before { box-shadow: none; background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5L20 7'/%3E%3C/svg%3E") center / 13px no-repeat; animation: pop 0.4s var(--ease-out) both; }
.count { color: var(--muted); font-weight: 400; font-variant-numeric: tabular-nums; }
@keyframes spin { to { transform: rotate(360deg); } }

.report-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; }
.docs-line { color: var(--muted); margin-top: 12px; max-width: 80ch; }
.attorney { display: flex; gap: 14px; align-items: flex-start; padding: 18px 22px; border-radius: var(--r); background: var(--amber-soft); }
.attorney .icon { color: var(--amber); margin-top: 3px; }
.attorney strong { color: var(--amber); }
.panel { padding: 30px; border-radius: var(--r-lg); background: var(--surface); box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line-soft); }
.summary-grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: 18px; }
.bottom-line { display: grid; gap: 12px; align-content: start; }
.bottom-line h2, .block h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.03em; }
.bottom-line p { font-size: 1.1rem; color: var(--ink-2); }
.figures { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-content: start; }
.figures dt { font-size: 0.8rem; font-weight: 500; color: var(--muted); }
.figures dd { margin: 4px 0 0; font-weight: 600; }
.num { font: 700 3rem/1 var(--display) !important; letter-spacing: -0.05em; font-variant-numeric: tabular-nums; }
.num-red { color: var(--red); }
.num-amber { color: var(--amber); }
.rating, .verdict { display: inline-flex; align-items: center; padding: 4px 12px; border-radius: 980px; font-size: 0.82rem; font-weight: 600; white-space: nowrap; }
.rating-strong, .verdict-allowed { background: var(--green-soft); color: var(--green); }
.rating-fair, .verdict-restricted { background: var(--amber-soft); color: var(--amber); }
.rating-weak, .verdict-prohibited { background: var(--red-soft); color: var(--red); }
.verdict-answered { background: var(--accent-soft); color: var(--accent); }
.rating-unknown, .verdict-not_addressed { background: var(--bg-alt); color: var(--muted); }
.block { display: grid; gap: 20px; }
.block-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.plan-checks { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 14px; }
.plan-checks li { display: grid; gap: 8px; align-content: start; padding: 22px; border-radius: var(--r); background: var(--surface); box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line-soft); }
.plan-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.plan-top h3 { font-size: 1.05rem; }
.plan-checks p { color: var(--muted); font-size: 0.95rem; }
.refs { display: flex; gap: 12px; flex-wrap: wrap; font-size: 0.86rem; font-weight: 500; }
.metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; }
.metrics:empty { display: none; }
.metric { padding: 22px; border-radius: var(--r); background: var(--surface); box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line-soft); }
.metric span { font-size: 0.85rem; color: var(--muted); }
.metric strong { display: block; font: 700 2.2rem/1.15 var(--display); letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.metric p { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }
.notes { margin: 0; padding-left: 20px; color: var(--muted); }
.filters { display: inline-flex; padding: 3px; border-radius: 980px; background: color-mix(in srgb, var(--ink) 6%, transparent); flex-wrap: wrap; }
.filters button { min-height: 34px; padding: 0 16px; border: 0; border-radius: 980px; background: transparent; color: var(--muted); font: 500 0.88rem var(--text); cursor: pointer; transition: background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.filters button:hover { color: var(--ink); }
.filters button[aria-pressed="true"] { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }
.findings { display: grid; gap: 14px; }
.finding { display: grid; gap: 8px; padding: 24px 26px; border-radius: var(--r); background: var(--surface); box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--line-soft); position: relative; overflow: hidden; scroll-margin-top: 100px; transition: box-shadow 0.4s var(--ease); }
.finding::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--line); }
.sev-red_flag::before { background: var(--red); }
.sev-caution::before { background: var(--amber); }
.sev-info::before { background: var(--accent); }
.finding.flash { box-shadow: 0 0 0 3px var(--marker), var(--shadow); }
.findings .finding { animation: pop 0.45s var(--ease-out) both; }
.finding-top { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.finding h3 { font-size: 1.15rem; }
.finding p { color: var(--muted); }
.pill { font-size: 0.75rem; font-weight: 600; padding: 3px 10px; border-radius: 980px; white-space: nowrap; }
.pill-red_flag { background: var(--red-soft); color: var(--red); }
.pill-caution { background: var(--amber-soft); color: var(--amber); }
.pill-info { background: var(--accent-soft); color: var(--accent); }
.cat { font-size: 0.85rem; color: var(--muted); }
.quote { margin: 8px 0 0; padding: 14px 18px; border-radius: 12px; background: var(--bg-alt); }
.quote blockquote { margin: 0; font: 400 1.08rem/1.55 var(--doc); color: var(--ink-2); }
.quote figcaption { margin-top: 8px; font-size: 0.84rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.check { display: inline-flex; align-items: center; gap: 4px; font-size: 0.8rem; font-weight: 600; }
.check.ok { color: var(--green); }
.check.scan { color: var(--amber); }
.questions { margin: 0; padding-left: 24px; display: grid; gap: 10px; color: var(--ink-2); }
.chat-log { display: grid; gap: 12px; padding: 22px; min-height: 130px; border-radius: var(--r); background: var(--surface); box-shadow: inset 0 0 0 1px var(--line-soft); }
.chat-hint { color: var(--muted); }
.bubble { max-width: 80%; padding: 12px 16px; border-radius: 20px; animation: pop 0.4s var(--ease-out) both; }
.bubble.user { justify-self: end; background: var(--accent); color: var(--on-accent); border-bottom-right-radius: 6px; }
.bubble.assistant { justify-self: start; background: var(--bg-alt); border-bottom-left-radius: 6px; }
.bubble.error { color: var(--red); background: var(--red-soft); }
.bubble sup { color: var(--accent); font-weight: 600; margin-left: 1px; }
.sources { margin: 10px 0 0; padding-left: 20px; font-size: 0.84rem; color: var(--muted); display: grid; gap: 4px; }
.typing { color: var(--muted); animation: breathe 1.4s var(--ease) infinite; }
@keyframes breathe { 50% { opacity: 0.45; } }
.chat-form { display: flex; gap: 8px; padding: 6px; border-radius: 980px; background: var(--surface); box-shadow: var(--shadow), inset 0 0 0 1px var(--line-soft); }
.chat-form input { flex: 1; min-width: 0; min-height: 44px; padding: 0 16px; border: 0; outline: 0; background: transparent; color: var(--ink); font: inherit; }
.print-only { display: none; }

/* ---------------- Motion ---------------- */
@media (prefers-reduced-motion: no-preference) {
  /* Screen changes crossfade with a slight lift. */
  ::view-transition-old(root) { animation: vt-out 0.25s var(--ease) both; }
  ::view-transition-new(root) { animation: vt-in 0.45s var(--ease-out) both; }

  /* Hero: headline settles in, highlighter sweeps across the document. */
  .hero-copy > * { animation: rise 0.9s var(--ease-out) both; }
  .hero-copy > :nth-child(2) { animation-delay: 0.06s; }
  .hero-copy > :nth-child(3) { animation-delay: 0.12s; }
  .hero-copy > :nth-child(4) { animation-delay: 0.2s; }
  .hero-copy > :nth-child(5) { animation-delay: 0.28s; }
  .stage-wrap { animation: rise 1.1s var(--ease-out) 0.3s both; }
  .sheet mark { animation: sweep 0.9s var(--ease-out) 1s both; }
  .sheet mark.d2 { animation-delay: 1.35s; }
  .sheet mark.d3 { animation-delay: 1.7s; }
  .report-mini { animation: float-in 1s var(--ease-out) 0.9s both; }
  .report-mini .rm-plan, .report-mini .rm-verified { animation: rise 0.6s var(--ease-out) both; }
  .report-mini .rm-plan:nth-of-type(2) { animation-delay: 1.9s; }
  .report-mini .rm-plan:nth-of-type(3) { animation-delay: 2.1s; }
  .report-mini .rm-plan:nth-of-type(4) { animation-delay: 2.3s; }
  .report-mini .rm-verified { animation-delay: 2.6s; }
  .scan-beam { animation: scan 2.2s var(--ease) 0.7s both; }
  .hero-dark .hero-copy > * { animation: rise 0.9s var(--ease-out) both; }
  .hero-dark .hero-copy > :nth-child(3) { animation-delay: 0.08s; }
  .hero-dark .hero-copy > :nth-child(4) { animation-delay: 0.16s; }
  .hero-dark .hero-copy > :nth-child(5) { animation-delay: 0.24s; }
  .hero-visual { animation: rise 1.1s var(--ease-out) 0.25s both; }
  .doc-card mark { animation: sweep 0.8s var(--ease-out) both; }
  .doc-card mark[data-hl="1"] { animation-delay: 1.0s; } .doc-card mark[data-hl="2"] { animation-delay: 1.6s; }
  .doc-card mark[data-hl="3"] { animation-delay: 2.2s; } .doc-card mark[data-hl="4"] { animation-delay: 2.8s; }
  .alert { animation: notify 0.7s var(--ease-out) both; }
  .alert:nth-child(1) { animation-delay: 1.3s; } .alert:nth-child(2) { animation-delay: 1.9s; }
  .alert:nth-child(3) { animation-delay: 2.5s; } .alert:nth-child(4) { animation-delay: 3.1s; }
  .alerts.replay .alert { animation: none; }
  .hero-scroll span { animation: wheel 1.8s var(--ease) infinite; }
  .ticker-track > div { animation: marquee 48s linear infinite; }
  .ticker:hover .ticker-track > div { animation-play-state: paused; }

  @supports (animation-timeline: view()) {
    /* The product shot starts tilted and flattens as you scroll. */
    .stage { animation: flatten linear both; animation-timeline: scroll(root); animation-range: 0 520px; }
    /* Sections fade up as they enter; anything already on screen is at rest. */
    .reveal { animation: reveal linear both; animation-timeline: view(); animation-range: entry 0% entry 55%; }
    .proof mark.sweep { animation: sweep linear both; animation-timeline: view(); animation-range: entry 30% cover 45%; }
    .ring-fill { animation: ring linear both; animation-timeline: view(); animation-range: entry 20% cover 45%; }
    .steps::before { animation: draw linear both; animation-timeline: view(); animation-range: entry 20% cover 40%; }
    .progress-bar { animation: grow linear both; animation-timeline: scroll(root); }
  }
}
@keyframes notify { from { opacity: 0; transform: translateY(-14px) scale(0.92); filter: blur(4px); } }
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgb(63 208 188 / 0.08); } }
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(10px); opacity: 0; } 100% { opacity: 0; } }
@keyframes scan { 0% { top: -30%; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { top: 105%; opacity: 0; } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes grow { to { transform: scaleX(1); } }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } }
@keyframes reveal { from { opacity: 0; transform: translateY(40px) scale(0.98); } }
@keyframes sweep { from { background-size: 0% 100%; } }
@keyframes float-in { from { opacity: 0; transform: translate(24px, 24px) scale(0.96); } }
@keyframes flatten { from { transform: rotateX(16deg) scale(0.92); } to { transform: none; } }
@keyframes ring { from { stroke-dashoffset: 314.16; } }
@keyframes draw { from { transform: scaleX(0); } }
@keyframes vt-out { to { opacity: 0; transform: scale(0.985); } }
@keyframes vt-in { from { opacity: 0; transform: translateY(14px); } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .ticker-track { -webkit-mask-image: none; mask-image: none; }
  .ticker-track > div { width: auto; }
  .ticker-track ul { flex-wrap: wrap; justify-content: center; padding-inline: 18px; }
  .ticker-track ul[aria-hidden="true"] { display: none; }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 0; max-width: 560px; margin-bottom: 40px; }
  .hero-scroll { display: none; }
  .nav-links { display: none; }
  .nav-inner { justify-content: space-between; }
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tile-wide { grid-column: span 2; }
  .sample-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .story-stage { order: -1; top: 64px; height: 340px; z-index: 2; }
  .story-step, .story-step:first-child { min-height: 58vh; padding-top: 0; align-content: center; }
  .numbers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 18px; }
  .stage-wrap { padding-inline: 12px; }
  .report-mini { position: relative; top: auto; right: auto; width: auto; margin: -40px 12px 0; }
  .bento, .triad, .steps, .goal-grid, .plan-grid, .price-grid, .price-grid-3, .summary-grid, .verdicts { grid-template-columns: 1fr; }
  .tile-wide { grid-column: auto; }
  .steps::before { display: none; }
  .story-stage { height: 300px; }
  .scene { transform-origin: 50% 50%; }
  .tray { grid-template-columns: repeat(2, 140px); gap: 10px; }
  .pdf { padding: 12px; }
  .checks .chk:nth-child(4) { display: none; }
  .ba-report { margin-top: 36px; }
  .ba-item { padding: 12px 14px; }
  .legal { columns: 1; }
  .pill-input { flex-direction: column; gap: 6px; border-radius: 22px; }
  .pill-input input { min-height: 46px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .panel { padding: 22px; }
  .bubble { max-width: 100%; }
  .hero h1 { font-size: clamp(2.3rem, 11vw, 3.4rem); }
  .hero-dark h1 { font-size: clamp(2.5rem, 12.5vw, 3.6rem); }
  .doc-card { font-size: 0.9rem; padding: 22px 20px 26px; transform: none; }
  .doc-head span:last-child { display: none; }
  .alerts { position: relative; right: auto; bottom: auto; width: auto; margin: -34px 12px 0; }
  .hero-form { max-width: none; width: 100%; }
  .hero-copy > * { max-width: 100%; }
  .hero .lede { font-size: 1.05rem; }
  .sheet { font-size: 0.95rem; }
  .ticker li { font-size: 0.88rem; }
  .ba { height: 470px; }
  .ba-pane { padding: 20px; }
  .ba-after .ba-tag { right: 20px; }
  .legal { font-size: 0.72rem; }
  .chat-form { border-radius: 22px; }
}

/* ---------------- Print ---------------- */
@media print {
  :root { --bg: #fff; --bg-alt: #f4f4f4; --surface: #fff; --ink: #000; --ink-2: #111; --muted: #444; --line: #bbb; --line-soft: #ddd; }
  body { font-size: 11pt; background: #fff; }
  .nav, .footer, .skip, #homeView, #checkoutView, #progressView, .no-print, .report-actions, .filters, .sample-note { display: none !important; }
  .app { padding: 0 !important; }
  * { animation: none !important; box-shadow: none !important; }
  .panel, .metric, .finding, .plan-checks li { border: 1px solid #ccc; break-inside: avoid; }
  .print-only { display: block; }
  a { color: inherit; }
}

/* Admin email check */
.admin { padding-block: 56px 80px; max-width: 560px; }
.admin-form { display: grid; gap: 20px; margin-top: 28px; }
.admin-form small { color: var(--muted); }
.admin-result { margin-top: 24px; padding: 16px 18px; border-radius: 12px; background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); overflow-wrap: anywhere; }
.admin-result p { margin: 0 0 6px; }
.admin-result.is-ok { box-shadow: inset 0 0 0 2px var(--accent); }
.admin-result.is-bad { box-shadow: inset 0 0 0 2px var(--red); }
.admin-h2 { margin: 56px 0 8px; font: 700 1.6rem/1.2 var(--display); letter-spacing: -0.02em; }
.admin-signups { display: grid; gap: 16px; margin-top: 20px; }
.admin-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.admin-list li { display: grid; gap: 2px; padding: 12px 14px; border-radius: 12px; background: var(--surface); box-shadow: inset 0 0 0 1px var(--line); overflow-wrap: anywhere; }
.admin-list .ok { color: var(--green); font-size: 0.9rem; }
.admin-list .bad { color: var(--red); font-size: 0.9rem; }
.admin-list small { color: var(--muted); }
#loadSignups { margin-top: 20px; }
