/* ============ Growithkris · Energy Audit page ============
   Palette: Jade #2D5F4C · Charcoal #2A2A2A · Bone #F8F6F0 · Copper #B8693D
   Type: Fraunces (display) · Inter (body) · Space Mono (data)      */

@import url('../fonts/fonts-local.css');

:root {
  --jade: #2D5F4C;
  --jade-deep: #234C3D;
  --charcoal: #2A2A2A;
  --charcoal-deep: #1F1F1F;
  --bone: #F8F6F0;
  --bone-dim: #EFEBE1;
  --copper: #B8693D;
  --copper-bright: #C97A4B;
  --ink: #262424;
  --ink-soft: #57534E;
  --bone-on-dark: #F2EFE7;
  --muted-on-dark: #B9B4A8;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Space Mono', 'SF Mono', monospace;

  --step--1: clamp(.83rem, .8rem + .18vw, .94rem);
  --step-0: clamp(1rem, .95rem + .3vw, 1.125rem);
  --step-1: clamp(1.25rem, 1.15rem + .5vw, 1.5rem);
  --step-2: clamp(1.6rem, 1.35rem + 1.1vw, 2.25rem);
  --step-3: clamp(2rem, 1.6rem + 2vw, 3.25rem);
  --step-4: clamp(2.5rem, 1.9rem + 3.2vw, 4.5rem);

  --space-1: .5rem; --space-2: 1rem; --space-3: 1.5rem;
  --space-4: 2.5rem; --space-5: 4rem; --space-6: 6.5rem;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur: 700ms;
  --container: 68rem;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(45, 95, 76, .06), transparent 60%),
    linear-gradient(180deg, #FAF8F3, var(--bone));
  background-color: var(--bone);
}
img, video, svg { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; margin: 0 0 var(--space-3); letter-spacing: -0.015em; }
p { margin: 0 0 var(--space-2); max-width: 62ch; }
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.h2 { font-size: var(--step-3); }
.h3 { font-size: var(--step-1); }
.mono { font-family: var(--font-mono); font-size: var(--step--1); letter-spacing: .04em; text-transform: uppercase; }
.micro { font-size: var(--step--1); color: var(--ink-soft); max-width: none; }
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
em { font-style: italic; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--copper); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 .5rem 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--copper); outline-offset: 3px; border-radius: 2px; }

/* dark sections */
.section--dark { background: var(--charcoal); color: var(--bone-on-dark); position: relative; overflow: hidden; }
.section--dark .micro, .section--dark p { color: var(--bone-on-dark); }
.section--dark .h2 { color: var(--bone); }
.section--jade { background: var(--jade); color: var(--bone-on-dark); position: relative; overflow: hidden; }

.kicker { color: var(--copper); margin-bottom: var(--space-2); display: block; }
.section--dark .kicker { color: var(--copper-bright); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  min-height: 48px; padding: .85rem 1.6rem;
  font: 600 var(--step-0)/1 var(--font-body);
  text-decoration: none; border: none; cursor: pointer;
  border-radius: 999px;
  transition: transform 180ms var(--ease-out), background 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
  touch-action: manipulation;
}
.btn:active { transform: scale(.97); }
.btn--copper { background: var(--copper); color: #fff; box-shadow: 0 6px 24px rgba(184,105,61,.28); }
.btn--copper:hover { background: var(--copper-bright); transform: translateY(-2px); }
.btn--bone { background: var(--bone); color: var(--jade-deep); }
.btn--bone:hover { transform: translateY(-2px); }
.btn--small { min-height: 44px; padding: .6rem 1.2rem; font-size: var(--step--1); }

/* ---------- S0 pill nav ---------- */
.pill-nav {
  position: fixed; top: .9rem; left: 50%; z-index: 100;
  transform: translate(-50%, -150%);
  display: flex; align-items: center; gap: 1.25rem;
  padding: .5rem .6rem .5rem 1.1rem;
  background: rgba(31, 31, 31, .94);
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
  transition: transform 420ms var(--ease-out);
  max-width: calc(100vw - 1.5rem);
}
.pill-nav.is-visible { transform: translate(-50%, 0); }
.pill-nav__mark { text-decoration: none; }
.mark-bms { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--bone-on-dark); white-space: nowrap; }
.mark-bms em { color: var(--copper-bright); font-style: normal; }

