:root {
  --bg: #070b16;
  --bg-soft: #0d1224;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --text: #f5f7ff;
  --muted: #b8c1db;
  --line: rgba(255, 255, 255, 0.12);
  --primary: #d8b15c;
  --primary-2: #ffe1a0;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --container: min(1180px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(116, 138, 255, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(216, 177, 92, 0.14), transparent 28%),
    linear-gradient(180deg, #060912 0%, #0a1020 45%, #050811 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

.site-shell {
  position: relative;
  isolation: isolate;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.09;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.5) 0 0.5px, transparent 0.6px),
    radial-gradient(circle at 80% 40%, rgba(255,255,255,0.4) 0 0.5px, transparent 0.6px),
    radial-gradient(circle at 50% 80%, rgba(255,255,255,0.35) 0 0.5px, transparent 0.6px);
  background-size: 22px 22px;
  z-index: -2;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.34;
  z-index: -3;
}

.orb-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -100px;
  background: rgba(102, 124, 255, 0.38);
  animation: drift 18s ease-in-out infinite;
}

.orb-2 {
  width: 360px;
  height: 360px;
  right: -90px;
  top: 25vh;
  background: rgba(216, 177, 92, 0.32);
  animation: drift 22s ease-in-out infinite reverse;
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(30px, 40px, 0) scale(1.08); }
}

.topbar,
.section,
.footer {
  width: var(--container);
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 14px;
  margin-top: 14px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(7, 11, 22, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand strong {
  display: block;
  font-size: 0.98rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  margin-top: 0.1rem;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(216,177,92,0.24));
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--primary-2);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  color: var(--text);
}

.section {
  padding: 5rem 0;
}

.hero {
  min-height: calc(100vh - 94px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.25rem;
  align-items: center;
  padding-top: 3rem;
}

.eyebrow,
.section-kicker,
.pill,
.episode-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--primary-2);
  font-size: 0.86rem;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5bf19d;
  box-shadow: 0 0 0 0 rgba(91, 241, 157, 0.6);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(91, 241, 157, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(91, 241, 157, 0); }
  100% { box-shadow: 0 0 0 0 rgba(91, 241, 157, 0); }
}

.hero h1,
.section-heading h2,
.feature-copy h2,
.community-copy h2 {
  font-family: 'Playfair Display', serif;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 1rem 0;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.9rem);
  max-width: 11ch;
}

.hero p,
.section-heading,
.info-card p,
.episode-card p,
.feature-copy p,
.community-copy p,
.player-meta p,
.footer p {
  color: var(--muted);
  line-height: 1.75;
}

.hero p {
  max-width: 60ch;
  font-size: 1.05rem;
}

.hero-actions,
.hero-stats,
.player-controls,
.progress-head,
.footer {
  display: flex;
}

.hero-actions {
  gap: 0.95rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.btn {
  height: 52px;
  padding: 0 1.25rem;
  border-radius: 16px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #261b07;
  font-weight: 800;
  box-shadow: 0 14px 40px rgba(216, 177, 92, 0.32);
}

.btn-secondary,
.btn-ghost {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  color: var(--text);
}

.btn-ghost {
  height: 46px;
  padding-inline: 1rem;
}

.hero-stats {
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats div {
  min-width: 150px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
}

.hero-stats strong,
.feature-points strong,
.platform-card strong,
.footer strong,
.player-meta h3,
.episode-card h3,
.info-card h3 {
  display: block;
}

.hero-stats span,
.feature-points span,
.platform-card span {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 0.35rem;
}

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
}

.player-card {
  border-radius: 32px;
  padding: 1.4rem;
}

.player-top,
.platform-card,
.feature-points div,
.community-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.episode-time {
  color: var(--muted);
  font-size: 0.9rem;
}

.player-cover {
  position: relative;
  min-height: 390px;
  margin: 1rem 0 1.25rem;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at top, rgba(255, 230, 164, 0.2), transparent 45%),
    linear-gradient(160deg, #141b37 0%, #0b1020 58%, #090d17 100%);
}

.halo {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(216,177,92,0.32) 0%, rgba(216,177,92,0.08) 28%, transparent 42%),
    radial-gradient(circle at center, rgba(124, 144, 255, 0.17), transparent 42%);
  filter: blur(6px);
}

