/* ============================================================
   The Forge Podcast — stylesheet
   Design: dark industrial, ember orange accents
   ============================================================ */

:root {
  --bg:         #0b0908;
  --bg-2:       #14100d;
  --bg-3:       #1c1714;
  --ink:        #f4ece2;
  --ink-dim:    #a89a8a;
  --ink-mute:   #6c5f54;
  --ember:      #ff6a1a;
  --ember-deep: #d63d05;
  --amber:      #ffb14a;
  --steel:      #9aa0a6;
  --line:       #2a221d;
  --line-2:     #3a2e26;
  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body:    'IBM Plex Sans', ui-sans-serif, system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
img { display: block; max-width: 100%; height: auto; }
::selection { background: var(--ember); color: var(--bg); }

/* ── Utility ─────────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ── Spark canvas ────────────────────────────────────────────── */
#sparks {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ── Nav ─────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 9, 8, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s;
}
.nav--scrolled { box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand img { height: 36px; width: auto; }
.nav__brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 20px;
  text-transform: uppercase;
}
.nav__brand-name span { color: var(--ember); }
.nav__links { display: flex; gap: 36px; }
.nav__links a { font-size: 14px; color: var(--ink-dim); transition: color 0.15s; }
.nav__links a:hover { color: var(--ink); }
.nav__rss {
  color: var(--ember) !important;
  font-family: var(--font-mono);
  font-size: 11px !important;
  letter-spacing: 0.1em;
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ember);
  color: var(--bg);
  padding: 10px 18px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: transform 0.12s, background 0.15s;
}
.nav__cta:hover { background: var(--amber); transform: translateY(-1px); }
.nav__cta svg { width: 14px; height: 14px; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.12s, background 0.15s, border-color 0.15s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn--ember { background: var(--ember); color: var(--bg); }
.btn--ember:hover { background: var(--amber); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.btn--ghost:hover { border-color: var(--ember); color: var(--ember); }
.btn svg { width: 16px; height: 16px; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
  z-index: 1;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 60% 50% at 75% 35%, rgba(255, 106, 26, 0.22), transparent 60%),
    radial-gradient(ellipse 80% 60% at 20% 90%, rgba(214, 61, 5, 0.12), transparent 60%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, black 0%, black 60%, transparent 100%);
}
.hero__grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 60px; align-items: center; }
.hero__copy { order: 1; }
.hero__logo-wrap { order: 2; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line-2);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 28px;
}
.hero__eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 4px rgba(255, 106, 26, 0.18), 0 0 16px var(--ember);
  animation: pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse { 50% { opacity: 0.55; } }

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 9.5vw, 156px);
  line-height: 0.82;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.hero__title-stamp {
  display: inline-block;
  background: linear-gradient(180deg, var(--amber) 0%, var(--ember) 55%, var(--ember-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 32px rgba(255, 106, 26, 0.35));
}
.hero__title-sub {
  display: block;
  font-size: 0.22em;
  letter-spacing: 0.4em;
  color: var(--ink-dim);
  font-weight: 700;
  margin-top: 18px;
}
.hero__lede { font-size: 19px; line-height: 1.55; color: var(--ink-dim); max-width: 560px; margin: 28px 0 36px; }
.hero__lede b { color: var(--ink); font-weight: 500; }
.hero__cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__logo-wrap { position: relative; display: flex; justify-content: center; align-items: center; }
.hero__logo-wrap::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 50% 55%, rgba(255, 106, 26, 0.35), transparent 55%);
  filter: blur(20px);
  z-index: -1;
}
.hero__logo-wrap img { width: 100%; max-width: 520px; filter: drop-shadow(0 30px 60px rgba(255, 106, 26, 0.25)); }

/* ── Stats strip ─────────────────────────────────────────────── */
.stats { border-bottom: 1px solid var(--line); background: var(--bg-2); position: relative; z-index: 1; }
.stats__row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats__cell { padding: 32px 24px; border-right: 1px solid var(--line); }
.stats__cell:last-child { border-right: none; }
.stats__num { font-family: var(--font-display); font-weight: 800; font-size: 48px; line-height: 1; color: var(--ink); }
.stats__num em { color: var(--ember); font-style: normal; }
.stats__num .mute { color: var(--ink-mute); font-size: 24px; }
.stats__label { margin-top: 8px; color: var(--ink-dim); font-size: 14px; letter-spacing: 0.02em; }

