.podcast-page {
  background: #0a0a0a;
  color: #f9f9f9;
}

.podcast-page .desktop-nav a.active:after {
  width: 100%;
}

.podcast-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 8rem var(--pad) clamp(3rem, 6vw, 6rem);
  overflow: hidden;
  background: #080808;
}

.podcast-banner,
.podcast-banner img,
.podcast-shade {
  position: absolute;
  inset: 0;
}

.podcast-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  filter: contrast(1.08) brightness(.82) saturate(.88);
  transform: scale(1.02);
  animation: podcastDrift 18s ease-in-out infinite alternate;
}

.podcast-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .18) 55%, rgba(0, 0, 0, .72)),
    linear-gradient(180deg, rgba(0, 0, 0, .14), rgba(0, 0, 0, .94));
}

.podcast-content {
  position: relative;
  z-index: 2;
  width: min(48rem, 100%);
}

.podcast-kicker {
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, .7);
  font: 700 .78rem/1 var(--display);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.podcast-content h1 {
  margin: 0;
  color: #fff;
  font: 800 clamp(4.4rem, 11vw, 12rem)/.84 var(--display);
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 2rem 5rem rgba(0, 0, 0, .75);
}

.podcast-subtitle {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, .88);
  font: 700 clamp(1.05rem, 1.5vw, 1.35rem)/1.2 var(--display);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.soundscape {
  display: flex;
  align-items: end;
  gap: .42rem;
  height: 3.4rem;
  margin: clamp(2rem, 4vw, 3.6rem) 0;
}

.soundscape span {
  display: block;
  width: .42rem;
  min-height: .55rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff, rgba(255, 221, 183, .45));
  box-shadow: 0 0 1.4rem rgba(255, 221, 183, .22);
  animation: soundRise 1.25s ease-in-out infinite;
}

.soundscape span:nth-child(2) { animation-delay: .12s; }
.soundscape span:nth-child(3) { animation-delay: .24s; }
.soundscape span:nth-child(4) { animation-delay: .36s; }
.soundscape span:nth-child(5) { animation-delay: .18s; }
.soundscape span:nth-child(6) { animation-delay: .3s; }
.soundscape span:nth-child(7) { animation-delay: .08s; }
.soundscape span:nth-child(8) { animation-delay: .42s; }

.frequency-orbit {
  position: absolute;
  z-index: 2;
  right: clamp(1rem, 6vw, 6rem);
  bottom: clamp(6rem, 12vw, 12rem);
  width: clamp(9rem, 20vw, 20rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  animation: pulseOrbit 4.4s ease-in-out infinite;
}

.frequency-orbit:before,
.frequency-orbit:after {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(255, 221, 183, .16);
  border-radius: inherit;
}

.frequency-orbit:after {
  inset: 29%;
}

@keyframes podcastDrift {
  to {
    transform: scale(1.06) translate3d(-1%, -.7%, 0);
  }
}

@keyframes soundRise {
  0%,
  100% {
    height: 22%;
    opacity: .48;
  }
  45% {
    height: 100%;
    opacity: 1;
  }
}

@keyframes pulseOrbit {
  0%,
  100% {
    transform: scale(.96);
    opacity: .46;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@media (max-width: 760px) {
  .podcast-hero {
    min-height: 92svh;
    padding-top: 7rem;
  }

  .podcast-banner img {
    object-position: 64% center;
  }

  .podcast-content h1 {
    font-size: clamp(3.4rem, 18vw, 5.8rem);
  }

  .frequency-orbit {
    right: -3rem;
    bottom: 11rem;
    opacity: .36;
  }
}

@media (prefers-reduced-motion: reduce) {
  .podcast-banner img,
  .soundscape span,
  .frequency-orbit {
    animation: none;
  }
}
