/* ---- base ---- */
body {
  margin: 0;
  background: #0e0e0e;
  color: #f5f2ea;
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
}
a { color: #c8ff3d; text-decoration: none; }
a:hover { color: #ffd23f; }
::selection { background: #c8ff3d; color: #0e0e0e; }
img { max-width: 100%; }
.page { min-height: 100vh; display: flex; flex-direction: column; }

/* ---- header / brand ---- */
.site-header {
  max-width: 760px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 48px 32px 8px;
  text-align: center;
}
.site-header--home { padding: 56px 32px 32px; }
.brand { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.site-header--home .brand { gap: 14px; }
.brand-badge {
  width: 64px;
  height: auto;
  display: block;
}
.site-header--home .brand-badge { width: 110px; }
.site-header--sm .brand-badge { width: 80px; }
.site-header--xs .brand-badge { width: 68px; }
.brand-word {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: #fff;
}
.site-header--home .brand-word { font-size: clamp(22px, 4.4vw, 42px); }
.site-header--sm .brand-word { font-size: 24px; }
.brand .accent { color: #c8ff3d; }
.tagline {
  font-size: 17px;
  line-height: 1.6;
  color: #a8a49a;
  max-width: 520px;
  margin: 16px auto 0;
}

/* ---- section labels ---- */
.eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: #9a968c;
  margin: 0 0 20px;
}
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 20px; }
.section-head .eyebrow { margin: 0; }
.view-all { color: #c8ff3d; font-weight: 700; font-size: 13px; }

/* ---- platform / listen links ---- */
.platform-row { display: flex; gap: 12px; margin-bottom: 56px; flex-wrap: wrap; }
.platform-link {
  flex: 1;
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 18px;
  background: #141416;
  border: 1px solid #2a2a2e;
  border-radius: 14px;
  color: #f5f2ea;
  font-weight: 700;
  font-size: 14.5px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.platform-link:hover {
  color: #f5f2ea;
  border-color: #c8ff3d;
  box-shadow: 0 0 0 1px #c8ff3d, 0 0 22px rgba(200, 255, 61, 0.35);
}
.platform-link--stacked { justify-content: flex-start; padding: 16px 16px 16px 32px; }
.platform-link--block { justify-content: center; padding: 16px; font-size: 16px; }

/* ---- episode list rows ---- */
.ep-list { display: flex; flex-direction: column; margin-bottom: 56px; }
.ep-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 4px;
  border-top: 1px solid #201f22;
  color: inherit;
}
a.ep-row:hover { color: inherit; }
.ep-art {
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  background: #141416;
  position: relative;
}
.ep-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ep-body { flex: 1; min-width: 0; }
.ep-heading { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.ep-heading h3 { margin: 0; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 17px; color: #fff; }
.ep-duration { font-size: 12.5px; color: #726f78; }
.ep-blurb { margin: 8px 0 0; font-size: 15.5px; line-height: 1.55; color: #c2beb4; max-width: 560px; }
.ep-arrow {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1a1a1d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c8ff3d;
  font-size: 14px;
}

/* ---- footer ---- */
.site-footer {
  max-width: 760px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 32px 20px;
  border-top: 1px solid #201f22;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.site-footer--spaced { margin-top: 24px; padding: 32px 32px 20px; }
.site-footer--wide { max-width: 900px; }
.footer-copy { font-size: 13px; color: #726f78; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: #a8a49a; font-weight: 600; }
.disclaimer { padding: 0 32px 24px; text-align: center; }
.disclaimer p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 13px;
  color: #0e0e0e;
  background: #c8ff3d;
  display: inline;
  padding: 4px 10px;
  font-weight: 600;
}

/* ---- generic card / button ---- */
.card { background: #141416; border: 1px solid #2a2a2e; border-radius: 14px; padding: 16px 18px; }
.pill-btn {
  background: #c8ff3d;
  color: #0e0e0e;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 999px;
  white-space: nowrap;
  display: inline-block;
}
.pill-btn:hover { color: #0e0e0e; opacity: 0.9; }

/* ---- audio player ---- */
.audio-player { display: flex; align-items: center; gap: 12px; }
.audio-player__btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #c8ff3d;
  color: #0e0e0e;
  border: none;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.audio-player__btn:hover { background: #ffd23f; }
.audio-player__track {
  flex: 1;
  height: 6px;
  background: #2a2a2e;
  border-radius: 999px;
  position: relative;
  cursor: pointer;
}
.audio-player__fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: #c8ff3d;
  border-radius: 999px;
  transition: width 0.1s linear;
}
.audio-player__time {
  flex-shrink: 0;
  font-size: 12.5px;
  color: #a8a49a;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* ---- episode chapters ---- */
.chapter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 11px 0;
  border: none;
  border-top: 1px solid #201f22;
  background: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
  color: inherit;
}
.chapter-row__title { font-size: 14px; color: #e0dcd2; }
.chapter-row:hover .chapter-row__title { color: #c8ff3d; }

.pill-btn-outline {
  display: inline-block;
  background: #141416;
  border: 1px solid #2a2a2e;
  color: #f5f2ea;
  font: inherit;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
}
.pill-btn-outline:hover { color: #c8ff3d; border-color: #c8ff3d; }

/* ---- transcript modal ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 100;
}
.modal-overlay[hidden] { display: none; }
.modal {
  background: #141416;
  border: 1px solid #2a2a2e;
  border-radius: 18px;
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid #201f22;
  flex-shrink: 0;
}
.modal__title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: #c8ff3d;
  margin: 0;
}
.modal__close {
  background: none;
  border: none;
  color: #a8a49a;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.modal__close:hover { color: #c8ff3d; }
.modal__body { padding: 20px 24px 28px; overflow-y: auto; }
.transcript-para { font-size: 15px; line-height: 1.75; color: #e0dcd2; margin: 0 0 18px; }
.transcript-time {
  display: inline-block;
  background: #c8ff3d;
  color: #0e0e0e;
  font-weight: 700;
  font-size: 12px;
  font-family: 'Space Grotesk', monospace;
  padding: 2px 9px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  margin-right: 8px;
  vertical-align: middle;
}
.transcript-time:hover { background: #ffd23f; }

/* ---- responsive ---- */
@media (max-width: 760px) {
  h1 { font-size: clamp(26px, 7vw, 40px) !important; }
  #contact-grid { grid-template-columns: 1fr !important; }
  #ep-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 600px) {
  .site-header,
  main, section, .site-footer { padding-left: 20px !important; padding-right: 20px !important; }
  .site-footer { flex-direction: column !important; align-items: center !important; text-align: center; gap: 12px !important; }
  .site-footer > div { justify-content: center !important; gap: 14px !important; row-gap: 8px !important; }
}
