/* ==========================================================================
   Episode: site styles. No framework, no web fonts.
   ========================================================================== */

:root {
  --bg: #0a0a0b;
  --bg-2: #111113;
  --surface: #151517;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f3f2ee;
  --muted: #a3a29c;      /* 7.6:1 on --bg */
  --faint: #7c7b76;      /* 4.6:1 on --bg, used for non-essential labels only */
  --accent: #ffffff;     /* monochrome: white on near-black, 19:1 */
  --accent-ink: #0a0a0b; /* text on accent */
  --focus: #ffffff;

  --sans: "Inter", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, Consolas, monospace;

  --wrap: 1240px;
  --gutter: clamp(20px, 4vw, 40px);
  --radius: 14px;
  --ease: cubic-bezier(0.2, 0.7, 0.1, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 17px/1.55 var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, video { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }
a { color: inherit; }
::selection { background: var(--accent); color: var(--accent-ink); }

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.skip {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--text);
  color: var(--bg);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}
.skip:focus { top: 12px; }

/* ---------- Header ---------- */

.top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 11, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.top__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
  letter-spacing: -0.02em;
  font-size: 18px;
  text-decoration: none;
}
.wordmark__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}
.top__nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 15px;
}
.top__nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.top__nav a:hover { color: var(--text); }
@media (max-width: 720px) {
  .top__nav { display: none; }
  .top__inner > .btn { margin-left: auto; }
}

/* ---------- Buttons ---------- */

.btn {
  --h: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--h);
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
  font: 600 16px/1 var(--sans);
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background-color 0.15s, border-color 0.15s, color 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { background: #dcdcd8; border-color: #dcdcd8; }
.btn:active { transform: scale(0.97); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.32); }
.btn--small { --h: 40px; padding: 0 18px; font-size: 14px; }
.btn--block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.55; cursor: not-allowed; }

.actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Type helpers ---------- */

.eyebrow, .kicker {
  font: 500 13px/1.4 var(--mono);
  letter-spacing: 0;
  color: var(--muted);
}
.eyebrow { display: inline-flex; align-items: baseline; gap: 10px; }
.eyebrow .rec { flex: none; transform: translateY(-1px); }
.rec {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 1.6s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0.25; } }

h2 {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 620;
  text-wrap: balance;
}
h3 {
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  font-weight: 600;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: clamp(56px, 11vh, 128px) 0 0;
  overflow: hidden;
}
.hero__title {
  margin: 28px 0 0;
  font-size: clamp(2.6rem, 7.3vw, 6.75rem);
  line-height: 0.93;
  letter-spacing: -0.055em;
  font-weight: 640;
}
.hero__title .line { display: block; text-wrap: balance; }
.hero__title .line--muted { color: var(--muted); margin-top: 0.12em; }

.hero__foot {
  display: grid;
  gap: 28px;
  margin-top: clamp(32px, 5vw, 56px);
  align-items: end;
}
@media (min-width: 900px) {
  .hero__foot { grid-template-columns: minmax(0, 36rem) auto; justify-content: space-between; }
}
.lede {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 36rem;
}

/* Entrance: lines rise in once. Disabled under reduced motion. */
@media (prefers-reduced-motion: no-preference) {
  .hero__title .line,
  .hero__foot {
    animation: rise 0.9s var(--ease) both;
  }
  .hero__title .line:nth-child(2) { animation-delay: 0.1s; }
  .hero__foot { animation-delay: 0.24s; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(0.35em); }
  to { opacity: 1; transform: none; }
}

