/* ============================================================
   runvelo.io — design tokens, layout, components, responsive
   ============================================================ */

:root {
  --bg: #F8F4EC;
  --fg: #1A1814;
  --muted: #6B655B;
  --hairline: #E5DFD3;
  --amber: #E07A2F;
  --amber-soft: rgba(224, 122, 47, 0.08);
  --amber-tint: rgba(224, 122, 47, 0.12);

  --space-2: 8px;  --space-3: 12px; --space-4: 16px;
  --space-6: 24px; --space-8: 32px; --space-12: 48px;
  --space-16: 64px; --space-24: 96px; --space-30: 120px;

  --max-content: 1200px;
  --max-text: 720px;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Crimson Text', Georgia, serif;

  --transition: 0.2s ease;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, ul, ol, dl, dd, figure { margin: 0; padding: 0; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
input, textarea, select, button { font: inherit; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}

/* ---------- focus ---------- */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- skip link ---------- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 12px;
  background: var(--amber);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 1000;
  transition: top var(--transition);
}
.skip-link:focus { top: 12px; }

/* ---------- layout ---------- */
.container {
  max-width: var(--max-content);
  margin: 0 auto;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}

.section { padding: var(--space-30) 0; }
.section--tight { padding: var(--space-24) 0; }

/* ---------- typography ---------- */
h1, h2, h3 { font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: 56px; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: 40px; line-height: 1.25; }
h3 { font-size: 26px; line-height: 1.3; }
small, .small { font-size: 14px; line-height: 1.5; }

.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}

.muted { color: var(--muted); }
.center { text-align: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--amber);
  color: #fff;
}
.btn--primary:hover { background: #C8691F; }

.btn--outline {
  background: transparent;
  color: var(--amber);
  border-color: var(--amber);
}
.btn--outline:hover { background: var(--amber-soft); }

.btn--text {
  padding: 14px 4px;
  color: var(--fg);
  font-weight: 600;
}
.btn--text:hover { color: var(--amber); }

.btn .arrow { transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(2px); }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 244, 236, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.nav--scrolled { border-bottom-color: var(--hairline); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) 0;
}
.nav__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__mark {
  font-weight: 800;
  font-size: 18px;
  color: var(--amber);
  letter-spacing: 0.02em;
}
.nav__name {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav__link {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  transition: color var(--transition);
}
.nav__link:hover { color: var(--amber); }

/* ---------- hero ---------- */
.hero {
  padding: var(--space-30) 0 var(--space-24);
}
.hero__grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: var(--space-16);
  align-items: center;
}
.hero__copy {
  max-width: 620px;
}
.hero__headline {
  margin: var(--space-6) 0 var(--space-8);
  display: flex;
  flex-direction: column;
}
.hero__line-1 { color: var(--fg); }
.hero__line-2 {
  color: var(--amber);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.hero__subhead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: var(--space-8);
  max-width: 560px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--muted);
  font-size: 14px;
  flex-wrap: wrap;
}
.hero__trust .check { color: var(--amber); flex-shrink: 0; }

/* ---------- play card ---------- */
.play-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  margin-left: auto;
}
.play-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -20px rgba(26, 24, 20, 0.25);
}
.play-card__halo {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, var(--amber-tint) 0%, transparent 60%);
  pointer-events: none;
}
.play-card__btn {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px -8px rgba(224, 122, 47, 0.4);
}
.play-card__btn svg { color: var(--amber); margin-left: 4px; }
.play-card__label {
  position: relative;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

/* ---------- pain ---------- */
.pain__header { margin-bottom: var(--space-12); }
.pain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.quote-card {
  background: var(--amber-soft);
  border-radius: var(--radius);
  padding: var(--space-8);
}
.quote-card__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: var(--space-6);
}
.quote-card__attr {
  font-size: 14px;
  color: var(--muted);
}

/* ---------- quiz callout ---------- */
.quiz-callout {
  max-width: 720px;
  margin: 0 auto;
  background: var(--amber-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-12);
  text-align: center;
}
.quiz-callout h2 {
  font-size: 32px;
  margin: var(--space-3) 0 var(--space-6);
}
.quiz-callout__body {
  color: var(--fg);
  margin-bottom: var(--space-8);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.quiz-callout__pills {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}
.trust-pill .check { color: var(--amber); }

/* ---------- how ---------- */
.how__header { text-align: center; margin-bottom: var(--space-16); }
.how__sub { color: var(--muted); margin-top: var(--space-3); }
.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}
.step {
  position: relative;
  padding: var(--space-8);
}
.step__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  color: var(--amber);
  margin-bottom: var(--space-3);
}
.step__title { margin-bottom: var(--space-3); }
.step__body {
  color: var(--fg);
  font-size: 18px;
  line-height: 1.6;
}
.how__cta {
  text-align: center;
  margin-top: var(--space-12);
}
.how__cta a {
  font-weight: 600;
  color: var(--fg);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 4px;
  transition: color var(--transition), border-color var(--transition);
}
.how__cta a:hover { color: var(--amber); border-bottom-color: var(--amber); }

