:root {
  --studio: #14100E;
  --panel: #1E1815;
  --panel-2: #26201C;
  --paper: #F4EFE9;
  --dim: #A89F96; /* ≥4.5:1 on studio/panel */
  --line: #332B26;
  --rec: #FF6A00; /* ≥4.5:1 as text on studio/panel */
  --rec-hover: #E05E00;
  --ink-on-rec: #14100E; /* ≥4.5:1 on --rec / --rec-hover fills */
  --vu: #FFB13D;
  --rightback: #E6202C;
  --focus-ring: #FF6A00;
  --focus-ring-ink: #14100E;
  --focus-width: 1px;
  --focus-offset: 1px;
  --font-display: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "Inter", sans-serif;
  --text-hero: clamp(2.5rem, 6vw, 3.75rem);
  --text-display: clamp(1.85rem, 3.2vw, 2.5rem);
  --text-title: clamp(1.35rem, 2.2vw, 1.65rem);
  --text-lede: clamp(1rem, 1.25vw, 1.125rem);
  --section-pad: 96px;
  --nav-h: 76px;
  --promo-h: 38px;
  --radius: 10px;
}

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

html {
  scroll-behavior: smooth;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--rec);
  color: var(--ink-on-rec);
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  transform: translateY(-120%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: var(--focus-width) solid var(--paper);
  outline-offset: var(--focus-offset);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: 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;
}

/* Visible focus — links, buttons, and other controls */
a:focus,
button:focus,
.btn:focus,
.menu-btn:focus,
.play-btn:focus,
.promo-bar:focus,
.ep-listen:focus,
.footer-sponsor:focus,
.rightback-mark:focus,
.badge:focus,
summary:focus,
[tabindex]:not([tabindex="-1"]):focus {
  outline: var(--focus-width) solid var(--focus-ring);
  outline-offset: var(--focus-offset);
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
.btn:focus:not(:focus-visible),
.menu-btn:focus:not(:focus-visible),
.play-btn:focus:not(:focus-visible),
.promo-bar:focus:not(:focus-visible),
.ep-listen:focus:not(:focus-visible),
.footer-sponsor:focus:not(:focus-visible),
.rightback-mark:focus:not(:focus-visible),
.badge:focus:not(:focus-visible),
summary:focus:not(:focus-visible),
[tabindex]:not([tabindex="-1"]):focus:not(:focus-visible) {
  outline: none;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.menu-btn:focus-visible,
.play-btn:focus-visible,
.ep-listen:focus-visible,
.footer-sponsor:focus-visible,
.rightback-mark:focus-visible,
.badge:focus-visible,
summary:focus-visible,
[tabindex]:not([tabindex="-1"]):focus-visible {
  outline: var(--focus-width) solid var(--focus-ring);
  outline-offset: var(--focus-offset);
}

/* Dark ring when the control sits on brand orange */
.promo-bar:focus-visible,
.btn-rec:focus-visible,
.play-btn:focus-visible,
.skip-link:focus,
.skip-link:focus-visible {
  outline-color: var(--focus-ring-ink);
}

/* Form controls always show a visible ring (mouse + keyboard) */
input:focus,
textarea:focus,
select:focus {
  outline: var(--focus-width) solid var(--focus-ring);
  outline-offset: var(--focus-offset);
}

.ep-card-media:focus-visible {
  border-radius: var(--radius);
}

.logo:focus-visible {
  border-radius: var(--radius);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

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

.mono {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.06em;
  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-rec {
  background: var(--rec);
  color: var(--ink-on-rec);
}

.btn-rec:hover {
  background: var(--rec-hover);
}

.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: 16px;
}

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

.rec-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e10600;
  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 {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.logo-img {
  display: block;
  height: 38px;
  width: auto;
  max-width: min(200px, 52vw);
  border-radius: 0;
}

.logo-tm {
  align-self: flex-start;
  margin: -3px 0 0 5px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.logo-mic {
  height: 42px;
  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: var(--radius);
  color: #fff;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  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: #cd6800;
  flex-shrink: 0;
}

/* Nav */
.site-header {
  position: relative;
  z-index: 60;
}

.promo-bar {
  display: block;
  background: var(--rec);
  color: var(--ink-on-rec);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  transition: background 0.2s;
}

.promo-bar:hover {
  background: var(--rec-hover);
  color: var(--ink-on-rec);
}

.promo-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--promo-h);
  padding: 8px 24px;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.promo-bar-text {
  color: var(--ink-on-rec);
}

.promo-bar-cta {
  color: var(--ink-on-rec);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.promo-bar:hover .promo-bar-cta {
  text-decoration: none;
}

.promo-bar:focus-visible {
  outline-offset: -3px;
}

.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: 16px;
  letter-spacing: 0.08em;
}

.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);
  border-radius: var(--radius);
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--studio);
  border-bottom: 1px solid var(--line);
  padding: clamp(36px, 5.5vw, 72px) 0 clamp(44px, 6vw, 80px);
  box-sizing: border-box;
}

.hero-ambiance {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: transparent;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 4rem);
  width: 100%;
  align-items: center;
  min-width: 0;
}

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

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.hero-copy > * {
  animation: rise-in 0.95s 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.16s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.28s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.4s; }

