:root {
  --studio: #14100E;
  --panel: #1E1815;
  --panel-2: #26201C;
  --paper: #F4EFE9;
  --dim: #A89F96;
  --line: #332B26;
  --rec: #FF6A00;
  --vu: #FFB13D;
  --rightback: #E6202C;
  --font-display: "League Gothic", sans-serif;
  --font-body: "Switzer", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --section-pad: 96px;
  --nav-h: 76px;
  --radius: 10px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--paper);
  background: var(--studio);
  line-height: 1.65;
  font-size: 16px;
  position: relative;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 12% 8%, rgba(255, 106, 0, 0.14), transparent 55%),
    radial-gradient(ellipse 55% 45% at 88% 18%, rgba(255, 177, 61, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 50% at 70% 92%, rgba(255, 106, 0, 0.06), transparent 55%),
    var(--studio);
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
}

h3 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.25;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  height: 48px;
  padding: 0 30px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 3px solid var(--rec);
  outline-offset: 3px;
}

.btn-rec {
  background: var(--rec);
  color: #fff;
}

.btn-rec:hover {
  background: #E05E00;
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: #4A403A;
}

.btn-ghost:hover {
  border-color: var(--paper);
}

.btn-sm {
  height: 40px;
  padding: 0 20px;
  font-size: 12px;
}

.btn-nav {
  height: 40px;
  padding: 0 20px;
  font-size: 12px;
}

.rec-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Logo mark */
.logo {
  --logo-h: calc(30px + 8px + 4px); /* font-size + padding + border */
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-mic {
  height: var(--logo-h);
  width: auto;
  aspect-ratio: 500 / 476;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  border-radius: 0;
  transform: scaleX(-1);
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px 4px;
  background: #000;
  border: 2px solid #FFC56A;
  border-radius: 5px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow:
    0 0 1px #FFE8B0,
    0 0 1px #FF9B02,
    0 0 1px rgba(255, 155, 2, 0.8),
    0 0 1px rgba(255, 155, 2, 0.45),
    inset 0 0 3px rgba(255, 155, 2, 0.35);
}

.logo-mark > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.logo-mark > span:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 2px;
  background: #FF9B02;
  flex-shrink: 0;
}

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
}

.nav {
  background: rgba(20, 16, 14, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a:not(.btn) {
  color: var(--dim);
}

.nav-links a:not(.btn):hover {
  color: var(--paper);
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--paper);
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  background: var(--studio);
  border-bottom: 1px solid var(--line);
  padding: clamp(56px, 8vw, 100px) 0;
  min-height: calc(100vh - var(--nav-h));
  box-sizing: border-box;
  overflow: visible;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  flex: 1;
  width: 100%;
  overflow: visible;
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding-right: clamp(24px, 4vw, 48px);
}

.hero-copy > * {
  animation: rise-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.18s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.3s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.42s; }

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-kicker {
  color: var(--rec);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero h1 {
  font-size: clamp(52px, 6vw, 90px);
  line-height: 0.95;
  text-align: left;
  color: var(--paper);
  margin: 0 0 24px;
}

.hero-lede {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--dim);
  margin: 0 0 36px;
}

.hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  min-height: 0;
  overflow: hidden;
}

.hero-collage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-shot {
  position: absolute;
  margin: 0;
  z-index: 1;
}

.hero-shot--main {
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-shot-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  border: none;
  background: var(--panel);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.45);
}

.hero-shot-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(transparent 60%, rgba(0, 0, 0, 0.55));
}

.hero-shot--main img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

/* Sections */
.section {
  padding: var(--section-pad) 0;
}

.section-alt {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
  gap: 12px;
}

.section-head .mono {
  color: var(--rec);
  display: block;
  margin-bottom: 8px;
}

.section-head h2 {
  font-size: clamp(34px, 4.6vw, 56px);
}

.section-head-row {
  flex-direction: row;
  align-items: end;
  justify-content: space-between;
  text-align: left;
  width: 100%;
}

.section-head-row > div {
  text-align: left;
  align-items: flex-start;
}

.section-head-row .mono {
  text-align: left;
}

/* Featured episode */
.featured {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.featured-art {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--panel-2);
}

.featured-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9);
  transition: transform 0.7s ease;
}

.featured:hover .featured-art img {
  transform: scale(1.05);
}

.ep-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--rec);
  padding: 8px 12px;
  border-radius: var(--radius);
}

.featured-body {
  text-align: left;
}

.featured-guest {
  color: var(--rec);
  display: block;
  margin-bottom: 14px;
}

.featured-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 42px);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  text-align: left;
}

.featured-body > p {
  color: var(--dim);
  font-size: 17px;
  max-width: 42ch;
  margin-bottom: 28px;
}

.featured-play {
  display: flex;
  align-items: center;
  gap: 18px;
}

.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--rec);
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.45);
  animation: play-pulse 2.4s ease-out infinite;
}

@keyframes play-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.45);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(255, 106, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 106, 0, 0);
  }
}

.play-btn:hover {
  background: #E05E00;
  transform: scale(1.06);
  animation: none;
}

.play-btn svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}

.wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 28px;
}

