/* onSpark — Full Spectrum Barrier diagnostic
   Editorial. Restrained. Premium. Navy + gold. */

:root {
  --navy:        #06101C;
  --navy-2:      #0C1A2B;
  --navy-3:      #132338;
  --gold:        #BA8E35;
  --gold-deep:   #A87D28;
  --light-gold:  #E4D38B;
  --gold-pale:   #F4E9C2;
  --paper:       #F7F4EE;
  --paper-2:     #EFEAD9;
  --ink:         #0A1626;
  --muted:       #5C6470;
  --rule:        rgba(10, 22, 38, 0.12);
  --rule-strong: rgba(10, 22, 38, 0.22);
  --rule-dark:   rgba(228, 211, 139, 0.20);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans:    "Outfit", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout primitives ---------- */
.app { min-height: 100vh; display: flex; flex-direction: column; }
.shell { max-width: 1140px; margin: 0 auto; padding: 0 28px; width: 100%; }
.on-dark { background: var(--navy); color: var(--paper); }

/* ---------- Header ---------- */
.site-header { padding: 22px 0; position: relative; z-index: 10; }
.site-header.is-dark { background: var(--navy); }
.site-header .shell { display: flex; align-items: center; justify-content: space-between; }
.site-header__brand img { height: 28px; display: block; }
.site-header__meta { font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--light-gold); }
.site-header.is-light .site-header__meta { color: var(--gold-deep); }

/* ---------- Type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; }
.eyebrow.is-light { color: var(--light-gold); }
.eyebrow.is-bare::before { display: none; }

.display {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(44px, 7vw, 96px); line-height: 0.98; letter-spacing: -0.015em;
  margin: 0;
}
.display em { font-weight: 600; font-style: italic; color: var(--light-gold); }
.is-light-surface .display em { color: var(--gold); }

.h2 {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(32px, 4.6vw, 60px); line-height: 1.04; letter-spacing: -0.012em;
  margin: 0;
}
.h3 {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(24px, 3vw, 36px); line-height: 1.15; letter-spacing: -0.008em;
  margin: 0;
}
.deck {
  font-size: 19px; line-height: 1.6; color: rgba(247,244,238,0.78);
  max-width: 640px; margin: 28px 0 0;
}
.is-light-surface .deck { color: var(--muted); }

.eyebrow-count {
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold);
}
.is-dark .eyebrow-count { color: var(--light-gold); }

/* ---------- Hairlines ---------- */
.hairline { height: 1px; background: var(--rule); border: none; margin: 32px 0; }
.is-dark .hairline { background: var(--rule-dark); }
.hairline.is-gold { background: var(--gold); height: 1px; opacity: 0.7; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-sans); font-weight: 600;
  padding: 16px 24px; font-size: 14px; letter-spacing: 0.04em;
  border: none; border-radius: 3px; cursor: pointer;
  transition: transform 180ms var(--ease-out), background 180ms var(--ease-out), color 180ms var(--ease-out), opacity 180ms var(--ease-out);
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover:not(:disabled) { background: var(--light-gold); transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.35; cursor: not-allowed; }
.btn-ghost { background: transparent; color: var(--light-gold); border: 1px solid rgba(228,211,139,0.35); padding: 14px 22px; }
.btn-ghost:hover { border-color: var(--light-gold); background: rgba(228,211,139,0.06); }
.btn-ghost-dark { background: transparent; color: var(--ink); border: 1px solid var(--rule-strong); padding: 14px 22px; }
.btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn .arrow { font-family: var(--font-sans); font-weight: 400; transform: translateX(0); transition: transform 180ms var(--ease-out); }
.btn:hover:not(:disabled) .arrow { transform: translateX(4px); }

.btn-link {
  background: none; border: none; padding: 0;
  font-family: var(--font-sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); cursor: pointer;
}
.btn-link.is-light { color: var(--light-gold); }
.btn-link:hover { color: var(--ink); }
.btn-link.is-light:hover { color: var(--paper); }

/* ---------- Progress ---------- */
.progress {
  position: sticky; top: 0; z-index: 20;
  background: var(--navy); border-bottom: 1px solid var(--rule-dark);
  padding: 14px 0;
}
.progress .shell { display: flex; align-items: center; gap: 18px; }
.progress__label { font-size: 10px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--light-gold); }
.progress__bar { flex: 1; height: 2px; background: rgba(228,211,139,0.14); overflow: hidden; border-radius: 999px; }
.progress__fill { height: 100%; background: var(--gold); width: 0; transition: width 420ms var(--ease-out); }
.progress__count { font-family: var(--font-display); font-style: italic; font-size: 14px; color: var(--paper); white-space: nowrap; }
.progress__back { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--light-gold); background: none; border: none; cursor: pointer; padding: 0; }
.progress__back:hover { color: var(--paper); }
.progress__back:disabled { opacity: 0.3; cursor: not-allowed; }