@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: var(--text-hero);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 500;
  text-align: left;
  color: var(--paper);
  margin: 0 0 20px;
}

.hero h2 {
  font-size: var(--text-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: left;
  color: var(--paper);
  margin: 0 0 14px;
}

.hero-lede {
  font-size: var(--text-lede);
  line-height: 1.6;
  color: var(--dim);
  margin: 0 0 28px;
  max-width: 34rem;
}

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

.hero-media {
  width: 100%;
  min-width: 0;
  overflow: visible;
  animation: hero-media-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

@keyframes hero-media-in {
  from {
    opacity: 0;
    transform: translateX(36px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

#hero .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.hero-figure {
  margin: 0;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
  background: var(--panel);
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slider {
  position: relative;
  width: 100%;
  --hero-peek-x: 18%;
  --hero-peek-z: -140px;
  --hero-peek-rotate: -28deg;
  --hero-side-y: 3%;
}

.hero-slider-stage {
  position: relative;
  perspective: 1600px;
  perspective-origin: 50% 45%;
}

.hero-slider-track {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: visible;
  isolation: isolate;
  transform-style: preserve-3d;
}

.hero-slide {
  margin: 0;
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  opacity: 0;
  visibility: hidden;
  transform:
    translate3d(var(--hero-peek-x), var(--hero-side-y), var(--hero-peek-z))
    rotateY(var(--hero-peek-rotate));
  transform-style: preserve-3d;
  transform-origin: center center;
  backface-visibility: hidden;
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.7s ease,
    visibility 0.7s ease,
    filter 0.7s ease,
    box-shadow 0.7s ease;
  pointer-events: none;
  z-index: 0;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  will-change: transform, opacity;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 42%, rgba(0, 0, 0, 0.28));
  opacity: 0.85;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

.hero-slide.is-no-transition {
  transition: none !important;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 48px) rotateY(0deg);
  filter: none;
  pointer-events: auto;
  z-index: 3;
  cursor: default;
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 106, 0, 0.12);
}

.hero-slide.is-active::after {
  opacity: 0.35;
}

.hero-slide.is-next {
  opacity: 1;
  visibility: visible;
  transform:
    translate3d(var(--hero-peek-x), var(--hero-side-y), var(--hero-peek-z))
    rotateY(var(--hero-peek-rotate));
  filter: brightness(0.58) saturate(0.9);
  pointer-events: auto;
  z-index: 1;
}

.hero-slide.is-prev {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(-16%, var(--hero-side-y), -160px) rotateY(26deg);
  filter: brightness(0.45);
  pointer-events: none;
  z-index: 2;
}

.hero-slide .hero-image {
  width: 100%;
  height: 100%;
}

.hero-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  position: relative;
  z-index: 4;
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid var(--dim);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hero-slider-dot:hover {
  border-color: var(--paper);
  transform: scale(1.1);
}

.hero-slider-dot.is-active {
  background: var(--rec);
  border-color: var(--rec);
}

.hero-slider-dot:focus-visible {
  outline: var(--focus-width) solid var(--focus-ring);
  outline-offset: var(--focus-offset);
}

@media (max-width: 900px) {
  .hero-slider {
    --hero-peek-x: 12%;
    --hero-peek-z: -100px;
    --hero-peek-rotate: -22deg;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-ambiance {
    animation: none !important;
  }

  .hero-slide {
    transition: none;
  }

  .hero-media {
    animation: none;
  }
}

/* Home / archive search */
.site-search {
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  padding: clamp(40px, 6vw, 72px) 0;
}

.site-search--page {
  background: transparent;
  border-bottom: none;
  padding: 0 0 12px;
}

.site-search-panel {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.site-search-copy {
  margin-bottom: 22px;
}

.site-search-copy .mono {
  color: var(--rec);
  display: block;
  margin-bottom: 8px;
}

.site-search-copy h2 {
  font-size: var(--text-display);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 10px;
}

.site-search-copy p {
  color: var(--dim);
  margin: 0 auto;
  max-width: 34em;
  font-size: 16px;
  line-height: 1.55;
}

.site-search-form {
  width: 100%;
}

.site-search-field {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 56px;
  padding: 6px 6px 6px 16px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: var(--studio);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.site-search-field:focus-within {
  border-color: rgba(255, 106, 0, 0.7);
  box-shadow:
    0 0 0 3px rgba(255, 106, 0, 0.22),
    0 14px 36px rgba(0, 0, 0, 0.28);
}

.site-search-icon {
  display: inline-flex;
  color: var(--dim);
  flex-shrink: 0;
}

.site-search-field:focus-within .site-search-icon {
  color: var(--rec);
}

.site-search-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 44px;
  padding: 0 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  box-shadow: none;
}

.site-search-input::placeholder {
  color: var(--dim);
}

.site-search-input:focus {
  outline: none;
  border-color: transparent;
  box-shadow: none;
}

.site-search-input::-webkit-search-decoration,
.site-search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.site-search-submit {
  flex-shrink: 0;
  height: 44px;
  padding: 0 22px;
}

.site-search-clear {
  flex-shrink: 0;
  height: 44px;
  padding: 0 18px;
}

.site-search-hints {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.site-search-hints-label {
  color: var(--dim);
  margin-right: 2px;
}

.site-search-chip {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.25s ease;
}

.site-search-chip:hover {
  border-color: rgba(255, 106, 0, 0.55);
  background: rgba(255, 106, 0, 0.1);
  color: var(--paper);
  transform: translateY(-2px);
}

.site-search-empty {
  color: var(--dim);
  padding: 24px 0 48px;
  font-size: 17px;
}

.site-search-guest {
  color: var(--paper);
  font-weight: 500;
}

.site-search--page .site-search-field {
  max-width: 720px;
}

/* Secondary story bands — quieter than the hero */
.hero-band {
  padding: clamp(40px, 5vw, 72px) 0;
}

.hero-band--alt {
  background: var(--panel);
}

.hero-band .hero-copy > * {
  animation: none;
}

.hero-band h2 {
  font-size: var(--text-display);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 14px;
}

.hero-band .hero-lede {
  font-size: var(--text-lede);
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 34rem;
}

/* Show pillars */
.section-head--show {
  margin-bottom: clamp(36px, 5vw, 56px);
}

.section-head--show .section-lede {
  margin: 14px auto 0;
  max-width: 38rem;
  color: var(--dim);
  font-size: var(--text-lede);
  line-height: 1.55;
}

.story-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.story-pillar {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.story-pillar-media {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--studio);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.story-pillar-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(20, 16, 14, 0.35) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.story-pillar-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9);
  transform: scale(1.01);
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
}

.story-pillar:hover .story-pillar-media img,
.story-pillar:focus-within .story-pillar-media img {
  transform: scale(1.06);
  filter: saturate(1);
}

.story-pillar-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.story-pillar h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: var(--text-title);
  line-height: 1.2;
  color: var(--paper);
  margin: 0;
}

.story-pillar p {
  color: var(--dim);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 32ch;
}

.story-pillars-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: clamp(2.25rem, 4.5vw, 3.25rem);
}

@media (prefers-reduced-motion: reduce) {
  .story-pillar-media img {
    transition: none;
  }

  .story-pillar:hover .story-pillar-media img,
  .story-pillar:focus-within .story-pillar-media img {
    transform: none;
  }
}

/* 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: var(--text-display);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.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);
}

.ep-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink-on-rec);
  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: 500;
  font-size: var(--text-display);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: left;
}

.featured-body > p {
  color: var(--dim);
  font-size: var(--text-lede);
  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: var(--ink-on-rec);
  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: var(--rec-hover);
  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: var(--radius);
  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: 16px;
}

/* How it works */
.section-head--how {
  margin-bottom: clamp(36px, 5vw, 56px);
}

.section-head--how .section-lede {
  margin: 14px auto 0;
  max-width: 36rem;
  color: var(--dim);
  font-size: var(--text-lede);
  line-height: 1.55;
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  position: relative;
  margin: 0;
  padding: 0;
}

.step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  text-align: center;
  align-items: center;
  min-width: 0;
}

.step-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.step-img {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--panel);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.step-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(20, 16, 14, 0.35) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9);
  transform: scale(1.01);
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s ease;
}