/* Timeline motif */
.timeline {
  margin-top: clamp(56px, 9vw, 104px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.timeline__track {
  position: relative;
  height: 76px;
  max-width: var(--wrap);
  margin: 0 auto;
}
.timeline__ruler {
  position: absolute;
  inset: 0 var(--gutter);
  background:
    repeating-linear-gradient(90deg, var(--line-strong) 0 1px, transparent 1px calc(100% / 52)) top / 100% 14px no-repeat,
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px calc(100% / 208)) top / 100% 7px no-repeat;
}
.timeline__drops {
  position: absolute;
  inset: 28px var(--gutter) 18px;
  display: grid;
  grid-template-columns: repeat(52, 1fr);
  gap: 2px;
}
.timeline__drops span {
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.07);
}
.timeline__drops span.on { background: rgba(255, 255, 255, 0.55); }
.timeline__head {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--gutter);
  width: 1px;
  background: var(--accent);
}
.timeline__head::before {
  content: "";
  position: absolute;
  top: 0;
  left: -5px;
  border: 5px solid transparent;
  border-top: 7px solid var(--accent);
}
.timeline__tc {
  position: absolute;
  bottom: 4px;
  left: 8px;
  white-space: nowrap;
  font: 500 11px/1 var(--mono);
  color: var(--accent);
  letter-spacing: 0.04em;
}
@media (prefers-reduced-motion: no-preference) {
  .timeline__head { animation: scrub 26s linear infinite; }
}
@keyframes scrub {
  from { left: var(--gutter); }
  to { left: calc(100% - var(--gutter)); }
}

/* ---------- Problem band ---------- */

.band { padding: clamp(64px, 10vw, 120px) 0; border-bottom: 1px solid var(--line); }
.band__inner { display: grid; gap: 24px; }
@media (min-width: 900px) {
  .band__inner { grid-template-columns: 1.6fr 1fr; gap: 64px; align-items: end; }
}
.band__quote {
  font-size: clamp(1.6rem, 3.4vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 560;
  text-wrap: balance;
}
.band__note { color: var(--muted); max-width: 30rem; }

/* ---------- Sections ---------- */

.section { padding: clamp(80px, 11vw, 144px) 0 0; }
.section__head { display: grid; gap: 18px; margin-bottom: clamp(36px, 5vw, 64px); max-width: 52rem; }
.section__sub { color: var(--muted); font-size: 18px; max-width: 40rem; }

/* ---------- Reel ---------- */

.reel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (min-width: 720px) { .reel { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; } }
@media (min-width: 1040px) {
  .reel { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .reel[data-count="3"], .reel[data-count="6"] { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 960px; }
}

.clip { margin: 0; }
.clip__frame {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}
.clip__frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.clip__toggle {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(10, 10, 11, 0.6);
  color: var(--text);
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.clip__toggle svg { width: 14px; height: 14px; fill: currentColor; }
.clip__cap {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
}
.clip__cap b { color: var(--text); font-weight: 560; }

/* Placeholder frames: generative "motion" cards shown until real renders exist */
.ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  background:
    radial-gradient(120% 70% at var(--x, 30%) var(--y, 20%), var(--glow, rgba(255, 255, 255, 0.22)), transparent 60%),
    linear-gradient(180deg, #19191c, #0f0f11);
}
.ph__tc, .ph__meta {
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.04em;
  color: var(--faint);
  display: flex;
  justify-content: space-between;
}
.ph__word {
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 640;
  color: var(--text);
}
.ph__word em { font-style: normal; color: var(--accent); }
.ph__bar {
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.ph__bar i {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--text);
  transform-origin: left;
}
.ph__ui {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 38%;
  height: 22%;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(var(--line), var(--line)) 12px 14px / 45% 6px no-repeat,
    linear-gradient(var(--line), var(--line)) 12px 28px / 70% 6px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)) 12px calc(100% - 12px) / 34% 14px no-repeat,
    rgba(255, 255, 255, 0.03);
}
@media (prefers-reduced-motion: no-preference) {
  .ph__bar i { animation: progress var(--dur, 8s) linear infinite; }
  .ph__ui { animation: float var(--dur, 8s) var(--ease) infinite alternate; }
  .ph__word { animation: punch var(--dur, 8s) var(--ease) infinite; }
  .ph__bar i, .ph__ui, .ph__word { animation-delay: var(--delay, 0s); }
}
@keyframes progress { from { transform: scaleX(0); } to { transform: scaleX(2.5); } }
@keyframes float { from { transform: translateY(6%) scale(0.97); } to { transform: translateY(-6%) scale(1.02); } }
@keyframes punch {
  0%, 8% { opacity: 0; transform: translateY(12px); }
  14%, 88% { opacity: 1; transform: none; }
  96%, 100% { opacity: 0; transform: translateY(-8px); }
}

/* ---------- Steps ---------- */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: var(--bg);
  padding: clamp(28px, 3.4vw, 44px);
  display: grid;
  align-content: start;
  gap: 14px;
}
.step__n {
  font: 500 13px/1 var(--mono);
  color: var(--accent);
}
.step h3 { font-size: clamp(22px, 2.2vw, 28px); letter-spacing: -0.03em; }
.step p { color: var(--muted); }