/* ---------- Screen wrapper ----------
   .screen always fills the remaining viewport between header/progress and footer.
   Content inside is centered both axes. .screen__inner is centered within .shell. */
.screen {
  padding: 64px 0 88px; flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  min-height: calc(100vh - 188px); /* approx header + progress + footer */
}
.screen.is-dark { background: var(--navy); color: var(--paper); }
.screen.is-light { background: var(--paper); color: var(--ink); }
.screen .shell { display: flex; justify-content: center; }
.screen__inner { width: 100%; max-width: 760px; margin: 0 auto; }
.screen--wide .screen__inner { max-width: 1080px; }
.screen__head { margin-bottom: 36px; text-align: center; }
.screen__title { margin-top: 18px; }
.screen__sub { font-size: 16px; line-height: 1.6; color: var(--muted); margin-top: 16px; max-width: 580px; margin-left: auto; margin-right: auto; }
.is-dark .screen__sub { color: rgba(247,244,238,0.65); }
.screen__actions { margin-top: 44px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; justify-content: center; }
.screen__hint { font-size: 12px; color: var(--muted); }
.is-dark .screen__hint { color: rgba(247,244,238,0.55); }
.screen__head .eyebrow-count { display: inline-block; }

/* ---------- Landing hero ---------- */
.hero {
  background: var(--navy); color: var(--paper);
  padding: 60px 0 96px; position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; top: -120px; left: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(228,211,139,0.16) 0%, transparent 65%);
  filter: blur(40px); pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; bottom: -180px; right: -180px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(186,142,53,0.14) 0%, transparent 65%);
  filter: blur(50px); pointer-events: none;
}
.hero .shell { position: relative; z-index: 2; }
.hero__byline {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 28px; padding-top: 22px;
  border-top: 1px solid var(--rule-dark);
  font-size: 11px; letter-spacing: 0.20em; text-transform: uppercase; color: var(--light-gold);
}
.hero__byline span { display: inline-flex; align-items: center; gap: 10px; }
.hero__byline span::before { content: "·"; opacity: 0.5; }
.hero__byline span:first-child::before { display: none; }
.hero__stage { margin-top: 56px; padding: 32px 24px; background: rgba(228,211,139,0.04); border: 1px solid var(--rule-dark); border-radius: 4px; }
.hero__stage-label { font-size: 10px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--light-gold); margin-bottom: 18px; }
.hero__proof {
  margin-top: 64px; padding-top: 28px; border-top: 1px solid var(--rule-dark);
  font-size: 12px; letter-spacing: 0.04em; color: rgba(247,244,238,0.55);
  max-width: 720px;
}
.hero__proof b { color: var(--light-gold); font-weight: 600; }

/* ---------- Kyle Letter (collapsible framework intro on landing) ---------- */
.kyle-letter-block { margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--rule-dark); }
.kyle-letter__toggle {
  display: flex; align-items: center; gap: 16px;
  width: 100%; background: none; border: 0; padding: 6px 0; cursor: pointer;
  text-align: left; transition: color 180ms var(--ease-out);
}
.kyle-letter__toggle .klt-eyebrow {
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold);
}
.kyle-letter__toggle .klt-label {
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--light-gold);
}
.kyle-letter__toggle .klt-icon {
  margin-left: auto; font-size: 22px; line-height: 1; color: var(--light-gold);
  width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule-dark); border-radius: 50%;
}
.kyle-letter__toggle:hover .klt-label,
.kyle-letter__toggle:hover .klt-icon { color: var(--paper); border-color: var(--light-gold); }
.kyle-letter__toggle.is-open .klt-icon { background: var(--light-gold); color: var(--navy); border-color: var(--light-gold); }