.step:hover .step-img img,
.step:focus-within .step-img img {
  transform: scale(1.06);
  filter: saturate(1);
}

.step-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-title);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  text-align: center;
  color: var(--paper);
}

.step p {
  color: var(--dim);
  font-size: 16px;
  line-height: 1.55;
  max-width: 32ch;
  margin: 0 auto;
  text-align: center;
}

.how-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: clamp(2.25rem, 4.5vw, 3.25rem);
}

@media (prefers-reduced-motion: reduce) {
  .step-img img {
    transition: none;
  }

  .step:hover .step-img img,
  .step:focus-within .step-img img {
    transform: none;
  }
}

/* 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;
}

.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: 16px;
}

.ep-listen {
  margin-top: auto;
  padding-top: 8px;
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 0.08em;
  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,
.partner-row .rightback-mark img {
  height: 28px;
}

.partner-strip .rightback-mark img,
img.rightback-logo--sm {
  height: 14px;
}

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

.rightback-mark:hover img,
.rightback-mark:focus-visible img {
  transform: translateY(-1px);
}

/* Apply */
.section-apply {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head--apply {
  margin-bottom: clamp(28px, 4vw, 40px);
}

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

.section-head--apply .section-lede {
  margin: 14px 0 0;
  max-width: 40rem;
  color: var(--dim);
  font-size: var(--text-lede);
  line-height: 1.55;
}

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

.apply-aside {
  --apply-photo: url("../img/bg.png");
  position: relative;
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-color: var(--studio);
  background-image: var(--apply-photo);
  background-size: cover;
  background-position: center;
}

.form-card {
  background: var(--studio);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 30px);
  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: 6px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.form-card-head h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.25;
  text-align: left;
  margin: 0;
  color: var(--paper);
}

