:root {
  --bg: #0b0c10;
  --bg-elevated: #14161d;
  --surface: #1c1f29;
  --text: #f4f4f5;
  --text-muted: #a1a1aa;
  --accent-start: #ff7e5f;
  --accent-end: #7b61ff;
  --accent: #a78bfa;
  --border: rgba(255, 255, 255, 0.1);
  --radius: 12px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --font-display: 'Cardo', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-width: 1100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 12, 16, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo img {
  height: 44px;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 1.75rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.site-nav a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

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

/* Hero */
.hero {
  padding: 0 0 5rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
  border-bottom: 1px solid var(--border);
}

.hero-media {
  width: 100%;
  max-height: 55vh;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  max-height: 55vh;
  object-fit: cover;
  object-position: center center;
}

.hero-copy {
  padding-top: 4rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-start);
  margin-bottom: 1rem;
}

.episode-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.08;
  max-width: 700px;
  margin-bottom: 1.25rem;
}

.hero-quote {
  margin: 0 0 2rem;
  padding: 0;
  border: none;
  max-width: 720px;
}

.hero-quote-main {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.hero-quote-full {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.hero-quote cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-muted);
  opacity: 0.8;
}

.episode-meta {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.episode-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 1.25rem;
}
.episode-description a {
  color: #ffffff;
}
.episode-description a:hover {
  text-decoration: underline;
}

.episode-description + .episode-description {
  margin-top: 1.25rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  color: #fff;
  box-shadow: 0 8px 24px rgba(123, 97, 255, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 12px 32px rgba(123, 97, 255, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2,
.about h2,
.subscribe h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-header p,
.subscribe p {
  color: var(--text-muted);
  max-width: 560px;
}

/* Episodes */
.episodes {
  background-color: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.episode-list {
  display: grid;
  gap: 1rem;
}

.episode-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.episode-card:hover {
  transform: translateY(-2px);
  border-color: rgba(167, 139, 250, 0.35);
}

.episode-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}

.episode-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.episode-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.episode-card .meta {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.episode-card .btn {
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.about-copy p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.about-copy strong {
  color: var(--text);
}

.about-badge img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

/* Subscribe */
.subscribe {
  background: linear-gradient(135deg, rgba(255, 126, 95, 0.08), rgba(123, 97, 255, 0.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.subscribe-inner p {
  margin: 0 auto 2rem;
}

.subscribe-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.subscribe-link {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 500;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.subscribe-link:hover {
  transform: translateY(-2px);
  border-color: rgba(167, 139, 250, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

/* Find Us */
.find-us {
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.find-us-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.find-us-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}

.find-us-links a {
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s ease;
}

.find-us-links a:hover {
  color: var(--accent);
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    height: 64px;
  }

  .site-nav {
    gap: 1rem;
    font-size: 0.8rem;
  }
  .site-nav .latest {
    display: none;
  }

  .logo img {
    height: 40px;
  }

  .hero {
    padding: 0 0 3rem;
  }

  .hero-copy {
    padding-top: 2.5rem;
  }

  .hero-media,
  .hero-media img {
    max-height: 40vh;
  }

  .episode-card {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .episode-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-badge {
    order: -1;
  }

  .about-badge img {
    max-width: 220px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
