/* ════════════════════════════════════════════════════════════════════
   MO(MEN)TUM — home.css
   The hour before sunrise. Rebuilt 5 Sep 2026.
   Serves index.html only; legacy pages keep styles.css.
   ════════════════════════════════════════════════════════════════════ */

:root {
  --night:   #05060b;
  --night-2: #0b0e17;
  --night-3: #10152a;
  --bone:    #f2f0e9;
  --ash:     #98a0b3;
  --ash-2:   #6b7285;
  --gold:    #f4d03f;
  --ember:   #ff8a4c;
  --blood:   #ff4d61;
  --line:    rgba(242, 240, 233, 0.09);
  --line-2:  rgba(242, 240, 233, 0.16);
  --display: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  --body:    "Barlow Condensed", "Arial Narrow", sans-serif;
  --nav-h:   58px;
  --safe-b:  env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--night);
  color: var(--bone);
  font-family: var(--body);
  font-size: 1.1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); }

::selection { background: var(--gold); color: var(--night); }

/* ── Reveal on scroll ─────────────────────────────────────────────── */
.js .rv { opacity: 0; transform: translateY(16px); transition: opacity .65s ease, transform .65s ease; }
.js .rv.in { opacity: 1; transform: none; }
.rv2 { transition-delay: .12s; }
.rv3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .js .rv { opacity: 1; transform: none; transition: none; }
}

/* ── Primitives ───────────────────────────────────────────────────── */
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }
.wrap--narrow { max-width: 780px; }

.eyebrow {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}

.h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.5vw, 4rem);
  line-height: 0.96;
  letter-spacing: 0.012em;
  margin: 0 0 22px;
  text-wrap: balance;
}

.lead {
  font-size: 1.22rem;
  line-height: 1.62;
  color: var(--ash);
  max-width: 40em;
  margin: 0 0 18px;
}
.lead strong { color: var(--bone); font-weight: 600; }

section { padding: clamp(4.5rem, 10vw, 7.5rem) 0; position: relative; }

/* The horizon: a dawn line between worlds */
.horizon {
  border: 0;
  height: 1px;
  margin: 0;
  background: linear-gradient(90deg, transparent 5%, rgba(244, 208, 63, 0.55) 50%, transparent 95%);
  opacity: 0.55;
}

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 10px;
  padding: 0.85rem 1.7rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn--gold {
  background: var(--gold);
  color: #171203;
  box-shadow: 0 6px 28px rgba(244, 208, 63, 0.22);
}
.btn--gold:hover { transform: translateY(-1px); box-shadow: 0 10px 34px rgba(244, 208, 63, 0.3); }
.btn--ghost {
  background: transparent;
  color: var(--bone);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--big { padding: 1.05rem 2.1rem; font-size: 1.1rem; }
.btn--small { padding: 0.55rem 1.1rem; font-size: 0.9rem; }

.cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

.trust-line {
  font-size: 0.95rem;
  color: var(--ash-2);
  margin-top: 1.1rem;
}
.trust-line a { color: var(--ash); }

/* ── Nav ──────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0 clamp(16px, 3vw, 30px);
  background: rgba(5, 6, 11, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-logo {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
  margin-right: auto;
  white-space: nowrap;
}
.nav-links { display: flex; gap: 1.3rem; align-items: center; }
.nav-links a {
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  transition: color .15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--bone); }
.nav-cta { white-space: nowrap; }
.nav-burger {
  display: none;
  background: none;
  border: 0;
  width: 42px; height: 42px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 8px;
}
.nav-burger span { display: block; height: 2px; background: var(--bone); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-sheet {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(5, 6, 11, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.nav-sheet.open { opacity: 1; pointer-events: auto; }
.nav-sheet nav { display: flex; flex-direction: column; gap: 1.4rem; text-align: center; }
.nav-sheet a {
  font-family: var(--display);
  font-size: 2.1rem;
  letter-spacing: 0.05em;
  color: var(--bone);
  text-decoration: none;
}
.nav-sheet a:hover { color: var(--gold); }
.nav-sheet a.sheet-cta { color: var(--gold); }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* ── Hero ─────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 3rem) 0 4.5rem;
  position: relative;
  overflow: hidden;
}
/* the sunrise, held just below the horizon */
.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -42vh;
  width: 140vw;
  height: 80vh;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center,
    rgba(244, 208, 63, 0.20) 0%,
    rgba(255, 138, 76, 0.10) 34%,
    rgba(255, 77, 97, 0.045) 55%,
    transparent 72%);
  pointer-events: none;
  animation: dawn 2.4s ease-out both;
}
/* faint stars above */
.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 50% 0;
  background-image:
    radial-gradient(1px 1px at 12% 22%, rgba(242,240,233,.5) 50%, transparent 51%),
    radial-gradient(1px 1px at 34% 9%,  rgba(242,240,233,.35) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 58% 18%, rgba(242,240,233,.4) 50%, transparent 51%),
    radial-gradient(1px 1px at 76% 6%,  rgba(242,240,233,.3) 50%, transparent 51%),
    radial-gradient(1px 1px at 88% 26%, rgba(242,240,233,.45) 50%, transparent 51%),
    radial-gradient(1px 1px at 22% 38%, rgba(242,240,233,.25) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 68% 33%, rgba(242,240,233,.3) 50%, transparent 51%);
  pointer-events: none;
  opacity: .8;
}
@keyframes dawn { from { opacity: 0; transform: translateX(-50%) translateY(9vh); } to { opacity: 1; transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .hero::before { animation: none; } }

.hero-inner { position: relative; z-index: 1; text-align: center; }

.hero-eyebrow {
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
}

.hero-h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3.4rem, 11vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0.008em;
  margin: 0 auto 26px;
  max-width: 11em;
  text-wrap: balance;
}
.hero-h1 .sunline { color: var(--gold); }