.form-card-head p {
  margin: 0;
  color: var(--dim);
  font-size: 16px;
  line-height: 1.45;
}

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

.form-note {
  margin: 14px 0 0;
  color: var(--dim);
  font-size: 16px;
  line-height: 1.45;
  text-align: center;
}

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

.field {
  margin-bottom: 16px;
}

.form-errors {
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 143, 122, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 106, 0, 0.08);
  color: #ffb39f;
  font-size: 16px;
}

.form-errors p {
  margin: 0;
}

.field-error {
  margin: 6px 0 0;
  color: #ff8f7a;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: rgba(255, 143, 122, 0.55);
}

.field label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--dim);
  cursor: pointer;
}

.field label input,
.field label select,
.field label textarea {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  cursor: auto;
  color: var(--paper);
}

.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: 16px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.field textarea {
  width: 100%;
  min-height: 120px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  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: var(--dim);
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: var(--dim);
  opacity: 1;
}

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

.field input:focus,
.field textarea:focus,
.field select:focus,
.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible {
  outline: var(--focus-width) solid var(--focus-ring);
  outline-offset: var(--focus-offset);
  border-color: var(--rec);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.22);
  background: var(--panel-2);
}

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

.btn-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  min-height: 280px;
  padding: 12px 4px;
}

.form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.16);
  color: var(--rec);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 4px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: var(--text-title);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0;
  color: var(--paper);
}

.form-success p {
  margin: 0;
  color: var(--dim);
  font-size: 16px;
  line-height: 1.5;
  max-width: 34ch;
}

/* FAQ */
.section-faq {
  border-top: 1px solid var(--line);
  background: var(--studio);
}

.section-head--faq {
  margin-bottom: clamp(36px, 5vw, 52px);
}

.section-head--faq .section-lede {
  margin: 14px auto 0;
  max-width: 36rem;
  color: var(--dim);
  font-size: var(--text-lede);
  line-height: 1.55;
}

.faq-list {
  max-width: 44rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(30, 24, 21, 0.45);
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.faq-item[open] {
  border-color: rgba(255, 106, 0, 0.35);
  background: var(--panel);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px 16px;
  padding: 18px 18px 18px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--paper);
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--rec);
  line-height: 1;
  min-width: 1.6rem;
}

.faq-q {
  text-align: left;
}

.faq-item summary::after {
  content: "";
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  background:
    linear-gradient(var(--paper), var(--paper)) center / 10px 1.5px no-repeat,
    linear-gradient(var(--paper), var(--paper)) center / 1.5px 10px no-repeat,
    var(--panel);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  border-color: rgba(255, 106, 0, 0.55);
  background:
    linear-gradient(var(--rec), var(--rec)) center / 10px 1.5px no-repeat,
    linear-gradient(var(--rec), var(--rec)) center / 1.5px 10px no-repeat,
    rgba(255, 106, 0, 0.12);
}

.faq-item summary:hover {
  color: var(--paper);
}

.faq-item summary:hover .faq-q {
  color: var(--rec);
}

.faq-item summary:hover::after {
  border-color: rgba(255, 106, 0, 0.45);
}

.faq-item summary:focus-visible {
  outline: var(--focus-width) solid var(--focus-ring);
  outline-offset: var(--focus-offset);
  border-radius: calc(var(--radius) - 2px);
}

.faq-answer {
  padding: 0 18px 20px 16px;
}

.faq-answer p {
  margin: 0;
  padding: 0 0 0 calc(1.6rem + 16px);
  color: var(--dim);
  font-size: 16px;
  line-height: 1.65;
  max-width: 40rem;
}

.faq-answer p a {
  color: var(--paper);
  border-bottom: 1px solid var(--dim);
  transition: border-color 0.2s, color 0.2s;
}

.faq-answer p a:hover {
  color: var(--rec);
  border-color: var(--rec);
}