.wave span {
  width: 3px;
  height: 100%;
  border-radius: 2px;
  background: var(--vu);
  animation: wave 1.05s ease-in-out infinite;
  transform-origin: center;
}

.wave span:nth-child(odd) {
  background: var(--rec);
}

.wave span:nth-child(1) { animation-delay: 0s; }
.wave span:nth-child(2) { animation-delay: 0.08s; }
.wave span:nth-child(3) { animation-delay: 0.16s; }
.wave span:nth-child(4) { animation-delay: 0.04s; }
.wave span:nth-child(5) { animation-delay: 0.2s; }
.wave span:nth-child(6) { animation-delay: 0.12s; }
.wave span:nth-child(7) { animation-delay: 0.24s; }
.wave span:nth-child(8) { animation-delay: 0.06s; }
.wave span:nth-child(9) { animation-delay: 0.18s; }
.wave span:nth-child(10) { animation-delay: 0.1s; }
.wave span:nth-child(11) { animation-delay: 0.22s; }
.wave span:nth-child(12) { animation-delay: 0.14s; }

@keyframes wave {
  0%,
  100% {
    transform: scaleY(0.3);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.featured-meta {
  display: flex;
  gap: 10px;
  color: var(--dim);
}

/* Cards */
.cards {
  display: grid;
  gap: 18px;
}

.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--studio);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: left;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.card:hover {
  border-color: rgba(255, 106, 0, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  background: var(--panel);
}

.section-alt .card {
  background: var(--panel-2);
}

.section-alt .card:hover {
  background: var(--panel);
}

.card-num {
  color: var(--rec);
  display: block;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  text-align: left;
}

.card p {
  color: var(--dim);
  font-size: 15px;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  text-align: left;
}

.step-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 22px;
  background: var(--panel);
}

.step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
}

.step .mono {
  color: var(--rec);
  display: block;
  margin-bottom: 10px;
}

.step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 28px;
  margin-bottom: 10px;
  text-align: left;
}

.step p {
  color: var(--dim);
  font-size: 15px;
  max-width: 34ch;
}

/* Episode cards */
.ep-card {
  background: var(--studio);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.ep-card:hover {
  border-color: rgba(255, 106, 0, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.ep-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--panel-2);
}

.ep-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.ep-card:hover .ep-card-media img {
  transform: scale(1.08);
}

.ep-card-body {
  padding: 22px 22px 26px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.ep-card-body .mono {
  color: var(--dim);
}

.ep-card-body h3 {
  font-size: 18px;
  text-align: left;
}

.ep-card-body h3 a:hover {
  color: var(--rec);
}

.ep-guest {
  color: var(--dim);
  font-size: 14px;
}

.ep-listen {
  margin-top: auto;
  padding-top: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rec);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ep-listen .rightback-logo {
  height: 13px;
}

.ep-listen:hover {
  color: var(--vu);
}

.badge-app {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.badge-app .rightback-logo {
  height: 18px;
}

.sponsor .rightback-mark img,
.sponsor-inner .rightback-mark img {
  height: 28px;
}

.footer-sub .rightback-mark img {
  height: 14px;
}

/* Apply */
.section-apply {
  background:
    linear-gradient(180deg, rgba(255, 106, 0, 0.06), transparent 30%),
    var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.apply-aside {
  --apply-photo: url("https://images.unsplash.com/photo-1590602847861-f357a9332bbc?auto=format&fit=crop&w=1400&q=80");
  position: relative;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  text-align: left;
  height: 100%;
  min-height: 100%;
  background-color: var(--studio);
  background-image: var(--apply-photo);
  background-size: cover;
  background-position: center;
}

.apply-aside::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(160deg, rgba(20, 16, 14, 0.92) 0%, rgba(20, 16, 14, 0.78) 45%, rgba(20, 16, 14, 0.55) 100%),
    linear-gradient(to top, rgba(20, 16, 14, 0.85), transparent 50%);
  pointer-events: none;
}

.apply-aside-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding: 28px 26px 30px;
  gap: 10px;
}

.apply-aside-tag {
  color: var(--rec);
}

.apply-aside h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0;
  text-align: left;
  line-height: 1.05;
  color: var(--paper);
}

.apply-aside-body > p {
  color: rgba(244, 239, 233, 0.82);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  max-width: 36ch;
}

.apply-benefits {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 4px;
  padding-top: 0;
}

.apply-benefits li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 14px;
  color: var(--paper);
}

.apply-benefits li::before {
  content: "→";
  font-family: var(--font-mono);
  color: var(--rec);
  flex-shrink: 0;
}

.form-card {
  background: var(--studio);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 24px 26px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.form-card-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.form-card-head h3 {
  font-size: 22px;
  text-align: left;
}

.form-card-head .mono {
  color: var(--rec);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--dim);
}

.field input,
.field select {
  width: 100%;
  height: 48px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.field textarea {
  width: 100%;
  min-height: 110px;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 14px;
  resize: vertical;
  line-height: 1.5;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--dim) 50%),
    linear-gradient(135deg, var(--dim) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
  padding-right: 40px;
}

.field select:invalid {
  color: #6E645B;
}

