:root {
  --navy: #071a3d;
  --blue: #0a55b2;
  --deep-blue: #003b8e;
  --sky: #dbeeff;
  --orange: #ff6a00;
  --gold: #ff9b21;
  --cream: #fff8ef;
  --soft: #f7f2ea;
  --white: #ffffff;
  --text: #10172f;
  --muted: #5f6b7a;
  --line: #e6dfd3;
  --shadow: 0 24px 60px rgba(7, 26, 61, 0.15);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 155, 33, 0.2), transparent 28%),
    radial-gradient(circle at 7% 26%, rgba(10, 85, 178, 0.12), transparent 24%),
    linear-gradient(180deg, #fffaf2 0%, #ffffff 48%, #fff8ef 100%);
  line-height: 1.6;
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.38;
  background-image:
    linear-gradient(120deg, transparent 0 72px, rgba(10, 85, 178, 0.08) 73px, transparent 74px),
    radial-gradient(circle at 10% 82%, rgba(255, 106, 0, 0.08), transparent 18%);
  pointer-events: none;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1180px, 90%);
  margin: 0 auto;
}

.site-header,
.header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  font-weight: 900;
}

.logo {
  width: auto;
  height: 68px;
  object-fit: contain;
  display: block;
}

.logo-wrap span {
  font-size: 18px;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 15px;
  font-weight: 750;
  color: var(--navy);
}

.nav-links a {
  position: relative;
}

.nav-links a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--orange);
}

.nav-links a:hover:after,
.nav-links a:focus-visible:after {
  transform: scaleX(1);
}

.subscribe-pill,
.btn,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.subscribe-pill,
.btn.primary,
.button:not(.secondary) {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: white;
  box-shadow: 0 14px 28px rgba(255, 106, 0, 0.26);
}

.btn.secondary,
.button.secondary {
  background: white;
  color: var(--deep-blue);
  border-color: var(--deep-blue);
}

.btn.ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.08);
}

.buttons,
.listen-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 54px;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(219, 238, 255, 0.54) 100%),
    repeating-radial-gradient(circle at 8% 88%, rgba(7, 26, 61, 0.06) 0 1px, transparent 1px 16px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
  gap: 42px;
  align-items: center;
}

.eyebrow,
.kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow.on-dark {
  color: #ffbd74;
}

.hero-copy h1,
main h1 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: clamp(46px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  margin: 0 0 26px;
}

.hero-copy h1 span {
  color: var(--orange);
}

.hero-copy p,
.lede {
  font-size: 19px;
  max-width: 650px;
  color: #26344d;
  margin: 0;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  border: 1px solid rgba(7, 26, 61, 0.12);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  isolation: isolate;
  background: linear-gradient(135deg, #dbeeff, #fff8ef);
}

.hero-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(7, 26, 61, 0.12)),
    radial-gradient(circle at 17% 18%, rgba(255, 255, 255, 0.24), transparent 22%);
  z-index: 1;
  pointer-events: none;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1535 / 1024;
  object-fit: contain;
  object-position: center;
}

/* Featured */

.featured-section {
  padding: 12px 0 42px;
}

.featured-card {
  display: grid;
  grid-template-columns: 292px 1fr;
  gap: 36px;
  align-items: center;
  background:
    radial-gradient(circle at 86% 20%, rgba(255, 155, 33, 0.18), transparent 28%),
    linear-gradient(135deg, #0755ad 0%, #003b8e 48%, #071a3d 100%);
  color: white;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.featured-card:after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -1px;
  width: 450px;
  height: 245px;
  background: rgba(255, 255, 255, 0.055);
  clip-path: polygon(0 100%, 18% 54%, 34% 70%, 54% 30%, 72% 62%, 86% 38%, 100% 100%);
}

.episode-art {
  background: white;
  border-radius: 24px;
  min-height: 268px;
  display: grid;
  place-items: center;
  padding: 24px;
  position: relative;
  z-index: 2;
}

.episode-art img {
  width: 220px;
}

.episode-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #ffbd74;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.05em;
}

.featured-content {
  position: relative;
  z-index: 2;
}

.featured-content h2,
.section-heading-row h2,
.info-card h2,
.newsletter-card h2,
.episode-page h2,
.section h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.035em;
}

.featured-content h2 {
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.02;
  margin: 14px 0 10px;
}

.featured-content p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 760px;
}

.guest-line {
  color: white !important;
  font-size: 18px;
}

.featured-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Episodes */

.section {
  padding: 44px 0;
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 26px;
}

.section-heading-row h2,
.info-card h2,
.newsletter-card h2,
.episode-page h2,
.section h2 {
  color: var(--navy);
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.05;
  margin: 0;
}

.section-heading-row a {
  color: var(--deep-blue);
  font-weight: 900;
  white-space: nowrap;
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.episode-card,
.card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(7, 26, 61, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card {
  display: block;
  padding: 24px;
}

.episode-card:hover,
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(7, 26, 61, 0.13);
}

.thumb {
  position: relative;
  height: 176px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.thumb:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(7, 26, 61, 0.18)),
    repeating-linear-gradient(45deg, transparent 0 19px, rgba(255, 255, 255, 0.08) 20px, transparent 21px);
}