@media (max-width: 560px) {
  .faq-item summary {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 16px 14px;
  }

  .faq-answer {
    padding: 0 14px 18px;
  }

  .faq-answer p {
    padding-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item,
  .faq-item summary::after {
    transition: none;
  }

  .faq-item[open] summary::after {
    transform: none;
  }
}

.form-note {
  font-size: 16px;
  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-note a:focus-visible {
  outline: var(--focus-width) solid var(--focus-ring);
  outline-offset: 2px;
  border-radius: var(--radius);
}

.form-success {
  text-align: left;
  padding: 24px 4px;
}

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

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

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

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

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

/* Partner strip (RightBack) */
.partner-bar {
  background:
    linear-gradient(90deg, rgba(230, 32, 44, 0.1), transparent 30%, transparent 70%, rgba(230, 32, 44, 0.1)),
    var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}

.partner-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px 22px;
  flex-wrap: wrap;
}

.partner-kicker {
  color: var(--dim);
  font-size: 16px;
  letter-spacing: 0.12em;
}

.rightback-wordmark {
  display: inline-block;
  color: var(--rightback);
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}

.rightback-wordmark:hover,
.rightback-wordmark:focus-visible {
  color: #ff3b46;
  transform: translateY(-1px);
}

.rightback-wordmark--sm {
  font-size: 18px;
  letter-spacing: 0.02em;
}

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

.rightback-mark img,
img.rightback-logo {
  display: block;
  height: 22px;
  width: auto;
  max-width: 160px;
  border-radius: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.partner-copy {
  margin: 0;
  color: var(--paper);
  font-size: 16px;
}

/* Pre-footer CTA */
.prefooter-cta {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  padding: clamp(28px, 4vw, 40px) 0;
  text-align: center;
}

.prefooter-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 28px;
  max-width: none;
  margin-inline: auto;
}

.prefooter-cta .footer-headline {
  color: var(--paper);
  font-size: var(--text-display);
  margin: 0;
}

.prefooter-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.prefooter-cta .btn {
  min-height: 48px;
  padding-inline: 22px;
}

.prefooter-cta .btn-rec {
  box-shadow: none;
}

.prefooter-cta .btn-rec:hover {
  transform: none;
  box-shadow: none;
}

.footer-headline {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.footer-lede {
  margin: 14px 0 0;
  color: var(--dim);
  font-size: 16px;
  line-height: 1.55;
}

/* Footer */
.site-footer {
  position: relative;
  margin-top: 0;
  padding: 0;
  overflow: hidden;
  background: var(--studio);
}

.footer-shell {
  position: relative;
  z-index: 1;
  padding-top: clamp(56px, 7vw, 96px);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 0.55fr)) minmax(0, 1.15fr);
  gap: 48px 48px;
  padding-bottom: clamp(48px, 5vw, 72px);
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 18px;
  max-width: 28rem;
  align-content: start;
}

.footer-brand .footer-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.footer-brand .footer-logo .logo-img {
  width: 240px;
  height: auto;
}

.footer-brand-blurb {
  margin: 0;
  color: var(--dim);
  font-size: 16px;
  line-height: 1.6;
}

.footer-col {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer-col-title {
  margin: 0 0 6px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--paper);
}

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

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

.footer-newsletter {
  display: grid;
  gap: 12px;
  align-content: start;
  min-width: 0;
}

.footer-newsletter-lede {
  margin: 0;
  color: var(--dim);
  font-size: 16px;
  line-height: 1.5;
  max-width: 28ch;
}

.footer-newsletter-form {
  display: grid;
  gap: 10px;
}

.footer-newsletter-field {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: stretch;
}

.footer-newsletter-field input {
  flex: 1 1 12rem;
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.footer-newsletter-field input::placeholder {
  color: var(--dim);
}

.footer-newsletter-field input:hover {
  border-color: rgba(255, 106, 0, 0.35);
}

.footer-newsletter-field input:focus,
.footer-newsletter-field input:focus-visible {
  border-color: var(--rec);
  outline: var(--focus-width) solid var(--focus-ring);
  outline-offset: var(--focus-offset);
}

.footer-newsletter-submit {
  flex: 0 0 auto;
  height: 48px;
  padding-inline: 18px;
}

.footer-newsletter-note {
  margin: 0;
  color: var(--dim);
  font-size: 16px;
  line-height: 1.45;
}

.footer-newsletter-note a {
  color: var(--paper);
  border-bottom: 1px solid var(--dim);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-newsletter-note a:hover {
  color: var(--rec);
  border-color: var(--rec);
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding: 28px 0 48px;
  border-top: 1px solid var(--line);
  font-size: 16px;
  color: var(--dim);
}

.footer-sponsor {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--dim);
  transition: color 0.2s ease, opacity 0.2s ease;
}

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

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

.footer-sponsor:hover .rightback-logo {
  opacity: 1;
  transform: translateY(-1px);
}

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

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

.reveal-scale {
  transform: translateY(20px) scale(0.97);
}

.reveal-scale.in {
  transform: none;
}

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

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

/* Host bio (homepage + about) */
.host-bio {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.host-bio-media {
  margin: 0;
}

.host-bio-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.host-bio-role {
  color: var(--rec);
  margin: 0 0 10px;
}

.host-bio-copy > .mono:first-child {
  color: var(--rec);
  display: block;
  margin-bottom: 10px;
}

.host-bio-name,
h2.host-bio-name,
h3.host-bio-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-display);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--paper);
}

