/* FREQENCY site. Black design system.
   Palette: black, white, raspberry #D94F6E, gold #C8A44E. */

:root {
  --bg: #0A0A0B;
  --raise: #131316;
  --line: rgba(255, 255, 255, 0.09);
  --text: #F5F5F6;
  --muted: #A3A3AC;
  --rasp: #D94F6E;
  --rasp-soft: rgba(217, 79, 110, 0.14);
  --gold: #C8A44E;
  --radius: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 106.25%; } /* 17px base: whole site reads a touch bigger */
/* Keep anchored/scrolled-to content clear of the sticky nav (and spaces bar) */
section, .app-form, #app-done, #august-done { scroll-margin-top: 120px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .display { font-family: 'Archivo', sans-serif; }
.mono { font-family: 'Space Mono', monospace; }
img { max-width: 100%; display: block; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; border-bottom: 1px solid var(--line); }

/* ---------- nav ---------- */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 11, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.wordmark { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 1.3rem; letter-spacing: 0.04em; color: var(--text); text-decoration: none; }
.wordmark i { font-style: normal; color: var(--gold); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--text); text-decoration: none; font-size: 0.92rem; font-weight: 600; transition: color 0.15s ease; }
.nav-links a:hover { color: var(--gold); }
/* The gold nav button needs dark text; .nav-links a outranks .btn-primary */
.nav-links a.btn-primary, .nav-links a.btn-primary:hover { color: #0A0A0B; }

.btn {
  display: inline-block; padding: 14px 28px; border-radius: 12px;
  font-weight: 700; font-size: 0.98rem; text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease; cursor: pointer; border: none;
}
.btn-primary { background: linear-gradient(135deg, #D9B563, var(--gold)); color: #0A0A0B; box-shadow: 0 4px 28px rgba(200, 164, 78, 0.45); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(217, 181, 99, 0.6); }
.btn-ghost { border: 1px solid rgba(255, 255, 255, 0.18); color: var(--text); background: transparent; }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--gold); color: var(--gold); box-shadow: 0 8px 32px rgba(200, 164, 78, 0.25); }
nav .btn-primary { box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset, 0 4px 22px rgba(217, 181, 99, 0.55); }
.btn-sm { padding: 10px 20px; font-size: 0.86rem; }

/* ---------- hero ---------- */
.hero { padding: 96px 0 76px; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::before {
  content: ""; position: absolute; top: -340px; right: -140px;
  width: 900px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(200, 164, 78, 0.13), transparent 62%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Space Mono', monospace; font-size: clamp(0.6rem, 0.85vw, 0.72rem); font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
  padding: 9px 16px; border: 1px solid rgba(200, 164, 78, 0.38); border-radius: 999px;
  margin-bottom: 30px; background: rgba(200, 164, 78, 0.05);
  white-space: nowrap;
}
.eyebrow::before { content: "●"; font-size: 0.6rem; color: var(--gold); }
@media (max-width: 880px) { .eyebrow { white-space: normal; text-align: left; } }

h1 { font-size: clamp(3rem, 6.6vw, 5.2rem); font-weight: 900; line-height: 1.02; letter-spacing: -0.02em; }
h1 em { font-style: normal; color: var(--gold); }
.hero .lead { margin: 26px 0 34px; font-size: 1.14rem; color: var(--muted); max-width: 560px; }
.hero .lead strong { color: var(--text); font-weight: 600; }
.hero-list { list-style: none; margin: 28px 0 36px; max-width: 560px; }
.hero-list li { padding: 8px 0; font-size: 1.1rem; color: var(--muted); line-height: 1.5; }
.hero-list li::before { content: "→  "; color: var(--gold); font-weight: 700; }
.hero-list strong { color: var(--text); font-weight: 700; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-centered .hero-sub { margin-bottom: 42px; }
.hero-centered .cta-row { margin: 42px 0 52px; }
.cta-micro { font-family: 'Space Mono', monospace; font-size: 0.76rem; color: var(--muted); margin-top: 18px; letter-spacing: 0.04em; }
.cta-micro b { color: var(--gold); font-weight: 700; }

.hero-photo { position: relative; }
.hero-photo img { border-radius: 20px; border: 1px solid var(--line); aspect-ratio: 1 / 1; object-fit: cover; width: 100%; height: auto; }
.stat-chip {
  position: absolute; left: -52px; bottom: 34px;
  background: rgba(16, 16, 18, 0.92); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}
.stat-chip .n { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 1.9rem; line-height: 1; }
.stat-chip .n i { font-style: normal; color: var(--gold); }
.stat-chip .l { font-family: 'Space Mono', monospace; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.stat-chip--top { top: 26px; bottom: auto; }

.deal { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 64px; position: relative; }
.deal > div { background: var(--raise); padding: 24px 18px; text-align: center; }
.deal .num { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 2rem; color: var(--gold); line-height: 1.1; }
.deal .lbl { font-size: 0.8rem; color: var(--muted); margin-top: 5px; }
.deal .fine { grid-column: 1 / -1; padding: 11px; font-family: 'Space Mono', monospace; font-size: 0.68rem; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }

/* ---------- ticker ---------- */
.ticker { border-bottom: 1px solid var(--line); background: var(--raise); overflow: hidden; padding: 14px 0; }
.ticker-track { display: flex; width: max-content; animation: tick 42s linear infinite; }
.ticker span { white-space: nowrap; padding: 0 30px; font-size: 0.86rem; color: var(--muted); }
.ticker b { color: var(--text); }
.ticker .dot { color: var(--gold); }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ---------- shared section bits ---------- */
.kicker { font-family: 'Space Mono', monospace; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.7rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.01em; max-width: 740px; margin-bottom: 18px; }
section h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 900; line-height: 1.12; letter-spacing: -0.01em; max-width: 780px; margin-bottom: 18px; }
section h1 em { font-style: normal; color: var(--gold); }
h2 em { font-style: normal; color: var(--gold); }
.sub { color: var(--muted); max-width: 620px; margin-bottom: 46px; font-size: 1.02rem; }

/* ---------- problem cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: var(--raise); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; position: relative; }
.card::before { content: ""; position: absolute; top: 0; left: 26px; width: 44px; height: 3px; background: var(--gold); border-radius: 0 0 4px 4px; }
.card .tag { font-family: 'Space Mono', monospace; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 14px; }
.card h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 10px; }
.card p { font-size: 0.94rem; color: var(--muted); }

/* ---------- calculator ---------- */
.panel { background: var(--raise); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.panel-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; padding: 16px 26px; border-bottom: 1px solid var(--line); font-family: 'Space Mono', monospace; font-size: 0.72rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.panel-head .pdot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--rasp); margin-right: 10px; }
.cur-toggle { display: inline-flex; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.panel-grid { display: grid; grid-template-columns: 1fr 1fr; }
.panel-controls { padding: 32px; border-right: 1px solid var(--line); }
.ctl { margin-bottom: 30px; }
.ctl:last-child { margin-bottom: 0; }
.ctl-label { display: flex; justify-content: space-between; font-size: 0.92rem; font-weight: 600; margin-bottom: 12px; }
.ctl-value { color: var(--gold); font-family: 'Archivo', sans-serif; font-weight: 800; }
input[type="range"] { width: 100%; accent-color: var(--gold); -webkit-appearance: none; appearance: none; height: 6px; background: rgba(255, 255, 255, 0.14); border-radius: 999px; cursor: pointer; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 28px; height: 28px; border-radius: 50%; background: var(--gold); border: 3px solid #fff; box-shadow: 0 2px 12px rgba(200, 164, 78, 0.5); cursor: grab; }
input[type="range"]::-moz-range-thumb { width: 28px; height: 28px; border-radius: 50%; background: var(--gold); border: 3px solid #fff; box-shadow: 0 2px 12px rgba(200, 164, 78, 0.5); cursor: grab; }
input[type="range"]:active::-webkit-slider-thumb { cursor: grabbing; }
.ctl-scale { display: flex; justify-content: space-between; font-family: 'Space Mono', monospace; font-size: 0.68rem; color: var(--muted); margin-top: 8px; }
.ctl-fixed { font-family: 'Space Mono', monospace; font-size: 0.78rem; color: var(--muted); border: 1px dashed rgba(255, 255, 255, 0.18); border-radius: 10px; padding: 12px 16px; }
.ctl-fixed b { color: var(--text); }
.panel-readout { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.readout-label { font-size: 0.88rem; color: var(--muted); }
.readout-big { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(2.1rem, 4.6vw, 3.2rem); color: var(--gold); margin: 8px 0 12px; line-height: 1; }
.readout-big span { font-size: 1.1rem; color: var(--muted); font-weight: 600; }
.readout-math { font-size: 0.84rem; color: var(--muted); margin-bottom: 20px; }
.readout-math b { color: var(--text); }
.readout-vs { border-top: 1px solid var(--line); padding-top: 18px; font-size: 0.92rem; color: var(--muted); }
.readout-vs div { display: flex; justify-content: space-between; padding: 5px 0; }
.readout-vs b { color: var(--text); }
.readout-vs .mult b { color: var(--gold); font-family: 'Archivo', sans-serif; font-size: 1.2rem; }
.panel-foot { padding: 15px 26px; border-top: 1px solid var(--line); font-size: 0.82rem; color: var(--muted); }
.panel-foot b { color: var(--gold); }

/* ---------- system diagram ---------- */
.system { max-width: 920px; margin: 0 auto 64px; }
.sys-row { display: grid; gap: 22px; margin: 0 auto; }
.sys-row.one { grid-template-columns: minmax(0, 420px); justify-content: center; }
.sys-row.two { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 720px; }
.sys-row.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sys-box { background: var(--raise); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; text-align: center; }
.sys-box b { display: block; font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 0.98rem; color: var(--text); }
.sys-box span { display: block; font-size: 0.78rem; color: var(--muted); margin-top: 4px; }
.sys-box.engine { border-color: rgba(200, 164, 78, 0.6); background: radial-gradient(ellipse at 50% 130%, rgba(200, 164, 78, 0.12), transparent 70%), var(--raise); box-shadow: 0 8px 40px rgba(200, 164, 78, 0.12); }
.sys-box.engine b { font-size: 1.2rem; color: var(--gold); }
.sys-box.gate { border: 1px dashed rgba(200, 164, 78, 0.55); background: rgba(200, 164, 78, 0.05); }
.sys-box.gate b { color: var(--gold); }
.sys-box.win { border-color: rgba(200, 164, 78, 0.45); }
.sys-box.win b { color: var(--gold); }
/* The monthly report bar. It was a whisper sitting right under the outcomes,
   so it read as a footnote. Now it closes the diagram properly. */
.sys-loop {
  text-align: center; font-family: 'Inter', sans-serif;
  font-size: 1rem; line-height: 1.55; letter-spacing: 0;
  color: var(--text); font-weight: 600;
  border: 1px solid rgba(200,164,78,.45); border-radius: var(--radius);
  padding: 26px 34px; max-width: 720px; margin: 46px auto 0;
  background: radial-gradient(ellipse at 50% -40%, rgba(200,164,78,.14), transparent 70%), var(--raise);
  box-shadow: 0 10px 44px rgba(0,0,0,.35);
  position: relative;
}
.sys-loop .loop-mark {
  display: inline-block; font-size: 1.5rem; color: var(--gold);
  vertical-align: -3px; margin-right: 10px;
}
.sys-loop b { color: var(--gold); }
@media (max-width: 720px) { .sys-loop { padding: 22px 20px; font-size: 0.95rem; margin-top: 34px; } }
@media (max-width: 720px) { .sys-row.two, .sys-row.three { grid-template-columns: 1fr; } }

/* ============================================================
   System diagram, animated. Everything below is progressive:
   with JS off, .sx elements sit at full opacity and the
   connectors are static gold lines. Nothing is hidden by default.
   ============================================================ */
.system { position: relative; }

/* --- connectors: a line that draws itself, with a pulse running down it --- */
.sys-down { position: relative; height: 56px; display: flex; align-items: center; justify-content: center; padding: 0; }
.sys-down::before {
  content: ""; position: absolute; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, rgba(200,164,78,.15), rgba(200,164,78,.55), rgba(200,164,78,.15));
  border-radius: 2px;
}
.sys-down::after {
  content: ""; position: absolute; left: 50%; top: 100%;
  width: 7px; height: 7px; margin-left: -3.5px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 10px 2px rgba(200,164,78,.7); opacity: 0;
}
.sys-down > i {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-top: 7px solid var(--gold); opacity: .75;
}

/* --- boxes --- */
.sys-box { position: relative; overflow: hidden; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
/* Step label: brighter gold, with a shine that sweeps left to right. */
.sys-box[data-step]::before {
  content: attr(data-step);
  position: absolute; top: 0; left: 0; z-index: 2;
  font-family: 'Space Mono', monospace; font-size: 0.64rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 12px; border-bottom-right-radius: 10px;
  background: linear-gradient(100deg, rgba(200,164,78,.16), rgba(233,203,124,.30), rgba(200,164,78,.16));
  background-size: 220% 100%;
  color: #F0D89A;
  text-shadow: 0 0 12px rgba(200,164,78,.55);
  border-bottom: 1px solid rgba(200,164,78,.35);
  border-right: 1px solid rgba(200,164,78,.35);
}
body.js .sys-box[data-step].lit::before { animation: stepShine 2.6s ease-in-out .35s infinite; }
@keyframes stepShine {
  0%   { background-position: 130% 0; }
  55%  { background-position: -30% 0; }
  100% { background-position: -30% 0; }
}
.sys-box[data-step] { padding-top: 30px; }
.sys-box:hover { transform: translateY(-3px); border-color: rgba(200,164,78,.55); box-shadow: 0 10px 30px rgba(0,0,0,.35); }
/* a light sweep that crosses the box as it arrives */
.sys-box::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 35%, rgba(200,164,78,.13) 50%, transparent 65%);
  transform: translateX(-120%);
}

/* --- with JS: start hidden, then arrive one at a time --- */
body.js .system .sx { opacity: 0; transform: translateY(14px); }
body.js .system .sx.lit {
  opacity: 1; transform: none;
  transition: opacity .5s ease, transform .5s cubic-bezier(.22,1,.36,1);
}
body.js .system .sx.lit::after { animation: sysSweep .9s ease-out .15s 1; }
@keyframes sysSweep { to { transform: translateX(120%); } }

body.js .sys-down::before { transform: scaleY(0); transform-origin: top; }
body.js .sys-down.lit::before { transform: scaleY(1); transition: transform .35s ease-out; }
body.js .sys-down > i { opacity: 0; }
body.js .sys-down.lit > i { opacity: .75; transition: opacity .3s ease .3s; }
body.js .sys-down.lit::after { animation: sysPulse 1.6s ease-in-out .4s infinite; }
@keyframes sysPulse {
  0%   { top: 0;    opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* the engine box keeps a slow breathing glow once it has arrived */
body.js .sys-box.engine.lit { animation: sysBreathe 3.6s ease-in-out infinite; }
@keyframes sysBreathe {
  0%, 100% { box-shadow: 0 8px 40px rgba(200,164,78,.12); }
  50%      { box-shadow: 0 8px 54px rgba(200,164,78,.26); }
}
body.js .sys-loop.lit .loop-mark { display: inline-block; animation: sysSpin 6s linear infinite; }
@keyframes sysSpin { to { transform: rotate(360deg); } }

/* Respect the setting. No motion, no animation, everything visible. */
@media (prefers-reduced-motion: reduce) {
  body.js .system .sx { opacity: 1 !important; transform: none !important; }
  body.js .sys-down::before { transform: scaleY(1) !important; }
  body.js .sys-down > i { opacity: .75 !important; }
  body.js .sys-down::after,
  body.js .sys-box.engine.lit,
  body.js .sys-loop.lit .loop-mark,
  body.js .sys-box[data-step].lit::before,
  body.js .system .sx.lit::after { animation: none !important; }
}
@media (max-width: 720px) {
  .sys-box[data-step]::before { font-size: 0.58rem; }
}

/* ---------- how it works ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.step-card { background: var(--raise); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.step-card .n { font-family: 'Space Mono', monospace; font-size: 0.72rem; font-weight: 700; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; display: block; margin-bottom: 14px; }
.step-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step-card h3 i { font-style: normal; color: var(--gold); }
.step-card p { font-size: 0.94rem; color: var(--muted); }

/* ---------- proof ---------- */
/* Two real testimonials, so the grid is 2-up. It was 3-up when there were
   six cards, which left a gap once the fabricated ones were removed. */
.proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.proof { background: var(--raise); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; }
.proof .nums { margin-top: auto; }
.proof .hold-note { flex: none; }
.proof .who { font-family: 'Space Mono', monospace; font-size: 0.7rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.proof blockquote { font-size: 1.03rem; line-height: 1.55; margin-bottom: 20px; }
.proof .nums { display: flex; gap: 36px; border-top: 1px solid var(--line); padding-top: 20px; }
.proof .num { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 1.8rem; color: var(--gold); line-height: 1.1; }
.proof .lbl { font-size: 0.78rem; color: var(--muted); margin-top: 3px; }
.proof .hold-note { font-family: 'Space Mono', monospace; font-size: 0.68rem; color: var(--gold); margin-top: 14px; letter-spacing: 0.06em; }

.banner-quote { margin-bottom: 28px; text-align: center; padding: 52px 28px; border: 1px solid var(--line); border-radius: var(--radius); background: radial-gradient(ellipse at 50% 135%, rgba(200, 164, 78, 0.12), transparent 70%), var(--raise); }
.banner-quote p { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: clamp(1.4rem, 3.2vw, 2.1rem); line-height: 1.28; max-width: 780px; margin: 0 auto; }
.banner-quote p em { font-style: normal; color: var(--gold); }
.banner-quote .who { margin-top: 16px; font-family: 'Space Mono', monospace; font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }

.growth-story { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; background: var(--raise); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; }
.growth-story h3 { font-size: 1.5rem; margin-bottom: 14px; }
.growth-story h3 i { font-style: normal; color: var(--gold); }
.growth-story p { color: var(--muted); font-size: 0.96rem; margin-bottom: 12px; }
.growth-story p strong { color: var(--text); }
.growth-nums { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.growth-nums > div { border: 1px solid var(--line); border-radius: 12px; padding: 20px; text-align: center; }
.growth-nums .num { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 1.6rem; color: var(--gold); }
.growth-nums .lbl { font-family: 'Space Mono', monospace; font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

.receipts { margin-top: 44px; }
.receipts-head { margin-bottom: 22px; }
.receipts-head h3 { font-size: 1.5rem; margin-bottom: 8px; }
.receipts-head h3 i { font-style: normal; color: var(--gold); }
.receipts-head p { color: var(--muted); font-size: 0.96rem; max-width: 62ch; }
.receipts-grid { column-count: 2; column-gap: 20px; }
.receipts-grid figure { break-inside: avoid; -webkit-column-break-inside: avoid; page-break-inside: avoid; margin-bottom: 20px; display: inline-block; width: 100%; }
.receipts-grid figure { position: relative; background: var(--raise); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease; }
.receipts-grid figure:hover { transform: translateY(-4px); border-color: rgba(200, 164, 78, 0.55); box-shadow: 0 14px 44px rgba(0, 0, 0, 0.45); }
.receipts-grid img { width: 100%; height: auto; display: block; background: #fff; }
.receipts-grid figcaption { font-size: 0.92rem; color: var(--muted); padding: 16px 20px; line-height: 1.55; border-top: 1px solid var(--line); }
.receipts-grid figcaption b { color: var(--text); }
@media (max-width: 880px) { .receipts-grid { column-count: 1; } }

.senja-shell { margin-top: 44px; min-height: 320px; }
.senja-note { font-family: 'Space Mono', monospace; font-size: 0.7rem; color: var(--muted); letter-spacing: 0.06em; margin-bottom: 18px; text-transform: uppercase; }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.price { background: var(--raise); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; position: relative; }
.price.featured { border-color: rgba(217, 79, 110, 0.55); box-shadow: 0 12px 48px rgba(217, 79, 110, 0.12); }
.price .flag { position: absolute; top: -13px; left: 26px; font-family: 'Space Mono', monospace; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; background: var(--rasp); color: #fff; padding: 5px 12px; border-radius: 999px; }
.price .spec { font-family: 'Space Mono', monospace; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px; }
.price h3 { font-size: 1.2rem; margin-bottom: 14px; }
.price .amount { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 3.1rem; line-height: 1; letter-spacing: -0.01em; }
.price .amount span:last-child { font-size: 1rem; color: var(--muted); font-weight: 500; }
.setup-line { font-family: 'Space Mono', monospace; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; color: var(--gold); margin-top: 12px; padding: 7px 12px; border: 1px solid rgba(200, 164, 78, 0.38); border-radius: 8px; display: inline-block; background: rgba(200, 164, 78, 0.06); }
.price ul { list-style: none; margin: 22px 0; }
.price li { padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 0.9rem; color: var(--muted); }
.price li:last-child { border: none; }
.price li::before { content: "→ "; color: var(--gold); font-weight: 700; }
.price-note { margin-top: 26px; text-align: center; font-size: 0.86rem; color: var(--muted); }
.price-note b { color: var(--text); }

/* ---- price gate. Native details/summary so it works with no JS ---- */
.price-gate { max-width: 720px; margin: 0 auto; text-align: center; }
.price-gate p { color: var(--muted); margin: 0 0 14px; }
.price-gate p b { color: var(--text); }
.price-reveal { margin-top: 34px; }
.price-reveal > summary {
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto; cursor: pointer; list-style: none; user-select: none;
}
.price-reveal > summary::-webkit-details-marker { display: none; }
.price-reveal > summary::marker { content: ""; }
.price-reveal > summary:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.price-reveal:not([open]) > summary { position: relative; left: 50%; transform: translateX(-50%); }
.price-reveal[open] > summary { display: none; }
.price-body { margin-top: 8px; }
.price-body > h2 { margin-top: 0; }
@media (prefers-reduced-motion: no-preference) {
  .price-reveal[open] .price-body { animation: gateIn .28s ease-out; }
}
@keyframes gateIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- trial ---------- */
.trial-box { border-radius: 18px; padding: 2px; background: linear-gradient(120deg, var(--gold), var(--rasp)); margin-top: 54px; }
.trial-in { background: var(--bg); border-radius: 16px; padding: 48px 44px; display: grid; grid-template-columns: 1.35fr 1fr; gap: 44px; align-items: center; }
.trial-in h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 14px; }
.trial-in h3 i { font-style: normal; color: var(--gold); }
.trial-in p { color: var(--muted); margin-bottom: 12px; font-size: 0.98rem; }
.trial-in p strong { color: var(--text); }
.trial-points { list-style: none; font-size: 0.92rem; }
.trial-points li { padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.trial-points li::before { content: "→ "; color: var(--gold); font-weight: 700; }
.trial-points li:last-child { border: none; }

/* ---------- email capture ---------- */
.capture { margin-top: 54px; border: 1px solid var(--line); border-radius: var(--radius); background: radial-gradient(ellipse at 85% 0%, rgba(200, 164, 78, 0.1), transparent 55%), var(--raise); padding: 44px 40px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.capture h3 { font-size: clamp(1.4rem, 2.8vw, 1.9rem); font-weight: 800; margin-bottom: 12px; }
.capture h3 i { font-style: normal; color: var(--gold); }
.capture p { color: var(--muted); font-size: 0.96rem; }
.capture form { display: flex; flex-direction: column; gap: 12px; }
.capture input, .capture textarea { background: var(--bg); border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 12px; padding: 15px 18px; color: var(--text); font-family: 'Inter', sans-serif; font-size: 0.98rem; width: 100%; }
.capture textarea { resize: vertical; min-height: 104px; line-height: 1.5; }
.capture input::placeholder, .capture textarea::placeholder { color: var(--muted); }
.capture input:focus, .capture textarea:focus { outline: 2px solid var(--gold); border-color: transparent; }
.capture-list { list-style: none; margin: 18px 0 16px; }
.capture-list li { position: relative; padding: 8px 0 8px 26px; font-size: 0.94rem; color: var(--muted); border-bottom: 1px solid var(--line); }
.capture-list li:last-child { border-bottom: none; }
.capture-list li::before { content: "\2713"; position: absolute; left: 0; top: 8px; color: var(--gold); font-weight: 700; }
.capture-close { color: var(--text); font-weight: 600; }

/* Retention block. Sits at the top of the proof section because how long a
   client stays is the number this buyer trusts most. */
.retention { margin-bottom: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--raise); padding: 40px; }
.ret-head { text-align: center; max-width: 640px; margin: 0 auto 30px; }
.ret-head h3 { font-size: clamp(1.4rem, 2.8vw, 1.9rem); font-weight: 800; margin-bottom: 10px; }
.ret-head h3 i { font-style: normal; color: var(--gold); }
.ret-head p { color: var(--muted); font-size: 0.96rem; }
.ret-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ret-grid > div { background: var(--bg); border: 1px solid var(--line); border-radius: 14px; padding: 26px; }
.ret-num { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(1.7rem, 3.4vw, 2.3rem); color: var(--gold); line-height: 1; }
.ret-lbl { font-family: 'Space Mono', monospace; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin: 8px 0 14px; }
.ret-grid p { color: var(--muted); font-size: 0.94rem; }

/* Four cards instead of three, for the section on how their buyers buy. */
.cards-4 { grid-template-columns: repeat(2, 1fr); }
.market-close { max-width: 780px; margin: 32px auto 0; text-align: center; color: var(--text); font-size: 1.02rem; }

/* Louder ICP line in the hero. David could not tell at a glance who the site is
   for, and it was the smallest text on the screen. */
.eyebrow-lg { font-size: 0.92rem; letter-spacing: 0.14em; padding: 11px 22px; }

/* Named clients on the proof page. The claim is only worth making next to a name. */
.named-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 44px; }
.named-proof > div { background: var(--raise); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.np-num { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(1.6rem, 3.2vw, 2.2rem); color: var(--gold); line-height: 1; }
.np-lbl { font-family: 'Space Mono', monospace; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); margin: 10px 0 14px; }
.named-proof p { color: var(--muted); font-size: 0.94rem; }
.proof-cta { text-align: center; margin-top: 56px; }
.proof-cta h3 { font-size: clamp(1.4rem, 2.8vw, 1.9rem); font-weight: 800; margin-bottom: 10px; }
.proof-cta h3 i { font-style: normal; color: var(--gold); }
.proof-cta p { color: var(--muted); margin-bottom: 26px; }
.receipts-more { text-align: center; margin-top: 32px; }

/* The roadmap offer moved to its own page. What is left on the homepage is a band. */
.roadmap-band { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); background: radial-gradient(ellipse at 85% 0%, rgba(200, 164, 78, 0.1), transparent 55%), var(--raise); padding: 38px 40px; text-align: left; }
.roadmap-band h3 { font-size: clamp(1.3rem, 2.6vw, 1.8rem); font-weight: 800; margin-bottom: 10px; }
.roadmap-band h3 i { font-style: normal; color: var(--gold); }
.roadmap-band p { color: var(--muted); font-size: 0.96rem; max-width: 640px; }
.getneed-solo { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }

/* Three steps on the roadmap page. */
.roadmap-how { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.roadmap-how > div { background: var(--raise); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.roadmap-how .rn { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 1.6rem; color: var(--gold); display: block; margin-bottom: 10px; }
.roadmap-how b { display: block; margin-bottom: 8px; font-size: 1.05rem; }
.roadmap-how p { color: var(--muted); font-size: 0.94rem; }

/* Alternating section grounds. Every section was the same black, so the page read
   as one long scroll with no edges. */
#yourmarket, #how, #pricing, #founders, #faq { background: #0D0D0F; }

/* The nine older screenshots sit behind a toggle. Fourteen at once read as a wall
   nobody finishes; five in-ICP ones land, and the rest are there for anyone who
   wants to keep going. */
.more-receipts { margin-top: 26px; text-align: center; }
.more-receipts > summary { cursor: pointer; display: inline-block; list-style: none; }
.more-receipts > summary::-webkit-details-marker { display: none; }
.more-receipts > summary::marker { content: ""; }
.more-receipts > summary:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.more-receipts[open] > summary { display: none; }
.more-receipts .receipts-grid { margin-top: 0; text-align: left; }

/* More air between the blocks inside the proof section. They were running
   together into one long stretch of bordered boxes. */
#proof .retention { margin-bottom: 56px; }
#proof .growth-story { margin-top: 0; margin-bottom: 56px; }
#proof .receipts { margin-bottom: 56px; }
#proof .banner-quote { margin: 0 0 56px; }
.capture .form-note { font-family: 'Space Mono', monospace; font-size: 0.7rem; color: var(--muted); letter-spacing: 0.04em; }

/* ---------- founders ---------- */
.founders { display: grid; grid-template-columns: 1fr 1.1fr; gap: 52px; align-items: center; }
.founders img { border-radius: 20px; border: 1px solid var(--line); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; height: auto; }
.founders p { color: var(--muted); margin-bottom: 14px; font-size: 0.98rem; }
.founders p strong { color: var(--text); }
.founders a { color: var(--gold); }

/* ---------- faq ---------- */
.faq { max-width: 820px; }
.faq details { border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; background: var(--raise); }
.faq summary { padding: 20px 24px; font-weight: 700; font-size: 1rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: 'Archivo', sans-serif; font-weight: 800; color: var(--gold); font-size: 1.3rem; flex-shrink: 0; }
.faq details[open] summary::after { content: "–"; }
.faq .a { padding: 0 24px 22px; color: var(--muted); font-size: 0.95rem; }
.faq .a strong { color: var(--text); }

/* ---------- final ---------- */
.final { text-align: center; border: none; position: relative; overflow: hidden; }
.final::before { content: ""; position: absolute; bottom: -280px; left: 50%; transform: translateX(-50%); width: 940px; height: 540px; background: radial-gradient(ellipse at center, rgba(200, 164, 78, 0.13), transparent 62%); pointer-events: none; }
.final h2 { margin: 0 auto 16px; }
.final .sub { margin: 0 auto 38px; }
.after-steps { display: flex; justify-content: center; gap: 40px; margin-top: 48px; flex-wrap: wrap; }
.after-step { max-width: 230px; text-align: left; }
.after-step .n { font-family: 'Space Mono', monospace; font-size: 0.74rem; font-weight: 700; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; }
.after-step p { font-size: 0.87rem; color: var(--muted); margin-top: 8px; }

footer { padding: 40px 0; text-align: center; color: var(--muted); font-size: 0.83rem; border-top: 1px solid var(--line); }
footer a { color: var(--muted); }

/* ---------- featured proof card ---------- */
.proof.featured { grid-column: 1 / -1; border-color: rgba(200, 164, 78, 0.45); background: radial-gradient(ellipse at 90% 0%, rgba(200, 164, 78, 0.08), transparent 55%), var(--raise); }
.proof.featured blockquote { font-size: 1.15rem; }
.proof.featured .num { font-size: 2.3rem; }
.proof .hold-note a { color: var(--gold); }

/* ---------- the three cards below: same family, different faces ---------- */
.proof.p-gold { border-color: rgba(200, 164, 78, 0.45); background: radial-gradient(ellipse at 10% 0%, rgba(200, 164, 78, 0.09), transparent 55%), var(--raise); }
.proof.p-gold .num { color: var(--gold); }
.proof.p-steel { border-color: rgba(148, 176, 204, 0.4); background: radial-gradient(ellipse at 90% 100%, rgba(148, 176, 204, 0.09), transparent 55%), var(--raise); }
.proof.p-steel .num { color: #A9C6E0; }
.proof.p-steel .hold-note { color: #A9C6E0; }
.proof.p-clean { border-color: rgba(255, 255, 255, 0.26); background: radial-gradient(ellipse at 50% 125%, rgba(255, 255, 255, 0.06), transparent 60%), var(--raise); }
.proof.p-clean .num { color: var(--text); }

/* ---------- who it's not for ---------- */
.notfor { margin-top: 54px; }
.notfor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.notfor-grid > div { border: 1px dashed rgba(255, 255, 255, 0.2); border-radius: 14px; padding: 22px; font-size: 0.9rem; color: var(--muted); }
.notfor-grid b { color: var(--text); display: block; margin-bottom: 6px; }

/* ---------- sticky mobile CTA ---------- */
.sticky-cta { display: none; }
@media (max-width: 880px) {
  .sticky-cta { display: block; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(10, 10, 11, 0.92); backdrop-filter: blur(12px); border-top: 1px solid var(--line); }
  .sticky-cta .btn { display: block; text-align: center; }
  body { padding-bottom: 84px; }
  .notfor-grid { grid-template-columns: 1fr; }
}

/* ---------- trial page ---------- */
/* ---------- the trial journey. Rebuilt Aug 2026: the old version was a row
   of thin text lines that blended into the page. Now each step is a card with
   a large numeral, on a spine, so the eye has something to land on. ---------- */
.journey { max-width: 900px; margin: 0 auto; position: relative; }
.journey::before {
  content: ""; position: absolute; left: 47px; top: 30px; bottom: 30px; width: 2px;
  background: linear-gradient(180deg, rgba(200,164,78,.5), rgba(200,164,78,.12));
}
@media (max-width: 720px) { .journey::before { display: none; } }

.tstep {
  display: grid; grid-template-columns: 96px 1fr; gap: 28px; align-items: start;
  background: var(--raise); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 32px; margin-bottom: 16px; position: relative;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.tstep:hover { transform: translateY(-3px); border-color: rgba(200,164,78,.45); box-shadow: 0 14px 40px rgba(0,0,0,.4); }
.tstep:last-child { margin-bottom: 0; }
.tstep .tn {
  font-family: 'Archivo', sans-serif; font-weight: 900;
  font-size: 3.2rem; line-height: .9; color: var(--gold);
  letter-spacing: -0.03em; text-transform: none;
  display: flex; flex-direction: column; align-items: flex-start;
}
.tstep .tn b {
  display: block; font-family: 'Space Mono', monospace; font-weight: 700;
  color: var(--muted); font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; margin-top: 10px; line-height: 1.3;
}
.tstep h3 { font-size: 1.5rem; margin-bottom: 10px; letter-spacing: -0.01em; }
.tstep p { font-size: 1rem; color: var(--muted); line-height: 1.6; }
.tstep .milestone {
  margin-top: 16px; padding: 12px 16px; border-radius: 10px;
  background: rgba(200,164,78,.07); border-left: 3px solid var(--gold);
  font-family: 'Space Mono', monospace; font-size: 0.72rem; color: var(--gold);
  letter-spacing: 0.05em; text-transform: uppercase; line-height: 1.6;
}
/* the engine step: the hour that produces everything */
.tstep.tstep-key { border-color: rgba(200,164,78,.5); background: radial-gradient(ellipse at 20% 120%, rgba(200,164,78,.1), transparent 65%), var(--raise); }
.tstep.tstep-key h3 { color: var(--gold); }
@media (max-width: 720px) {
  .tstep { padding: 24px; }
  .tstep .tn { font-size: 2.4rem; flex-direction: row; align-items: baseline; gap: 12px; }
  .tstep .tn b { margin-top: 0; }
  .tstep h3 { font-size: 1.25rem; }
}
.getneed { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.getneed .col { background: var(--raise); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.getneed h3 { font-size: 1.1rem; margin-bottom: 16px; }
.getneed ul { list-style: none; }
.getneed li { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; color: var(--muted); }
.getneed li:last-child { border: none; }
.getneed .col-get li::before { content: "✓ "; color: var(--gold); font-weight: 700; }
.getneed .col-need li::before { content: "→ "; color: var(--rasp); font-weight: 700; }
/* ---------- deposit, 1 2 3. Was too quiet, now it carries the section ---------- */
.deposit-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; counter-reset: dep; }
.deposit-flow > div {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px 30px;
  background: var(--raise); position: relative; overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.deposit-flow > div:hover { transform: translateY(-4px); border-color: rgba(200,164,78,.5); box-shadow: 0 16px 44px rgba(0,0,0,.42); }
/* the big ghost numeral behind each card */
.deposit-flow > div::before {
  counter-increment: dep; content: counter(dep);
  position: absolute; right: 14px; top: -14px;
  font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 6.5rem; line-height: 1;
  color: rgba(200,164,78,.11); pointer-events: none;
}
.deposit-flow .dn {
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.4rem;
  color: var(--gold); letter-spacing: -0.01em; text-transform: none;
  display: block; margin-bottom: 12px; position: relative;
}
.deposit-flow p { font-size: 1rem; color: var(--muted); line-height: 1.6; position: relative; }
.deposit-flow b { color: var(--text); }
.deposit-flow > div:last-child { border-color: rgba(200,164,78,.4); }
@media (max-width: 720px) {
  .deposit-flow > div::before { font-size: 5rem; }
  .deposit-flow .dn { font-size: 1.25rem; }
}

/* ---------- what you get / what we need. Used on the trial page and now
   under the pricing on the homepage too, at David's request. ---------- */
.getneed .col { position: relative; overflow: hidden; }
.getneed .col-get { border-color: rgba(200,164,78,.35); }
.getneed h3 { font-size: 1.35rem; letter-spacing: -0.01em; }
.getneed .col-get h3 { color: var(--gold); }
.getneed li { font-size: 0.98rem; padding: 12px 0; }
.app-form { background: var(--raise); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; max-width: 640px; }
.app-form label { display: block; font-size: 0.88rem; font-weight: 600; margin: 18px 0 8px; }
.app-form input, .app-form select, .app-form textarea { width: 100%; background: var(--bg); border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 12px; padding: 14px 16px; color: var(--text); font-family: 'Inter', sans-serif; font-size: 0.96rem; }
.app-form input:focus, .app-form select:focus, .app-form textarea:focus { outline: 2px solid var(--gold); border-color: transparent; }
.app-form textarea { min-height: 100px; resize: vertical; }
.app-form .btn { margin-top: 24px; width: 100%; text-align: center; }
.app-form .form-note { font-family: 'Space Mono', monospace; font-size: 0.7rem; color: var(--muted); display: block; margin-top: 14px; letter-spacing: 0.04em; }
.app-form .step-note { font-family: 'Space Mono', monospace; font-size: 0.72rem; font-weight: 700; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; display: block; margin-bottom: 6px; }
.app-form[hidden], #app-done[hidden] { display: none; }
.app-form .form-note a { color: var(--gold); }
@media (max-width: 880px) {
  .tstep { grid-template-columns: 1fr; gap: 8px; }
  .getneed, .deposit-flow { grid-template-columns: 1fr; }
  .app-form { padding: 28px 22px; }
}

/* ---------- lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(0, 0, 0, 0.9); display: flex; align-items: center; justify-content: center; padding: 24px; cursor: zoom-out; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(920px, 94vw); max-height: 90vh; width: auto; height: auto; border-radius: 12px; border: 1px solid var(--line); }
.receipts-grid figure { cursor: zoom-in; }

/* ---------- pricing: the seat stepper ---------- */
.seats-label { font-size: 1.02rem; font-weight: 700; margin-bottom: 22px; }
.seats-ctl { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.seats-ctl button { width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.22); background: transparent; color: var(--text); font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 1.45rem; cursor: pointer; transition: border-color 0.15s; line-height: 1; flex: none; }
.seats-ctl button:hover { border-color: var(--gold); }
.seats-ctl button:disabled { opacity: 0.25; cursor: default; border-color: rgba(255, 255, 255, 0.22); }
.seats-people { display: flex; gap: 10px; flex: 1; justify-content: center; }
.seats-people svg { width: 34px; height: 34px; color: rgba(255, 255, 255, 0.14); transition: color 0.2s, transform 0.2s; }
.seats-people svg.on { color: var(--gold); transform: translateY(-2px); }
.seats-count { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.2rem; margin-bottom: 6px; }
.seats-breakdown { font-family: 'Space Mono', monospace; font-size: 0.72rem; letter-spacing: 0.04em; color: var(--gold); margin-bottom: 18px; min-height: 1.2em; }
.seats-included { list-style: none; margin: 0 0 18px; }
.seats-included li { padding: 7px 0; border-bottom: 1px solid var(--line); font-size: 0.88rem; color: var(--muted); }
.seats-included li:last-child { border: none; }
.seats-included li::before { content: "→ "; color: var(--gold); font-weight: 700; }
.seats-note { font-size: 0.84rem; color: var(--muted); }
.seats-cta { display: block; text-align: center; margin-top: 24px; }
.seats-people svg { cursor: pointer; }
.seats-people svg:hover { color: rgba(200, 164, 78, 0.55); }
.seats-people svg.on:hover { color: var(--gold); }
.seats-addon { display: flex; gap: 14px; align-items: flex-start; width: 100%; text-align: left; background: transparent; border: 1px dashed rgba(200, 164, 78, 0.45); border-radius: 12px; padding: 14px 16px; margin: 0 0 16px; cursor: pointer; font-family: 'Inter', sans-serif; color: var(--muted); font-size: 0.86rem; line-height: 1.55; transition: border-color 0.15s, background 0.15s; }
.seats-addon:hover { border-color: var(--gold); }
.seats-addon .addon-check { flex: none; width: 22px; height: 22px; margin-top: 2px; border-radius: 6px; border: 1px solid rgba(255, 255, 255, 0.3); display: inline-flex; align-items: center; justify-content: center; color: transparent; font-weight: 900; transition: all 0.15s; }
.seats-addon .addon-check::before { content: "✓"; font-size: 0.85rem; }
.seats-addon[aria-pressed="true"] { border: 1px solid rgba(200, 164, 78, 0.65); background: rgba(200, 164, 78, 0.07); }
.seats-addon[aria-pressed="true"] .addon-check { background: var(--gold); border-color: var(--gold); color: #0A0A0B; }
.seats-addon .addon-text b { display: block; color: var(--text); margin-bottom: 3px; font-size: 0.92rem; }

/* ---------- centered layout ---------- */
.kicker { text-align: center; }
section h2, section h1 { text-align: center; margin-left: auto; margin-right: auto; }
.sub { text-align: center; margin-left: auto; margin-right: auto; }
.receipts-head { text-align: center; }
.receipts-head p { margin-left: auto; margin-right: auto; }
.senja-note { text-align: center; }

/* ---------- centered hero with video ---------- */
.hero-centered { text-align: center; }
.hero-centered .eyebrow { text-align: center; }
.hero-centered h1 { margin-left: auto; margin-right: auto; max-width: 20ch; }
.hero-centered .hero-list { display: inline-block; text-align: left; margin-left: auto; margin-right: auto; }
.hero-centered .cta-row { justify-content: center; }
.hero-video { position: relative; max-width: 880px; margin: 40px auto 0; }
.hero-video .yt-shell { aspect-ratio: 16 / 9; border-radius: 20px; border: 1px solid var(--line); background: #000; overflow: hidden; }
.hero-video .yt-shell img, .hero-video .yt-shell iframe { width: 100%; height: 100%; display: block; border: none; object-fit: cover; }
.hero-video .stat-chip { left: -30px; bottom: 26px; }
@media (max-width: 880px) { .hero-video .stat-chip { left: 12px; bottom: 12px; } }

/* ---------- responsive ---------- */
@media (max-width: 880px) {
  section { padding: 64px 0; }
  .hero { padding: 56px 0; }
  .hero-grid, .founders, .growth-story, .trial-in, .proof-grid, .panel-grid, .capture, .ret-grid, .cards-4, .named-proof, .roadmap-band, .roadmap-how { grid-template-columns: 1fr; }
  .panel-controls { border-right: none; border-bottom: 1px solid var(--line); }
  .cards, .price-grid { grid-template-columns: 1fr; }
  .seats-people svg { width: 26px; height: 26px; }
  .seats-ctl button { width: 46px; height: 46px; }
  .steps-grid { grid-template-columns: 1fr; }
  .deal { grid-template-columns: repeat(2, 1fr); }
  .stat-chip { left: 12px; bottom: 16px; padding: 14px 18px; }
  .stat-chip--top { top: 16px; bottom: auto; }
  .nav-links a:not(.btn) { display: none; }
  .trial-in { padding: 32px 24px; }
}


/* ---------- hero facts: one clean centred line ---------- */
.hero-facts { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 34px; margin: 34px auto 38px; max-width: 900px; }
.hero-facts span { font-size: 1.02rem; color: var(--muted); display: inline-flex; align-items: baseline; gap: 8px; }
.hero-facts span + span { position: relative; }
.hero-facts span + span::before { content: "·"; color: var(--gold); position: absolute; left: -19px; }
.hero-facts b { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 1.5rem; color: var(--text); }
@media (max-width: 720px) {
  .hero-facts { flex-direction: column; gap: 12px; }
  .hero-facts span + span::before { display: none; }
}

/* ---------- problem cards: reveal on scroll + lift on hover ---------- */
.card { transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.card:hover { transform: translateY(-4px); border-color: rgba(200, 164, 78, 0.5); box-shadow: 0 14px 44px rgba(0, 0, 0, 0.45); }
.card::before { transition: width 0.3s ease; }
.card:hover::before { width: 100%; left: 0; border-radius: 0; }
.js .rv { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .rv.in { opacity: 1; transform: none; }
.js .cards .rv:nth-child(2) { transition-delay: 0.1s; }
.js .cards .rv:nth-child(3) { transition-delay: 0.2s; }
@media (prefers-reduced-motion: reduce) { .js .rv { opacity: 1; transform: none; transition: none; } }

/* ---------- two more proof card faces ---------- */
.proof.p-uk { border-color: rgba(126, 200, 168, 0.4); background: radial-gradient(ellipse at 15% 100%, rgba(126, 200, 168, 0.09), transparent 55%), var(--raise); }
.proof.p-uk .num { color: #8FD3B6; }
.proof.p-agri { border-color: rgba(200, 164, 78, 0.35); background: radial-gradient(ellipse at 85% 0%, rgba(200, 164, 78, 0.07), transparent 55%), var(--raise); }
.proof.p-agri .num { color: var(--gold); }

/* ---------- fix: hidden rows in the pricing readout ---------- */
.readout-vs div[hidden] { display: none; }

/* ---------- small text, made readable ---------- */
.deal .fine { font-size: 0.78rem; }
.senja-note, .receipts .fine { font-size: 0.82rem; letter-spacing: 0.04em; text-transform: none; }
.cta-micro { font-size: 0.84rem; }
.proof .who { font-size: 0.76rem; }
.receipts-grid figcaption { font-size: 0.95rem; }

/* ---------- after the calendar: three short quotes ---------- */
.after-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; text-align: left; }
.after-step { background: var(--raise); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.after-step p { font-size: 0.95rem; color: var(--text); line-height: 1.6; margin-bottom: 14px; }
.after-step .n { font-family: 'Space Mono', monospace; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 880px) { .after-steps { grid-template-columns: 1fr; } }


/* ---------- email capture: mobile formatting ---------- */
.capture form { width: 100%; }
.capture input, .capture textarea { width: 100%; }
.capture .btn { width: 100%; text-align: center; }
.capture .form-note { font-size: 0.78rem; line-height: 1.5; font-family: 'Inter', sans-serif; letter-spacing: 0; }
.capture .form-note a { color: var(--gold); }
@media (max-width: 880px) {
  .capture { padding: 32px 22px; gap: 26px; text-align: center; }
  .capture p { font-size: 0.95rem; }
  .capture .form-note { text-align: center; }
  .retention { padding: 30px 20px; }
  .ret-grid > div { padding: 22px 18px; }
}
@media (max-width: 420px) {
  .capture { padding: 26px 18px; }
  .capture input, .capture textarea { font-size: 1rem; padding: 14px 16px; }
}

/* ---------- hero subhead. Needs air under the big headline ---------- */
.hero-sub { max-width: 720px; margin: 30px auto 0; font-size: 1.05rem; line-height: 1.62; color: var(--muted); }
.hero-centered .hero-facts { margin-top: 30px; }
@media (max-width: 720px) { .hero-sub { margin-top: 22px; font-size: 0.98rem; } }

/* ---------- pricing readout. David asked for the monthly figure much bigger ---------- */
#seats-panel .readout-big { font-size: clamp(3.2rem, 7vw, 4.6rem); line-height: 1; letter-spacing: -0.02em; }
#seats-panel .readout-big span:last-child { font-size: 1.1rem; letter-spacing: 0; }
#seats-panel .readout-label { font-size: 0.8rem; }

/* ---------- get / need heading when it sits under the homepage pricing ---------- */
.getneed-head { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.1rem); text-align: center; margin: 60px 0 24px; letter-spacing: -0.01em; }
.getneed-head em { font-style: normal; color: var(--gold); }

/* Recognition panel: the qualitative half of the numbers section. Text column,
   so it reads as prose rather than controls. */
.recog-copy { color: var(--muted); font-size: 0.96rem; margin-bottom: 14px; }
.recog-copy:last-child { margin-bottom: 0; }

/* The deposit and the setup fee are the same $997. Said next to the price so
   nobody reads two payments where there is one. */
.setup-note { color: var(--gold); }

/* ---------- trial hero: give the deposit line the weight David asked for ---------- */
#top .lead strong { color: var(--text); font-weight: 700; }
.trial-page-lead-em { color: var(--gold); }

/* ---------- quote cards under the calendar ----------
   These used to reuse .after-steps, which carries a max-width of 230px from an
   older layout. Inside a three column grid that squashed them. Own class now. */
.quote-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; text-align: left; }
.quote-card {
  background: var(--raise); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 30px 26px; position: relative; display: flex; flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.quote-card::before {
  content: "\201C"; position: absolute; top: 2px; left: 22px;
  font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 4.4rem; line-height: 1;
  color: rgba(200,164,78,.22); pointer-events: none;
}
.quote-card:hover { transform: translateY(-4px); border-color: rgba(200,164,78,.45); box-shadow: 0 16px 44px rgba(0,0,0,.42); }
.quote-card blockquote { font-size: 1rem; line-height: 1.62; color: var(--text); margin: 0 0 20px; flex: 1; position: relative; }
.quote-card figcaption {
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 0.95rem; color: var(--gold);
  padding-top: 16px; border-top: 1px solid var(--line);
}
.quote-card figcaption span { display: block; font-family: 'Space Mono', monospace; font-weight: 400; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }
@media (max-width: 880px) { .quote-cards { grid-template-columns: 1fr; } }

/* ---------- price gate lead line ---------- */
.gate-lead { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: clamp(1.15rem, 2.2vw, 1.5rem); color: var(--text) !important; line-height: 1.35; margin-bottom: 20px !important; }

/* ============================================================
   Pricing panel, relaid out Aug 2026.
   Left column now carries what you get plus the add-on. Right column
   carries the seat stepper above the price, which fills the dead space
   that used to sit above the number and pushes the price down the panel.
   ============================================================ */
#seats-panel .panel-grid { grid-template-columns: 1.05fr 0.95fr; align-items: stretch; }
#seats-panel .panel-controls,
#seats-panel .panel-readout { padding: 38px 36px; }
#seats-panel .panel-readout { justify-content: flex-start; }

/* left column: the list is the hero here, so give it room */
#seats-panel .panel-controls .seats-label { margin-bottom: 18px; }
#seats-panel .seats-included { margin-bottom: 24px; }
#seats-panel .seats-note { margin-top: 20px; }

/* right column: stepper block, then a rule, then the price */
#seats-panel .panel-readout .seats-label { margin-bottom: 20px; }
#seats-panel .panel-readout .seats-ctl { justify-content: flex-start; margin-bottom: 16px; }
#seats-panel .seats-count { font-size: 1.35rem; margin-bottom: 4px; }
#seats-panel .seats-breakdown { margin-bottom: 0; font-size: 0.78rem; }
.readout-divide { height: 1px; background: var(--line); margin: 30px 0 26px; }

/* the number itself, a step up again */
#seats-panel .readout-big { font-size: clamp(3.6rem, 7.6vw, 5.2rem); line-height: .95; letter-spacing: -0.03em; margin: 10px 0 14px; }
#seats-panel .readout-big span:last-child { font-size: 1.15rem; letter-spacing: 0; }
#seats-panel .readout-label { font-size: 0.82rem; letter-spacing: 0.04em; }
#seats-panel .readout-math { margin-bottom: 26px; }
#seats-panel .readout-vs { padding-top: 20px; }
#seats-panel .seats-cta { margin-top: 30px; padding: 16px 28px; font-size: 1.02rem; }

@media (max-width: 880px) {
  /* stack: what you get first, then choose how many, then the price */
  #seats-panel .panel-controls,
  #seats-panel .panel-readout { padding: 28px 24px; }
  #seats-panel .readout-big { font-size: clamp(3rem, 13vw, 4rem); }
  .readout-divide { margin: 24px 0 20px; }
}

/* ---------- price typography, tightened gap and looser tracking ----------
   The label sat on a 1.6 body line-height above a 5.2rem numeral, which opened
   a gap that read as a mistake. And -0.03em tracking on Archivo 900 jammed the
   dollar sign into the first digit. Both corrected. */
#seats-panel .readout-label { line-height: 1.25; margin-bottom: 0; }
#seats-panel .readout-big {
  letter-spacing: 0.012em;
  margin: 4px 0 14px;
  line-height: 1.02;
  font-variant-numeric: lining-nums tabular-nums;
}
#seats-panel .readout-big span:last-child { letter-spacing: 0; margin-left: 4px; }
/* same treatment on the ROI panel so the two big numbers match */
#numbers .readout-big { letter-spacing: 0.012em; font-variant-numeric: lining-nums tabular-nums; }
#numbers .readout-label { line-height: 1.25; }


/* Pick how many leaders go on the system. Sits above the diagram so the numbers
   in it move with the answer. */
.leaders { border: 1px solid var(--line); border-radius: var(--radius); background: var(--raise); padding: 30px; margin: 0 auto 54px; max-width: 780px; text-align: center; }
.leaders-q { font-weight: 700; font-size: 1.05rem; margin-bottom: 16px; }
.leaders-pick { display: flex; gap: 10px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap; }
.leaders-pick button { width: 54px; height: 54px; border-radius: 12px; border: 1px solid rgba(255,255,255,.18); background: var(--bg); color: var(--text); font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 1.2rem; cursor: pointer; transition: background .15s, border-color .15s, color .15s; }
.leaders-pick button:hover { border-color: rgba(200,164,78,.6); }
.leaders-pick button[aria-pressed="true"] { background: var(--gold); border-color: var(--gold); color: #0A0A0B; }
.leaders-pick button:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.leaders-out { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.leaders-out > div { background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 18px 12px; }
.leaders-out b { display: block; font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(1.3rem, 2.6vw, 1.8rem); color: var(--gold); line-height: 1.1; }
.leaders-out span { display: block; margin-top: 8px; font-size: 0.86rem; color: var(--muted); }
.leaders-note { margin-top: 18px; font-size: 0.94rem; color: var(--muted); }
.receipts-more .more-warn { display: block; margin-top: 12px; font-size: 0.9rem; color: var(--muted); }
/* Numbers injected into the diagram headings must stay inline. .sys-box span is
   the description style, and the picker's spans were inheriting it and dropping
   onto their own line. */
.sys-box b span { display: inline; font-family: inherit; font-size: inherit; font-weight: inherit; color: inherit; letter-spacing: inherit; text-transform: none; margin: 0; line-height: inherit; }
@media (max-width: 620px) { .leaders-out { grid-template-columns: 1fr; } .leaders { padding: 24px 18px; } }

/* Answer pages: prose blocks that lead with the answer. */
.answer-lead { max-width: 760px; margin: 0 auto 40px; }
.answer-lead p { color: var(--muted); font-size: 1.02rem; margin-bottom: 16px; }
.answer-lead strong { color: var(--text); }

/* The Install page. The kit is the tease: three columns of what gets installed,
   scannable, with the middle column lifted because outreach is the money column. */
.kit { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.kit-col { background: var(--raise); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.kit-mid { border-color: rgba(200,164,78,.45); background: radial-gradient(ellipse at 50% 0%, rgba(200,164,78,.08), transparent 60%), var(--raise); }
.kit-kicker { font-family: 'Space Mono', monospace; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; color: var(--gold); text-transform: uppercase; margin-bottom: 18px; }
.kit-col ul { list-style: none; }
.kit-col li { position: relative; padding: 11px 0 11px 28px; font-size: 0.93rem; color: var(--muted); border-bottom: 1px solid var(--line); }
.kit-col li:last-child { border-bottom: none; }
.kit-col li::before { content: "\2713"; position: absolute; left: 0; top: 11px; color: var(--gold); font-weight: 700; }
.kit-col li b { color: var(--text); display: block; margin-bottom: 2px; }
.guarantee-band { margin-top: 56px; border-radius: 18px; padding: 2px; background: linear-gradient(120deg, var(--gold), var(--rasp)); }
.guarantee-band > * { background: var(--bg); }
.guarantee-band .kit-kicker { border-radius: 16px 16px 0 0; padding: 26px 34px 0; margin-bottom: 0; }
.guarantee-band p { border-radius: 0 0 16px 16px; padding: 12px 34px 26px; color: var(--muted); font-size: 1.02rem; }
.guarantee-band strong { color: var(--text); }
.vsl-note { text-align: center; font-family: 'Space Mono', monospace; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 14px; }
@media (max-width: 880px) { .kit { grid-template-columns: 1fr; } }
