:root {
  --background: 0 0% 100%;
  --foreground: 240 8% 20%;
  --card: 0 0% 100%;
  --card-foreground: 240 8% 20%;
  --primary: 217 91% 60%;
  --primary-foreground: 0 0% 100%;
  --primary-glow: 217 91% 70%;
  --secondary: 200 85% 88%;
  --secondary-foreground: 210 40% 25%;
  --muted: 240 4.8% 95.9%;
  --muted-foreground: 240 4% 50%;
  --accent: 200 85% 88%;
  --accent-foreground: 210 40% 25%;
  --destructive: 0 84.2% 60.2%;
  --border: 240 5.9% 90%;
  --input: 240 5.9% 90%;
  --ring: 217 91% 60%;
  --radius: 0.5rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 640px) { .container { padding: 0 32px; } }

/* ── Topbar ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 0.5px solid hsl(var(--border));
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.brand {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: hsl(var(--foreground));
}
.brand span { color: hsl(var(--primary)); }
.nav { display: flex; gap: 20px; align-items: center; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}
.nav a:hover { color: hsl(var(--foreground)); }

/* ── Hero ── */
.hero {
  padding: 64px 0 56px;
  text-align: center;
  background: linear-gradient(135deg, hsl(217 91% 97%), hsl(var(--background)));
  border-bottom: 0.5px solid hsl(var(--border));
}
@media (max-width: 639px) { .hero { padding: 48px 0 40px; } }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(217 91% 50%);
  background: hsl(217 91% 96%);
  border: 0.5px solid hsl(217 91% 88%);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: hsl(var(--foreground));
  max-width: 620px;
  margin: 0 auto 16px;
}
.hero h1 em {
  color: hsl(var(--primary));
  font-style: normal;
}
.hero-desc {
  color: hsl(var(--muted-foreground));
  max-width: 560px;
  margin: 0 auto 28px;
  font-size: 15px;
  line-height: 1.7;
}
.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 0.5px solid hsl(var(--border));
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: hsl(var(--foreground));
  background: hsl(var(--card));
  transition: all 0.2s;
}
.pill:hover {
  border-color: hsl(var(--primary-glow));
  background: hsl(217 91% 97%);
}
.pill svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Sections ── */
.section {
  padding: 48px 0;
}
@media (min-width: 640px) { .section { padding: 56px 0; } }
.section h2 {
  font-size: 22px;
  font-weight: 800;
  color: hsl(var(--foreground));
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.section .sub {
  color: hsl(var(--muted-foreground));
  font-size: 14px;
  margin-bottom: 24px;
}

/* ── Episode Grid ── */
.ep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.ep-card {
  background: hsl(var(--card));
  border: 0.5px solid hsl(var(--border));
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.ep-card:hover {
  border-color: hsl(var(--primary-glow));
  box-shadow: 0 10px 15px -3px hsl(240 5.9% 10% / 0.08);
  transform: translateY(-2px);
}
.ep-card .thumb {
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
  background: hsl(var(--muted));
}
.ep-card .body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.ep-meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: hsl(var(--primary));
}
.ep-card h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: hsl(var(--foreground));
}
.ep-card p {
  color: hsl(var(--muted-foreground));
  font-size: 13px;
  line-height: 1.6;
}
.ep-card .more {
  margin-top: auto;
  padding-top: 6px;
  color: hsl(var(--primary));
  font-weight: 600;
  font-size: 13px;
}

/* ── Hosts ── */
.hosts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.host-card {
  display: block;
  background: hsl(var(--card));
  border: 0.5px solid hsl(var(--border));
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.host-card:hover {
  border-color: hsl(var(--primary-glow));
  box-shadow: 0 4px 16px hsl(217 91% 60% / 0.1);
  transform: translateY(-2px);
}
.host-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
}
.host-avatar-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: hsl(217 91% 95%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: hsl(217 91% 50%);
  margin: 0 auto 12px;
}
.host-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 2px;
}
.host-card .role {
  font-size: 12px;
  color: hsl(var(--primary));
  font-weight: 600;
  margin-bottom: 6px;
}
.host-card .bio {
  font-size: 12px;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}