.host-bio-copy > p {
  color: var(--dim);
  font-size: var(--text-lede);
  line-height: 1.7;
  margin: 0 0 14px;
  max-width: 52ch;
}

.host-bio-socials {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 22px 0 24px;
  padding: 0;
}

.host-bio-socials a {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--paper);
  border-bottom: 1px solid var(--dim);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.host-bio-socials a:hover {
  color: var(--rec);
  border-color: var(--rec);
}

.about-host .host-bio {
  max-width: none;
}

.about-host .host-bio-name {
  margin-bottom: 8px;
}

.about-host .host-bio-role {
  margin-bottom: 16px;
}

.about-host .host-bio-socials {
  margin-bottom: 0;
}

/* About page */
.about-page {
  padding-bottom: 0;
}

.about-block {
  padding: clamp(56px, 8vw, 88px) 0;
  border-bottom: 1px solid var(--line);
}

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

.about-block h2:not(.host-bio-name) {
  font-size: var(--text-display);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 18px;
}

.about-narrow {
  max-width: 720px;
}

.about-narrow > p {
  color: var(--dim);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 16px;
}

.about-narrow > p:last-of-type {
  margin-bottom: 28px;
}

.about-host {
  background: var(--panel);
}

.about-stat-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 24px;
  margin: 0 0 28px;
  padding: 0;
}

.about-stat-list li {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.about-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--paper);
  margin-bottom: 10px;
}

.about-stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--dim);
  line-height: 1.4;
}

.about-stat-note {
  color: var(--dim);
  font-size: 16px;
  margin: 0;
}

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

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

.about-criteria-list {
  color: var(--dim);
  padding-left: 1.2em;
  margin: 0 0 20px;
  display: grid;
  gap: 10px;
  font-size: 17px;
  line-height: 1.55;
}

.about-listen {
  background: var(--panel);
  border-bottom: none;
}

.about-listen-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px 48px;
}

.about-listen-inner h2 {
  max-width: 16ch;
}

.about-listen-inner > div > p {
  color: var(--dim);
  font-size: 17px;
  line-height: 1.7;
  max-width: 48ch;
  margin: 0 0 28px;
}

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

.about-listen-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--studio);
  transition: border-color 0.2s;
}

.about-listen-badge:hover {
  border-color: var(--rec);
}

.about-listen-badge .rightback-logo {
  height: 28px;
  width: auto;
  border-radius: 0;
}

@media (max-width: 920px) {
  .host-bio {
    grid-template-columns: 1fr;
  }

  .host-bio-media {
    max-width: 420px;
  }

  .about-stat-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .about-stat-list {
    grid-template-columns: 1fr;
  }
}

/* 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: var(--text-hero);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 16px;
}

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

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

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

.crumb > span:not(:last-child) {
  color: var(--dim);
}

.crumb > span:last-child {
  color: var(--paper);
}

/* Episode detail pages */
.ep-detail {
  padding: 40px 0 72px;
}

.ep-detail .crumb {
  justify-content: flex-start;
  margin-bottom: 36px;
}

.ep-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.ep-body .ep-num {
  color: var(--rec);
  display: block;
  margin-bottom: 14px;
}

.ep-body h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-hero);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 18px;
}

.ep-body .lede {
  color: var(--dim);
  font-size: var(--text-lede);
  line-height: 1.55;
  max-width: 42ch;
  margin: 0 0 28px;
}

.ep-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 28px;
}

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

.ep-meta .mono b {
  color: var(--paper);
  font-weight: 500;
}

.ep-body > .ep-listen {
  margin-bottom: 40px;
}

.ep-body h2 {
  font-size: var(--text-title);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 14px;
}

.ep-body > p {
  color: var(--dim);
  margin-bottom: 16px;
  max-width: 58ch;
}

.ep-body ul {
  color: var(--dim);
  padding-left: 1.2em;
  margin: 0 0 36px;
  max-width: 56ch;
}

.ep-body li {
  margin-bottom: 8px;
}

.ep-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 0.08em;
}

.ep-nav a {
  color: var(--dim);
}

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

.ep-aside {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  position: sticky;
  top: calc(var(--promo-h) + var(--nav-h) + 16px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ep-aside img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 4px;
}

.ep-aside .mono {
  color: var(--rec);
}

.ep-aside h3 {
  font-size: 22px;
  margin: 0;
}

.ep-aside > p {
  color: var(--dim);
  font-size: 16px;
  margin: 0 0 8px;
}

.ep-aside .btn {
  width: 100%;
  justify-content: center;
}

.ep-aside p.transcript,
p.transcript {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 16px;
  line-height: 1.65;
  text-align: left;
}

.btn-line {
  background: transparent;
  color: var(--paper);
  border: 1px solid #4A403A;
}

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

/* Partner strip (inner pages) */
.partner-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  padding: 28px 0;
}