.hero-sub {
  font-size: clamp(1.15rem, 2.6vw, 1.4rem);
  line-height: 1.55;
  color: var(--ash);
  max-width: 36em;
  margin: 0 auto 30px;
}
.hero-sub strong { color: var(--bone); font-weight: 600; }

/* the clock that never stops mattering */
.clock {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  margin: 0 0 34px;
  padding: 16px 28px;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  background: rgba(11, 14, 23, 0.6);
}
.clock-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash-2);
}
.clock-time {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  line-height: 1;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
}
.clock-time .colon { animation: blink 2s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0.25; } }
@media (prefers-reduced-motion: reduce) { .clock-time .colon { animation: none; } }
.clock-note { font-size: 0.85rem; color: var(--ash-2); letter-spacing: 0.08em; }

.hero-ctas { justify-content: center; }

/* ── The problem ──────────────────────────────────────────────────── */
.problem { background: var(--night-2); }
.problem-num {
  font-family: var(--display);
  font-size: clamp(7rem, 24vw, 15rem);
  line-height: 0.85;
  color: var(--blood);
  margin: 0;
  letter-spacing: 0.01em;
}
.problem-num-label {
  font-family: var(--display);
  font-size: clamp(1.6rem, 4.6vw, 2.6rem);
  line-height: 1.05;
  margin: 0.4rem 0 1.8rem;
  color: var(--bone);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin: 2.2rem 0 1.4rem;
}
.problem-cell { background: var(--night-2); padding: 1.3rem 1.2rem; }
.problem-cell b {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--bone);
  margin-bottom: 0.35rem;
}
.problem-cell span { font-size: 0.98rem; color: var(--ash); line-height: 1.4; display: block; }
.problem-src { font-size: 0.85rem; color: var(--ash-2); letter-spacing: 0.06em; }
@media (max-width: 640px) { .problem-grid { grid-template-columns: 1fr; } }

/* ── The story ────────────────────────────────────────────────────── */
.story-quote {
  font-family: var(--display);
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  line-height: 1.02;
  color: var(--bone);
  margin: 0 0 0.6rem;
  text-wrap: balance;
}
.story-quote .q { color: var(--gold); }
.story-attr {
  font-size: 1rem;
  color: var(--ash-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 2.6rem;
}
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 3rem;
  align-items: center;
}
.story-text p { margin: 0 0 1.15rem; font-size: 1.14rem; line-height: 1.66; color: var(--ash); }
.story-text p strong, .story-text p b { color: var(--bone); }
.story-photo {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.story-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 780px) {
  .story-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .story-photo { max-height: 380px; }
}