/* ── About / Muted sections ── */
.section-muted {
  border-top: 0.5px solid hsl(var(--border));
  background: hsl(var(--muted));
}
.section-muted .inner {
  max-width: 640px;
  padding: 48px 0;
}
.section-muted h2 {
  font-size: 18px;
  font-weight: 800;
  color: hsl(var(--foreground));
  margin-bottom: 12px;
}
.section-muted p {
  color: hsl(var(--muted-foreground));
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ── FAQ ── */
.faq-list { list-style: none; }
.faq-item {
  border-bottom: 0.5px solid hsl(var(--border));
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 14px;
  font-weight: 600;
  color: hsl(var(--foreground));
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.faq-q svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: hsl(var(--muted-foreground));
  transition: transform 0.2s;
}
.faq-q[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-a {
  font-size: 13px;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  padding-bottom: 16px;
  display: none;
}
.faq-a.open { display: block; }

/* ── Subscribe ── */
.subscribe {
  border-top: 0.5px solid hsl(var(--border));
  background: linear-gradient(135deg, hsl(217 91% 97%), hsl(var(--background)));
  padding: 56px 0;
  text-align: center;
}
.subscribe .inner {
  max-width: 420px;
  margin: 0 auto;
}
.subscribe h2 {
  font-size: 20px;
  font-weight: 800;
  color: hsl(var(--foreground));
  margin-bottom: 6px;
}
.subscribe .sub {
  color: hsl(var(--muted-foreground));
  font-size: 14px;
  margin-bottom: 20px;
}
.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 0.5px solid hsl(var(--border));
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  margin-bottom: 10px;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: hsl(var(--ring)); }
.form-input::placeholder { color: hsl(var(--muted-foreground)); }
.btn-primary {
  width: 100%;
  padding: 10px 16px;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary:hover { background: hsl(217 91% 55%); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }
.consent-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: hsl(var(--muted-foreground));
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 12px;
}
.consent-label input { margin-top: 3px; flex: 0 0 auto; }
.consent-label a { color: hsl(var(--primary)); }
.form-msg {
  min-height: 1.2em;
  font-size: 13px;
  margin-top: 8px;
}

/* ── Footer ── */
footer {
  border-top: 0.5px solid hsl(var(--border));
}
footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 13px;
  color: hsl(var(--muted-foreground));
}

/* ── Episode Page ── */
.ep-hero {
  padding: 40px 0;
  border-bottom: 0.5px solid hsl(var(--border));
}
.ep-hero .back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  margin-bottom: 20px;
  transition: color 0.2s;
}
.ep-hero .back:hover { color: hsl(var(--primary)); }
.ep-hero .back svg { width: 16px; height: 16px; }
.ep-hero h1 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: hsl(var(--foreground));
  margin-bottom: 12px;
}
.ep-hero .meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: hsl(var(--muted-foreground));
}
.ep-hero .meta-row .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: hsl(var(--border));
}

/* ── Video / Audio ── */
.video-wrap {
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #000;
}
.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.audio-player {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.audio-player audio { width: 100%; }
.audio-label {
  font-size: 13px;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  margin-bottom: 8px;
}

/* ── Chapters ── */
.chapter-list { list-style: none; }
.chapter-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: background 0.2s;
  cursor: pointer;
  font-size: 14px;
}
.chapter-item:hover { background: hsl(var(--muted)); }
.chapter-time {
  font-size: 12px;
  font-weight: 600;
  color: hsl(var(--primary));
  font-variant-numeric: tabular-nums;
  min-width: 36px;
}
.chapter-title {
  color: hsl(var(--foreground));
  font-weight: 500;
}
.chapter-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
}
.chapters-section { margin-top: 32px; }
.chapters-section h2 { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
.ep-resources { margin-top: 32px; }
.ep-resources h2 { font-size: 18px; font-weight: 800; margin-bottom: 12px; }
.ep-resources ul { list-style: none; }
.ep-resources li { padding: 8px 0; }
.ep-resources a { color: hsl(var(--primary)); text-decoration: underline; font-size: 14px; }

/* ── Speakers ── */
.speakers-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.speaker-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  border: 0.5px solid hsl(var(--border));
  border-radius: 999px;
  background: hsl(var(--card));
}
.speaker-chip img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}
.speaker-chip span {
  font-size: 13px;
  font-weight: 600;
  color: hsl(var(--foreground));
}

