/* ═══════════════════════════════════════════════════════════════════════════
   Podcast Foundry — Content Strategy Scorecard
   Self-contained stylesheet for scorecard.podcastfoundry.co.uk
   Tokens mirror the main site (Docs/colors_and_type.css). Do not deviate from
   the brand system: forest/cream, Playfair + Cabin, no shadows/gradients/glows,
   no emoji, no em dashes, sentence case.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  /* Forest greens */
  --forest-dark:   #2A3727;
  --forest:        #3D4F3A;
  --forest-light:  #4F6349;
  --sage:          #7A9474;

  /* Neutrals */
  --cream:         #F5F2EB;
  --cream-dark:    #EAE5D8;
  --charcoal:      #1A1A1A;
  --warm-gray:     #6B6560;
  --white:         #FFFFFF;

  /* Tinted borders */
  --border:        rgba(61, 79, 58, 0.20);
  --border-strong: rgba(61, 79, 58, 0.40);
  --border-faint:  rgba(61, 79, 58, 0.10);

  /* Double-bezel shells */
  --shell-bg:      rgba(61, 79, 58, 0.055);

  /* Band accents — desaturated, earthy traffic light (no neon) */
  --band-red:      #B4472F;
  --band-red-soft: rgba(180, 71, 47, 0.10);
  --band-amber:    #B98322;
  --band-amber-soft: rgba(185, 131, 34, 0.10);
  --band-green:    #4F6349;
  --band-green-soft: rgba(79, 99, 73, 0.12);

  /* Type */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Cabin', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --fw-regular: 400;
  --fw-medium:  500;
  --fw-semibold: 600;
  --fw-bold:    700;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ─────────────────────────────────────────────────────────────────── */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100dvh;
}
a { text-decoration: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font-sans); }
ul[role=list] { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--forest); color: var(--cream); }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 700; margin: 0; }

/* ── Film grain ────────────────────────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  background-repeat: repeat;
}

/* ── Nav — floating pill (minimal, logo links back to main site) ───────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 20px 24px 0;
  pointer-events: none;
}
.nav__pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 12px 10px 20px;
  border-radius: 999px;
  background: rgba(42, 55, 39, 0.52);
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  border: 0.5px solid rgba(245, 242, 235, 0.18);
  box-shadow: inset 0 1px 0 rgba(245, 242, 235, 0.08);
  pointer-events: all;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo img { display: block; }
.nav__back {
  font-size: 12px;
  font-weight: var(--fw-medium);
  color: rgba(245, 242, 235, 0.8);
  padding: 7px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 200ms ease, background 200ms ease;
}
.nav__back:hover { color: var(--cream); background: rgba(245, 242, 235, 0.08); }
.nav__back i { font-size: 14px; }

/* ── Pill buttons ──────────────────────────────────────────────────────────── */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px 14px 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 250ms var(--ease), transform 150ms var(--ease),
              border-color 250ms var(--ease), opacity 200ms var(--ease);
}
.btn-pill:active { transform: scale(0.98); }
.btn-pill:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-pill--no-icon { padding: 14px 28px; }

.btn-pill--primary { background: var(--forest); color: var(--cream); }
.btn-pill--primary:hover:not(:disabled) { background: var(--forest-dark); }

.btn-pill--primary-dark { background: var(--cream); color: var(--forest-dark); }
.btn-pill--primary-dark:hover:not(:disabled) { background: rgba(245, 242, 235, 0.88); }

.btn-pill--ghost-forest {
  background: transparent;
  color: var(--forest);
  border: 0.5px solid var(--forest);
  padding: 14px 24px;
}
.btn-pill--ghost-forest:hover { background: rgba(61, 79, 58, 0.06); }

.btn-pill__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(245, 242, 235, 0.15);
  flex-shrink: 0;
  transition: transform 250ms var(--ease), background 250ms var(--ease);
}
.btn-pill--primary .btn-pill__icon { background: rgba(245, 242, 235, 0.12); }
.btn-pill--primary-dark .btn-pill__icon { background: rgba(61, 79, 58, 0.12); }
.btn-pill:hover:not(:disabled) .btn-pill__icon {
  transform: translate(2px, -1px);
  background: rgba(245, 242, 235, 0.28);
}
.btn-pill--primary-dark:hover:not(:disabled) .btn-pill__icon { background: rgba(61, 79, 58, 0.2); }