/* ---------- numbers ---------- */
.numbers__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.stat {
  padding: var(--space-12) var(--space-6);
  border-right: 1px solid var(--hairline);
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-weight: 700;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: var(--space-3);
}
.stat__label {
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
}
.numbers__note {
  text-align: center;
  margin-top: var(--space-8);
  color: var(--muted);
  font-size: 14px;
}

/* ---------- audiences ---------- */
.audiences__header { text-align: center; margin-bottom: var(--space-16); }
.audiences__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: stretch;
}
.aud-card {
  background: #fff;
  border-radius: var(--radius);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hairline);
}
.aud-card--founders { border-left: 4px solid var(--amber); }
.aud-card--companies { border-left: 4px solid var(--muted); }
.aud-card--recruiters { border: 1px solid var(--hairline); }
.aud-card__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-4);
}
.aud-card__head { margin-bottom: var(--space-6); }
.aud-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.55;
  flex: 1;
}
.aud-card__list li {
  display: flex;
  gap: var(--space-3);
}
.aud-card__list .check {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 6px;
}
.aud-card__cta {
  margin-top: auto;
  align-self: flex-start;
}
.aud-card__cta.btn--text { padding-left: 0; }

/* ---------- faqs ---------- */
.faqs__header { text-align: center; margin-bottom: var(--space-16); }
.faqs__list {
  max-width: 720px;
  margin: 0 auto;
}
.faq {
  border-top: 1px solid var(--hairline);
}
.faq:last-child { border-bottom: 1px solid var(--hairline); }
.faq__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-6) 0;
  font-size: 19px;
  font-weight: 600;
  color: var(--fg);
  transition: color var(--transition);
}
.faq__summary::-webkit-details-marker { display: none; }
.faq__summary:hover { color: var(--amber); }
.faq__chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform var(--transition), color var(--transition);
}
.faq[open] .faq__chevron {
  transform: rotate(180deg);
  color: var(--amber);
}
.faq__body {
  padding: 0 0 var(--space-6);
  color: var(--fg);
  font-size: 17px;
  line-height: 1.65;
  max-width: 640px;
}

/* ---------- final CTA ---------- */
.final-cta {
  text-align: center;
  padding: var(--space-30) 0;
}
.final-cta h2 {
  font-size: 48px;
  line-height: 1.2;
  max-width: 760px;
  margin: 0 auto var(--space-6);
}
.final-cta__sub {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta__btns {
  display: inline-flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--hairline);
  padding: var(--space-16) 0;
  text-align: center;
  color: var(--muted);
}
.footer__row {
  padding: var(--space-3) 0;
}
.footer__row + .footer__row { border-top: 1px solid var(--hairline); margin-top: var(--space-3); }
.footer__row a {
  color: var(--muted);
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.footer__row a:hover { color: var(--amber); border-bottom-color: var(--amber); }
.footer__row--brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}
.footer__row--brand .nav__mark { color: var(--amber); }
.footer__row--meta { font-size: 13px; opacity: 0.85; }
.footer__row--meta em { font-style: italic; }

/* ---------- modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  background: rgba(26, 24, 20, 0.85);
}
.modal.is-open { display: flex; }
.modal__panel {
  position: relative;
  width: 100%;
  max-width: 800px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6);
}
.modal__close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  transition: background var(--transition), color var(--transition);
}
.modal__close:hover {
  background: var(--amber-soft);
  color: var(--amber);
}
.modal__video {
  position: relative;
  margin-top: var(--space-6);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
}
.modal__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- quiz page ---------- */
.quiz-page {
  padding: var(--space-24) 0;
  min-height: calc(100vh - 240px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.quiz-card {
  width: 100%;
  max-width: 720px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: var(--space-12);
}
.quiz-card__step {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}
.quiz-card__question {
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: var(--space-8);
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.quiz-option {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  width: 100%;
  text-align: left;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-6);
  font-size: 17px;
  line-height: 1.5;
  color: var(--fg);
  background: transparent;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.quiz-option:hover {
  background: var(--amber-soft);
  border-color: var(--amber);
}
.quiz-option.is-selected {
  background: var(--amber-soft);
  border-color: var(--amber);
  color: var(--amber);
  font-weight: 600;
}
.quiz-option__letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--amber-soft);
  color: var(--amber);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.quiz-option.is-selected .quiz-option__letter {
  background: var(--amber);
  color: #fff;
}

.quiz-progress {
  display: flex;
  gap: 6px;
  margin-bottom: var(--space-6);
}
.quiz-progress__dot {
  flex: 1;
  height: 4px;
  background: var(--hairline);
  border-radius: 2px;
  transition: background var(--transition);
}
.quiz-progress__dot.is-active { background: var(--amber); }

.quiz-result__eyebrow {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: var(--space-4);
}
.quiz-result__headline {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: var(--space-6);
}
.quiz-result__body {
  color: var(--fg);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: var(--space-8);
}
.quiz-result__body p + p { margin-top: var(--space-4); }
.quiz-result__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.quiz-result__retake {
  margin-top: var(--space-8);
  font-size: 14px;
  color: var(--muted);
}
.quiz-result__retake a {
  color: var(--muted);
  border-bottom: 1px solid var(--hairline);
}
.quiz-result__retake a:hover { color: var(--amber); border-bottom-color: var(--amber); }

/* ---------- newsletter block (DIY result) ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.newsletter-block {
  margin-top: var(--space-8);
  padding: var(--space-8);
  background: var(--amber-soft);
  border-radius: var(--radius-lg);
}
.newsletter-block__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--space-3);
}
.newsletter-block__headline {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: var(--space-3);
}
.newsletter-block__sub {
  color: var(--fg);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: var(--space-6);
  max-width: 480px;
}
.newsletter-form {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-3);
  max-width: 520px;
}
.newsletter-form__input {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-pill);
  background: #fff;
  font-size: 16px;
  color: var(--fg);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.newsletter-form__input::placeholder { color: var(--muted); }
.newsletter-form__input:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-soft);
}
.newsletter-form__input[aria-invalid="true"] {
  border-color: #C8392B;
  box-shadow: 0 0 0 3px rgba(200, 57, 43, 0.12);
}
.newsletter-form__submit:disabled { opacity: 0.6; cursor: progress; }
.newsletter-form__note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0;
}
.newsletter-form__success {
  background: #fff;
  border: 1px solid var(--amber);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-6);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.55;
}
.newsletter-form__success strong { color: var(--amber); }

/* Centered variant for the homepage newsletter section */
.newsletter-section { padding: var(--space-24) 0; }
.newsletter-block--center {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-12);
}
.newsletter-block--center .newsletter-block__sub {
  margin-left: auto;
  margin-right: auto;
}
.newsletter-block__headline--lg {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-4);
}
.newsletter-form--center {
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--space-6);
}
.newsletter-block--center .newsletter-form__note {
  margin-top: var(--space-3);
  margin-left: auto;
  margin-right: auto;
}
.newsletter-block--center .newsletter-form__success {
  max-width: 520px;
  margin: var(--space-6) auto 0;
  text-align: left;
}

