/* Verified Calls — product page. Same tokens as design/tokens.css (coral action, proof-blue seals). No external assets. */

:root {
  --font: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI Variable Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --display: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI Variable Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --wrap: 1180px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* Palette = design/tokens.css (Shell 2). Coral is the one action; proof-blue is "sealed / verified";
   amber is "demo / synthetic"; green and red are reserved for returns that already happened (none on this page). */
[data-theme="dark"] {
  --bg: #0C0C0F;
  --bg2: #101014;
  --surface: #151519;
  --surface2: #1D1D23;
  --ink: #F4F2EF;
  --ink2: #B9B5AF;
  --muted: #96918B;
  --line: rgba(255, 255, 255, .075);
  --line2: rgba(255, 255, 255, .15);
  --accent: #FF6B4A;
  --accent-ink: #1A0906;
  --accent-text: #FF8A6E;
  --accent-soft: rgba(255, 107, 74, .12);
  --proof: #8EB8FF;
  --proof-soft: rgba(142, 184, 255, .11);
  --amber: #FFB020;
  --amber-soft: rgba(255, 176, 32, .11);
  --fail: #FF4D6A;
  --fail-soft: #2E1419;
  --shadow: 0 1px 0 rgba(255, 255, 255, .05) inset, 0 30px 80px -30px rgba(0, 0, 0, .75), 0 0 0 1px var(--line);
  --dots: rgba(255, 255, 255, .055);
  color-scheme: dark;
}

[data-theme="light"] {
  --bg: #F7F5F2;
  --bg2: #F0EDE9;
  --surface: #FFFFFF;
  --surface2: #F7F5F2;
  --ink: #17161A;
  --ink2: #4A4640;
  --muted: #69645D;
  --line: rgba(23, 22, 26, .09);
  --line2: rgba(23, 22, 26, .17);
  --accent: #FF6B4A;
  --accent-ink: #1A0906;
  --accent-text: #B23A1D;
  --accent-soft: #FFEDE7;
  --proof: #1C5BB8;
  --proof-soft: #E8F0FC;
  --amber: #8A5200;
  --amber-soft: #FFF3DC;
  --fail: #C21F3E;
  --fail-soft: #FDECEF;
  --shadow: 0 4px 8px rgba(23, 22, 26, .05), 0 30px 70px -30px rgba(23, 22, 26, .22), 0 0 0 1px var(--line);
  --dots: rgba(23, 22, 26, .06);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  margin: 0;
  font: 400 16px/1.6 var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
code { font: 500 .88em/1.4 var(--mono); background: var(--surface2); border: 1px solid var(--line); color: var(--ink); padding: .1em .38em; border-radius: 6px; overflow-wrap: anywhere; }
h1, h2, h3 { margin: 0; letter-spacing: -.02em; line-height: 1.1; }
p { margin: 0; }
em { font-style: normal; color: var(--muted); }
.muted { color: var(--muted); }
::selection { background: var(--accent); color: var(--accent-ink); }
:focus-visible { outline: 2px solid var(--accent-text); outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 820px; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--accent); color: var(--accent-ink); padding: 8px 14px; border-radius: 8px; }
.skip:focus { left: 8px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 0 22px; border-radius: 999px;
  font: 700 15px/1 var(--font); text-decoration: none; letter-spacing: -.005em;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .18s var(--ease), background-color .18s, border-color .18s, box-shadow .18s;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 1px 0 rgba(255, 255, 255, .25) inset, 0 10px 28px -14px var(--accent); }
.btn-primary:hover { background: #FF7A5C; box-shadow: 0 1px 0 rgba(255, 255, 255, .25) inset, 0 14px 34px -14px var(--accent); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line2); }
.btn-ghost:hover { border-color: var(--ink2); background: var(--surface); }
.btn-sm { min-height: 44px; padding: 0 18px; font-size: 14px; }
.pv-buy .btn-sm { min-height: 38px; }
.btn-lg { min-height: 56px; padding: 0 28px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-disabled { background: var(--surface2); color: var(--muted); border: 1px dashed var(--line2); cursor: default; }
.btn-disabled:hover { transform: none; }
.btn-disabled em { color: inherit; font-style: italic; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-in { display: flex; align-items: center; gap: 16px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; min-width: 0; }
.mark { width: 30px; height: 30px; flex: none; }
.mark rect { fill: var(--ink); }
.mark path { fill: none; stroke: var(--bg); stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; }
.brand-name { font-weight: 800; letter-spacing: -.02em; font-size: 17px; }
.brand-by { font-size: 12px; font-weight: 600; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; display: none; }
.nav-links { display: none; gap: 26px; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 14px; font-weight: 600; transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.theme-btn {
  width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--line2);
  background: transparent; color: var(--ink); display: grid; place-items: center; cursor: pointer;
}
.theme-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.theme-btn .i-moon { fill: currentColor; stroke: none; }
[data-theme="dark"] .theme-btn .i-moon, [data-theme="light"] .theme-btn .i-sun { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 44px 0 56px; isolation: isolate; }
.hero + .sec { padding-top: 40px; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: radial-gradient(var(--dots) 1px, transparent 1.2px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 70% 45%, #000 20%, transparent 75%);
          mask-image: radial-gradient(ellipse 70% 60% at 70% 45%, #000 20%, transparent 75%);
}
.glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.g1 { width: 520px; height: 520px; right: -160px; top: -120px; background: var(--accent); opacity: .10; }
.g2 { width: 420px; height: 420px; left: -220px; bottom: 8%; background: var(--proof); opacity: .08; }
[data-theme="light"] .g1 { opacity: .10; } [data-theme="light"] .g2 { opacity: .08; }
.hero-in { display: grid; grid-template-columns: minmax(0, 1fr); gap: 40px; align-items: center; }
.hero-in > *, .method > *, .proof > *, .get > *, .grid-2 > *, .grid-3 > * { min-width: 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted); padding: 7px 13px; border: 1px solid var(--line); border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 60%, transparent);
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px var(--amber-soft); flex: none; }
.hero h1 { font-family: var(--display); font-size: clamp(38px, 10.4vw, 72px); font-weight: 800; letter-spacing: -.035em; line-height: 1.02; margin: 20px 0 18px; text-wrap: balance; }
.lede { font-size: clamp(17px, 4.4vw, 19px); color: var(--ink2); max-width: 36em; text-wrap: pretty; }
.earn { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px; }
.earn li {
  display: grid; gap: 2px; padding: 13px 16px; border-radius: var(--r);
  background: color-mix(in srgb, var(--surface) 75%, transparent); border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
}
.earn li:nth-child(2) { border-left-color: var(--proof); }
.earn-k { font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.earn-v { font-size: 15.5px; font-weight: 600; color: var(--ink); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.cta-row .btn { flex: 1 1 auto; }
.chips { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chips li { font-size: 13px; font-weight: 600; color: var(--ink2); padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); }
.chips li::before { content: "✓"; color: var(--proof); font-weight: 800; margin-right: 6px; }

/* ---------- hero preview (HTML/CSS illustration, synthetic) ---------- */
.preview { margin: 0; position: relative; }
.pv-label {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 0 10px 4px;
  font: 700 11.5px/1 var(--font); letter-spacing: .08em; text-transform: uppercase; color: var(--amber);
  padding: 7px 11px; border-radius: 999px; background: var(--amber-soft); border: 1px dashed color-mix(in srgb, var(--amber) 45%, transparent);
}
.pv-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }
.pv-frame { border-radius: var(--r-lg); background: var(--surface); box-shadow: var(--shadow); overflow: hidden; }
.pv-bar { display: flex; align-items: center; gap: 6px; padding: 11px 14px; border-bottom: 1px solid var(--line); background: var(--surface2); }
.pv-bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line2); }
.pv-url { margin-left: 10px; font: 500 12px/1 var(--mono); color: var(--muted); padding: 6px 10px; border-radius: 8px; background: var(--bg); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pv-body { padding: 18px; display: grid; grid-template-columns: minmax(0, 1fr); gap: 14px; }
.pv-head { display: flex; align-items: center; gap: 12px; }
.pv-avatar { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; font-weight: 800; color: var(--muted); background: var(--surface2); border: 1px dashed var(--line2); flex: none; }
.pv-who { flex: 1; min-width: 0; }
.pv-name { font-weight: 800; font-size: 16px; }
.pv-sub { font-size: 13px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pv-sub span { color: var(--ink2); }
.tag { display: inline-flex; align-items: center; font-size: 11.5px; font-weight: 700; padding: 5px 9px; border-radius: 999px; background: var(--surface2); color: var(--ink2); border: 1px solid var(--line); white-space: nowrap; }
.tag-ok { color: var(--proof); background: var(--proof-soft); border-color: transparent; }
.pv-token { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; padding: 12px 14px; border-radius: var(--r-sm); background: var(--bg); border: 1px solid var(--line); }
.pv-token .pv-mono { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pv-k { font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.pv-k em { text-transform: none; letter-spacing: 0; font-weight: 600; }
.pv-mono { font: 600 13.5px/1.35 var(--mono); }
.pv-entry { text-align: right; }
.pv-windows { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.pv-w { display: grid; gap: 6px; padding: 12px; border-radius: var(--r-sm); border: 1px solid var(--line); background: var(--surface2); }
.pv-wk { font-size: 12px; font-weight: 700; color: var(--muted); }
.pv-wv { font: 600 24px/1 var(--display); letter-spacing: -.02em; color: var(--muted); }
.pv-note { grid-column: 1 / -1; font-size: 12px; color: var(--muted); }
.state { justify-self: start; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 999px; }
.s-final { color: var(--ink2); background: var(--surface); border: 1px solid var(--line); }
.s-open { color: var(--ink); background: var(--surface); border: 1px solid var(--line2); display: inline-flex; align-items: center; gap: 5px; }
.s-open::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; animation: blink 1.6s ease-in-out infinite; }
.s-pending { color: var(--muted); background: transparent; border: 1px dashed var(--line2); }
@keyframes blink { 50% { opacity: .25; } }
.pv-flags { display: flex; flex-wrap: wrap; gap: 6px; }
.pv-seal { display: flex; gap: 12px; align-items: center; padding: 12px 14px; border-radius: var(--r-sm); background: var(--proof-soft); border: 1px solid color-mix(in srgb, var(--proof) 22%, transparent); }
.pv-seal-ic svg { width: 34px; height: 34px; }
.pv-seal-ic path { fill: var(--proof); }
.pv-seal-ic .ck { fill: none; stroke: var(--bg); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.pv-seal-t { min-width: 0; flex: 1; }
.pv-hash { font-size: 12px; overflow-wrap: anywhere; color: var(--ink); }
.pv-buy { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.pv-buy-note { font-size: 12px; color: var(--muted); }

/* ---------- sections ---------- */
.sec { padding: 72px 0; position: relative; }
.sec-alt { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-head { max-width: 720px; margin-bottom: 36px; }
.kicker { font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 12px; }
.sec h2 { font-family: var(--display); font-size: clamp(30px, 7vw, 46px); font-weight: 800; letter-spacing: -.03em; text-wrap: balance; }
.sec-lede { margin-top: 14px; font-size: 17.5px; color: var(--ink2); text-wrap: pretty; }
.sec h3 { font-size: 19px; font-weight: 750; letter-spacing: -.015em; }

.grid-3, .grid-2 { display: grid; gap: 14px; }
.card { padding: 24px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); }
.card p { margin-top: 8px; color: var(--ink2); }
.card-ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px; }
.card-ic svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ic-warn { color: var(--ink2); background: var(--surface2); border: 1px solid var(--line); }

/* flow */
.flow { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; counter-reset: s; position: relative; }
.step { position: relative; padding: 24px 22px 24px 22px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); }
.step p { margin-top: 8px; color: var(--ink2); font-size: 15.5px; }
.step-n {
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; margin-bottom: 14px;
  font: 700 15px/1 var(--mono); color: var(--ink); background: var(--surface2); border: 1px solid var(--line2);
  box-shadow: 0 0 0 6px var(--surface);
}
.step:last-child .step-n { background: var(--proof-soft); color: var(--proof); border-color: color-mix(in srgb, var(--proof) 35%, transparent); }

/* method */
.method { display: grid; gap: 18px; align-items: start; }
.rules { margin: 0; display: grid; gap: 10px; }
.rule { padding: 18px 20px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); }
.rule dt { font-weight: 750; font-size: 17px; display: flex; align-items: center; gap: 10px; letter-spacing: -.01em; }
.r-ic { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; background: var(--surface2); border: 1px solid var(--line); color: var(--ink); flex: none; }
.r-ic svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.rule dd { margin: 8px 0 0; color: var(--ink2); font-size: 15.5px; }
.rule dd em { color: var(--ink); font-weight: 600; }

.calc, .lab { padding: 22px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line2); box-shadow: var(--shadow); }
.calc { position: sticky; top: 84px; }
.calc h3, .lab h3 { margin: 4px 0 16px; }
.calc-label { font-size: 11.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--amber); }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.calc-grid label { display: grid; gap: 6px; font-size: 12.5px; font-weight: 700; color: var(--muted); }
input, textarea {
  width: 100%; font: 600 16px/1.3 var(--mono); color: var(--ink); background: var(--bg);
  border: 1px solid var(--line2); border-radius: var(--r-sm); padding: 11px 12px; transition: border-color .15s, box-shadow .15s;
}
input:focus, textarea:focus { outline: none; border-color: var(--accent-text); box-shadow: 0 0 0 3px var(--accent-soft); }
.calc-out { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.calc-out div { padding: 14px; border-radius: var(--r-sm); background: var(--surface2); border: 1px solid var(--line); display: grid; gap: 4px; }
.calc-out span { font-size: 12px; font-weight: 700; color: var(--muted); }
.calc-out strong { font: 800 26px/1.1 var(--font); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.calc-out div:last-child { border-color: var(--line2); background: var(--bg); }
.calc-f { margin-top: 14px; font-size: 13.5px; color: var(--muted); line-height: 1.7; }

/* proof */
.proof { display: grid; gap: 22px; align-items: start; }
.plain { margin: 0; padding: 0; list-style: none; counter-reset: p; display: grid; gap: 16px; }
.plain li { counter-increment: p; position: relative; padding-left: 46px; color: var(--ink2); font-size: 15.5px; }
.plain li::before {
  content: counter(p); position: absolute; left: 0; top: 0; width: 30px; height: 30px; border-radius: 9px;
  display: grid; place-items: center; font: 700 13px/1 var(--mono); color: var(--ink); background: var(--surface2); border: 1px solid var(--line2);
}
.plain em { color: var(--ink); font-weight: 600; }
.plain strong { color: var(--ink); display: block; font-size: 16.5px; margin-bottom: 2px; }
.lab-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.lab-help { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.lab-calls { display: grid; gap: 10px; }
.lab-call { padding: 12px; border-radius: var(--r-sm); background: var(--surface2); border: 1px solid var(--line); display: grid; gap: 8px; transition: border-color .2s; }
.lab-call.changed { border-color: var(--fail); }
.lc-meta { display: flex; justify-content: space-between; gap: 8px; font-size: 12px; color: var(--muted); font-weight: 600; flex-wrap: wrap; }
.lc-meta b { color: var(--ink2); }
.lab-call textarea { font: 500 14px/1.45 var(--font); resize: vertical; min-height: 44px; padding: 9px 11px; field-sizing: content; overflow-wrap: anywhere; }
.lc-leaf { font: 500 11.5px/1.3 var(--mono); color: var(--muted); overflow-wrap: anywhere; }
.lab-out { margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line2); display: grid; gap: 8px; }
.lo-row { display: grid; gap: 3px; }
.lo-row span { font-size: 11.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.lo-row code { font-size: 12px; background: var(--bg); padding: 7px 9px; display: block; }
.lab-verdict { margin-top: 6px; padding: 12px 14px; border-radius: var(--r-sm); font-weight: 700; font-size: 14.5px; background: var(--proof-soft); color: var(--proof); transition: background-color .2s, color .2s; }
.lab-verdict.bad { background: var(--fail-soft); color: var(--fail); }

/* buyers */
.buyer { padding: 26px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); position: relative; overflow: hidden; }
.buyer::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 2px; background: linear-gradient(90deg, var(--accent), transparent 70%); }
.buyer-b::after { background: linear-gradient(90deg, var(--proof), transparent 70%); }
.buyer h3 { font-size: 22px; margin-top: 14px; }
.buyer-earn { margin-top: 8px; font-size: 17px; font-weight: 600; color: var(--ink); }
.pill { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .04em; padding: 6px 11px; border-radius: 999px; color: var(--accent-text); background: var(--accent-soft); }
.pill-b { color: var(--proof); background: var(--proof-soft); }
.ticks { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 28px; color: var(--ink2); font-size: 15.5px; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 50%; background: var(--proof-soft);
  -webkit-mask: none;
}
.ticks li::after {
  content: ""; position: absolute; left: 6px; top: 8px; width: 6px; height: 9px;
  border: solid var(--proof); border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.ticks-o li::before { background: var(--line); }
.ticks-o li::after { border-color: var(--muted); }

/* what you get */
.get { display: grid; gap: 16px; }
.get-grid { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.get-grid li { align-content: start; padding: 18px 20px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); display: grid; gap: 4px; }
.get-grid strong { font-size: 16.5px; letter-spacing: -.01em; }
.get-grid span { color: var(--ink2); font-size: 15px; }
.notincl { padding: 22px; border-radius: var(--r); border: 1px dashed var(--line2); }
.notincl h3 { font-size: 17px; }
.notincl ul { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 8px; }
.notincl li { position: relative; padding-left: 24px; color: var(--ink2); font-size: 15px; }
.notincl li::before { content: "–"; position: absolute; left: 4px; color: var(--muted); font-weight: 800; }

/* requirements */
.req { display: grid; gap: 14px; }
.req-col { padding: 24px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); }
.req-col h3 { font-size: 17px; }

/* pricing */
.price { padding: 28px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line2); display: flex; flex-direction: column; }
.price-b { background: linear-gradient(160deg, var(--proof-soft), transparent 55%), var(--surface); }
.price-k { font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.price-v { font: 800 48px/1 var(--font); letter-spacing: -.035em; margin-top: 12px; }
.from { font-size: 16px; font-weight: 700; color: var(--muted); letter-spacing: 0; margin-right: 4px; }
.price-d { margin-top: 12px; color: var(--ink2); }
.price .ticks { margin-bottom: 24px; flex: 1; }

/* faq */
.faq { display: grid; gap: 10px; }
.faq details { border-radius: var(--r); background: var(--surface); border: 1px solid var(--line); transition: border-color .2s; }
.faq details[open] { border-color: var(--line2); }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 52px 18px 20px; font-weight: 700; font-size: 16.5px; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 22px; top: 50%; width: 9px; height: 9px; margin-top: -7px;
  border: solid var(--muted); border-width: 0 2px 2px 0; transform: rotate(45deg); transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq details p { padding: 0 20px 18px; color: var(--ink2); }

/* cta */
.cta { overflow: hidden; text-align: center; isolation: isolate; }
.g3 { width: 640px; height: 380px; left: 50%; top: 50%; transform: translate(-50%, -50%); background: var(--accent); opacity: .09; }
.cta-in { display: grid; justify-items: center; gap: 16px; }
.cta h2 { max-width: 16em; }
.cta p { color: var(--ink2); font-size: 17.5px; max-width: 34em; }
.cta .btn { margin-top: 8px; }

/* footer */
.foot { border-top: 1px solid var(--line); padding: 36px 0 44px; }
.foot-in { display: grid; gap: 16px; }
.foot-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.foot-brand .mark { width: 24px; height: 24px; }
.foot-note { color: var(--muted); font-size: 13.5px; max-width: 60em; }
.foot-links { display: flex; flex-wrap: wrap; gap: 0 22px; }
.foot-links a { color: var(--muted); font-size: 14px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; min-height: 44px; }
.foot-links a:hover { color: var(--ink); }

/* ---------- motion ---------- */
.reveal { opacity: 1; }
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.preview .pv-frame { animation: rise .9s var(--ease) both .1s; }
.dot { animation: pulse 2.4s ease-in-out infinite; }
@keyframes rise { from { opacity: 0; transform: translateY(24px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes seal { 0%, 100% { transform: rotate(0); } 50% { transform: rotate(8deg); } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 4px var(--amber-soft); } 50% { box-shadow: 0 0 0 7px transparent; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- breakpoints ---------- */
@media (max-width: 559px) {
  .hide-sm { display: none; }
  .nav-demo { display: none; } /* the hero carries "Open the live demo" on phones */
}
@media (min-width: 560px) {
  .brand-by { display: inline; }
  .cta-row .btn { flex: 0 0 auto; }
  .grid-2, .req { grid-template-columns: 1fr 1fr; }
  .get-grid { grid-template-columns: 1fr 1fr; }
  .flow { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .wrap { padding: 0 32px; }
  .nav-links { display: flex; }
  .hero { padding: 72px 0 80px; }
  .hero + .sec { padding-top: 56px; }
  .hero-in { grid-template-columns: 1.05fr .95fr; gap: 56px; }
  .earn { grid-template-columns: 1fr 1fr; }
  .sec { padding: 104px 0; }
  .sec-head { margin-bottom: 48px; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .flow { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .flow::before {
    content: ""; position: absolute; left: 40px; right: 40px; top: 42px; height: 2px; z-index: 0;
    background: linear-gradient(90deg, var(--line2), color-mix(in srgb, var(--proof) 45%, transparent));
  }
  .step { z-index: 1; }
  .method { grid-template-columns: 1.25fr .9fr; gap: 28px; }
  .proof { grid-template-columns: 1fr 1fr; gap: 40px; }
  .get { grid-template-columns: 2fr 1fr; align-items: start; }
  .foot-in { grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
}
@media (max-width: 899px) {
  .calc { position: static; }
}
@media (max-width: 380px) {
  .pv-windows { gap: 6px; }
  .pv-w { padding: 10px 8px; }
  .calc-out strong { font-size: 22px; }
}