.kyle-letter__body {
  margin-top: 24px; padding: 32px 36px;
  border-left: 2px solid var(--gold);
  background: rgba(228,211,139,0.05);
  border-radius: 0 4px 4px 0;
}
.kyle-letter__body p {
  font-family: var(--font-sans); font-size: 16px; line-height: 1.75;
  color: rgba(247,244,238,0.88); margin: 0 0 18px;
}
.kyle-letter__body p:last-of-type { margin-bottom: 0; }
.kyle-letter__body em {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  color: var(--light-gold); font-size: 17px;
}
.kyle-letter__body b { color: var(--light-gold); font-weight: 600; }
.kyle-letter__body .kl-sig {
  margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--rule-dark);
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.20em; text-transform: uppercase; color: var(--light-gold);
}
@media (max-width: 720px) {
  .kyle-letter__body { padding: 24px 22px; }
  .kyle-letter__body p { font-size: 15px; }
  .kyle-letter__toggle .klt-eyebrow { display: none; }
}

/* ---------- Spectrum Barrier component ---------- */
.sb-wrap { position: relative; user-select: none; }
.sb-wrap svg { display: block; width: 100%; height: auto; }
.sb-wrap .sb-grab { cursor: grab; }
.sb-wrap .sb-grab:active { cursor: grabbing; }
.sb-label { font-family: var(--font-sans); font-size: 10.5px; font-weight: 600; letter-spacing: 0.20em; text-transform: uppercase; }
.sb-label-today { font-family: var(--font-display); font-style: italic; font-size: 13px; }
.sb-quote { font-family: var(--font-display); font-style: italic; font-size: 14px; }

/* ---------- Spectrum slider (Q1) ---------- */
.spectrum-control { padding: 36px 0 12px; }
.spectrum-anchors { display: flex; justify-content: space-between; padding: 0 4px; margin-top: 14px; }
.spectrum-anchors > div { text-align: center; }
.spectrum-anchors .a-label { font-size: 11px; font-weight: 700; letter-spacing: 0.20em; text-transform: uppercase; color: var(--gold); }
.is-dark .spectrum-anchors .a-label { color: var(--light-gold); }
.spectrum-anchors .a-desc { font-size: 12px; line-height: 1.5; color: var(--muted); margin-top: 8px; max-width: 180px; }
.is-dark .spectrum-anchors .a-desc { color: rgba(247,244,238,0.6); }
.spectrum-anchors .a-center { color: var(--ink); }
.is-dark .spectrum-anchors .a-center { color: var(--paper); }

.range-slider {
  width: 100%; height: 6px; appearance: none;
  background: linear-gradient(90deg, var(--gold-deep) 0%, var(--light-gold) 50%, var(--gold-deep) 100%);
  border-radius: 999px; outline: none; margin: 18px 0 0;
}
.range-slider::-webkit-slider-thumb {
  appearance: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--gold);
  box-shadow: 0 4px 14px rgba(186,142,53,0.32); cursor: grab; transition: transform 140ms;
}
.range-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(0.94); }
.range-slider::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--gold);
  box-shadow: 0 4px 14px rgba(186,142,53,0.32); cursor: grab;
}

.spectrum-readout {
  margin-top: 20px; font-family: var(--font-display); font-style: italic;
  font-size: 18px; color: var(--gold);
}
.is-dark .spectrum-readout { color: var(--light-gold); }

/* ---------- Tier picker (Q2) ---------- */
.tier-list { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.tier-option {
  display: flex; gap: 18px; align-items: flex-start; padding: 18px 20px;
  background: rgba(228,211,139,0.04); border: 1px solid var(--rule-dark);
  border-radius: 4px; cursor: pointer; transition: all 180ms var(--ease-out);
  text-align: left; color: var(--paper); font-family: inherit; font-size: 14.5px;
}
.is-light-surface .tier-option { background: var(--paper); border: 1px solid var(--rule); color: var(--ink); }
.tier-option:hover { border-color: var(--gold); }
.tier-option.is-active { border-color: var(--gold); background: rgba(228,211,139,0.10); }
.is-light-surface .tier-option.is-active { background: var(--paper-2); }
.tier-option .t-num { font-family: var(--font-display); font-style: italic; font-size: 24px; color: var(--gold); width: 30px; flex-shrink: 0; line-height: 1.1; }
.is-dark .tier-option .t-num { color: var(--light-gold); }
.tier-option .t-text { flex: 1; display: flex; flex-direction: column; gap: 6px; line-height: 1.5; }
.tier-option .t-line { display: block; }
.tier-option .t-or {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  color: var(--gold); font-size: 13px; letter-spacing: 0.02em;
}
.is-dark .tier-option .t-or { color: var(--light-gold); }

/* ---------- Text inputs ---------- */
.field { margin-top: 8px; }
.field__label { font-size: 11px; font-weight: 600; letter-spacing: 0.20em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.is-dark .field__label { color: var(--light-gold); }

.field textarea, .field input[type=text], .field input[type=email] {
  width: 100%; padding: 18px 20px; font-family: inherit; font-size: 16px; line-height: 1.55;
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--rule); border-radius: 3px;
  resize: vertical; transition: border-color 180ms;
}
.field textarea:focus, .field input:focus { outline: none; border-color: var(--gold); }
.is-dark .field textarea, .is-dark .field input[type=text], .is-dark .field input[type=email] {
  background: rgba(247,244,238,0.04); color: var(--paper); border-color: var(--rule-dark);
}
.is-dark .field textarea:focus, .is-dark .field input:focus { border-color: var(--gold); background: rgba(247,244,238,0.06); }
.is-dark .field textarea::placeholder, .is-dark .field input::placeholder { color: rgba(247,244,238,0.35); }
.field .field__counter { font-size: 11px; letter-spacing: 0.06em; color: var(--muted); margin-top: 8px; text-align: right; }
.is-dark .field .field__counter { color: rgba(247,244,238,0.5); }

.pull-quote {
  margin: 32px 0; padding: 18px 0;
  border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold);
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 18px; line-height: 1.5; color: var(--light-gold); text-align: center;
}
.is-light-surface .pull-quote { color: var(--gold); }