/* ── The morning (the daily promise) ──────────────────────────────── */
.morning { background: var(--night-2); }
.morning-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 2.4rem;
}
.slot {
  position: relative;
  background: var(--night-3);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.6rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.slot--live {
  border-color: rgba(244, 208, 63, 0.5);
  background: linear-gradient(165deg, rgba(244, 208, 63, 0.08), var(--night-3) 60%);
}
.slot-time {
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}
.slot-name {
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  margin: 0;
  color: var(--bone);
}
.slot-desc { font-size: 1rem; color: var(--ash); line-height: 1.5; margin: 0; }
.slot-chip {
  align-self: flex-start;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(244, 208, 63, 0.45);
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
}
.slot-links { margin-top: auto; padding-top: 0.7rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
@media (max-width: 960px) { .morning-rail { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .morning-rail { grid-template-columns: 1fr; } }

/* ── Subscribe ────────────────────────────────────────────────────── */
.mail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.6rem;
  align-items: start;
  margin-top: 2.2rem;
}
.latest {
  background: var(--night-3);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.6rem;
  min-height: 200px;
}
.latest-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.7rem;
}
.latest-title {
  font-family: var(--display);
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  margin: 0 0 0.6rem;
  color: var(--bone);
}
.latest-body { color: var(--ash); font-size: 1.02rem; line-height: 1.6; margin: 0 0 1rem; white-space: pre-line; }
.latest-date { font-size: 0.85rem; color: var(--ash-2); letter-spacing: 0.06em; }
.latest a { font-weight: 600; }

.mail-form { display: flex; flex-direction: column; gap: 0.8rem; }
.mail-input {
  width: 100%;
  background: var(--night-3);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  color: var(--bone);
  font-family: var(--body);
  font-size: 1.1rem;
  padding: 0.95rem 1.1rem;
}
.mail-input:focus { outline: none; border-color: var(--gold); }
.mail-input::placeholder { color: var(--ash-2); }
.mail-note { font-size: 0.9rem; color: var(--ash-2); margin: 0.2rem 0 0; }
.mail-msg { font-size: 1rem; margin: 0.4rem 0 0; min-height: 1.4em; }
.mail-msg.ok { color: var(--gold); }
.mail-msg.err { color: var(--blood); }
.mail-platforms { display: flex; gap: 0.6rem; margin-top: 1.1rem; flex-wrap: wrap; }
.mail-archive { display: inline-block; margin-top: 1rem; font-size: 0.98rem; }
@media (max-width: 780px) { .mail-grid { grid-template-columns: 1fr; gap: 1.6rem; } }

/* ── The book ─────────────────────────────────────────────────────── */
.book { background: var(--night-2); }
.book-grid {
  display: grid;
  grid-template-columns: 265px minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}
.cover {
  width: 250px;
  aspect-ratio: 5 / 7.6;
  background: linear-gradient(160deg, #10152a, #05060b 70%);
  border: 1px solid rgba(244, 208, 63, 0.55);
  border-radius: 5px 14px 14px 5px;
  box-shadow: 16px 20px 48px rgba(0, 0, 0, 0.55), inset 5px 0 0 rgba(244, 208, 63, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  transform: rotate(-2deg);
}
.cover-inner { display: flex; flex-direction: column; gap: 1.1rem; text-align: center; }
.cover-title { font-family: var(--display); font-size: 2.3rem; line-height: 1; letter-spacing: 0.06em; color: var(--gold); }
.cover-sub { color: var(--ash); font-size: 0.93rem; line-height: 1.45; }
.cover-author { color: var(--bone); font-size: 0.9rem; letter-spacing: 0.16em; text-transform: uppercase; }
.book-text p { margin: 0 0 1.15rem; font-size: 1.14rem; line-height: 1.66; color: var(--ash); }
.book-text p strong { color: var(--bone); }
@media (max-width: 780px) {
  .book-grid { grid-template-columns: 1fr; }
  .cover { margin: 0 auto 0.6rem; transform: none; }
}

/* ── The OS ───────────────────────────────────────────────────────── */
.os { text-align: center; }
.os .lead { margin-left: auto; margin-right: auto; }
.os-demo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.9rem;
  background: var(--night-3);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 1.1rem 1.8rem;
  margin: 1.6rem 0 2rem;
  font-variant-numeric: tabular-nums;
}
.os-word { font-family: var(--display); font-size: 2rem; color: var(--bone); letter-spacing: 0.04em; min-width: 5.5ch; text-align: right; }
.os-arrow { color: var(--gold); font-size: 1.4rem; }
.os-mean { font-size: 1.25rem; color: var(--gold); min-width: 11ch; text-align: left; }
.os-demo.fade .os-word, .os-demo.fade .os-mean { opacity: 0.15; transition: opacity .25s ease; }
.os-demo .os-word, .os-demo .os-mean { transition: opacity .25s ease; }

/* ── Receipts ─────────────────────────────────────────────────────── */
.receipts { background: var(--night-2); }
.feats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  margin: 2.2rem 0;
}
.feat {
  background: var(--night-3);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.35rem 1.2rem;
}
.feat b {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}
.feat span { font-size: 0.98rem; color: var(--ash); line-height: 1.45; display: block; }
@media (max-width: 900px) { .feats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .feats { grid-template-columns: 1fr; } }

.strava-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem 1.5rem;
  margin: 0 0 2rem;
  background: var(--night-3);
}
.strava-strip[hidden] { display: none; }
.strava-label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash-2); }
.strava-stat b { font-family: var(--display); font-weight: 400; font-size: 1.7rem; color: var(--bone); margin-right: 0.35rem; }
.strava-stat span { font-size: 0.92rem; color: var(--ash); }
.strava-strip .btn { margin-left: auto; }
@media (max-width: 640px) { .strava-strip .btn { margin-left: 0; } }