/* Text link */
.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--forest);
  border-bottom: 0.5px solid rgba(61, 79, 58, 0.35);
  padding-bottom: 2px;
  transition: color 200ms ease, border-color 200ms ease;
}
.link-underline:hover { color: var(--forest-dark); border-color: var(--forest-dark); }

/* ── Eyebrow / caps ────────────────────────────────────────────────────────── */
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
}

/* ── App scaffold ──────────────────────────────────────────────────────────── */
.app {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* Each step fills the viewport centre; hidden by default */
.screen {
  display: none;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 128px 24px 80px;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}
.screen.is-active { display: flex; }

/* Entrance for the active screen's children */
.screen.is-active .stagger {
  opacity: 0;
  transform: translateY(20px);
  animation: rise 600ms var(--ease) forwards;
}
.screen.is-active .stagger:nth-child(1) { animation-delay: 40ms; }
.screen.is-active .stagger:nth-child(2) { animation-delay: 140ms; }
.screen.is-active .stagger:nth-child(3) { animation-delay: 240ms; }
.screen.is-active .stagger:nth-child(4) { animation-delay: 340ms; }
.screen.is-active .stagger:nth-child(5) { animation-delay: 440ms; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* ── Intro ─────────────────────────────────────────────────────────────────── */
.intro { text-align: center; }
.intro__eyebrow { margin-bottom: 24px; }
.intro h1 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.015em;
  color: var(--forest-dark);
  margin: 0 0 24px;
}
.intro__lede {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--warm-gray);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 40px;
}
.intro__cta { margin-bottom: 64px; }

/* Traffic light band cards */
.bands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
.band-card {
  background: var(--shell-bg);
  border: 0.5px solid var(--border-faint);
  padding: 6px;
  border-radius: 20px;
}
.band-card__core {
  background: var(--cream);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  padding: 24px 22px;
  text-align: center;
  height: 100%;
}
.band-card__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  margin: 0 auto 14px;
}
.band-card__name {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.band-card__desc { font-size: 13px; color: var(--warm-gray); line-height: 1.55; margin: 0; }
.band-card--red   .band-card__dot { background: var(--band-red); }
.band-card--red   .band-card__name { color: var(--band-red); }
.band-card--amber .band-card__dot { background: var(--band-amber); }
.band-card--amber .band-card__name { color: var(--band-amber); }
.band-card--green .band-card__dot { background: var(--band-green); }
.band-card--green .band-card__name { color: var(--band-green); }

/* ── Progress bar (questions) ──────────────────────────────────────────────── */
.progress {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  display: none;
  align-items: center;
  gap: 16px;
  padding: 16px 6vw;
  background: rgba(245, 242, 235, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 0.5px solid var(--border-faint);
}
.progress.is-visible { display: flex; }
.progress__track {
  flex: 1;
  height: 3px;
  background: var(--cream-dark);
  border-radius: 999px;
  overflow: hidden;
}
.progress__fill {
  height: 100%;
  width: 0;
  background: var(--forest);
  border-radius: 999px;
  transition: width 400ms var(--ease);
}
.progress__label {
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  white-space: nowrap;
}

/* ── Back link (questions) ─────────────────────────────────────────────────── */
.q-back {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warm-gray);
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 40px;
  transition: color 200ms ease;
}
.q-back:hover { color: var(--forest); }
.q-back i { font-size: 15px; }

/* ── Question ──────────────────────────────────────────────────────────────── */
.question { width: 100%; text-align: left; }
.question__eyebrow { margin-bottom: 20px; color: var(--sage); }
.question__title {
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--forest-dark);
  margin: 0 0 56px;
}

/* Slider */
.slider { width: 100%; margin-bottom: 12px; }
.slider__input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(to right,
    var(--forest) 0%, var(--forest) var(--pct, 50%),
    var(--cream-dark) var(--pct, 50%), var(--cream-dark) 100%);
  outline: none;
  cursor: pointer;
}
.slider__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--forest);
  border: 3px solid var(--cream);
  cursor: grab;
  transition: transform 150ms var(--ease), background 150ms var(--ease);
}
.slider__input::-webkit-slider-thumb:active { transform: scale(1.1); background: var(--forest-dark); cursor: grabbing; }
.slider__input::-moz-range-thumb {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--forest);
  border: 3px solid var(--cream);
  cursor: grab;
}
.slider__labels {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}
.slider__label {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.4;
  max-width: 45%;
}
.slider__label--min { text-align: left; }
.slider__label--max { text-align: right; }