/* ── Transcript ── */
.transcript-container {
  border: 0.5px solid hsl(var(--border));
  border-radius: 12px;
  overflow: hidden;
}
.transcript-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 20px;
  background: hsl(var(--card));
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: hsl(var(--foreground));
  cursor: pointer;
}
.transcript-toggle svg {
  width: 20px;
  height: 20px;
  color: hsl(var(--muted-foreground));
  transition: transform 0.2s;
}
.transcript-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.transcript-body {
  display: none;
  max-height: 600px;
  overflow-y: auto;
  padding: 0 20px 20px;
}
.transcript-body.open { display: block; }
.transcript-entry {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 0.5px solid hsl(var(--border));
}
.transcript-entry:last-child { border-bottom: none; }
.transcript-entry img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin-top: 2px;
}
.transcript-speaker {
  font-size: 13px;
  font-weight: 600;
  color: hsl(var(--foreground));
}
.transcript-time {
  font-size: 11px;
  color: hsl(var(--muted-foreground));
  margin-left: 8px;
  font-weight: 500;
}
.transcript-text {
  font-size: 14px;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin-top: 2px;
}

/* ── Share button ── */
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 0.5px solid hsl(var(--border));
  border-radius: var(--radius);
  background: hsl(var(--card));
  font-size: 13px;
  font-weight: 600;
  color: hsl(var(--foreground));
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.share-btn:hover {
  border-color: hsl(var(--primary-glow));
  background: hsl(217 91% 97%);
}
.share-btn svg { width: 16px; height: 16px; }

/* ── Episode two-column layout ── */
.ep-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .ep-layout {
    grid-template-columns: 1fr 280px;
    gap: 40px;
  }
}
.ep-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .ep-sidebar { position: sticky; top: 80px; align-self: start; }
}
.sidebar-card {
  background: hsl(var(--card));
  border: 0.5px solid hsl(var(--border));
  border-radius: 12px;
  padding: 20px;
}
.sidebar-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 12px;
}

/* ── Download package card ── */
.download-card {
  background: linear-gradient(135deg, hsl(217 91% 97%), hsl(var(--card)));
  border: 1px solid hsl(var(--primary-glow));
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.download-card .dl-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.download-card svg { width: 24px; height: 24px; }
.download-card .dl-icon svg { color: #fff; }
.download-card .dl-btn svg { width: 14px; height: 14px; }
.download-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 4px;
}
.download-card p {
  font-size: 12px;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
  margin-bottom: 14px;
}
.download-card .dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.download-card .dl-btn:hover { background: hsl(217 91% 55%); }
.download-card .dl-btn svg { width: 14px; height: 14px; }
.download-card .dl-free {
  font-size: 11px;
  color: hsl(var(--muted-foreground));
  margin-top: 8px;
  margin-bottom: 0;
}

/* ── Subscribe horizontal bar ── */
.subscribe-bar {
  border: 0.5px solid hsl(var(--border));
  border-radius: 12px;
  padding: 20px 24px;
  background: hsl(var(--card));
  margin-top: 32px;
}
.subscribe-bar h3 {
  font-size: 14px;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 12px;
}
.subscribe-bar .sub-platform-list {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  padding: 0;
  margin: 0;
}
.subscribe-bar .sub-platform-list li {
  flex-shrink: 0;
}
.sub-platform-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: hsl(var(--foreground));
  text-decoration: none;
  border: 0.5px solid hsl(var(--border));
  transition: all 0.2s;
}
.sub-platform-item:hover {
  border-color: hsl(var(--primary-glow));
  background: hsl(217 91% 97%);
}
.sub-platform-item svg {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
}