.partner-strip .partner-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  color: var(--dim);
  font-size: 16px;
}

/* Episode archive log */
.log-head,
.log-row {
  display: grid;
  grid-template-columns: 88px 1fr 72px 56px;
  gap: 16px;
  align-items: center;
}

.log-head {
  color: var(--dim);
  font-size: 16px;
  letter-spacing: 0.1em;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
}

.log-row {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.log-row .ep {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--rec);
}

.log-row .info {
  min-width: 0;
}

.log-row .info h3 {
  font-size: 18px;
  margin: 0 0 6px;
  color: var(--paper);
}

.log-row .info p {
  color: var(--dim);
  font-size: 16px;
  margin: 0;
}

.log-row .dur {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--dim);
}

.log-row .play-btn {
  width: 44px;
  height: 44px;
}

.platforms-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
}

.platforms-inner .lbl {
  color: var(--dim);
}

/* Inner-page footers (episodes / legal) */
footer > .container > .footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 40px 0 24px;
}

footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
}

footer .footer-links a {
  color: var(--dim);
  font-size: 16px;
}

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

.footer-sub {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px 24px;
  padding: 18px 0 32px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--dim);
}

section.transcript {
  padding: 56px 0 80px;
  border-top: 1px solid var(--line);
  background: var(--panel);
}

section.transcript .container {
  max-width: 720px;
}

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

section.transcript h2 {
  font-size: var(--text-display);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}

section.transcript p {
  color: var(--dim);
  font-size: var(--text-lede);
  line-height: 1.7;
  margin-bottom: 16px;
}

section.transcript p:last-child {
  margin-bottom: 0;
}

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

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

.legal h2 {
  font-size: var(--text-title);
  letter-spacing: -0.02em;
  line-height: 1.2;
  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: 16px;
  font-weight: 500;
  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);
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 36rem;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
    max-width: 28rem;
  }
}

@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: 32px 0 28px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #hero .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-media {
    width: 100%;
  }

  .hero-band {
    padding: 36px 0 28px;
  }

  .story-pillars {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 28rem;
    margin-inline: auto;
  }

  .story-pillar p {
    max-width: 36ch;
  }

  .site-search-field {
    flex-wrap: wrap;
    padding: 10px;
  }

  .site-search-icon {
    margin-left: 6px;
  }

  .site-search-input {
    flex: 1 1 calc(100% - 40px);
  }

  .site-search-submit,
  .site-search-clear {
    flex: 1 1 auto;
    justify-content: center;
  }

  .site-search-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
  }

  .site-search-form {
    width: 100%;
  }

  .story-pillars-actions {
    justify-content: stretch;
  }

  .story-pillars-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  .wave {
    display: none;
  }

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

  .apply-grid {
    gap: 16px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 28rem;
    margin-inline: auto;
  }

  .step {
    gap: 1.1rem;
    align-items: center;
  }

  .step p {
    max-width: 36ch;
  }

  .how-actions {
    margin-top: 2.5rem;
  }

  .how-actions .btn {
    width: 100%;
    max-width: 28rem;
    justify-content: center;
  }

  .ep-aside {
    position: static;
  }

  .log-head,
  .log-row {
    grid-template-columns: 72px 1fr 48px;
  }

  .log-head span:nth-child(3),
  .log-row .dur {
    display: none;
  }

  .prefooter-cta-inner {
    gap: 14px;
  }

  .prefooter-cta-actions {
    width: 100%;
  }

  .prefooter-cta-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand {
    max-width: none;
  }

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

  .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: 24px 20px 28px;
  }

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

  .logo-img {
    height: 28px;
    max-width: min(150px, 48vw);
  }

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

@media (max-width: 640px) {
  .promo-bar-text {
    display: none;
  }

  .promo-bar-cta {
    text-decoration: none;
  }

  .cards-4 {
    grid-template-columns: 1fr;
  }

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

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

/* Guest scheduling */
.schedule-body {
  min-height: 100vh;
  color: var(--paper);
  background: var(--studio);
}

.schedule-body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
}

.schedule-body .site-header,
.schedule-body footer {
  position: relative;
  z-index: 2;
}

.schedule-shell {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 48px 20px 72px;
}

.schedule-stage {
  width: min(100%, 720px);
  display: grid;
  gap: 24px;
  animation: schedule-rise 0.55s ease both;
}

@keyframes schedule-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.schedule-brand-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0 auto;
  color: var(--rec);
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}

.schedule-copy {
  text-align: center;
}

.schedule-copy h1 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.schedule-copy p {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--dim);
  font-size: 1rem;
  line-height: 1.55;
}

.schedule-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(30, 24, 21, 0.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  animation: schedule-rise 0.65s ease 0.08s both;
}