/* ---------- Features ---------- */

.features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}
@media (min-width: 640px) { .features { grid-template-columns: repeat(2, 1fr); column-gap: 40px; } }
@media (min-width: 1040px) { .features { grid-template-columns: repeat(4, 1fr); } }
.features li {
  padding: 24px 0 28px;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 8px;
  align-content: start;
}
.features p { color: var(--muted); font-size: 15px; }

/* ---------- Pricing ---------- */

.plans {
  display: grid;
  gap: 16px;
}
@media (min-width: 960px) { .plans { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 28px 28px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.plan--feature {
  border-color: rgba(255, 255, 255, 0.55);
  background:
    radial-gradient(100% 60% at 50% 0%, rgba(255, 255, 255, 0.12), transparent 70%),
    var(--bg-2);
}
.plan__tag {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--accent);
  font: 500 12px/1 var(--mono);
  letter-spacing: 0;
}
.plan__name { font: 500 14px/1 var(--mono); letter-spacing: 0; color: var(--muted); }
.plan__price { display: flex; align-items: baseline; gap: 6px; margin-top: 6px; }
.plan__amt { font-size: clamp(2.6rem, 4vw, 3.4rem); font-weight: 640; letter-spacing: -0.05em; line-height: 1; font-variant-numeric: tabular-nums; }
.plan__per, .plan__from { color: var(--muted); font-size: 16px; }
.plan__vol { font-weight: 560; }
.plan__list {
  list-style: none;
  margin: 6px 0 18px;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
  flex: 1;
}
.plan__list li { display: flex; gap: 10px; }
.plan__list li::before {
  content: "";
  flex: none;
  width: 12px;
  height: 2px;
  margin-top: calc(0.775em - 1px);
  background: var(--accent);
}
.plans__note { margin-top: 20px; color: var(--muted); font-size: 15px; }

/* ---------- FAQ ---------- */

.faq { display: grid; gap: 0; }
@media (min-width: 960px) {
  .faq { grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
  .faq .section__head { position: sticky; top: 104px; }
}
.faq__list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  font-size: 18px;
  font-weight: 560;
  letter-spacing: -0.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 12px;
  height: 12px;
  background:
    linear-gradient(currentColor, currentColor) center / 12px 1.5px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1.5px 12px no-repeat;
  color: var(--muted);
  transition: transform 0.25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover::after { color: var(--text); }
.faq details p { padding: 0 0 24px; color: var(--muted); max-width: 44rem; }

/* ---------- CTA + footer ---------- */

.cta {
  margin-top: clamp(96px, 12vw, 160px);
  padding: clamp(72px, 10vw, 128px) 0;
  border-top: 1px solid var(--line);
  background: radial-gradient(60% 100% at 50% 100%, rgba(255, 255, 255, 0.12), transparent 70%);
}
.cta__title {
  font-size: clamp(2.4rem, 6.6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 14ch;
  margin-bottom: 36px;
}
.foot { border-top: 1px solid var(--line); }
.foot__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-block: 28px;
  font-size: 14px;
  color: var(--muted);
}
.foot a { text-decoration: none; }
.foot a:hover { color: var(--text); }

/* ==========================================================================
   Intake form (start.html) + thanks
   ========================================================================== */

.page { padding: clamp(48px, 8vw, 96px) 0 clamp(80px, 10vw, 120px); }
.page__head { max-width: 44rem; display: grid; gap: 18px; margin-bottom: 48px; }
.page__title {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 640;
}

.form { max-width: 820px; display: grid; gap: 56px; }
.fieldset { border: 0; margin: 0; padding: 0; display: grid; gap: 22px; min-width: 0; }
.fieldset > legend {
  padding: 0 0 18px;
  width: 100%;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
  font: 500 13px/1.4 var(--mono);
  letter-spacing: 0;
  color: var(--muted);
}
.row { display: grid; gap: 22px; }
@media (min-width: 720px) { .row--2 { grid-template-columns: 1fr 1fr; } }

.field { display: grid; gap: 8px; min-width: 0; }
.field > label, .group__label {
  font-weight: 560;
  font-size: 15px;
}
.req { color: var(--accent); margin-left: 2px; }
.hint { font-size: 14px; color: var(--muted); }

.input, .textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: var(--bg-2);
  color: var(--text);
  font: 400 16px/1.45 var(--sans); /* 16px avoids iOS zoom */
  transition: border-color 0.15s, box-shadow 0.15s;
}
.textarea { min-height: 116px; resize: vertical; }
.input::placeholder, .textarea::placeholder { color: var(--faint); }
.input:hover, .textarea:hover { border-color: rgba(255, 255, 255, 0.3); }
.input:focus, .textarea:focus {
  outline: none;
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}
.input[aria-invalid="true"], .textarea[aria-invalid="true"] { border-color: #ffffff; border-width: 2px; }
.err { color: #ffffff; font-size: 14px; font-weight: 600; }
.err:empty { display: none; }

.checks { display: flex; flex-wrap: wrap; gap: 10px; }
.check { position: relative; }
.check input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.check span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  font-size: 15px;
  transition: border-color 0.15s, background-color 0.15s;
  user-select: none;
}
.check span::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 1.5px solid var(--muted);
  background: transparent no-repeat center / 10px;
}
.check input:checked + span { border-color: var(--accent); background: rgba(255, 255, 255, 0.1); }
.check input:checked + span::before {
  border-color: var(--accent);
  background-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M1.5 5.2 4 7.5 8.5 2.5' fill='none' stroke='%23140803' stroke-width='1.8'/%3E%3C/svg%3E");
}
.check input:focus-visible + span { outline: 2px solid var(--focus); outline-offset: 3px; }
.check span:hover { border-color: rgba(255, 255, 255, 0.32); }

.drop {
  position: relative;
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 36px 20px;
  border-radius: var(--radius);
  border: 1.5px dashed var(--line-strong);
  background: var(--bg-2);
  text-align: center;
  transition: border-color 0.15s, background-color 0.15s;
}
.drop.is-over { border-color: var(--accent); background: rgba(255, 255, 255, 0.06); }
.drop input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.drop:focus-within { border-color: var(--focus); }
.drop__title { font-weight: 560; }
.files { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; font-size: 14px; }
.files li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.files li span:first-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.files li span:last-child { color: var(--muted); font-variant-numeric: tabular-nums; flex: none; }
.files__total { font-size: 14px; color: var(--muted); }
.files__total.is-over { color: #ffffff; font-weight: 600; }

.hp { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }

.submit { display: grid; gap: 14px; justify-items: start; }
.progress {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--line);
  overflow: hidden;
}
.progress i { display: block; height: 100%; width: 0; background: var(--accent); transition: width 0.2s linear; }
.status { font-size: 15px; color: var(--muted); min-height: 1.5em; }
.status.is-error { color: #ffffff; font-weight: 600; }

.thanks { max-width: 40rem; display: grid; gap: 20px; }
.thanks code {
  font: 500 15px/1 var(--mono);
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
}

/* ---------- Reduced motion: kill all non-essential movement ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .rec { animation: none; }
}

/* Legal pages */
.legal { max-width: 760px; padding-block: 24px 96px; }
.legal__meta { color: var(--muted, #9aa0a6); margin: -8px 0 32px; }
.legal h2 { font-size: 1.15rem; margin: 40px 0 10px; letter-spacing: -0.01em; }
.legal p, .legal li { line-height: 1.7; color: var(--text-2, #c9ccd1); }
.legal ul { padding-left: 1.2em; }
.legal a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.foot__links { display: inline-flex; gap: 18px; flex-wrap: wrap; }