/* ── Section frame ───────────────────────────────────────────── */
.section { padding: 120px 0; border-bottom: 1px solid var(--line); position: relative; z-index: 1; }
.section--alt { background: var(--bg-2); }
.section__label { display: flex; align-items: center; gap: 14px; margin-bottom: 36px; }
.section__label-bar { width: 32px; height: 2px; background: var(--ember); }
.section__heading {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.005em;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.9;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.section__heading .accent { color: var(--ember); }
.section__intro { font-size: 19px; color: var(--ink-dim); max-width: 680px; }

/* ── Topics grid ─────────────────────────────────────────────── */
.topics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.topic { padding: 36px 32px 40px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg); transition: background 0.2s; }
.topic:hover { background: var(--bg-2); }
.topic__num { font-family: var(--font-mono); color: var(--ember); font-size: 12px; letter-spacing: 0.1em; margin-bottom: 24px; display: block; }
.topic__title { font-family: var(--font-display); font-weight: 800; font-size: 32px; line-height: 1; letter-spacing: 0.01em; text-transform: uppercase; margin: 0 0 14px; }
.topic__body { color: var(--ink-dim); font-size: 15px; margin: 0; line-height: 1.5; }

/* ── Episodes list ───────────────────────────────────────────── */
.ep-list { margin-top: 48px; }
.ep-row {
  display: grid;
  grid-template-columns: 80px 1.1fr 2fr 140px 56px;
  align-items: center;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s, padding 0.15s;
  cursor: pointer;
}
.ep-row:first-child { border-top: 1px solid var(--line); }
.ep-row:hover { padding-left: 8px; padding-right: 8px; }
.ep-row:hover .ep-row__title { color: var(--ember); }
.ep-row:hover .ep-row__play { background: var(--ember); color: var(--bg); border-color: var(--ember); }

.ep-row__num { font-family: var(--font-display); font-weight: 800; font-size: 44px; line-height: 1; color: var(--ink-mute); }
.ep-row__meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--ink-dim); text-transform: uppercase; }
.ep-row__title { font-family: var(--font-display); font-weight: 700; font-size: 26px; line-height: 1.05; letter-spacing: 0.005em; text-transform: uppercase; transition: color 0.15s; color: var(--ink); }
.ep-row__title:hover { color: var(--ember); }
.ep-row__summary { font-family: var(--font-body); text-transform: none; font-weight: 400; font-size: 14px; color: var(--ink-dim); margin: 6px 0 0; letter-spacing: 0; line-height: 1.5; }
.ep-row__meta-inline { display: none; align-items: center; gap: 8px; margin-top: 10px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; color: var(--ink-dim); text-transform: uppercase; }
.ep-row__dur { font-family: var(--font-mono); color: var(--ink-dim); font-size: 13px; text-align: right; }
.ep-row__play {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--line-2);
  background: transparent; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s; cursor: pointer; flex-shrink: 0;
}
.ep-row__play svg { width: 14px; height: 14px; }
.ep-row__play--active { background: var(--ember); color: var(--bg); border-color: var(--ember); }

/* Inline audio player */
.ep-player {
  overflow: hidden;
  background: var(--bg-3);
  border-bottom: 1px solid var(--line);
  border-left: 3px solid var(--ember);
  padding: 0 24px;
}
.ep-player:not([hidden]) { padding: 16px 24px; animation: slideDown 0.25s ease; }
@keyframes slideDown {
  from { max-height: 0; opacity: 0; }
  to   { max-height: 120px; opacity: 1; }
}
.ep-player audio { width: 100%; accent-color: var(--ember); }

/* Tags */
.tag { display: inline-block; padding: 3px 8px; background: var(--bg-3); border: 1px solid var(--line-2); color: var(--amber); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }

/* ── Host section ────────────────────────────────────────────── */
.host-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.host-portrait { position: relative; aspect-ratio: 4 / 5; border: 1px solid var(--line-2); display: flex; align-items: flex-end; overflow: hidden; background: var(--bg-3); }
.host-portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 25%; filter: contrast(1.02) saturate(0.95); z-index: 0; }
.host-portrait::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 70% 50% at 100% 30%, rgba(255, 106, 26, 0.22), transparent 55%),
    linear-gradient(180deg, transparent 40%, rgba(11, 9, 8, 0.55) 100%);
  mix-blend-mode: screen;
}
.host-portrait::after { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(255, 177, 74, 0.08); }
.host-portrait__stamp { position: absolute; top: 18px; left: 18px; z-index: 3; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; color: var(--amber); text-transform: uppercase; background: rgba(11, 9, 8, 0.55); padding: 5px 9px; border: 1px solid rgba(255, 177, 74, 0.25); backdrop-filter: blur(4px); }
.host-portrait__nameplate { width: 100%; padding: 24px 22px 22px; background: linear-gradient(180deg, transparent, rgba(11, 9, 8, 0.94) 60%); color: var(--ink); position: relative; z-index: 3; }
.host-portrait__name { font-family: var(--font-display); font-weight: 800; font-size: 30px; text-transform: uppercase; line-height: 1; }
.host-portrait__role { color: var(--ink-dim); font-size: 13px; margin-top: 6px; }

.host-bio p { font-size: 18px; color: var(--ink-dim); margin: 0 0 18px; }
.host-bio p b { color: var(--ink); font-weight: 500; }
.quote { margin-top: 32px; padding: 26px 28px; border-left: 3px solid var(--ember); background: var(--bg-2); }
.quote__text { font-family: var(--font-display); font-weight: 700; font-size: 24px; line-height: 1.15; text-transform: uppercase; letter-spacing: 0.005em; color: var(--ink); }
.quote__attr { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--ink-dim); margin-top: 14px; text-transform: uppercase; }
.social-row { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border: 1px solid var(--line-2); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: var(--ink); text-transform: uppercase; transition: all 0.15s; }
.chip:hover { border-color: var(--ember); color: var(--ember); }
.chip__dot { width: 6px; height: 6px; background: var(--ember); border-radius: 50%; }

/* ── Platforms grid ──────────────────────────────────────────── */
.platforms { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 56px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.platform-card { padding: 36px 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); display: flex; flex-direction: column; gap: 20px; transition: background 0.15s; position: relative; text-decoration: none; color: var(--ink); }
.platform-card:hover { background: var(--bg-3); }
.platform-card__hint { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--ink-dim); text-transform: uppercase; }
.platform-card__name { font-family: var(--font-display); font-weight: 800; font-size: 28px; text-transform: uppercase; letter-spacing: 0.01em; }
.platform-card__action { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--ember); text-transform: uppercase; }
.platform-card__arrow { position: absolute; top: 30px; right: 30px; font-family: var(--font-mono); font-size: 18px; color: var(--ink-mute); transition: color 0.15s, transform 0.15s; }
.platform-card:hover .platform-card__arrow { color: var(--ember); transform: translate(2px, -2px); }

/* ── Newsletter ──────────────────────────────────────────────── */
.newsletter { padding: 120px 0; position: relative; background: radial-gradient(ellipse 50% 100% at 50% 0%, rgba(255, 106, 26, 0.18), transparent 60%), var(--bg); border-bottom: 1px solid var(--line); overflow: hidden; z-index: 1; }
.newsletter__wrap { max-width: 760px; margin: 0 auto; text-align: center; position: relative; }
.newsletter__label { font-family: var(--font-mono); color: var(--amber); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; }
.newsletter__heading { font-family: var(--font-display); font-weight: 900; font-size: clamp(48px, 7vw, 96px); line-height: 0.9; letter-spacing: -0.005em; text-transform: uppercase; margin: 0 0 18px; }
.newsletter__heading .accent { color: var(--ember); }
.newsletter__body { font-size: 18px; color: var(--ink-dim); max-width: 520px; margin: 0 auto 36px; }
.newsletter__form { display: flex; max-width: 520px; margin: 0 auto; border: 1px solid var(--line-2); background: var(--bg-2); }
.newsletter__form input { flex: 1; background: transparent; border: none; outline: none; padding: 18px 22px; color: var(--ink); font-family: var(--font-body); font-size: 15px; }
.newsletter__form input::placeholder { color: var(--ink-mute); }
.newsletter__form button { background: var(--ember); color: var(--bg); border: none; padding: 0 26px; font-family: var(--font-body); font-weight: 600; font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; cursor: pointer; transition: background 0.15s; }
.newsletter__form button:hover { background: var(--amber); }
.newsletter__fineprint { margin-top: 20px; font-family: var(--font-mono); font-size: 11px; color: var(--ink-mute); letter-spacing: 0.06em; text-transform: uppercase; }

