/* Kynerium static site. Tokens and vocabulary are docs/DESIGN.md verbatim;
   this file applies the locked system, it does not extend it. */

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/archivo-var-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext ships from day one so the hr locale (c-caron and friends) never
   falls back to a system face mid-word. */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/archivo-var-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url("fonts/jbmono-var-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url("fonts/jbmono-var-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---- tokens: DESIGN.md section 4, light default ("daylight / dossier") ---- */
:root {
  --bg: #fbfaf8;
  --surface: #ffffff;
  --surface-2: #f4f2ed;
  --text: #15131d;
  --muted: #6c6878;
  --line: #e8e4dc;
  --line-2: #d8d3c8;
  --feature-bg: #120f1c;
  --feature-fg: #fbfaf8;
  --feature-muted: #b8b3c6;
  --feature-line: rgba(251, 250, 248, 0.14);
  --accent: #ff3d6a;
  --glow: rgba(255, 61, 106, 0.22);
  --grad: linear-gradient(118deg, #ff7a3d, #ff2e78, #b14bff);
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0d0c12;
    --surface: #15141d;
    --surface-2: #1d1b27;
    --text: #f1eff7;
    --muted: #8f8ca0;
    --line: rgba(255, 255, 255, 0.09);
    --line-2: rgba(255, 255, 255, 0.17);
    --feature-bg: #060509;
    --feature-fg: #f1eff7;
    --feature-muted: #8f8ca0;
    --feature-line: rgba(255, 255, 255, 0.1);
    --accent: #ff5278;
    --glow: rgba(255, 61, 106, 0.3);
    color-scheme: dark;
  }
}
/* A manual toggle overrides the system preference in both directions and is
   persisted by theme-init.js; the media query stays the default path. */
:root[data-theme="dark"] {
  --bg: #0d0c12;
  --surface: #15141d;
  --surface-2: #1d1b27;
  --text: #f1eff7;
  --muted: #8f8ca0;
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.17);
  --feature-bg: #060509;
  --feature-fg: #f1eff7;
  --feature-muted: #8f8ca0;
  --feature-line: rgba(255, 255, 255, 0.1);
  --accent: #ff5278;
  --glow: rgba(255, 61, 106, 0.3);
  color-scheme: dark;
}
:root[data-theme="light"] {
  --bg: #fbfaf8;
  --surface: #ffffff;
  --surface-2: #f4f2ed;
  --text: #15131d;
  --muted: #6c6878;
  --line: #e8e4dc;
  --line-2: #d8d3c8;
  --feature-bg: #120f1c;
  --feature-fg: #fbfaf8;
  --feature-muted: #b8b3c6;
  --feature-line: rgba(251, 250, 248, 0.14);
  --accent: #ff3d6a;
  --glow: rgba(255, 61, 106, 0.22);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--surface); color: var(--text);
  padding: 12px 18px; border: 1px solid var(--line-2); border-radius: 8px;
  font-size: 14px; text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---- type roles: DESIGN.md section 3 ---- */