.charities-label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash-2); margin: 0 0 1rem; }
.charities { display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: center; }
.charities img {
  height: 44px; width: auto;
  border-radius: 6px;
  filter: grayscale(1) brightness(1.5) contrast(0.85);
  opacity: 0.55;
  transition: filter .2s ease, opacity .2s ease;
}
.charities img:hover { filter: none; opacity: 1; }

/* ── Podcast ──────────────────────────────────────────────────────── */
.pods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin: 2rem 0;
}
.pods iframe { width: 100%; height: 220px; border: 0; border-radius: 12px; background: var(--night-3); }
.pod-spotify iframe { width: 100%; height: 232px; border: 0; border-radius: 12px; }
.pod-spotify { margin: 2rem 0 0.4rem; }
@media (max-width: 860px) { .pods { grid-template-columns: 1fr; } .pods iframe { height: 240px; } }

.pod-invite { margin-top: 2.4rem; }
.pod-invite p { color: var(--ash); margin: 0 0 0.9rem; font-size: 1.05rem; }

/* ── Modal (podcast forms) ────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(5, 6, 11, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal[hidden] { display: none; }
.modal-card {
  background: var(--night-2);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  width: min(560px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  padding: 1.8rem;
  position: relative;
}
.modal-x {
  position: absolute;
  top: 12px; right: 14px;
  background: none; border: 0;
  color: var(--ash);
  font-size: 1.7rem;
  cursor: pointer;
  line-height: 1;
  padding: 6px;
}
.modal-tabs { display: flex; gap: 0.6rem; margin-bottom: 1.3rem; }
.modal-tab {
  flex: 1;
  background: var(--night-3);
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--ash);
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem;
  cursor: pointer;
}
.modal-tab.on { border-color: var(--gold); color: var(--gold); }
.modal form { display: flex; flex-direction: column; gap: 0.7rem; }
.modal input, .modal textarea {
  background: var(--night-3);
  border: 1px solid var(--line-2);
  border-radius: 9px;
  color: var(--bone);
  font-family: var(--body);
  font-size: 1.02rem;
  padding: 0.8rem 1rem;
}
.modal textarea { min-height: 92px; resize: vertical; }
.modal input:focus, .modal textarea:focus { outline: none; border-color: var(--gold); }
.modal-done {
  text-align: center;
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--gold);
  padding: 2.5rem 1rem;
}

/* ── Footer ───────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  padding: 3.4rem 0 calc(2.4rem + var(--safe-b));
  background: var(--night-2);
}
.crisis {
  border: 1px solid rgba(255, 77, 97, 0.4);
  background: rgba(255, 77, 97, 0.06);
  border-radius: 14px;
  padding: 1.5rem 1.6rem;
  margin-bottom: 2.4rem;
}
.crisis h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.7rem;
  color: var(--bone);
}
.crisis p { margin: 0.25rem 0; color: var(--ash); font-size: 1.04rem; }
.crisis strong { color: var(--bone); }

.footer-links { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-bottom: 1.4rem; }
.footer-links a {
  color: var(--ash);
  text-decoration: none;
  font-size: 0.98rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.footer-links a:hover { color: var(--gold); }
.footer-legal { color: var(--ash-2); font-size: 0.92rem; margin: 0 0 0.3rem; }
.footer-credit { color: var(--ash-2); font-size: 0.92rem; margin: 0; }
.footer-credit .dawn { color: var(--gold); }

/* ── No catch ─────────────────────────────────────────────────────── */
.nocatch { text-align: center; }
.nocatch .wrap { display: flex; flex-direction: column; align-items: center; }
.nocatch-lead {
  font-size: 1.2rem;
  line-height: 1.62;
  color: var(--ash);
  max-width: 34em;
  margin: 0 0 18px;
}
.nocatch-lead strong { color: var(--bone); font-weight: 600; }
.nocatch-punch {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.7rem, 4.6vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--gold);
  margin: 0.6rem 0 0;
  text-wrap: balance;
}