/* Ranked pick-3 */
.rank-hint {
  font-size: 13px;
  color: var(--warm-gray);
  margin: 0 0 24px;
}
.rank-list { display: flex; flex-direction: column; gap: 10px; }
.rank-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--cream);
  border: 0.5px solid var(--border);
  text-align: left;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--charcoal);
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
}
.rank-option:hover { border-color: var(--forest); }
.rank-option.is-selected { border: 1.5px solid var(--forest); background: rgba(61, 79, 58, 0.05); }
.rank-option.is-disabled { opacity: 0.5; }
.rank-option__badge {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: var(--fw-bold);
  font-family: var(--font-serif);
  color: var(--warm-gray);
  background: var(--cream);
  transition: all 180ms var(--ease);
}
.rank-option.is-selected .rank-option__badge {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.rank-option__text { flex: 1; }

/* Nav buttons under a question */
.q-actions { margin-top: 48px; display: flex; gap: 12px; }

/* ── Gate form ─────────────────────────────────────────────────────────────── */
.gate { width: 100%; max-width: 480px; text-align: left; }
.gate h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  color: var(--forest-dark);
  margin: 0 0 12px;
}
.gate__lede { font-size: 16px; color: var(--warm-gray); margin: 0 0 36px; line-height: 1.6; }
.form { display: flex; flex-direction: column; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
}
.form-field input:not([type=checkbox]) {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--charcoal);
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 6px;
  padding: 14px 16px;
  width: 100%;
  outline: none;
  transition: border-color 200ms ease;
  -webkit-appearance: none;
}
.form-field input:not([type=checkbox]):focus { border-color: var(--forest); border-width: 1.5px; padding: 13px 15px; }
.form-field__error { font-size: 12px; color: var(--band-red); display: none; }
.form-field.has-error input { border-color: var(--band-red); }
.form-field.has-error .form-field__error { display: block; }

.consent { display: flex; flex-direction: row; align-items: flex-start; gap: 12px; }
.consent input {
  -webkit-appearance: auto;
  appearance: auto;
  margin-top: 2px;
  width: 18px;
  height: 18px;
  accent-color: var(--forest);
  flex-shrink: 0;
  cursor: pointer;
}
.consent label {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.55;
  text-transform: none;
  letter-spacing: 0;
  font-weight: var(--fw-regular);
}
.consent a { color: var(--forest); border-bottom: 0.5px solid rgba(61, 79, 58, 0.35); }
.consent a:hover { border-color: var(--forest); }
.gate__actions { margin-top: 8px; }
.gate__note { font-size: 12px; color: var(--warm-gray); margin: 16px 0 0; }

/* ── Results ───────────────────────────────────────────────────────────────── */
.results {
  display: none;
  width: 100%;
}
.results.is-active { display: block; }

.results__top {
  background: var(--cream);
  padding: 140px 6vw 80px;
  max-width: 1080px;
  margin: 0 auto;
}
.results__thanks {
  text-align: center;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--warm-gray);
  letter-spacing: 0.02em;
}
.results__title {
  text-align: center;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--forest);
  margin: 0 0 8px;
}
.results__emailed {
  text-align: center;
  font-size: 13px;
  color: var(--warm-gray);
  margin: 0 0 64px;
}
.results__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.results__headline {
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--forest-dark);
  margin: 0 0 24px;
}
.results__body { font-size: 17px; line-height: 1.7; color: var(--charcoal); margin: 0 0 16px; }
.results__body:last-child { margin-bottom: 0; }