/* ---------- S1 hero ---------- */
.hero {
  position: relative; min-height: 100dvh;
  display: grid; place-items: center; text-align: center;
  overflow: hidden; color: var(--ink);
}
.hero__film {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  transform: scale(1.04);
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--bone) 78%, transparent) 0%,
    color-mix(in srgb, var(--bone) 66%, transparent) 55%,
    var(--bone) 100%);
}
.hero__inner { position: relative; z-index: 2; padding: var(--space-6) 0; }
.hero__title { font-size: var(--step-4); max-width: 17ch; margin-inline: auto; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span {
  display: block; transform: translateY(110%);
  animation: lineRise 900ms var(--ease-out) forwards;
}
.hero__title .line:nth-child(2) > span { animation-delay: 130ms; }
.hero__title .line:nth-child(3) > span { animation-delay: 260ms; }
@keyframes lineRise { to { transform: translateY(0); } }
.hero__kicker { color: var(--copper); }
.hero__chips { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: .7rem; padding: 0; margin: var(--space-3) auto 0; }
.chip {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .6rem 1.05rem; border-radius: 999px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(45, 95, 76, .18);
  font: 500 var(--step--1) var(--font-body); color: var(--jade-deep);
}
.chip svg { width: 19px; height: 19px; fill: none; stroke: var(--copper); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.hero__cta { margin-top: var(--space-4); display: grid; justify-items: center; gap: .9rem; }
.hero__scrollcue { position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero__scrollcue span {
  display: block; width: 2px; height: 56px; background: var(--copper);
  transform-origin: top; animation: cueDraw 2.2s var(--ease-out) infinite;
}
@keyframes cueDraw { 0% { transform: scaleY(0); } 45% { transform: scaleY(1); } 100% { transform: scaleY(1); opacity: 0; } }

/* ---------- reveal system (motion.js toggles .is-in) ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- S2 symptoms (split: copy + contained figure) ---------- */
.symptoms { padding: var(--space-5) 0; }
.symptoms__inner { display: grid; gap: var(--space-4); align-items: start; }
@media (min-width: 900px) { .symptoms__inner { grid-template-columns: 7fr 5fr; gap: var(--space-5); } }
.symptom-list { list-style: none; margin: var(--space-3) 0 0; padding: 0; display: grid; gap: var(--space-2); }
.symptom {
  display: flex; gap: .95rem; align-items: center;
  font-size: var(--step-0); font-weight: 500; line-height: 1.4;
  padding: .85rem 1.05rem; border-radius: .9rem;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(248,246,240,.08);
}
.sicon {
  flex: none; width: 40px; height: 40px; border-radius: .65rem;
  display: grid; place-items: center;
  background: rgba(184,105,61,.16);
}
.sicon svg { width: 21px; height: 21px; fill: none; stroke: var(--copper-bright); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.symptoms__closer { font-size: var(--step-1); font-family: var(--font-display); line-height: 1.35; margin: var(--space-4) 0 0; }
.symptoms__closer strong { color: #9CC5B3; }
.symptoms__figure { margin: 0; position: relative; border-radius: 1rem; overflow: hidden; align-self: stretch; min-height: 320px; }
.symptoms__figure img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.symptoms__figure figcaption {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 1;
  color: var(--bone-on-dark); background: rgba(31,31,31,.72);
  padding: .45rem .8rem; border-radius: .5rem;
}
@media (max-width: 899px) { .symptoms__figure { min-height: 0; aspect-ratio: 16/10; order: -1; } }

/* ---------- S3 reframe (pinned) ---------- */
.reframe { background: var(--bone); }
.reframe__track { height: 260vh; }
.reframe__stage {
  position: sticky; top: 0; min-height: 100vh;
  display: grid; place-content: center; text-align: center; gap: var(--space-3);
}
.reframe__belief { font-family: var(--font-display); font-size: var(--step-2); color: var(--ink-soft); }
/* multiline-safe strike: text-decoration fades in (works across wrapped lines) */
.strike-wrap {
  text-decoration-line: line-through;
  text-decoration-color: transparent;
  text-decoration-thickness: .09em;
  transition: text-decoration-color 550ms var(--ease-out);
}
.is-struck .strike-wrap { text-decoration-color: var(--copper); }
.reframe__truth {
  font-size: var(--step-3); max-width: 22ch; margin-inline: auto;
  opacity: 0; transform: translateY(24px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.reframe__truth em { color: var(--jade); }
.reframe.at-2 .reframe__truth { opacity: 1; transform: none; }
.reframe__equation {
  display: flex; align-items: center; justify-content: center; gap: 1.2rem;
  font-family: var(--font-mono); font-size: var(--step-1); margin-top: var(--space-3);
  max-width: none;
}
.eq { opacity: 0; transition: opacity 500ms var(--ease-out), transform 600ms var(--ease-out); }
.eq--left { transform: translateX(-40px); }
.eq--right { transform: translateX(40px); }
.eq--rule { width: 64px; height: 2px; background: var(--copper); transform: scaleX(0); }
.reframe.at-3 .eq { opacity: 1; transform: none; }

/* ---------- outcomes (the real want) ---------- */
.outcomes { padding: var(--space-6) 0; position: relative; overflow: hidden; }
.outcomes__film {
  position: absolute; inset: -12% 0; width: 100%; height: 124%;
  object-fit: cover; opacity: .5; z-index: 0; pointer-events: none;
}
.outcomes > .container { position: relative; z-index: 1; }
.outcome-list { list-style: none; margin: var(--space-4) 0; padding: 0; display: grid; gap: var(--space-2); max-width: 46rem; }
.outcome {
  font-family: var(--font-display); font-weight: 600;
  font-size: var(--step-1); line-height: 1.35;
  padding-left: 1.4rem; position: relative;
}
.outcome::before {
  content: ''; position: absolute; left: 0; top: .52em;
  width: .55rem; height: .55rem; border-radius: 50%;
  background: var(--copper-bright);
}
.outcomes__closer { font-size: var(--step-2); font-family: var(--font-display); line-height: 1.3; margin-top: var(--space-4); }
.outcomes__closer strong { color: #9CC5B3; }

/* ---------- offer steps ---------- */
.offer { padding: var(--space-6) 0; }
.steps { list-style: none; margin: var(--space-4) 0 0; padding: 0; display: grid; gap: var(--space-3); counter-reset: step; }
@media (min-width: 780px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: #fff; border: 1px solid var(--bone-dim); border-radius: 1rem;
  padding: var(--space-4) var(--space-3);
  box-shadow: 0 2px 8px rgba(42,42,42,.05);
}
.step__icon {
  display: grid; place-items: center; width: 46px; height: 46px;
  border-radius: .8rem; background: rgba(45,95,76,.09); margin-bottom: var(--space-2);
}
.step__icon svg { width: 23px; height: 23px; fill: none; stroke: var(--jade); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.step__num { color: var(--copper); display: block; margin-bottom: .3rem; }
.step p { color: var(--ink-soft); margin: 0; }
.offer__later { margin-top: var(--space-3); max-width: 52ch; }

/* ---------- S4 story ---------- */
.story { padding: var(--space-6) 0; }
.story__grid { display: grid; gap: var(--space-5); }
.story__sticky { align-self: start; }
.story__portrait { margin: 0 0 var(--space-3); max-width: 340px; }
.story__portrait img { border-radius: .75rem; object-fit: cover; aspect-ratio: 4/5; background: var(--bone-dim); }
.story__portrait.is-placeholder img { visibility: hidden; }
.story__portrait.is-placeholder { position: relative; }
.story__portrait.is-placeholder::before {
  content: 'Photo of Kristian'; position: absolute; inset: 0 0 1.8rem;
  display: grid; place-items: center; border-radius: .75rem;
  border: 2px dashed color-mix(in srgb, var(--jade) 40%, transparent);
  font-family: var(--font-mono); font-size: .8rem; color: var(--jade);
}
.story__portrait figcaption { margin-top: .6rem; color: var(--ink-soft); }
.receipts { list-style: none; margin: 0; padding: 0 0 0 1.75rem; position: relative; display: grid; gap: var(--space-4); }
.receipts::before {
  content: ''; position: absolute; left: 0; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(var(--jade), var(--copper));
  transform: scaleY(0); transform-origin: top;
  transition: transform 1.4s var(--ease-out);
}
.receipts.is-in::before { transform: scaleY(1); }
.receipt { position: relative; }
.receipt::before {
  content: ''; position: absolute; left: -1.75rem; top: 8px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--copper); transform: translateX(-4px);
}
.receipt__date { color: var(--copper); display: block; margin-bottom: .35rem; }
.receipt .h3 { margin-bottom: .4rem; }
.receipt p { color: var(--ink-soft); }
.receipt__img {
  border-radius: .75rem; margin-top: var(--space-2);
  max-width: 300px; aspect-ratio: 4/3; object-fit: cover;
  border: 1px solid var(--bone-dim);
}

@media (min-width: 900px) {
  .story__grid { grid-template-columns: 5fr 6fr; }
  .story__sticky { position: sticky; top: 6rem; }
}

/* ---------- S5 weak link / radar ---------- */
.weaklink { padding: var(--space-6) 0; background: var(--charcoal-deep); }
.weaklink__grid { display: grid; gap: var(--space-4); align-items: center; }
@media (min-width: 900px) { .weaklink__grid { grid-template-columns: 1fr 1fr; } }
.radar-wrap { margin: 0; }
.radar { width: min(100%, 420px); margin-inline: auto; }
.radar .grid-line { fill: none; stroke: color-mix(in srgb, var(--bone) 22%, transparent); stroke-width: 1; }
.radar .axis-label { fill: var(--muted-on-dark); font-family: var(--font-mono); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.radar .shape { fill: color-mix(in srgb, var(--jade) 55%, transparent); stroke: #9CC5B3; stroke-width: 2; stroke-linejoin: round; }
.radar .shape--draw { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 1.6s var(--ease-out); }
.radar.is-in .shape--draw { stroke-dashoffset: 0; }
.radar .weak-dot { fill: var(--copper-bright); }
.radar .weak-dot--pulse { animation: dotPulse 1.8s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes dotPulse { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: .5; transform: scale(1.6);} }

/* ---------- S6 cards ---------- */
.get { padding: var(--space-6) 0; }
.cards { display: grid; gap: var(--space-3); }
@media (min-width: 780px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: #fff; border: 1px solid var(--bone-dim);
  border-radius: 1rem; padding: var(--space-4) var(--space-3);
  box-shadow: 0 2px 8px rgba(42,42,42,.05);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(42,42,42,.1); }
.card__num { color: var(--copper); display: block; margin-bottom: var(--space-2); }
.card p { color: var(--ink-soft); margin: 0; }

/* ---------- S7 proof ---------- */
.proof { padding: var(--space-6) 0; }
.proof__grid { position: relative; z-index: 1; }
.proof__cols { display: grid; gap: var(--space-4); margin-top: var(--space-4); }
@media (min-width: 780px) { .proof__cols { grid-template-columns: 1fr 1fr; gap: var(--space-5); } }
.proof__label { color: var(--copper-bright); margin-bottom: var(--space-3); }
.cant { font-family: var(--font-display); font-size: var(--step-1); color: var(--muted-on-dark); }
.proof__can p { font-size: var(--step-0); border-left: 2px solid var(--jade); padding-left: 1rem; }

/* ---------- parallax band ---------- */
.band {
  position: relative; overflow: hidden;
  min-height: 46vh; display: grid; place-items: center;
}
.band__img {
  position: absolute; inset: -14% 0; width: 100%; height: 128%;
  object-fit: cover; z-index: 0; pointer-events: none;
}
.band__line {
  position: relative; z-index: 1;
  font-family: var(--font-display); font-weight: 600; font-style: italic;
  font-size: var(--step-3); color: var(--jade-deep);
  background: color-mix(in srgb, var(--bone) 55%, transparent);
  padding: .4rem 1.4rem; border-radius: .6rem;
  margin: 0;
}

/* ---------- S8 not for ---------- */
.notfor { padding: var(--space-6) 0; text-align: center; }
.notfor__no { font-family: var(--font-display); font-size: var(--step-2); color: var(--ink-soft); margin-bottom: var(--space-2); }
.notfor__no.reveal { transition-duration: 350ms; }
.notfor__yes {
  font-family: var(--font-display); font-size: var(--step-3); color: var(--jade);
  max-width: 24ch; margin: var(--space-4) auto 0; line-height: 1.2;
}
.notfor__yes.reveal { transition-duration: 1s; transition-delay: 250ms; }
.notfor p { margin-inline: auto; }

/* ---------- S9 final cta ---------- */
.finalcta { text-align: center; padding: var(--space-6) 0; }
.finalcta__film { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .35; z-index: 0; }
.finalcta__scrim { position: absolute; inset: 0; background: color-mix(in srgb, var(--jade) 82%, transparent); z-index: 1; }
.finalcta__inner { position: relative; z-index: 2; padding: var(--space-5) 0; }
.creed { font-size: var(--step-4); color: var(--bone); max-width: 14ch; margin: 0 auto var(--space-3); }
.creed__word { display: inline-block; opacity: 0; transform: translateY(30px); transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out); }
.creed.is-in .creed__word { opacity: 1; transform: none; }
.creed.is-in .creed__word:nth-child(1) { transition-delay: 0ms; }
.creed.is-in .creed__word:nth-child(2) { transition-delay: 90ms; }
.creed.is-in .creed__word:nth-child(3) { transition-delay: 180ms; }
.creed.is-in .creed__word:nth-child(4) { transition-delay: 420ms; }
.creed.is-in .creed__word:nth-child(5) { transition-delay: 510ms; }
.creed.is-in .creed__word:nth-child(6) { transition-delay: 600ms; }
.finalcta__sub { color: var(--bone-on-dark); margin-inline: auto; }

/* ---------- S10 audit ---------- */
.audit { padding: var(--space-6) 0; background: var(--bone); }
.audit__inner { max-width: 44rem; }
.audit__kicker { color: var(--copper); margin-bottom: var(--space-2); }
.audit__head { margin-bottom: var(--space-4); }
.audit__stage {
  background: #fff; border: 1px solid var(--bone-dim); border-radius: 1.25rem;
  padding: var(--space-4) var(--space-3); box-shadow: 0 10px 40px rgba(42,42,42,.07);
}
.audit__progress { height: 4px; background: var(--bone-dim); border-radius: 999px; overflow: hidden; margin-bottom: var(--space-2); }
.audit__progress span { display: block; height: 100%; width: 0; background: var(--copper); transition: width 350ms var(--ease-out); }
.audit__count { color: var(--ink-soft); }

.q { display: none; }
.q.is-active { display: block; animation: qIn 300ms var(--ease-out); }
@keyframes qIn { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: none; } }
.q__axis { color: var(--copper); margin-bottom: .4rem; }
.q__text { font-family: var(--font-display); font-size: var(--step-2); line-height: 1.25; margin-bottom: var(--space-3); }
.q__opts { display: grid; gap: .6rem; }
.q__opt { position: relative; }
.q__opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.q__opt label {
  display: flex; align-items: center; gap: .8rem;
  min-height: 52px; padding: .7rem 1.1rem;
  border: 1.5px solid var(--bone-dim); border-radius: .75rem;
  cursor: pointer; font-weight: 500;
  transition: border-color 160ms, background 160ms, transform 160ms;
}
.q__opt label:hover { border-color: var(--jade); }
.q__opt input:checked + label { border-color: var(--jade); background: color-mix(in srgb, var(--jade) 8%, #fff); }
.q__opt input:focus-visible + label { outline: 3px solid var(--copper); outline-offset: 2px; }
.q__opt label:active { transform: scale(.99); }
.q__dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--bone-dim); flex: none; transition: border-color 160ms, background 160ms; }
.q__opt input:checked + label .q__dot { background: var(--jade); border-color: var(--jade); }
.q__back {
  background: none; border: none; color: var(--ink-soft); cursor: pointer;
  font: 500 var(--step--1) var(--font-body); padding: .8rem 0; margin-top: var(--space-2);
  min-height: 44px;
}
.q__back:hover { color: var(--ink); }

.audit__gate { animation: qIn 400ms var(--ease-out); }
.audit__result { text-align: center; margin-bottom: var(--space-4); }
.radar--result { width: min(100%, 340px); }
.radar--result .grid-line { stroke: var(--bone-dim); }
.radar--result .axis-label { fill: var(--ink-soft); }
.audit__band { font-size: var(--step-1); color: var(--jade); margin: var(--space-2) 0 .3rem; text-transform: none; letter-spacing: .01em; }
.audit__weak { color: var(--ink-soft); max-width: 40ch; margin-inline: auto; }
.audit__fields { display: grid; gap: .55rem; }
.audit__fields label { font-weight: 600; font-size: var(--step--1); margin-top: .6rem; }
.audit__fields input {
  min-height: 50px; padding: .7rem 1rem; font: 400 var(--step-0) var(--font-body);
  border: 1.5px solid var(--bone-dim); border-radius: .75rem; background: var(--bone);
}
.audit__fields input:focus-visible { outline: 3px solid var(--copper); outline-offset: 1px; border-color: var(--copper); }
.audit__fields .btn { margin-top: var(--space-2); justify-content: center; }
.audit__error { color: #B3402E; font-size: var(--step--1); margin: 0; }
.audit__done { text-align: center; padding: var(--space-4) 0; animation: qIn 400ms var(--ease-out); }

/* ---------- footer ---------- */
.footer { background: var(--charcoal-deep); color: var(--muted-on-dark); padding: var(--space-5) 0; }
.footer__inner { display: grid; gap: var(--space-2); justify-items: center; text-align: center; }
.footer .micro { color: var(--muted-on-dark); max-width: 52ch; }

/* ---------- reduced motion (also forced via ?static → .force-static) ---------- */
.force-static .reveal, .force-static .reframe__truth, .force-static .eq, .force-static .creed__word { opacity: 1 !important; transform: none !important; transition: none !important; }
.force-static .hero__title .line > span { transform: none; animation: none; }
.force-static .radar .shape--draw { stroke-dashoffset: 0 !important; transition: none; }
.force-static .strike-wrap { text-decoration-color: var(--copper); transition: none; }
.force-static .receipts::before { transform: none; transition: none; }
.force-static .reframe__track { height: auto; }
.force-static .reframe__stage { position: static; min-height: 0; padding: var(--space-6) 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reframe__truth, .eq, .creed__word { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__title .line > span { transform: none; animation: none; }
  .hero__film { animation: none; }
  .hero__scrollcue, .radar .weak-dot--pulse { animation: none; }
  .radar .shape--draw { stroke-dashoffset: 0 !important; transition: none; }
  .strike-wrap { transition: none; text-decoration-color: var(--copper); }
  .receipts::before { transform: none; transition: none; }
  .reframe__track { height: auto; }
  .reframe__stage { position: static; min-height: 0; padding: var(--space-6) 0; }
  .q.is-active, .audit__gate, .audit__done { animation: none; }
}

/* mobile niceties */
@media (max-width: 640px) {
  .symptom { font-size: var(--step-0); }
  .hero__title { max-width: 14ch; }
  .pill-nav { gap: .75rem; }
  .mark-bms { font-size: .62rem; }
}