/* Recommended-answer chips, used on Q3 / Q4 / Q5 */
.chips-block { margin-top: 28px; }
.chips-block__label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.20em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.is-dark .chips-block__label { color: var(--light-gold); }
.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  background: rgba(228,211,139,0.06); border: 1px solid var(--rule-dark);
  color: var(--paper); padding: 10px 14px; border-radius: 999px;
  font-family: var(--font-display); font-style: italic; font-size: 14px;
  cursor: pointer; transition: all 180ms; text-align: left;
}
.is-light-surface .chip { background: transparent; border-color: var(--rule); color: var(--ink); }
.chip:hover { border-color: var(--gold); color: var(--light-gold); }
.is-light-surface .chip:hover { color: var(--gold); background: var(--paper-2); }
/* chip--long: full-width chip for long example sentences */
.chip--long {
  display: block; width: 100%; border-radius: 8px;
  padding: 14px 18px; font-size: 15px; line-height: 1.5;
}

/* ---------- Field Note (educational sidebar under each question) ---------- */
.field-note {
  margin-top: 40px; padding: 22px 26px;
  border-left: 2px solid var(--gold);
  background: rgba(228,211,139,0.05);
  border-radius: 0 4px 4px 0;
  text-align: left;
}
.is-light-surface .field-note { background: var(--paper-2); }
.field-note__label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.is-dark .field-note__label { color: var(--light-gold); }
.field-note__body {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 17px; line-height: 1.6; color: rgba(247,244,238,0.86);
}
.is-light-surface .field-note__body { color: var(--ink); }
@media (max-width: 720px) {
  .field-note { padding: 18px 20px; margin-top: 28px; }
  .field-note__body { font-size: 16px; }
}

/* ---------- Email capture form ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.field select {
  width: 100%; padding: 16px 20px; font-family: inherit; font-size: 16px;
  background: rgba(247,244,238,0.04); color: var(--paper);
  border: 1px solid var(--rule-dark); border-radius: 3px; appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23E4D38B' stroke-width='1.6' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat; background-position: right 18px center;
}
.is-light-surface .field select {
  background-color: var(--paper); color: var(--ink); border-color: var(--rule);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23BA8E35' stroke-width='1.6' fill='none' stroke-linecap='round'/></svg>");
}
.field-opt-in {
  display: flex; gap: 12px; align-items: flex-start;
  margin-top: 20px; padding: 16px; border: 1px solid var(--rule-dark); border-radius: 3px;
  background: rgba(228,211,139,0.04);
}
.is-light-surface .field-opt-in { background: var(--paper-2); border-color: var(--rule); }
.field-opt-in input { margin-top: 4px; accent-color: var(--gold); width: 16px; height: 16px; }
.field-opt-in label { font-size: 14px; line-height: 1.5; color: rgba(247,244,238,0.85); }
.is-light-surface .field-opt-in label { color: var(--ink); }
.privacy-note { font-size: 11px; letter-spacing: 0.06em; color: rgba(247,244,238,0.45); margin-top: 14px; }
.is-light-surface .privacy-note { color: var(--muted); }

/* ---------- Results ---------- */
.results-stage { background: var(--navy); color: var(--paper); padding: 64px 0; position: relative; overflow: hidden; }
.results-stage::before { content: ""; position: absolute; inset: 0; background-image: url('assets/logo-icon-flat-dark.png'); background-size: 240px 240px; background-repeat: repeat; opacity: 0.03; pointer-events: none; }
.results-stage::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 720px; height: 720px; background: radial-gradient(circle, rgba(228,211,139,0.14) 0%, transparent 65%); filter: blur(60px); pointer-events: none; }
.results-stage .shell { position: relative; z-index: 2; }
.results-headline { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(40px, 6vw, 80px); line-height: 1.0; letter-spacing: -0.015em; margin: 12px 0 36px; }
.results-headline em { color: var(--light-gold); }
.insight-stack { display: grid; gap: 32px; margin-top: 12px; }
.insight {
  padding: 28px 0; border-top: 1px solid var(--rule-dark);
}
.insight:first-child { border-top: none; padding-top: 0; }
.insight__num { font-family: var(--font-display); font-style: italic; font-size: 36px; color: var(--gold); line-height: 1; }
.insight__h { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 24px; margin: 12px 0 12px; line-height: 1.2; }
.insight__b { font-size: 16px; line-height: 1.65; color: rgba(247,244,238,0.78); }
.insight__b b { color: var(--light-gold); font-weight: 600; }