.field select option {
  color: var(--paper);
  background: var(--panel);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #6E645B;
}

.field input:hover,
.field textarea:hover,
.field select:hover {
  border-color: #4A403A;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--rec);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.18);
  background: var(--panel-2);
}

.btn-submit {
  width: 100%;
  height: 48px;
  min-height: 48px;
  margin-top: 2px;
}

.form-note {
  font-size: 12px;
  color: var(--dim);
  margin-top: 16px;
  text-align: center;
  line-height: 1.5;
}

.form-note a {
  color: var(--paper);
  border-bottom: 1px solid var(--dim);
}

.form-note a:hover {
  border-color: var(--paper);
}

.form-success {
  text-align: center;
  padding: 48px 12px;
}

.form-success .mono {
  color: var(--rec);
  display: block;
  margin-bottom: 14px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--dim);
}

.form-card.is-success .form-fields {
  display: none;
}

.form-card.is-success .form-success {
  display: block;
}

.form-success[hidden] {
  display: none;
}

/* Sponsor */
.sponsor-bar {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.sponsor-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.sponsor-tag {
  color: var(--dim);
}

.rightback-mark {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.rightback-mark img,
img.rightback-logo {
  display: block;
  height: 28px;
  width: auto;
  border-radius: 0;
}

.sponsor-bar .rightback-mark img {
  height: 14px;
}

.sponsor-desc {
  color: var(--dim);
  font-size: 14px;
}

/* Footer */
.site-footer {
  margin-top: 24px;
  padding: 0;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(30, 24, 21, 0.55), transparent 48%),
    var(--panel);
}

.footer-inner {
  padding-top: 56px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px 64px;
  padding-bottom: 44px;
}

.footer-brand .logo {
  --logo-h: calc(24px + 8px + 4px);
}

.footer-brand .logo-mark {
  font-size: 24px;
  padding: 4px 9px;
}

.footer-brand p {
  color: var(--dim);
  margin-top: 14px;
  max-width: 26ch;
  font-size: 14px;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  gap: 56px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 8.5rem;
}

.footer-col h4 {
  color: var(--paper);
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}

.footer-col a {
  color: var(--dim);
  font-size: 14px;
  line-height: 1.4;
  width: fit-content;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--paper);
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 24px;
  padding: 20px 0 28px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #6E645B;
}

.footer-sponsor {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #6E645B;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-sponsor:hover {
  color: var(--dim);
}

.footer-sponsor .rightback-logo {
  height: 12px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-sponsor:hover .rightback-logo {
  opacity: 1;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-copy > * {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

/* Inner pages (privacy / terms / episodes) */
.page-hero {
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.page-hero .mono {
  color: var(--rec);
  display: block;
  margin-bottom: 14px;
}

.page-hero h1 {
  font-size: clamp(40px, 5.2vw, 72px);
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--dim);
  max-width: 54ch;
  font-size: 18px;
  margin-inline: auto;
}

.crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 22px;
}

.crumb a:hover {
  color: var(--paper);
}

.crumb span {
  opacity: 0.45;
}

.legal {
  padding: 56px 0 96px;
  max-width: 720px;
}

.legal .updated {
  color: var(--dim);
  margin-bottom: 36px;
  text-align: center;
}

.legal h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 40px 0 14px;
}

.legal h3 {
  font-size: 17px;
  margin: 28px 0 10px;
}

.legal p,
.legal li {
  color: var(--dim);
  margin-bottom: 12px;
}

.legal ul {
  padding-left: 1.2em;
  margin-bottom: 16px;
}

.legal a {
  color: var(--paper);
  border-bottom: 1px solid var(--dim);
}

.onair {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--rec);
  border: 1px solid var(--rec);
  border-radius: var(--radius);
  padding: 6px 12px;
}

/* Responsive */
@media (max-width: 1100px) {
  .cards-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  :root {
    --section-pad: 64px;
  }

  .menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--studio);
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 24px;
    border-bottom: 1px solid var(--line);
    gap: 18px;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    padding: 40px 0 32px;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 28px;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(40px, 11vw, 56px);
  }

  .hero-media {
    aspect-ratio: 1;
    width: min(100%, 280px);
    height: auto;
    max-height: none;
    margin: 0;
  }

  .hero-shot-frame {
    border-radius: 16px;
  }

  .hero-shot--main img {
    aspect-ratio: 1;
    object-fit: cover;
  }

  .wave {
    display: none;
  }

  .featured,
  .apply-grid,
  .steps,
  .cards-3 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    gap: 40px;
    width: 100%;
  }

  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 32px;
  }

  .cards-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section-head-row > div {
    text-align: center;
    align-items: center;
  }

  .form-card {
    padding: 28px 22px 32px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .logo {
    --logo-h: calc(12px + 12px + 4px);
  }

  .logo-mark {
    font-size: 12px;
    padding: 6px 10px;
  }
}

@media (max-width: 640px) {
  .cards-4 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 32px 0 28px;
  }

  .hero-media {
    width: min(100%, 240px);
    aspect-ratio: 1;
  }

  .hero-copy .btn {
    width: 100%;
  }
}