/* Beehiiv iframe embed — replaces the old custom <form> for both
   the homepage newsletter section and the quiz DIY result.
   Heights tuned to fit the Beehiiv form's title + subtitle + email field
   + Subscribe button without clipping. */
.newsletter-embed {
  display: block;
  width: 100%;
  max-width: 600px;
  height: 480px;
  margin: var(--space-6) auto 0;
  border: 0;
  background-color: transparent;
  color-scheme: light;
}
.newsletter-block:not(.newsletter-block--center) .newsletter-embed {
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 768px) {
  .newsletter-embed { height: 540px; max-width: 100%; }
}

/* ---------- motion ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- responsive ---------- */
@media (max-width: 768px) {
  body { font-size: 16px; }
  h1 { font-size: 32px; line-height: 1.2; }
  h2 { font-size: 26px; line-height: 1.25; }
  h3 { font-size: 22px; line-height: 1.3; }
  small, .small { font-size: 13px; }

  .container { padding-left: var(--space-4); padding-right: var(--space-4); }
  .section { padding: var(--space-16) 0; }

  .nav__inner { padding: var(--space-4) 0; }
  .nav__links { gap: var(--space-3); }
  .nav__link { display: none; }

  .hero { padding: var(--space-12) 0 var(--space-16); }
  .hero__grid { grid-template-columns: 1fr; gap: var(--space-12); }
  .hero__copy { max-width: 100%; }
  .hero__subhead { font-size: 16px; }
  .hero__ctas .btn--text { padding: 12px 4px; }
  .play-card {
    margin: 0 auto;
    max-width: 100%;
    aspect-ratio: 16 / 10;
  }

  .pain__grid,
  .how__grid,
  .audiences__grid {
    grid-template-columns: 1fr;
  }

  .quiz-callout { padding: var(--space-8) var(--space-6); }
  .quiz-callout h2 { font-size: 24px; }

  .step__num { font-size: 48px; }
  .step { padding: var(--space-4) 0; }

  .numbers__strip { grid-template-columns: 1fr 1fr; }
  .stat { padding: var(--space-8) var(--space-4); border-right: 1px solid var(--hairline); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--hairline); }
  .stat__num { font-size: 40px; }

  .quiz-card { padding: var(--space-8) var(--space-6); }
  .quiz-card__question { font-size: 22px; }
  .quiz-result__headline { font-size: 26px; }
  .quiz-option { padding: var(--space-3) var(--space-4); font-size: 16px; }

  .final-cta { padding: var(--space-16) 0; }
  .final-cta h2 { font-size: 28px; }
  .final-cta__sub { font-size: 16px; }

  .modal { padding: var(--space-3); }
  .modal__panel { padding: var(--space-4); }

  .footer__row--brand { flex-direction: column; gap: var(--space-2); }

  .newsletter-block { padding: var(--space-6); }
  .newsletter-block__headline { font-size: 20px; }
  .newsletter-block__headline--lg { font-size: 26px; }
  .newsletter-block--center { padding: var(--space-8) var(--space-6); }
  .newsletter-section { padding: var(--space-12) 0; }
  .newsletter-form__input { min-width: 0; width: 100%; }
  .newsletter-form__submit { width: 100%; justify-content: center; }
}

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