.os-card {
  margin-top: 56px; padding: 36px; background: rgba(247,244,238,0.04);
  border: 1px solid var(--gold); border-radius: 4px; position: relative;
}
.os-card__label { font-size: 11px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.os-card__quote { font-family: var(--font-display); font-style: italic; font-size: clamp(24px, 3.5vw, 38px); line-height: 1.2; margin: 18px 0 0; color: var(--paper); }

.results-ctas { margin-top: 56px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.signoff {
  margin-top: 64px; padding: 28px 0; border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold);
  font-family: var(--font-display); font-style: italic; font-size: clamp(18px, 2.4vw, 24px); text-align: center; color: var(--light-gold);
}

/* ---------- Print: a clean Leadership OS one-pager ---------- */
@media print {
  body { background: #fff; color: #0A1626; font-size: 11pt; }
  .progress, .site-header, .results-ctas, .signoff, .screen__actions, .print-hide { display: none !important; }
  .screen, .hero, .results-stage { background: #fff !important; color: #0A1626 !important; padding: 0 !important; }
  .results-stage::before, .results-stage::after, .hero::before, .hero::after { display: none !important; }
  .results-headline, .h2, .h3, .display, .insight__h, .os-card__quote { color: #0A1626 !important; }
  .insight, .os-card { break-inside: avoid; border-color: rgba(10,22,38,0.15) !important; }
  .insight__b { color: #0A1626 !important; }
  .insight__b b { color: #BA8E35 !important; }
  .os-card { background: #F7F4EE !important; border-color: #BA8E35 !important; }
  .os-card__quote, .insight__num, .insight__h { color: #0A1626 !important; }
  .results-headline em, .display em { color: #BA8E35 !important; }
  .eyebrow, .eyebrow-count { color: #BA8E35 !important; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: var(--paper); padding: 36px 0 28px; border-top: 1px solid var(--rule-dark); }
.site-footer .shell { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.site-footer__brand img { height: 22px; }
.site-footer__meta { font-size: 11px; letter-spacing: 0.20em; text-transform: uppercase; color: rgba(247,244,238,0.55); }
.site-footer__meta a { color: var(--light-gold); }

/* ---------- Tablet stack ---------- */
@media (max-width: 900px) {
  .screen { padding: 48px 0 72px; min-height: calc(100vh - 160px); }
}

/* ---------- Mobile ---------- */
@media (max-width: 720px) {
  .shell { padding: 0 20px; }
  .screen { padding: 36px 0 56px; min-height: calc(100vh - 140px); }
  .hero { padding: 36px 0 60px; }
  .hero__stage { padding: 22px 16px; margin-top: 36px; }
  .screen__head { margin-bottom: 24px; }
  .screen__actions { margin-top: 28px; }
  .insight__h { font-size: 22px; }
  .os-card { padding: 24px; margin-top: 36px; }
  .form-grid { gap: 14px; }
  .progress .shell { gap: 12px; }
  .progress__label { display: none; }
  /* Stack the Q2 picker + diagram on mobile */
  .screen .q2-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .tier-option { font-size: 14px; padding: 16px 18px; gap: 14px; }
  .tier-option .t-num { font-size: 22px; width: 26px; }
}