.thumb-one {
  background: linear-gradient(135deg, #ffead7, #1b68bd);
}

.thumb-two {
  background: linear-gradient(135deg, #071a3d, #1873d0 55%, #9bc4ea);
}

.thumb-three {
  background: linear-gradient(135deg, #ffe2c2, #ffffff 45%, #0a55b2);
}

.thumb-four {
  background: linear-gradient(135deg, #1c2e40, #b06b38 58%, #ff9b21);
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--deep-blue);
  color: white;
  font-size: 12px;
  font-weight: 950;
  padding: 6px 11px;
  border-radius: 999px;
}

.play-small {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: white;
  color: var(--deep-blue);
  border-radius: 50%;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(7, 26, 61, 0.18);
}

.episode-body {
  padding: 20px;
}

.date,
.guest,
.meta {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 7px;
  font-weight: 700;
}

.episode-body h3,
.card h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
}

.episode-body p:last-child,
.card p {
  font-size: 14px;
  color: #303b4d;
  margin-bottom: 0;
}

/* About and Stats */

.about-band {
  padding-top: 16px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.info-card {
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: 0 16px 34px rgba(7, 26, 61, 0.08);
}

.info-card.light {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
}

.info-card p {
  color: #344154;
}

.dark-card {
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 155, 33, 0.24), transparent 24%),
    linear-gradient(135deg, #064ca3, #061a46);
  color: white;
  position: relative;
  overflow: hidden;
}

.dark-card:after {
  content: "";
  position: absolute;
  inset: auto -30px -2px auto;
  width: 360px;
  height: 190px;
  background: rgba(255, 255, 255, 0.06);
  clip-path: polygon(0 100%, 24% 54%, 38% 72%, 60% 28%, 74% 60%, 88% 40%, 100% 100%);
}

.dark-card h2 {
  color: white;
}

.dark-card p,
.dark-card .stats {
  position: relative;
  z-index: 2;
}

.dark-card p {
  color: rgba(255, 255, 255, 0.88);
}

.icon-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: center;
  margin: 30px 0;
}

.icon-circle {
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border: 2px solid var(--deep-blue);
  border-radius: 50%;
  color: var(--deep-blue);
  background: white;
  font-size: 24px;
}

.icon-circle.orange {
  border-color: var(--orange);
  color: var(--orange);
}

.icon-row h4 {
  margin: 0 0 6px;
  color: var(--navy);
}

.icon-row p {
  font-size: 13px;
  color: #37445a;
  margin: 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 38px;
  text-align: center;
}

.stats strong {
  display: block;
  font-size: 42px;
  line-height: 1;
  font-family: Georgia, "Times New Roman", serif;
}

.stats span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.84);
}

/* Newsletter */

.newsletter-section {
  padding: 10px 0 54px;
}

.newsletter-card {
  background:
    radial-gradient(circle at 92% 30%, rgba(255, 155, 33, 0.2), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 244, 232, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 38px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: 0 16px 36px rgba(7, 26, 61, 0.08);
}

.newsletter-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.newsletter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

/* Interior pages */

main.section,
.episode-page {
  padding: 64px 0;
}

main.section .container,
.episode-page .container {
  max-width: 920px;
}

main.section h1,
.episode-page h1 {
  max-width: 880px;
}

.episode-page .section {
  padding: 32px 0;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--deep-blue);
  font-weight: 800;
  font-size: 14px;
}

/* Footer */

.footer {
  background: white;
  border-top: 1px solid var(--line);
  padding: 42px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 46px;
}

.footer-logo {
  width: 132px;
  height: auto;
  display: block;
}

.footer p {
  color: var(--muted);
  max-width: 300px;
}

.footer h4 {
  color: var(--navy);
  margin: 0 0 16px;
}

.footer a {
  display: block;
  color: #27415f;
  margin: 8px 0;
  font-size: 14px;
}

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

.copyright {
  border-top: 1px solid var(--line);
  margin-top: 34px;
  padding-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

/* Mobile */

@media (max-width: 980px) {
  .nav {
    height: auto;
    min-height: 0;
    padding: 18px 0;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    gap: 22px;
    flex-wrap: wrap;
  }

  .subscribe-pill {
    margin-left: auto;
  }

  .hero-grid,
  .featured-card,
  .split-grid,
  .newsletter-card {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .hero-image {
    min-height: 0;
    height: auto;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(92%, 1180px);
  }

  .logo {
    height: 54px;
  }

  .logo-wrap span {
    display: none;
  }

  .subscribe-pill {
    display: none;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-copy h1,
  main h1 {
    font-size: 43px;
  }

  .hero-copy p,
  .lede {
    font-size: 17px;
  }

  .episode-grid,
  .icon-row,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .featured-card,
  .info-card,
  .newsletter-card {
    padding: 24px;
  }

  .episode-art {
    min-height: 220px;
  }

  .section-heading-row {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }

  .newsletter-actions,
  .hero-actions,
  .featured-actions,
  .buttons,
  .listen-links {
    flex-direction: column;
    align-items: stretch;
  }
}

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

@media (max-width: 980px) {
  .archive-grid {
    grid-template-columns: 1fr;
  }
}