/* ── Diagonal bar ────────────────────────────────────────────── */
.diagonal { height: 6px; width: 100%; background: repeating-linear-gradient(-45deg, var(--ember) 0 12px, transparent 12px 24px); opacity: 0.5; position: relative; z-index: 1; }

/* ── Footer ──────────────────────────────────────────────────── */
footer { padding: 48px 0; background: #070605; position: relative; z-index: 1; }
.footer__row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer__brand { display: flex; align-items: center; gap: 16px; }
.footer__brand img { height: 42px; width: auto; opacity: 0.9; }
.footer__brand-name { font-family: var(--font-display); font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; font-size: 18px; }
.footer__brand-name span { color: var(--ember); }
.footer__info { font-family: var(--font-mono); font-size: 11px; color: var(--ink-mute); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }
.footer__links { display: flex; gap: 24px; font-family: var(--font-mono); font-size: 11px; color: var(--ink-mute); letter-spacing: 0.08em; text-transform: uppercase; }
.footer__links a:hover { color: var(--ember); }

/* ── Episode page ────────────────────────────────────────────── */
.ep-page { max-width: 860px; margin: 0 auto; padding: 60px 40px 120px; position: relative; z-index: 1; }
.breadcrumb { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 40px; }
.breadcrumb a { color: var(--ember); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep { margin: 0 8px; color: var(--ink-mute); }

.ep-header { margin-bottom: 40px; }
.ep-header__num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ember); margin-bottom: 14px; }
.ep-header__title { font-family: var(--font-display); font-weight: 900; font-size: clamp(36px, 5vw, 72px); line-height: 0.9; text-transform: uppercase; letter-spacing: -0.005em; margin: 0 0 24px; color: var(--ink); }
.ep-header__meta { display: flex; gap: 32px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-dim); }
.ep-header__meta-item { display: flex; flex-direction: column; gap: 4px; }
.ep-header__meta-label { color: var(--ink-mute); font-size: 10px; }
.ep-header__tags { display: flex; flex-wrap: wrap; gap: 8px; }

.ep-audio { margin-bottom: 48px; padding: 24px; background: var(--bg-2); border-left: 3px solid var(--ember); }
.ep-audio audio { width: 100%; accent-color: var(--ember); }

.ep-body { font-size: 18px; line-height: 1.7; color: var(--ink-dim); margin-bottom: 48px; }
.ep-body p { margin: 0 0 1.4em; }
.ep-body p:last-child { margin-bottom: 0; }
.ep-body b, .ep-body strong { color: var(--ink); font-weight: 500; }
.ep-body em { color: var(--amber); font-style: italic; }

