/* DadFM / RADIO shared site styles — one design system across every page.
   Palette matches the Android app's dark red/crimson/blood theme. */

:root {
  --bg: #0D0405;
  --bg-raised: #170808;
  --crimson: #E23744;
  --crimson-deep: #4A0E14;
  --coral: #FF7A6E;
  --amber: #FFB84D;
  --silver: #D9C4C2;
  --silver-bright: #F2E3E1;
  --white: #FBF3F2;
  --muted: #B08683;
  --line: rgba(242, 227, 225, 0.14);
  --mono: ui-monospace, 'SF Mono', 'Cascadia Code', Menlo, Consolas, monospace;
  --sans: -apple-system, 'Segoe UI', Roboto, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ---------- Atmosphere (behind everything, every page) ---------- */
.field {
  position: fixed;
  inset: -15%;
  z-index: -3;
  background:
    radial-gradient(38% 32% at 18% 22%, rgba(226, 55, 68, 0.40), transparent 62%),
    radial-gradient(34% 30% at 82% 16%, rgba(255, 122, 110, 0.28), transparent 60%),
    radial-gradient(46% 42% at 74% 82%, rgba(242, 227, 225, 0.12), transparent 65%),
    radial-gradient(32% 32% at 12% 84%, rgba(74, 14, 20, 0.55), transparent 60%),
    var(--bg);
  filter: blur(60px) saturate(130%);
  animation: drift 24s ease-in-out infinite alternate;
}
.grain {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.5;
  background-image: repeating-radial-gradient(circle at 0 0, rgba(255,255,255,0.035) 0, transparent 1px 3px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}
@keyframes drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(-3%, 2%, 0) scale(1.04); }
}
@media (prefers-reduced-motion: reduce) { .field { animation: none; } }

.sparkles { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.sparkles span {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--silver-bright);
  box-shadow: 0 0 6px 1px rgba(255,122,110,0.8);
  opacity: 0;
  animation: twinkle 5s ease-in-out infinite;
}
.sparkles span:nth-child(1)  { left: 8%;  top: 22%; animation-delay: 0.2s;  animation-duration: 4.5s; }
.sparkles span:nth-child(2)  { left: 18%; top: 68%; animation-delay: 1.4s;  animation-duration: 5.2s; }
.sparkles span:nth-child(3)  { left: 27%; top: 40%; animation-delay: 2.6s;  animation-duration: 4.8s; }
.sparkles span:nth-child(4)  { left: 40%; top: 78%; animation-delay: 0.8s;  animation-duration: 6s;   }
.sparkles span:nth-child(5)  { left: 62%; top: 18%; animation-delay: 3.1s;  animation-duration: 5s;   }
.sparkles span:nth-child(6)  { left: 74%; top: 55%; animation-delay: 1.9s;  animation-duration: 4.6s; }
.sparkles span:nth-child(7)  { left: 83%; top: 28%; animation-delay: 0.5s;  animation-duration: 5.6s; }
.sparkles span:nth-child(8)  { left: 91%; top: 70%; animation-delay: 2.2s;  animation-duration: 4.9s; }
.sparkles span:nth-child(9)  { left: 52%; top: 34%; animation-delay: 3.6s;  animation-duration: 5.4s; }
.sparkles span:nth-child(10) { left: 33%; top: 12%; animation-delay: 1.1s;  animation-duration: 5.8s; }
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.8); }
  50%      { opacity: 1; transform: translateY(-14px) scale(1.3); }
}
@media (prefers-reduced-motion: reduce) { .sparkles span { animation: none; opacity: 0.5; } }

/* padding-left/right only, deliberately not the `padding` shorthand — every
   <section> on every page also carries this class, and since a class
   selector always outranks the bare `section` type selector regardless of
   source order, a shorthand here would silently zero out section's own
   top/bottom padding site-wide. (That's exactly what happened before this
   comment existed — every section-to-section gap collapsed to 0.) */