.cover-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}

.mini-logo {
  display: inline-grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--primary-2);
}

.cover-center h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: 'Playfair Display', serif;
}

.cover-center p {
  max-width: 25ch;
  margin: 0.8rem auto 0;
  color: var(--muted);
}

.waveform {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  gap: 0.45rem;
  height: 72px;
  margin-bottom: 1rem;
}

.waveform span {
  display: block;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,225,160,0.95), rgba(216,177,92,0.24));
  min-height: 20%;
  animation: wave 1.6s ease-in-out infinite;
}

.waveform span:nth-child(odd) { animation-delay: 0.1s; }
.waveform span:nth-child(3n) { animation-delay: 0.2s; }
.waveform span:nth-child(4n) { animation-delay: 0.35s; }

@keyframes wave {
  0%, 100% { height: 24%; opacity: 0.6; }
  50% { height: 100%; opacity: 1; }
}

.player-meta h3 {
  margin: 0;
  font-size: 1.12rem;
}

.player-meta p {
  margin: 0.55rem 0 1.3rem;
}

.player-controls {
  align-items: center;
  gap: 1rem;
}

.play-btn {
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #241907;
  font-size: 1.15rem;
  box-shadow: 0 10px 34px rgba(216,177,92,0.35);
  cursor: pointer;
}

.progress-block {
  flex: 1;
}

.progress-head {
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.progress-bar {
  position: relative;
  height: 11px;
  background: rgba(255,255,255,0.07);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  width: 18%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
}

.section-heading {
  max-width: 900px;
  margin-bottom: 2.25rem;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.about-grid,
.episodes-grid,
.platforms-grid {
  display: grid;
  gap: 1.25rem;
}

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

.info-card,
.episode-card,
.platform-card,
.community-card,
.feature-panel {
  border-radius: 28px;
}

.info-card,
.episode-card {
  padding: 1.5rem;
}

.info-card i {
  font-size: 1.4rem;
  color: var(--primary-2);
  margin-bottom: 1rem;
}

.info-card h3,
.episode-card h3 {
  margin: 0.15rem 0 0.75rem;
  font-size: 1.3rem;
}

.episode-card {
  position: relative;
  overflow: hidden;
}

.episode-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -35px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,177,92,0.18), transparent 65%);
}

.episode-index {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--primary-2);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.episode-tag {
  margin-bottom: 1rem;
}

.card-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
}

.feature-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: stretch;
}

.feature-copy,
.feature-points {
  padding: 2rem;
}

.feature-points {
  display: grid;
  gap: 1rem;
}

.feature-points div {
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

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

.platform-card {
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  min-height: 116px;
}

.platform-card i {
  font-size: 1.7rem;
  color: var(--primary-2);
}

.community-card {
  padding: 2rem;
  gap: 1.25rem;
}

.community-copy {
  max-width: 620px;
}

.subscribe-form {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.subscribe-form input {
  min-width: 300px;
  flex: 1;
  height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  padding: 0 1rem;
  outline: none;
}

.subscribe-form input::placeholder {
  color: #8f99bb;
}

.form-message {
  margin: 0;
  color: var(--primary-2);
  min-height: 1.5rem;
}

.footer {
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 2.75rem;
  color: var(--muted);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.32s; }

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

@media (max-width: 1100px) {
  .hero,
  .feature-panel,
  .community-card {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    max-width: 13ch;
  }

  .community-card {
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .topbar {
    border-radius: 24px;
    padding: 0.9rem;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(7, 11, 22, 0.95);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    border-radius: 24px;
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .topbar .btn-ghost {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero h1 {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  .about-grid,
  .episodes-grid,
  .platforms-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .hero-stats,
  .player-controls,
  .footer {
    flex-direction: column;
    align-items: stretch;
  }

  .player-controls {
    gap: 1rem;
  }

  .play-btn {
    width: 58px;
    height: 58px;
  }

  .player-cover {
    min-height: 300px;
  }

  .community-card,
  .player-card,
  .feature-copy,
  .feature-points,
  .info-card,
  .episode-card {
    padding: 1.25rem;
  }

  .subscribe-form {
    width: 100%;
  }

  .subscribe-form input {
    min-width: 100%;
  }
}