.ep-transcript { margin-bottom: 48px; padding: 20px 24px; background: var(--bg-3); border: 1px solid var(--line-2); }
.ep-transcript a { color: var(--ember); font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.ep-transcript a:hover { text-decoration: underline; }

.ep-nav { display: flex; justify-content: space-between; gap: 24px; padding-top: 40px; border-top: 1px solid var(--line); margin-bottom: 40px; }
.ep-nav__prev, .ep-nav__next { font-family: var(--font-display); font-weight: 700; font-size: 18px; text-transform: uppercase; color: var(--ink-dim); transition: color 0.15s; max-width: 45%; line-height: 1.1; }
.ep-nav__prev:hover, .ep-nav__next:hover { color: var(--ember); }
.ep-nav__next { text-align: right; }

.ep-platforms { padding: 32px; background: var(--bg-2); border: 1px solid var(--line); }
.ep-platforms p { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-dim); margin: 0 0 16px; }
.ep-platforms__links { display: flex; flex-wrap: wrap; gap: 10px; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__copy { order: 2; }
  .hero__logo-wrap { order: 1; }
  .hero__logo-wrap img { max-width: 340px; margin: 0 auto; }
  .topics { grid-template-columns: repeat(2, 1fr); }
  .ep-row { grid-template-columns: 56px 1fr 44px; gap: 16px; }
  .ep-row__meta { display: none; }
  .ep-row__dur { display: none; }
  .ep-row__meta-inline { display: flex; }
  .ep-row__num { font-size: 32px; padding-top: 2px; }
  .ep-row__title { font-size: 20px; }
  .ep-row__play { width: 40px; height: 40px; }
  .host-grid { grid-template-columns: 1fr; }
  .host-portrait { aspect-ratio: 1 / 1; max-height: 440px; }
  .platforms { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .nav__links { display: none; }
  .stats__row { grid-template-columns: repeat(2, 1fr); }
  .stats__cell:nth-child(2) { border-right: none; }
}

@media (max-width: 760px) {
  html, body { overflow-x: hidden; width: 100%; max-width: 100vw; }
  * { min-width: 0; }
  .container { padding: 0 18px; }

  .nav__inner { height: 56px; }
  .nav__brand img { height: 30px; }
  .nav__brand-name { font-size: 16px; }
  .nav__cta { padding: 8px 12px; font-size: 12px; }

  .hero { padding: 36px 0 56px; }
  .hero__grid { display: flex; flex-direction: column; gap: 24px; text-align: center; align-items: center; }
  .hero__logo-wrap img { max-width: 220px; }
  .hero__eyebrow { margin: 0 auto 18px; }
  .hero__title { font-size: 48px; word-break: break-word; hyphens: auto; }
  .hero__title-sub { font-size: 10px; letter-spacing: 0.28em; margin-top: 14px; }
  .hero__lede { font-size: 15px; margin: 18px auto 24px; max-width: none; }
  .hero__cta-row { justify-content: center; width: 100%; }
  .hero__cta-row .btn { width: 100%; justify-content: center; padding: 14px 18px; font-size: 14px; }

  .stats__row { grid-template-columns: 1fr 1fr; }
  .stats__cell { padding: 20px 14px; border-bottom: 1px solid var(--line); }
  .stats__cell:nth-child(2n) { border-right: none; }
  .stats__cell:nth-child(n+3) { border-bottom: none; }
  .stats__num { font-size: 32px; }

  .section { padding: 56px 0; }
  .section__heading { font-size: 42px; word-break: break-word; }
  .section__intro { font-size: 15px; }

  .topics { grid-template-columns: 1fr 1fr; margin-top: 32px; }
  .topic { padding: 20px 16px 22px; }
  .topic__title { font-size: 20px; }
  .topic__body { font-size: 13px; }

  .ep-row {
    grid-template-columns: 44px 1fr 36px !important;
    gap: 14px !important;
    padding: 18px 0 !important;
    align-items: start !important;
  }
  .ep-row:hover { padding-left: 0 !important; padding-right: 0 !important; }
  .ep-row__num { font-size: 26px; padding-top: 4px; }
  .ep-row__title { font-size: 17px; line-height: 1.15; }
  .ep-row__play { width: 36px; height: 36px; }
  .ep-row__play svg { width: 11px; height: 11px; }

  .host-portrait { aspect-ratio: 1 / 1; }
  .host-portrait__name { font-size: 22px; }
  .host-bio p { font-size: 15px; }
  .quote { padding: 18px; }
  .quote__text { font-size: 17px; }

  .platforms { grid-template-columns: 1fr 1fr; margin-top: 28px; }
  .platform-card { padding: 22px 18px; gap: 14px; }
  .platform-card__name { font-size: 20px; }
  .platform-card__arrow { top: 18px; right: 18px; }

  .newsletter { padding: 64px 0; }
  .newsletter__heading { font-size: 44px; }
  .newsletter__form { flex-direction: column; border: none; background: transparent; gap: 10px; max-width: none; }
  .newsletter__form input { border: 1px solid var(--line-2); background: var(--bg-2); padding: 14px 16px; width: 100%; }
  .newsletter__form button { padding: 14px 20px; width: 100%; }

  footer { padding: 32px 0; }
  .footer__row { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer__brand img { height: 36px; }
  .footer__links { flex-wrap: wrap; gap: 14px; }

  .ep-page { padding: 32px 18px 72px; }
  .ep-header__title { font-size: 36px; }
  .ep-body { font-size: 16px; }
  .ep-nav { flex-direction: column; }
  .ep-nav__prev, .ep-nav__next { max-width: 100%; text-align: left; }

  .hero::after { display: none; }
}

@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .hero__title { font-size: 42px; }
  .section__heading { font-size: 36px; }
  .topics { grid-template-columns: 1fr; }
  .platforms { grid-template-columns: 1fr; }
  .stats__num { font-size: 28px; }
}