.wrap { max-width: 880px; margin: 0 auto; padding-left: 28px; padding-right: 28px; position: relative; z-index: 1; }
.wrap-narrow { max-width: 720px; margin: 0 auto; padding-left: 28px; padding-right: 28px; position: relative; z-index: 1; }

a { color: inherit; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; }

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(13, 4, 5, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-nav .bar {
  max-width: 880px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-nav .logo {
  font-family: var(--mono);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.site-nav .logo .led {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--crimson);
  box-shadow: 0 0 8px var(--crimson), 0 0 16px rgba(226,55,68,0.7);
  animation: pulse 2.4s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .site-nav .logo .led { animation: none; } }
.site-nav .links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav .links a {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--silver);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color .2s ease, background .2s ease;
}
.site-nav .links a:hover { color: var(--white); background: rgba(226,55,68,0.12); }
.site-nav .links a[aria-current="page"] { color: var(--coral); }
.site-nav .toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  width: 38px; height: 38px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.site-nav .toggle svg { width: 18px; height: 18px; }

@media (max-width: 640px) {
  .site-nav .toggle { display: flex; }
  .site-nav .links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(13, 4, 5, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 8px 16px 16px;
    gap: 2px;
    display: none;
  }
  .site-nav .links.is-open { display: flex; }
  .site-nav .links a { padding: 12px 8px; }
}

/* ---------- ON AIR neon badge ---------- */
.on-air {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(226,55,68,0.5);
  color: var(--coral);
  text-shadow: 0 0 8px rgba(226,55,68,0.9), 0 0 18px rgba(226,55,68,0.5);
  animation: neonFlicker 4.5s ease-in-out infinite;
}
.on-air .bulb {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--crimson);
  box-shadow: 0 0 8px var(--crimson), 0 0 16px rgba(226,55,68,0.8);
}
@keyframes neonFlicker {
  0%, 3%, 6%, 100% { opacity: 1; }
  4% { opacity: 0.4; }
  5% { opacity: 0.85; }
  62% { opacity: 1; }
  63% { opacity: 0.5; }
  64% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .on-air { animation: none; } }

/* ---------- Entrance choreography ---------- */
@media (prefers-reduced-motion: no-preference) {
  .rise { animation: riseIn 0.9s cubic-bezier(.2,.8,.2,1) both; }
  .rise-1 { animation-delay: 0.05s; }
  .rise-2 { animation-delay: 0.22s; }
  .rise-3 { animation-delay: 0.4s; }
  .rise-4 { animation-delay: 0.56s; }
  .rise-5 { animation-delay: 0.72s; }
  .rise-6 { animation-delay: 0.88s; }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Scroll reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s ease, transform .9s ease; }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }
}