.label {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.display {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 860;
  font-size: clamp(42px, 8.5vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}
.h-lg {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 5.5vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.h-lg.pushed { margin-top: 12px; }
.lede {
  font-size: clamp(17px, 2.6vw, 21px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 34em;
}
.lede.pushed { margin-top: 18px; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wrap { max-width: 1000px; margin: 0 auto; padding: 0 22px; }

/* ---- header ---- */
header.site {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.wordmark {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.wordmark .dot { color: var(--accent); }
.wordmark { display: inline-flex; align-items: center; }
.wordmark img { width: 24px; height: 24px; display: block; margin-right: 9px; }
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a.navlink {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; color: var(--muted);
  transition: color 0.14s ease;
}
.site-nav a.navlink:hover { color: var(--text); }
/* The language switch survives on mobile; section links do not. */
@media (max-width: 640px) { .site-nav a.navlink:not(.lang) { display: none; } }
.site-nav a.navlink.lang { color: var(--text); border: 1px solid var(--line-2); border-radius: 999px; padding: 7px 12px; }
.site-nav a.navlink.lang:hover { border-color: var(--accent); }

.theme-toggle {
  appearance: none; border: 1px solid var(--line-2); background: var(--surface);
  color: var(--text); border-radius: 999px; width: 34px; height: 34px;
  cursor: pointer; font-size: 14px; line-height: 1; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color 0.14s ease;
}
.theme-toggle:hover { border-color: var(--accent); }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 600; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; text-decoration: none;
  background: var(--grad);
  padding: 16px 28px; border-radius: 999px;
  box-shadow: 0 10px 30px -8px var(--glow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -8px var(--glow); }
.btn.ghost {
  background: transparent; color: inherit;
  border: 1px solid var(--line-2); box-shadow: none;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.feature .btn.ghost { border-color: var(--feature-line); }
.btn.ghost:hover { border-color: var(--accent); transform: translateY(-2px); }

/* ---- feature (spotlight) blocks: DESIGN.md section 6 ---- */
.feature {
  position: relative; overflow: clip;
  background: var(--feature-bg); color: var(--feature-fg);
}
.feature .label { color: var(--feature-muted); }
.feature .lede { color: var(--feature-muted); }
.feature::before {
  content: ""; position: absolute; inset: -30%;
  background:
    radial-gradient(42% 38% at 22% 24%, var(--glow), transparent 70%),
    radial-gradient(34% 30% at 78% 72%, rgba(177, 75, 255, 0.16), transparent 70%);
  animation: drift 15s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes drift {
  from { transform: translate3d(-2.5%, -2%, 0) scale(1); }
  to { transform: translate3d(2.5%, 3%, 0) scale(1.06); }
}
.feature > .wrap { position: relative; z-index: 1; }

/* ---- hero ---- */
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  padding: clamp(64px, 11vh, 128px) 0 clamp(56px, 9vh, 110px);
}
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-copy { display: flex; flex-direction: column; gap: 26px; align-items: flex-start; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 6px; }
.hero-foot {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--feature-muted); margin: 8px 0 0;
}
.hero-foot b { color: var(--feature-fg); font-weight: 600; }

/* ---- the sample read card ---- */
.read-card {
  background: color-mix(in srgb, var(--feature-bg) 40%, #1a1626);
  border: 1px solid var(--feature-line);
  border-radius: 18px;
  padding: 26px 26px 22px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.55);
}
.read-head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  border-bottom: 1px solid var(--feature-line); padding-bottom: 14px;
}
.read-head .num { font-variant-numeric: tabular-nums; color: var(--feature-fg); }
.intake {
  font-size: 16.5px; line-height: 1.65; color: var(--feature-fg);
  min-height: 6.6em; margin: 0;
}
.intake .caret {
  display: inline-block; width: 2px; height: 1.05em; background: var(--accent);
  vertical-align: -0.18em; margin-left: 2px;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.read-row {
  display: grid; grid-template-columns: 118px 1fr; gap: 14px; align-items: baseline;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.read-row.on { opacity: 1; transform: none; }
.read-row .v { font-weight: 600; font-size: 15px; color: var(--feature-fg); }
.verdict {
  border-top: 1px solid var(--feature-line); padding-top: 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.55s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.verdict.on { opacity: 1; transform: none; }
.verdict .style {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 600; font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--feature-fg);
}
.verdict .style small {
  display: block; color: var(--feature-muted); font-weight: 500; font-size: 10.5px;
  margin-top: 5px; letter-spacing: 0.16em;
}
.seal {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-family: "Archivo", sans-serif; font-weight: 900; font-size: 15px;
  box-shadow: 0 8px 24px -6px var(--glow);
  flex: none;
}
.read-note { border-top: 1px solid var(--feature-line); padding-top: 13px; }

/* ---- bands and reveals ---- */
section.band { padding: clamp(72px, 10vh, 120px) 0; }
section.band.tight { padding-top: clamp(56px, 8vh, 90px); }
.kicker-row { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.kicker-row::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.feature .kicker-row::after { background: var(--feature-line); }
.kicker-row .label.live { color: var(--accent); }

.rise {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.rise.on { opacity: 1; transform: none; }

/* ---- the mirror ---- */
.mirror-list { margin: 44px 0 0; padding: 0; list-style: none; }
.mirror-list li {
  display: grid; grid-template-columns: minmax(140px, 220px) 1fr; gap: 18px 36px;
  padding: 26px 0; border-top: 1px solid var(--line);
}
.mirror-list li:last-child { border-bottom: 1px solid var(--line); }
@media (max-width: 640px) { .mirror-list li { grid-template-columns: 1fr; gap: 8px; } }
.mirror-name { font-family: "Archivo", sans-serif; font-weight: 800; font-size: 20px; letter-spacing: -0.015em; }
.mirror-list p { margin: 0; color: var(--muted); max-width: 34em; }

/* ---- the offer stack ---- */
.offer-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  margin-top: 44px;
}
@media (max-width: 720px) { .offer-grid { grid-template-columns: 1fr; } }
.offer-cell {
  background: var(--bg); padding: 28px 26px;
  display: flex; flex-direction: column; gap: 10px;
  transition: background 0.18s ease;
}
.offer-cell:hover { background: var(--surface-2); }
.offer-cell .label { color: var(--accent); }
.offer-cell h3 { font-family: "Archivo", sans-serif; font-weight: 800; font-size: 20px; letter-spacing: -0.015em; margin: 0; }
.offer-cell p { margin: 0; color: var(--muted); font-size: 15.5px; }
.offer-cell.guarantee { background: var(--surface-2); }
.offer-cell.guarantee:hover { background: var(--surface); }

/* ---- how it works ---- */
.steps { display: flex; flex-direction: column; margin-top: 44px; }
.step {
  display: grid; grid-template-columns: 90px minmax(180px, 260px) 1fr; gap: 16px 32px;
  padding: 30px 0; border-top: 1px solid var(--line); align-items: baseline;
}
.step:last-child { border-bottom: 1px solid var(--line); }
@media (max-width: 720px) {
  .step { grid-template-columns: 60px 1fr; }
  .step p { grid-column: 2; }
}
.step-num {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 600; font-size: 13px; letter-spacing: 0.14em; color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.step h3 { font-family: "Archivo", sans-serif; font-weight: 800; font-size: 22px; letter-spacing: -0.015em; margin: 0; }
.step p { margin: 0; color: var(--muted); max-width: 36em; }

/* ---- the standard (honesty) ---- */
.truth-list { margin: 44px 0 0; padding: 0; list-style: none; }
.truth-list li {
  padding: 22px 0 22px 34px; border-top: 1px solid var(--feature-line);
  position: relative; max-width: 44em; font-size: 17px; line-height: 1.6;
}
.truth-list li:last-child { border-bottom: 1px solid var(--feature-line); }
.truth-list li::before {
  content: ""; position: absolute; left: 0; top: 32px;
  width: 14px; height: 2px; background: var(--accent);
}
.truth-list b { font-weight: 600; }

/* ---- proof shelf ---- */
.shelf {
  margin-top: 44px; border: 1px dashed var(--line-2); border-radius: 14px;
  padding: clamp(36px, 6vw, 64px) 28px; text-align: center;
  display: flex; flex-direction: column; gap: 14px; align-items: center;
}
.shelf .slot {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 500; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-variant-numeric: tabular-nums;
}
.shelf .slot b { color: var(--accent); font-weight: 600; }

/* ---- selection ---- */
.select-box {
  margin-top: 44px; display: grid; grid-template-columns: 1fr auto; gap: 28px;
  align-items: center; border: 1px solid var(--line-2); border-radius: 18px;
  padding: clamp(28px, 5vw, 44px); background: var(--surface);
}
@media (max-width: 720px) { .select-box { grid-template-columns: 1fr; } }
.select-box p { margin: 10px 0 0; color: var(--muted); max-width: 36em; }

/* ---- the application form (slides open under the selection box) ---- */
.apply-panel {
  overflow: hidden;
  border: 1px solid var(--line-2); border-top: none;
  border-radius: 0 0 18px 18px;
  background: var(--surface-2);
  margin: -14px 4px 0; padding: 0;
}
.apply-panel.open { animation: slide-open 0.4s cubic-bezier(0.2, 0.7, 0.2, 1); }
@keyframes slide-open {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: none; }
}
.apply-form { display: flex; flex-direction: column; gap: 18px; padding: clamp(24px, 4vw, 36px); }
.af-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .af-grid { grid-template-columns: 1fr; } }
.field-l {
  display: flex; flex-direction: column; gap: 8px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 500; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}
.field-l .opt { text-transform: none; letter-spacing: 0; font-family: inherit; }
.field-l input, .field-l textarea {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px; color: var(--text);
  background: var(--surface); border: 1px solid var(--line-2); border-radius: 10px;
  padding: 13px 14px; resize: vertical;
}
.field-l input:focus, .field-l textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--glow);
}
/* honeypot: visually gone, still in the DOM for bots that fill everything */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.af-row { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.af-note { max-width: 24em; }
.af-state { margin: 0; }
.af-state.ok { color: var(--accent); }
.apply-form.busy .btn { opacity: 0.6; pointer-events: none; }

/* ---- coach door ---- */
.coach-band { background: var(--surface-2); }
.coach-band .inner {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px); align-items: start;
}
@media (max-width: 820px) { .coach-band .inner { grid-template-columns: 1fr; } }
.coach-terms { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; }
.coach-terms li {
  padding: 14px 0; border-top: 1px solid var(--line-2);
  font-size: 15.5px; color: var(--muted); display: flex; gap: 14px;
}
.coach-terms li:last-child { border-bottom: 1px solid var(--line-2); }
.coach-terms .t {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text); flex: none; width: 92px; padding-top: 3px;
}
.coach-cta { margin-top: 26px; }

/* ---- the on-page read ---- */
.read-box {
  margin-top: 44px; border: 1px solid var(--line-2); border-radius: 18px;
  background: var(--surface); padding: clamp(26px, 4.5vw, 44px);
}
.rq-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.rq-back {
  appearance: none; background: none; border: none; padding: 0; cursor: pointer;
  color: var(--muted); text-decoration: underline; text-underline-offset: 3px;
}
.rq-back:hover { color: var(--accent); }
.rq-prompt {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800; font-size: clamp(22px, 3.6vw, 30px); letter-spacing: -0.02em;
  margin: 0 0 6px; text-wrap: balance;
}
.rq-sub { margin: 0 0 8px; color: var(--muted); }
.rq-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
@media (max-width: 640px) { .rq-choices { grid-template-columns: 1fr; } }
.choice {
  appearance: none; text-align: left; cursor: pointer;
  font-family: "Inter", system-ui, sans-serif; font-size: 16px; font-weight: 500;
  color: var(--text);
  background: var(--surface); border: 1px solid var(--line-2); border-radius: 12px;
  padding: 16px 46px 16px 18px; position: relative;
  transition: transform 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease;
}
/* chevron affordance, drawn (the right-arrow glyph is not in the font subset) */
.choice::after {
  content: ""; position: absolute; right: 20px; top: 50%;
  width: 8px; height: 8px;
  border-top: 2px solid var(--accent); border-right: 2px solid var(--accent);
  transform: translateY(-50%) rotate(45deg);
  opacity: 0; transition: opacity 0.14s ease, right 0.14s ease;
}
.choice:hover, .choice:focus-visible { border-color: var(--accent); transform: translateX(3px); box-shadow: 0 8px 22px -10px var(--glow); }
.choice:hover::after, .choice:focus-visible::after { opacity: 1; right: 16px; }
/* programmatic focus targets never draw the ring; keyboard focus still does */
.rq-prompt:focus:not(:focus-visible), .verdict-card:focus:not(:focus-visible) { outline: none; }
.rq-prompt:focus, .verdict-card:focus { outline: none; }
/* progress: a hairline track under the step label, gradient fill */
.rq-track { height: 2px; background: var(--line); border-radius: 2px; overflow: hidden; margin: 14px 0 22px; }
.rq-fill { display: block; height: 100%; background: var(--grad); border-radius: 2px; transition: width 0.4s cubic-bezier(0.2, 0.7, 0.2, 1); }
.verdict-card { display: flex; flex-direction: column; gap: 18px; }
.vc-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.vc-style {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 860; font-size: clamp(30px, 5.5vw, 46px); letter-spacing: -0.025em;
  margin: 0; width: fit-content;
}
.vc-read { margin: 0; font-size: clamp(17px, 2.4vw, 20px); line-height: 1.55; max-width: 36em; }
.vc-rows { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.vc-row { display: grid; grid-template-columns: minmax(120px, 180px) 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
@media (max-width: 560px) { .vc-row { grid-template-columns: 1fr; gap: 4px; } }
.vc-row .v { font-weight: 500; }
.vc-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 6px; }
.read-honest { display: block; margin-top: 26px; padding-top: 16px; border-top: 1px solid var(--line); }
.af-read { color: var(--accent); }

/* ---- coach zero ---- */
.cz-grid { display: grid; grid-template-columns: minmax(200px, 260px) 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
@media (max-width: 760px) { .cz-grid { grid-template-columns: 1fr; } }
.cz-side { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.avatar-xl {
  width: 104px; height: 104px; border-radius: 50%;
  display: block;
  box-shadow: 0 14px 40px -10px var(--glow);
}
.cz-id { display: flex; flex-direction: column; gap: 6px; }
.cz-name { font-family: "Archivo", sans-serif; font-weight: 800; font-size: 21px; letter-spacing: -0.015em; }
.cz-p { margin: 18px 0 0; color: var(--muted); max-width: 38em; }
.cz-p.strong { color: var(--text); font-weight: 500; }

/* the coach door's panel sits on the surface-2 band, so it swaps grounds */
.coach-band .apply-panel {
  background: var(--surface);
  border-top: 1px solid var(--line-2);
  border-radius: 14px;
  margin: 14px 0 0;
}

/* ---- FAQ ---- */
.faq { margin-top: 44px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; user-select: none;
  display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
  padding: 22px 0;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800; font-size: 19px; letter-spacing: -0.015em;
  transition: color 0.14s ease;
}
.faq summary:hover { color: var(--accent); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 600; font-size: 22px; color: var(--accent); flex: none;
  transition: transform 0.2s ease; line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 24px; color: var(--muted); max-width: 40em; }

/* ---- footer ---- */
footer.site { border-top: 1px solid var(--line); padding: 44px 0 56px; }
.foot-inner { display: flex; flex-wrap: wrap; gap: 22px; justify-content: space-between; align-items: baseline; }
.foot-inner .label { font-size: 10.5px; }
footer .fine { margin-top: 18px; font-size: 13px; color: var(--muted); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .feature::before { animation: none; }
  .rise, .read-row, .verdict { opacity: 1 !important; transform: none !important; transition: none !important; }
  .intake .caret { display: none; }
  .btn, .btn.ghost, .offer-cell, .theme-toggle, .site-nav a.navlink { transition: none; }
}