/* Score dial */
.dial {
  background: var(--shell-bg);
  border: 0.5px solid var(--border-faint);
  border-radius: 20px;
  padding: 6px;
}
.dial__core {
  background: var(--cream);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  padding: 44px 32px;
  text-align: center;
}
.dial__label {
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 12px;
}
.dial__number {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(72px, 9vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.dial__rule {
  width: 60%;
  height: 2px;
  margin: 14px auto 0;
  border-radius: 999px;
}
.dial__band {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 24px;
  margin-top: 16px;
}

/* Band colouring on results */
.results[data-band="red"]   .dial__number,
.results[data-band="red"]   .dial__band { color: var(--band-red); }
.results[data-band="red"]   .dial__rule { background: var(--band-red); }
.results[data-band="amber"] .dial__number,
.results[data-band="amber"] .dial__band { color: var(--band-amber); }
.results[data-band="amber"] .dial__rule { background: var(--band-amber); }
.results[data-band="green"] .dial__number,
.results[data-band="green"] .dial__band { color: var(--band-green); }
.results[data-band="green"] .dial__rule { background: var(--band-green); }

/* Risk + outcomes strip (forest) */
.results__risk {
  background: var(--forest);
  padding: 72px 6vw;
  text-align: center;
}
.results__risk-line {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--cream);
  font-family: var(--font-serif);
  font-weight: 700;
  margin: 0 0 32px;
}
.results__risk-line b { font-weight: 700; }
.results[data-band="red"]   .results__risk-line b { color: #E8A08D; }
.results[data-band="amber"] .results__risk-line b { color: #E6C583; }
.results[data-band="green"] .results__risk-line b { color: var(--sage); }
.outcomes-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.outcomes-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(245, 242, 235, 0.06);
  border: 0.5px solid rgba(245, 242, 235, 0.12);
  border-radius: 10px;
  color: var(--cream);
  font-size: 15px;
  text-align: left;
}
.outcomes-list li span {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(245, 242, 235, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 12px;
  color: var(--cream);
}

/* Workshop card */
.workshop {
  background: var(--cream);
  padding: 100px 6vw;
}
.workshop__inner {
  max-width: 720px;
  margin: 0 auto;
}
.workshop__shell {
  background: var(--shell-bg);
  border: 0.5px solid var(--border-faint);
  border-radius: 20px;
  padding: 6px;
}
.workshop__core {
  background: var(--cream);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  padding: 48px 44px;
}
.workshop__eyebrow { margin-bottom: 16px; }
.workshop__title {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  color: var(--forest-dark);
  margin: 0 0 16px;
}
.workshop__pitch { font-size: 17px; line-height: 1.7; color: var(--charcoal); margin: 0 0 16px; }
.workshop__learn-label {
  font-size: 11px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 32px 0 16px;
}
.workshop__learn { list-style: none; padding: 0; margin: 0 0 36px; display: flex; flex-direction: column; gap: 14px; }
.workshop__learn li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--charcoal);
}
.workshop__learn li i { color: var(--forest); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.workshop__cadence { font-size: 14px; color: var(--warm-gray); margin: 0 0 28px; line-height: 1.6; }
.workshop__cta { margin-bottom: 28px; }
.workshop__offer {
  padding: 20px 24px;
  background: rgba(61, 79, 58, 0.05);
  border: 0.5px solid var(--border-faint);
  border-radius: 12px;
  font-size: 15px;
  color: var(--forest-dark);
  line-height: 1.55;
}
.workshop__offer b { font-weight: var(--fw-semibold); }
.workshop__fallback { font-size: 14px; color: var(--warm-gray); margin: 28px 0 0; line-height: 1.6; }
.workshop__fallback a { color: var(--forest); border-bottom: 0.5px solid rgba(61, 79, 58, 0.35); }
.workshop__fallback a:hover { border-color: var(--forest); }

/* ── Footer ────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--forest-dark);
  padding: 56px 6vw;
  border-top: 0.5px solid rgba(245, 242, 235, 0.1);
  margin-top: auto;
}
.footer__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__logo img { display: block; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__links a {
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: rgba(245, 242, 235, 0.6);
  transition: color 200ms ease;
}
.footer__links a:hover { color: var(--cream); }
.footer__legal {
  width: 100%;
  font-size: 11px;
  color: rgba(245, 242, 235, 0.3);
  margin: 24px 0 0;
  line-height: 1.5;
}
.footer__legal a { color: rgba(245, 242, 235, 0.5); border-bottom: 0.5px solid rgba(245, 242, 235, 0.2); }
.footer__legal a:hover { color: var(--cream); }

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .results__grid { grid-template-columns: 1fr; gap: 40px; }
  .results__top { padding: 120px 24px 64px; }
  .results__risk { padding: 56px 24px; }
  .workshop { padding: 72px 24px; }
  .workshop__core { padding: 36px 26px; }
}
@media (max-width: 600px) {
  .bands { grid-template-columns: 1fr; gap: 12px; }
  .screen { padding: 112px 20px 96px; }
  .dial__core { padding: 36px 24px; }
}

/* ── Reduced motion ────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .screen.is-active .stagger { opacity: 1; transform: none; }
}