.schedule-progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.schedule-progress-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dim);
}

.schedule-progress-step span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 500;
}

.schedule-progress-step em {
  font-style: normal;
  font-size: 1rem;
  font-weight: 500;
}

.schedule-progress-step.is-active,
.schedule-progress-step.is-done {
  color: var(--paper);
}

.schedule-progress-step.is-active span,
.schedule-progress-step.is-done span {
  border-color: var(--rec);
  background: rgba(255, 106, 0, 0.18);
  color: #fff;
}

.schedule-progress-line {
  height: 2px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease;
}

.schedule-progress-line.is-active {
  background: linear-gradient(90deg, var(--rec), rgba(255, 177, 61, 0.7));
}

.schedule-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.schedule-step {
  display: none;
}

.schedule-step.is-active {
  display: block;
  animation: schedule-rise 0.35s ease both;
}

.schedule-step-title {
  margin: 0 0 6px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.schedule-step-hint {
  margin: 0 0 16px;
  color: var(--dim);
  font-size: 1rem;
  line-height: 1.45;
}

.schedule-step-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.schedule-step-head .schedule-step-title {
  margin-bottom: 4px;
}

.schedule-back {
  flex-shrink: 0;
  margin-top: 2px;
  border: 0;
  background: none;
  color: var(--vu);
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.schedule-selected-date {
  margin: 0;
  color: var(--paper);
  font-size: 1rem;
  font-weight: 500;
}

.schedule-month + .schedule-month {
  margin-top: 18px;
}

.schedule-month-label {
  margin: 0 0 10px;
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.schedule-month-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.schedule-date {
  display: block;
  cursor: pointer;
}

.schedule-date input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.schedule-date span {
  display: grid;
  gap: 2px;
  place-items: center;
  min-height: 88px;
  padding: 12px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.schedule-date strong {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--dim);
}

.schedule-date b {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
}

.schedule-date small {
  color: var(--dim);
  font-size: 1rem;
}

.schedule-date:hover span {
  border-color: rgba(255, 106, 0, 0.55);
  transform: translateY(-1px);
}

.schedule-date input:focus-visible + span {
  outline: 3px solid var(--rec);
  outline-offset: 2px;
}

.schedule-date input:checked + span {
  border-color: var(--rec);
  background: rgba(255, 106, 0, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 106, 0, 0.35);
}

.schedule-date input:checked + span strong,
.schedule-date input:checked + span small {
  color: #ffd2b0;
}

.schedule-day-slots {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.schedule-day-slots.is-active {
  display: grid;
}

.schedule-times-empty {
  margin: 0 0 8px;
  color: var(--dim);
  font-size: 1rem;
  line-height: 1.45;
}

.schedule-slot {
  display: block;
  cursor: pointer;
}

.schedule-slot input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.schedule-slot span {
  display: grid;
  gap: 2px;
  place-items: center;
  width: 100%;
  min-height: 64px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.schedule-slot strong {
  font-size: 1rem;
  font-weight: 500;
}

.schedule-slot small {
  color: var(--dim);
  font-size: 1rem;
}

.schedule-slot:hover span {
  border-color: rgba(255, 106, 0, 0.55);
  transform: translateY(-1px);
}

.schedule-slot input:focus-visible + span {
  outline: 3px solid var(--rec);
  outline-offset: 2px;
}

.schedule-slot input:checked + span {
  border-color: var(--rec);
  background: rgba(255, 106, 0, 0.16);
  color: #fff;
}

.schedule-slot input:checked + span small {
  color: #ffd2b0;
}

.schedule-actions {
  display: none;
  position: sticky;
  bottom: 0;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(30, 24, 21, 0), rgba(30, 24, 21, 0.96) 28%);
}

.schedule-actions.is-active {
  display: block;
}

.schedule-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--rec);
  color: var(--ink-on-rec);
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, opacity 0.15s ease;
}

.schedule-submit:hover:not(:disabled) {
  background: var(--rec-hover);
  transform: translateY(-1px);
}

.schedule-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.schedule-error {
  margin-top: 14px;
  color: #ffb4a8;
  font-size: 1rem;
}

.schedule-empty,
.schedule-note {
  margin: 0;
  color: var(--dim);
  line-height: 1.55;
}

.schedule-confirmed {
  text-align: center;
  padding: 12px 8px 4px;
}

.schedule-confirmed-label {
  margin: 0 0 10px;
  color: var(--rec);
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.schedule-confirmed h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.schedule-confirmed-time {
  margin: 0 0 16px;
  font-size: 1.15rem;
  font-weight: 500;
}

@media (max-width: 640px) {
  .schedule-shell {
    padding: 28px 16px 40px;
    place-items: start center;
  }

  .schedule-month-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .schedule-day-slots {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 420px) {
  .schedule-month-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .schedule-progress-step em {
    display: none;
  }
}