/* ── Key Takeaways ── */
.takeaways {
  margin-bottom: 28px;
}
.takeaways h2 {
  font-size: 18px;
  font-weight: 800;
  color: hsl(var(--foreground));
  margin-bottom: 12px;
}
.takeaways-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.takeaway-item {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  background: hsl(var(--card));
  border: 0.5px solid hsl(var(--border));
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}
.takeaway-item .tk-num {
  font-size: 13px;
  font-weight: 800;
  color: hsl(var(--primary));
  min-width: 20px;
}

/* ── Key Quotes ── */
.key-quotes {
  margin-bottom: 28px;
}
.key-quotes h2 {
  font-size: 18px;
  font-weight: 800;
  color: hsl(var(--foreground));
  margin-bottom: 12px;
}
.quote-card {
  border-left: 3px solid hsl(var(--primary));
  padding: 16px 20px;
  background: hsl(var(--card));
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 12px;
}
.quote-card p {
  font-size: 14px;
  font-style: italic;
  line-height: 1.7;
  color: hsl(var(--foreground));
  margin-bottom: 8px;
}
.quote-attr {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
}
.quote-attr img {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* ── Privacy Page ── */
.prose {
  max-width: 680px;
}
.prose h1 {
  font-size: 28px;
  font-weight: 800;
  color: hsl(var(--foreground));
  margin-bottom: 8px;
}
.prose .updated {
  color: hsl(var(--muted-foreground));
  margin-bottom: 32px;
  font-size: 14px;
}
.prose h2 {
  font-size: 18px;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin: 32px 0 10px;
}
.prose p {
  color: hsl(var(--muted-foreground));
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.prose ul {
  color: hsl(var(--muted-foreground));
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 12px 20px;
}
.prose li { margin-bottom: 4px; }
.prose a { color: hsl(var(--primary)); }
.prose strong { color: hsl(var(--foreground)); font-weight: 600; }

/* ── View counter ── */
.view-count {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: hsl(var(--muted-foreground));
}
.view-count svg { width: 14px; height: 14px; }

/* ── Nav Donate button ── */
.nav-donate {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground)) !important;
  padding: 6px 14px;
  border-radius: var(--radius);
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: background 0.2s;
}
.nav-donate:hover { background: hsl(217 91% 55%); color: hsl(var(--primary-foreground)) !important; }

/* ── Topic Tags ── */
.ep-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.ep-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  background: hsl(var(--muted));
  color: hsl(var(--muted-foreground));
  letter-spacing: 0.02em;
}

/* ── Donate Bar ── */
.donate-bar {
  background: linear-gradient(135deg, hsl(217 91% 97%), hsl(200 85% 95%));
  border-top: 0.5px solid hsl(var(--border));
}
.donate-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  padding-bottom: 24px;
}
.donate-bar-inner div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.donate-bar-inner strong {
  font-size: 16px;
  font-weight: 800;
  color: hsl(var(--foreground));
}
.donate-bar-inner span {
  font-size: 13px;
  color: hsl(var(--muted-foreground));
}
.btn-donate {
  display: inline-flex;
  align-items: center;
  padding: 10px 28px;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s;
  text-decoration: none;
}
.btn-donate:hover { background: hsl(217 91% 55%); }
@media (max-width: 639px) {
  .donate-bar-inner { flex-direction: column; text-align: center; }
  .donate-bar-inner div { align-items: center; }
}

/* ── Footer links ── */
.footer-links {
  display: flex;
  gap: 16px;
}
.footer-links a {
  font-size: 13px;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}
.footer-links a:hover { color: hsl(var(--primary)); }