/* ---------- Page hero (shared skeleton, sized down from the main page's) ---------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 28px 60px;
}
.hero.hero-tall { min-height: 90vh; }
.hero.hero-short { padding: 64px 28px 48px; }

.hero-logo {
  width: clamp(120px, 9vw + 90px, 190px);
  height: auto;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 28px rgba(226,55,68,0.55)) drop-shadow(0 0 56px rgba(255,122,110,0.28));
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 10px var(--coral), 0 0 22px rgba(255,122,110,0.6);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}
@media (prefers-reduced-motion: reduce) { .dot { animation: none; } }

.wordmark {
  margin: 22px 0 0;
  font-weight: 850;
  font-size: clamp(3.2rem, 2.4rem + 6vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  background: linear-gradient(105deg,
    var(--silver-bright) 0%, var(--coral) 18%, var(--crimson) 36%,
    var(--white) 52%, var(--coral) 68%, var(--silver-bright) 86%, var(--crimson) 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 7s ease-in-out infinite;
  text-wrap: balance;
}
.wordmark.wordmark-lg { font-size: clamp(4.2rem, 3rem + 8vw, 9.5rem); }
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) { .wordmark { animation: none; background-position: 30% 50%; } }

.tagline {
  margin-top: 6px;
  font-size: clamp(1.05rem, 0.9rem + 0.6vw, 1.35rem);
  color: var(--silver);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.lede {
  margin: 30px auto 0;
  max-width: 56ch;
  font-size: 1.1rem;
  color: var(--muted);
}

.address {
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.address b { color: var(--coral); font-weight: 600; }

/* ---------- Section shared ---------- */
section { padding: 64px 0; position: relative; }
.eyebrow-sm {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
}
h2.headline {
  margin: 10px 0 0;
  font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.centered { text-align: center; }
.centered .headline { margin: 10px auto 0; max-width: 26ch; }
p.body {
  max-width: 60ch;
  margin: 20px auto 0;
  font-size: 1.08rem;
  color: var(--muted);
}
.centered p.body { margin-left: auto; margin-right: auto; }

/* ---------- Signal path (step list) ---------- */
.path-head { text-align: center; margin-bottom: 44px; }
.path-head .headline { max-width: 22ch; margin-left: auto; margin-right: auto; }
.path { position: relative; padding-left: 62px; max-width: 600px; margin: 0 auto; }
.path::before {
  content: "";
  position: absolute;
  left: 23px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--crimson-deep), var(--coral), var(--crimson-deep));
  opacity: 0.5;
}
.path .pulse {
  position: absolute;
  left: 19px; width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 14px 2px rgba(255,122,110,0.8);
  animation: travel 7s ease-in-out infinite;
}
@keyframes travel {
  0%   { top: 0%;   opacity: 0; }
  6%   { opacity: 1; }
  46%  { opacity: 1; }
  50%  { top: 100%; opacity: 0; }
  50.01% { top: 0%; }
  100% { top: 0%; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .path .pulse { animation: none; opacity: 0; } }

.path-step { position: relative; padding: 0 0 42px; }
.path-step:last-child { padding-bottom: 4px; }
.path-step .badge {
  position: absolute;
  left: -62px; top: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: rgba(226, 55, 68, 0.12);
}
.path-step .badge::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  padding: 1px;
  background: conic-gradient(from 45deg, var(--coral), var(--silver-bright), var(--crimson));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.path-step h3 { margin: 2px 0 6px; font-size: 1.15rem; font-weight: 700; color: var(--white); }
.path-step p { margin: 0; font-size: 15px; color: var(--muted); max-width: 46ch; }

/* ---------- Card grid ---------- */
.grid { margin-top: 46px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid.grid-3 { grid-template-columns: repeat(3, 1fr); }
/* auto-fit rather than a hardcoded repeat(4, ...) — index.html's card count
   has grown past 4 (Podcasts joined Station/Cast/Player/R.A.D.I.O.), and
   this reflows cleanly at any count instead of leaving an odd, mostly-empty
   trailing row. */
.grid.grid-4 { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.card {
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(155deg, rgba(242,227,225,0.55), rgba(226,55,68,0.35) 40%, rgba(255,122,110,0.5) 70%, rgba(242,227,225,0.25));
  transition: transform .35s ease;
}
.card:hover { transform: translateY(-4px); }
.card-inner {
  position: relative;
  border-radius: 19px;
  height: 100%;
  padding: 26px 26px 28px;
  background: rgba(20, 7, 8, 0.75);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  overflow: hidden;
}
.card-inner::before {
  content: "";
  position: absolute;
  top: -60%; left: -30%;
  width: 60%; height: 220%;
  background: linear-gradient(100deg, transparent, rgba(255,122,110,0.28), transparent);
  transform: translateX(-120%) rotate(8deg);
  transition: transform .8s ease;
  pointer-events: none;
}
.card:hover .card-inner::before { transform: translateX(220%) rotate(8deg); }
.card .mark {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  position: relative;
}
.card h3 { margin: 12px 0 8px; font-size: 1.2rem; font-weight: 700; color: var(--white); position: relative; }
.card p { margin: 0; font-size: 14.5px; color: var(--muted); position: relative; }
.card .status-pill {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  position: relative;
}
.card .status-pill.live { color: var(--coral); border: 1px solid rgba(255,122,110,0.5); }
.card .status-pill.soon { color: var(--muted); border: 1px solid var(--line); }

/* ---------- Screenshots (placeholder frames — swap the <img> src per page) ---------- */
.screenshot-row { margin-top: 46px; display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.screenshot-frame {
  width: 220px;
  border-radius: 26px;
  padding: 10px;
  background: linear-gradient(155deg, rgba(242,227,225,0.55), rgba(226,55,68,0.35) 40%, rgba(255,122,110,0.5) 70%, rgba(242,227,225,0.25));
}
.screenshot-frame .screenshot-inner {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(20, 7, 8, 0.75);
  aspect-ratio: 9 / 19.5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.screenshot-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.screenshot-frame .screenshot-placeholder {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding: 0 16px;
}
.screenshot-caption {
  margin: 10px 0 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--muted);
}

/* ---------- Cast bios (expandable — native <details>, no JS needed) ---------- */
.bio-list { margin-top: 28px; display: grid; gap: 12px; }
.bio-card {
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(155deg, rgba(242,227,225,0.55), rgba(226,55,68,0.35) 40%, rgba(255,122,110,0.5) 70%, rgba(242,227,225,0.25));
}
.bio-card > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 19px;
  padding: 18px 22px;
  background: rgba(20, 7, 8, 0.75);
}
.bio-card > summary::-webkit-details-marker { display: none; }
.bio-card[open] > summary { border-radius: 19px 19px 0 0; }
.bio-card .bio-heading { flex: 1; min-width: 0; }
.bio-card .bio-name { display: block; font-size: 1.05rem; font-weight: 700; color: var(--white); }
.bio-card .bio-teaser {
  display: block;
  margin-top: 3px;
  font-size: 13.5px;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bio-card[open] .bio-teaser { display: none; }
.bio-card .bio-toggle {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 15px;
  color: var(--coral);
  transition: transform .2s ease;
}
.bio-card[open] .bio-toggle { transform: rotate(45deg); }
.bio-card .bio-full { padding: 0 22px 22px; background: rgba(20, 7, 8, 0.75); border-radius: 0 0 19px 19px; }
.bio-card .bio-full p { margin: 0; font-size: 14.5px; line-height: 1.65; color: var(--silver); }

/* ---------- Personal note ---------- */
.note-wrap { display: flex; justify-content: center; }
.note {
  max-width: 640px;
  padding: 34px 36px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(226,55,68,0.10), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  position: relative;
}
.note::before {
  content: "";
  position: absolute; left: 0; top: 14px; bottom: 14px; width: 2px;
  background: linear-gradient(var(--coral), transparent 85%);
  border-radius: 2px;
}
.note p {
  margin: 0;
  font-size: 1.08rem;
  color: var(--silver-bright);
  font-style: italic;
  line-height: 1.7;
}
.note .sign {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.values { margin-top: 30px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.value-chip {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--silver);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

/* ---------- FAQ ---------- */
.faq { max-width: 640px; margin: 40px auto 0; display: grid; gap: 12px; }
details {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  padding: 4px 20px;
}
summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  font-weight: 650;
  font-size: 1rem;
  color: var(--white);
}
summary::-webkit-details-marker { display: none; }
summary .plus {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  color: var(--coral);
  transition: transform .3s ease;
}
details[open] summary .plus { transform: rotate(135deg); }
details p { margin: 0 0 18px; color: var(--muted); font-size: 14.5px; max-width: 54ch; }

/* ---------- Equalizer ---------- */
.eq { display: flex; align-items: flex-end; justify-content: center; gap: 5px; height: 40px; margin: 0 auto 26px; }
.eq span {
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(var(--coral), var(--crimson));
  animation: eq ease-in-out infinite;
}
.eq span:nth-child(1)  { animation-duration: 1.1s; animation-delay: -0.9s; }
.eq span:nth-child(2)  { animation-duration: 0.9s; animation-delay: -0.2s; }
.eq span:nth-child(3)  { animation-duration: 1.3s; animation-delay: -1.1s; }
.eq span:nth-child(4)  { animation-duration: 0.8s; animation-delay: -0.5s; }
.eq span:nth-child(5)  { animation-duration: 1.2s; animation-delay: -0.1s; }
.eq span:nth-child(6)  { animation-duration: 1.0s; animation-delay: -0.8s; }
.eq span:nth-child(7)  { animation-duration: 1.4s; animation-delay: -0.3s; }
.eq span:nth-child(8)  { animation-duration: 0.95s; animation-delay: -1.0s; }
.eq span:nth-child(9)  { animation-duration: 1.15s; animation-delay: -0.6s; }
.eq span:nth-child(10) { animation-duration: 1.05s; animation-delay: -0.15s; }
@keyframes eq { 0%, 100% { height: 6px; } 50% { height: 36px; } }
@media (prefers-reduced-motion: reduce) {
  .eq span { animation: none; }
  .eq span:nth-child(odd) { height: 26px; }
  .eq span:nth-child(even) { height: 14px; }
}

/* ---------- Dial (interactive-feeling frequency strip, main page) ---------- */
.dial {
  margin: 40px auto 0;
  max-width: 420px;
  position: relative;
}
.dial-strip {
  height: 46px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(90deg, rgba(242,227,225,0.18) 0 1px, transparent 1px 14px),
    rgba(255,255,255,0.02);
  position: relative;
  overflow: hidden;
}
.dial-needle {
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--crimson);
  box-shadow: 0 0 10px var(--crimson), 0 0 20px rgba(226,55,68,0.7);
  left: 8%;
  animation: tuneIn 2.6s cubic-bezier(.2,.9,.15,1) both;
  animation-delay: .5s;
}
@keyframes tuneIn {
  0%   { left: 4%; }
  55%  { left: 91%; }
  75%  { left: 60%; }
  100% { left: 68.5%; }
}
@media (prefers-reduced-motion: reduce) { .dial-needle { animation: none; left: 68.5%; } }
.dial-readout {
  margin-top: 10px;
  text-align: center;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.dial-readout b { color: var(--coral); }

/* ---------- Legal pages ---------- */
.legal { max-width: 720px; margin: 0 auto; padding: 48px 28px 90px; }
.legal h2 { margin-top: 44px; font-size: 1.35rem; color: var(--white); }
.legal h2:first-of-type { margin-top: 28px; }
.legal p, .legal li { color: var(--muted); font-size: 1rem; }
.legal ul { padding-left: 22px; }
.legal .updated {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
}

/* ---------- Footer ---------- */
footer { padding: 60px 0 50px; text-align: center; border-top: 1px solid var(--line); margin-top: 20px; }
footer .brand { font-family: var(--mono); font-size: 13px; letter-spacing: 0.1em; color: var(--silver); }
footer .brand b { color: var(--coral); }
footer .fine { margin-top: 10px; font-size: 12.5px; color: var(--muted); }
footer .legal-links { margin-top: 18px; display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
footer .legal-links a {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
}
footer .legal-links a:hover { color: var(--coral); }

@media (max-width: 900px) {
  .grid.grid-3, .grid.grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid, .grid.grid-3, .grid.grid-4 { grid-template-columns: 1fr; }
  .hero.hero-tall { min-height: unset; padding-top: 64px; }
  .path { padding-left: 54px; }
  .path-step .badge { left: -54px; width: 40px; height: 40px; }
  .bio-card .bio-teaser { white-space: normal; }
}