/* ── About Page ── */
.about-hero {
  padding: 64px 0 56px;
  text-align: center;
  background: linear-gradient(135deg, hsl(217 91% 97%), hsl(var(--background)));
  border-bottom: 0.5px solid hsl(var(--border));
}
@media (max-width: 639px) { .about-hero { padding: 48px 0 40px; } }
.about-hero h1 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: hsl(var(--foreground));
  max-width: 640px;
  margin: 0 auto 16px;
}
.about-hero .hero-desc {
  color: hsl(var(--muted-foreground));
  max-width: 560px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
}
.about-hero .hero-desc a { color: hsl(var(--primary)); }

/* About bands — full-width alternating sections */
.about-band {
  padding: 56px 0;
  border-top: 0.5px solid hsl(var(--border));
}
.about-band--alt {
  background: hsl(var(--muted));
}
.about-band h2 {
  font-size: 22px;
  font-weight: 800;
  color: hsl(var(--foreground));
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  text-align: center;
}
.about-band-sub {
  font-size: 14px;
  color: hsl(var(--muted-foreground));
  text-align: center;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.about-band-sub a { color: hsl(var(--primary)); }
.about-mission-text {
  max-width: 680px;
  margin: 16px auto 0;
  text-align: center;
}
.about-mission-text p {
  font-size: 14px;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin-bottom: 12px;
}
@media (min-width: 640px) { .about-band { padding: 64px 0; } }

/* About hosts */
.about-hosts {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
.about-host-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: hsl(var(--card));
  border: 0.5px solid hsl(var(--border));
  border-radius: 12px;
}
.about-host-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.about-host-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 2px;
}
.about-host-role {
  font-size: 13px;
  font-weight: 600;
  color: hsl(var(--primary));
  margin-bottom: 8px;
}
.about-host-card p {
  font-size: 13px;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  margin-bottom: 0;
}
.about-host-card p a { color: hsl(var(--primary)); }
@media (max-width: 639px) {
  .about-host-card { flex-direction: column; align-items: center; text-align: center; }
}

/* Credibility */
.credibility-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .credibility-grid { grid-template-columns: 1fr 1fr 1fr; } }
.credibility-card {
  background: hsl(var(--card));
  border: 0.5px solid hsl(var(--border));
  border-radius: 12px;
  padding: 24px;
  margin: 0;
}
.credibility-card p {
  font-size: 14px;
  font-style: italic;
  line-height: 1.7;
  color: hsl(var(--foreground));
  margin-bottom: 12px;
}
.credibility-card cite {
  font-size: 12px;
  font-style: normal;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}
.credibility-card cite strong { color: hsl(var(--foreground)); }
.credibility-card cite a { color: hsl(var(--primary)); }

/* Program cards */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.program-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: hsl(var(--card));
  border: 0.5px solid hsl(var(--border));
  border-radius: 12px;
  transition: all 0.2s;
  text-decoration: none;
}
.program-card:hover {
  border-color: hsl(var(--primary-glow));
  box-shadow: 0 4px 16px hsl(217 91% 60% / 0.08);
  transform: translateY(-2px);
}
.program-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: hsl(217 91% 95%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  flex-shrink: 0;
}
.program-icon svg { width: 20px; height: 20px; }
.program-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: hsl(var(--foreground));
}
.program-card p {
  font-size: 13px;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin: 0;
}

/* Resource card */
.resource-cards {
  display: grid;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}
.resource-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: linear-gradient(135deg, hsl(217 91% 97%), hsl(var(--card)));
  border: 1px solid hsl(var(--primary-glow));
  border-radius: 12px;
  transition: all 0.2s;
  text-decoration: none;
}
.resource-card:hover {
  box-shadow: 0 4px 16px hsl(217 91% 60% / 0.1);
  transform: translateY(-2px);
}
.resource-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: hsl(var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.resource-icon svg { width: 20px; height: 20px; }
.resource-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: hsl(var(--foreground));
}
.resource-card p {
  font-size: 13px;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin: 0;
}
.resource-card .more {
  color: hsl(var(--primary));
  font-weight: 600;
  font-size: 13px;
}

/* ── Mobile Responsive ── */
html, body { overflow-x: hidden; }

@media (max-width: 639px) {
  .container { padding: 0 20px; }

  /* Nav: brand left, links right — compact */
  .topbar .container {
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .brand { font-size: 14px; }
  .nav { gap: 12px; }
  .nav a { font-size: 13px; }
  .nav-donate { padding: 5px 10px !important; font-size: 11px !important; }

  /* Hero */
  .hero, .about-hero { padding: 36px 0 32px; }
  .hero h1, .about-hero h1 { font-size: 1.35rem; max-width: 100%; }
  .kicker { font-size: 9px; padding: 4px 10px; letter-spacing: 0.05em; }
  .hero-desc, .about-hero .hero-desc { font-size: 13px; max-width: 100%; }

  /* Platform pills */
  .platforms { gap: 6px; }
  .pill { padding: 6px 10px; font-size: 11px; }
  .pill svg { width: 14px; height: 14px; }

  /* Sections — center headings */
  .section { padding-top: 36px; padding-bottom: 36px; }
  .section h2 { font-size: 18px; text-align: center; }
  .section .sub { text-align: center; }

  /* Episode grid single column */
  .ep-grid { grid-template-columns: 1fr; }

  /* Episode page */
  .ep-hero { padding: 28px 0; }
  .ep-hero h1 { font-size: 1.25rem; }
  .ep-layout { gap: 24px; }
  .subscribe-bar { padding: 16px; }
  .subscribe-bar .sub-platform-list { gap: 6px; }
  .sub-platform-item { padding: 6px 10px; font-size: 12px; }
  .sub-platform-item svg { width: 16px !important; height: 16px !important; }

  /* About section on homepage */
  .section-muted .inner { padding: 36px 0 36px 0; }

  /* Subscribe section */
  .subscribe { padding: 40px 0; }
  .subscribe .inner { padding: 0 20px; max-width: 100%; }
  .subscribe h2 { font-size: 18px; }

  /* FAQ */
  .faq-q { font-size: 13px; padding: 14px 0; }
  .faq-a { font-size: 12px; }

  /* About bands */
  .about-band { padding: 36px 0; }
  .about-band h2 { font-size: 18px; }
  .about-band-sub { font-size: 13px; max-width: 100%; }
  .about-mission-text p { font-size: 13px; }

  /* Host cards */
  .about-host-card { padding: 16px; }
  .about-host-card img { width: 56px; height: 56px; }
  .about-host-card h3 { font-size: 15px; }
  .about-host-card p { font-size: 12px; }

  /* Credibility cards */
  .credibility-card { padding: 16px; }
  .credibility-card p { font-size: 13px; }

  /* Program grid single column */
  .program-grid { grid-template-columns: 1fr; }
  .program-card { padding: 16px; }

  /* Resource cards */
  .resource-card { padding: 16px; }

  /* Donate bar */
  .donate-bar-inner { padding-top: 20px; padding-bottom: 20px; gap: 12px; }
  .donate-bar-inner strong { font-size: 15px; }
  .donate-bar-inner span { font-size: 12px; }
  .btn-donate { padding: 8px 20px; font-size: 13px; }

  /* Footer */
  footer .container { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 12px; }

  /* Hosts grid (homepage) — center heading */
  .hosts-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .host-card { padding: 16px 12px; }
  .host-card img { width: 48px; height: 48px; }
  .host-avatar-placeholder { width: 48px; height: 48px; font-size: 14px; }
  .host-card h3 { font-size: 13px; }
  .host-card .role { font-size: 11px; }
  .host-card .bio { font-size: 11px; }

  /* Key Takeaways & Quotes */
  .takeaway-item { padding: 12px; font-size: 13px; }
  .quote-card { padding: 12px 16px; }
  .quote-card p { font-size: 13px; }

  /* Download card */
  .download-card { padding: 20px 16px; }

  /* Sidebar */
  .sidebar-card { padding: 16px; }

  /* Privacy page */
  .prose h1 { font-size: 22px; }
}
