/* ---- 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 (sticky nav) ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 8px;
  gap: 16px;
  padding: 13px 34px;
  background: rgba(14, 14, 14, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #1e1e1e;
}
.brand { display: flex; align-items: center; gap: 11px; color: #f4f1ea; }
.brand-badge { width: 24px; height: 24px; object-fit: contain; display: block; }
.brand-word {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f4f1ea;
  white-space: nowrap;
}
.brand .accent { color: #c8ff3d; }
.site-nav { display: flex; gap: 24px; margin-left: auto; }
.site-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #8f8f8f;
}
.site-nav a:hover { color: #c8ff3d; }
.site-nav a.is-active { color: #c8ff3d; }
@media (max-width: 700px) {
  .brand-word { display: none; }
  .site-header { padding: 12px 20px; gap: 10px; }
  .site-nav { gap: 16px; }
  .site-nav a { font-size: 11px; letter-spacing: 0.14em; }
}

/* ---- 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;
}
.view-all { color: #c8ff3d; font-weight: 700; font-size: 13px; }
.view-all--below { display: block; width: fit-content; margin: 24px 0 0 auto; padding-bottom: 24px; }

/* ---- platform / listen links ---- */
.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 listing header (/episodes) ---- */
.ep-listing-head { display: flex; align-items: flex-end; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; }
@media (max-width: 600px) {
  .ep-listing-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .ep-listing-stats { margin-left: 0; gap: 24px; }
}
.ep-listing-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.26em;
  color: #c8ff3d;
  margin-bottom: 12px;
}
.ep-listing-title {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: #f4f1ea;
  text-transform: uppercase;
}
.ep-listing-stats { display: flex; gap: 30px; margin-left: auto; }
.ep-listing-stat__value { font-family: 'IBM Plex Mono', monospace; font-weight: 600; font-size: 28px; color: #f4f1ea; line-height: 1; }
.ep-listing-stat__value--accent { color: #ffb020; }
.ep-listing-stat__label { font-family: 'IBM Plex Mono', monospace; font-weight: 500; font-size: 9.5px; letter-spacing: 0.2em; color: #6f6f6f; margin-top: 7px; }
.ep-listing-sub { font-family: 'Barlow', sans-serif; font-size: 15.5px; color: #8f8f8f; margin: 0 0 32px; }

.cart-load-more { display: flex; align-items: center; gap: 16px; margin-top: 18px; }
.cart-load-more__line { flex: 1; height: 1px; background: #1e1e1e; }
.cart-load-more__btn {
  padding: 13px 26px;
  border: 1px solid #333;
  color: #f4f1ea;
  border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  background: none;
  cursor: pointer;
}
.cart-load-more__btn:hover { border-color: #c8ff3d; color: #c8ff3d; }

/* ---- episode detail (cart) ---- */
.ep-topbar { display: flex; align-items: center; gap: 14px; padding: 4px 0 22px; font-family: 'IBM Plex Mono', monospace; }
.ep-topbar__back { font-weight: 700; font-size: 11px; letter-spacing: 0.18em; color: #8a8a8a; }
.ep-topbar__back:hover { color: #c8ff3d; }
.ep-topbar__aired { margin-left: auto; font-weight: 500; font-size: 10px; letter-spacing: 0.2em; color: #5c5c5c; text-transform: uppercase; }

.ep-hero { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 28px; padding: 28px 0 34px; border-top: 1px solid #1e1e1e; align-items: start; }
.ep-hero__art { display: flex; flex-direction: column; background: #151515; border: 1px solid #242424; border-radius: 3px; overflow: hidden; }
.ep-hero__art-img { width: 100%; aspect-ratio: 1 / 1; background: #101010; }
.ep-hero__art-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ep-hero__strip { display: flex; align-items: center; gap: 8px; padding: 9px 12px; background: #c8ff3d; font-family: 'IBM Plex Mono', monospace; }
.ep-hero__cart { font-weight: 700; font-size: 13px; color: #0d0d0d; }
.ep-hero__duration { margin-left: auto; font-weight: 500; font-size: 10px; color: rgba(13, 13, 13, .62); }

.ep-title { margin: 0 0 20px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: clamp(30px, 5vw, 52px); line-height: 0.95; letter-spacing: -0.02em; color: #f4f1ea; text-transform: uppercase; text-wrap: balance; }

.ep-player { padding: 18px 20px; background: #131313; border: 1px solid #242424; border-radius: 3px; margin-bottom: 18px; }
.ep-player .audio-player { gap: 18px; flex-wrap: wrap; row-gap: 10px; }
.ep-player .audio-player__btn { width: 52px; height: 52px; font-size: 16px; }
.ep-player .audio-player__time { font-family: 'IBM Plex Mono', monospace; }
.audio-player__main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 9px; }
.audio-player__main .audio-player__track { flex: none; width: 100%; }
.audio-player__meta { display: flex; align-items: center; gap: 8px; }
.ep-player__row { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.ep-player__nowchapter {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #6f6f6f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: right;
  margin-left: auto;
}

.ep-pills { display: flex; gap: 9px; flex-wrap: wrap; }
.ep-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  border: 1px solid #2b2b2b;
  border-radius: 2px;
  color: #f4f1ea;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
}
.ep-pill:hover { border-color: #c8ff3d; color: #c8ff3d; }
.ep-pill--muted { color: #8f8f8f; }
.ep-pill--muted:hover { color: #c8ff3d; }

.ep-content { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 34px; padding: 34px 0 0; border-top: 1px solid #1e1e1e; }
.ep-eyebrow { font-family: 'IBM Plex Mono', monospace; font-weight: 700; font-size: 11px; letter-spacing: 0.26em; color: #c8ff3d; margin-bottom: 18px; }
.ep-eyebrow--muted { color: #6f6f6f; }
.ep-description { font-family: 'Barlow', sans-serif; font-size: 16.5px; line-height: 1.62; color: #c9c6c0; max-width: 62ch; margin-bottom: 18px; overflow-wrap: anywhere; word-break: break-word; }
.ep-description p { margin: 0 0 18px; }
.ep-description p:last-child { margin-bottom: 0; }
/* RSS descriptions sometimes link the raw URL as its own text (no spaces,
   only occasional hyphens) -- without this, a long one won't find a break
   point at narrow widths and drags the whole page into horizontal scroll. */
.ep-description a { overflow-wrap: anywhere; word-break: break-word; }

.ep-transcript { border-top: 1px solid #1e1e1e; padding-top: 22px; margin-top: 8px; }
.ep-transcript-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 18px;
  background: #131313;
  border: 1px solid #242424;
  border-radius: 3px;
  color: #f4f1ea;
  text-align: left;
  font: inherit;
  cursor: pointer;
}
.ep-transcript-toggle__label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.18em; flex: 1; }
.ep-transcript-toggle__hint { font-family: 'IBM Plex Mono', monospace; font-weight: 500; font-size: 10px; letter-spacing: 0.14em; color: #6f6f6f; }
.ep-transcript-toggle__caret { font-family: 'IBM Plex Mono', monospace; font-weight: 500; font-size: 12px; color: #c8ff3d; }
.ep-transcript-panel { margin-top: 12px; padding: 22px; background: #111; border: 1px solid #1e1e1e; border-radius: 3px; max-height: 320px; overflow: auto; }
.ep-transcript-panel[hidden] { display: none; }
.ep-transcript-para__time {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #c8ff3d;
  margin-bottom: 10px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.ep-transcript-para__text { margin: 0 0 20px; font-family: 'Barlow', sans-serif; font-size: 15px; line-height: 1.7; color: #9a9a9a; max-width: 62ch; }
.ep-transcript-para:last-child .ep-transcript-para__text { margin-bottom: 0; }

.ep-support { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 34px; padding: 26px 28px; background: #131313; border: 1px solid #242424; border-radius: 3px; }
.ep-support__text { flex: 1; min-width: 220px; }
.ep-support__headline { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 24px; color: #f4f1ea; text-transform: uppercase; margin-bottom: 8px; }
.ep-support__sub { font-family: 'Barlow', sans-serif; font-size: 15px; color: #8f8f8f; }
.ep-support__btn { padding: 14px 22px; background: #c8ff3d; color: #0d0d0d; border-radius: 2px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.16em; }
.ep-support__btn:hover { background: #e4ff8a; color: #0d0d0d; }

.ep-share { margin-top: 26px; }

.ep-sidebar { position: sticky; top: 24px; }
.ep-chapters-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.ep-chapters-head__count { margin-left: auto; font-family: 'IBM Plex Mono', monospace; font-weight: 500; font-size: 10px; letter-spacing: 0.16em; color: #5c5c5c; }
.ep-chapters-list { border: 1px solid #242424; border-radius: 3px; background: #131313; overflow: hidden; }
.ep-chapter {
  display: flex;
  align-items: baseline;
  gap: 12px;
  width: 100%;
  padding: 12px 15px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #1e1e1e;
  text-align: left;
  font: inherit;
  cursor: pointer;
}
.ep-chapter:last-child { border-bottom: none; }
.ep-chapter__time { font-family: 'IBM Plex Mono', monospace; font-weight: 600; font-size: 10.5px; color: #5c5c5c; min-width: 38px; }
.ep-chapter__label { flex: 1; font-family: 'Barlow', sans-serif; font-weight: 500; font-size: 14px; color: #9a9a9a; }
.ep-chapter.is-active { background: #1b1b1b; }
.ep-chapter.is-active .ep-chapter__time { color: #c8ff3d; }
.ep-chapter.is-active .ep-chapter__label { color: #f4f1ea; }

.ep-soundbites { margin-top: 22px; }
.ep-soundbites-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.ep-soundbites-head__count { margin-left: auto; font-family: 'IBM Plex Mono', monospace; font-weight: 500; font-size: 10px; letter-spacing: 0.16em; color: #5c5c5c; }
.ep-soundbites-list { border: 1px solid #242424; border-radius: 3px; background: #131313; overflow: hidden; }
.ep-soundbite { display: flex; align-items: baseline; gap: 12px; width: 100%; padding: 12px 15px; background: transparent; border: none; border-bottom: 1px solid #1e1e1e; text-align: left; font: inherit; cursor: pointer; }
.ep-soundbite:last-child { border-bottom: none; }
.ep-soundbite__time { font-family: 'IBM Plex Mono', monospace; font-weight: 600; font-size: 10.5px; color: #5c5c5c; min-width: 38px; }
.ep-soundbite__label { flex: 1; font-family: 'Barlow', sans-serif; font-weight: 500; font-size: 14px; color: #9a9a9a; }
.ep-soundbite__dur { font-family: 'IBM Plex Mono', monospace; font-weight: 500; font-size: 10px; color: #5c5c5c; }
.ep-soundbite.is-active { background: #1b1b1b; }
.ep-soundbite.is-active .ep-soundbite__time { color: #c8ff3d; }
.ep-soundbite.is-active .ep-soundbite__label { color: #f4f1ea; }

.ep-request-mini { margin-top: 22px; padding: 18px 20px; background: #111; border: 1px solid #1e1e1e; border-radius: 3px; }
.ep-request-mini__status { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.ep-request-mini__dot { width: 7px; height: 7px; border-radius: 50%; background: #e4362a; box-shadow: 0 0 9px 2px rgba(228, 54, 42, .7); flex: none; }
.ep-request-mini__status-text { font-family: 'IBM Plex Mono', monospace; font-weight: 700; font-size: 10px; letter-spacing: 0.22em; color: #e4362a; }
.ep-request-mini__headline { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 20px; line-height: 1.06; color: #f4f1ea; text-transform: uppercase; margin-bottom: 10px; }
.ep-request-mini__number { font-family: 'IBM Plex Mono', monospace; font-weight: 600; font-size: 17px; color: #ffb020; margin-bottom: 14px; }
.ep-request-mini__actions { display: flex; gap: 8px; flex-wrap: wrap; }
@media (max-width: 700px) {
  .ep-request-mini__actions { flex-direction: column; gap: 8px; }
  .ep-request-mini__actions .request-line-btn { width: 100%; box-sizing: border-box; }
}

.ep-next { margin-top: 44px; padding-top: 26px; border-top: 1px solid #1e1e1e; }
.ep-next__label { font-family: 'IBM Plex Mono', monospace; font-weight: 700; font-size: 11px; letter-spacing: 0.26em; color: #6f6f6f; margin-bottom: 16px; }
.ep-next__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.ep-next__card { display: flex; gap: 14px; padding: 14px; background: #151515; border: 1px solid #242424; border-radius: 3px; color: inherit; }
.ep-next__card:hover { border-color: #c8ff3d; color: inherit; }
.ep-next__art { width: 64px; height: 64px; flex: none; background: #1d1d1d; border-radius: 2px; overflow: hidden; }
.ep-next__art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ep-next__cart { font-family: 'IBM Plex Mono', monospace; font-weight: 600; font-size: 11px; color: #c8ff3d; margin-bottom: 8px; }
.ep-next__title { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 16px; line-height: 1.08; color: #f4f1ea; text-transform: uppercase; }

@media (max-width: 860px) {
  .ep-content { grid-template-columns: 1fr; }
  .ep-sidebar { position: static; margin-top: 8px; }
}
@media (max-width: 700px) {
  .ep-hero { grid-template-columns: minmax(0, 1fr); }
  .ep-listing-stats { margin-left: 0; }
  .ep-next__grid { grid-template-columns: 1fr; }
}

/* ---- cart rack / episode tile grid (homepage + /episodes) ---- */
.cart-rack { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 56px; }
.cart-rack:has(+ .view-all--below) { margin-bottom: 0; }
.cart-tile {
  display: flex;
  flex-direction: column;
  background: #151515;
  border: 1px solid #242424;
  border-radius: 3px;
  overflow: hidden;
  color: inherit;
}
.cart-tile:hover { border-color: #c8ff3d; color: inherit; }
.cart-tile.cart-tile--collapsed { display: none; }
.cart-tile__art { width: 100%; aspect-ratio: 1 / 1; background: #1d1d1d; }
.cart-tile__art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-tile__strip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #c8ff3d;
  font-family: 'IBM Plex Mono', monospace;
}
.cart-tile__cart { font-weight: 700; font-size: 12px; color: #0e0e0e; }
.cart-tile__duration { margin-left: auto; font-size: 10.5px; color: rgba(14,14,14,.65); }
.cart-tile__title {
  padding: 12px 12px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.15;
  color: #f5f2ea;
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .cart-rack { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .cart-rack { grid-template-columns: 1fr; }
}

/* ---- footer ---- */
.site-footer { border-top: 1px solid #1e1e1e; }
.site-footer__inner {
  max-width: 760px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 28px 34px 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.site-footer--spaced .site-footer__inner { padding-top: 32px; }
.site-footer--wide .site-footer__inner { max-width: 1080px; }
.site-footer__row { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.footer-copy { font-family: 'IBM Plex Mono', monospace; font-weight: 500; font-size: 11px; letter-spacing: 0.14em; color: #5c5c5c; text-transform: uppercase; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; margin-left: auto; }
.footer-links a { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 0.18em; color: #8f8f8f; text-transform: uppercase; }
.footer-links a:hover { color: #c8ff3d; }
.footer-disclaimer { margin: 0; font-family: 'Barlow', sans-serif; font-size: 12px; line-height: 1.6; color: #4f4f4f; max-width: 70ch; }

/* ---- 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; }

/* ---- request line / voicemail hotline ---- */
.request-line-section {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto 56px;
  box-sizing: border-box;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid #201f22;
  border-radius: 14px;
  background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 3px);
}
.request-line-inner { display: grid; grid-template-columns: 1fr 132px; }
.request-line-main { padding: 56px 32px 52px; min-width: 0; }
.request-line-tag { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.request-line-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: #0a0a0a;
  background: #e4362a;
  padding: 5px 8px;
  border-radius: 2px;
}
.request-line-status {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #5c5c5c;
}
.request-line-headline {
  margin: 0 0 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 6.4vw, 82px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: #f4f1ea;
  text-transform: uppercase;
}
.request-line-headline span { color: #ffb020; }
.request-line-sub {
  margin: 0 0 30px;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #8f8f8f;
  max-width: 44ch;
}
.request-line-keys { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.request-line-keys__group { display: flex; gap: 8px; }
.request-line-keys__group span {
  width: 40px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #161616;
  border: 1px solid #2b2b2b;
  border-radius: 3px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 18px;
  color: #f4f1ea;
}
@media (max-width: 460px) {
  .request-line-keys { gap: 10px; }
  .request-line-keys__group { gap: 5px; }
  .request-line-keys__group span { width: 26px; height: 34px; font-size: 13px; }
}
.request-line-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.request-line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 26px;
  border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.15em;
}
.request-line-btn--solid { background: #f4f1ea; color: #0a0a0a; }
.request-line-btn--solid:hover { background: #fff; color: #0a0a0a; }
.request-line-btn--outline { background: #151515; border: 1px solid #333; color: #f4f1ea; }
.request-line-btn--outline:hover { background: #1a1a1a; border-color: #f4f1ea; color: #f4f1ea; }
.request-line-btn--icon { gap: 10px; }
.request-line-vu {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 24px 20px;
  background: #0f0f0f;
  border-left: 1px solid #1e1e1e;
}
.request-line-vu__bars { display: flex; align-items: flex-end; gap: 5px; height: 200px; }
.request-line-vu__bars span {
  flex: 1;
  height: 100%;
  background: linear-gradient(to top, #c8ff2e, #8fd400);
  border-radius: 1px;
  transform-origin: bottom;
  animation: request-line-vu 1.4s ease-in-out infinite;
}
.request-line-vu__bars span:nth-child(1) { animation-delay: 0s; }
.request-line-vu__bars span:nth-child(2) { animation-delay: 0.12s; }
.request-line-vu__bars span:nth-child(3) { animation-delay: 0.24s; }
.request-line-vu__bars span:nth-child(4) { animation-delay: 0.36s; }
.request-line-vu__bars span:nth-child(5) { animation-delay: 0.48s; }
.request-line-vu__bars span:nth-child(6) { animation-delay: 0.6s; }
.request-line-vu__bars span:nth-child(7) { animation-delay: 0.72s; }
.request-line-vu__label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: 0.18em;
  color: #5c5c5c;
  text-align: center;
}
@keyframes request-line-vu {
  0%, 100% { transform: scaleY(0.14); }
  35% { transform: scaleY(0.78); }
  60% { transform: scaleY(0.44); }
  80% { transform: scaleY(0.92); }
}
@media (max-width: 700px) {
  .request-line-inner { grid-template-columns: 1fr; }
  .request-line-vu { display: none; }
  .request-line-main { padding: 40px 24px 36px; }
}
@media (prefers-reduced-motion: reduce) {
  .request-line-vu__bars span { animation: none; }
  .request-line-vu__bars span:nth-child(1) { transform: scaleY(0.42); }
  .request-line-vu__bars span:nth-child(2) { transform: scaleY(0.70); }
  .request-line-vu__bars span:nth-child(3) { transform: scaleY(0.55); }
  .request-line-vu__bars span:nth-child(4) { transform: scaleY(0.85); }
  .request-line-vu__bars span:nth-child(5) { transform: scaleY(0.30); }
  .request-line-vu__bars span:nth-child(6) { transform: scaleY(0.62); }
  .request-line-vu__bars span:nth-child(7) { transform: scaleY(0.48); }
}
/* Chrome doesn't have the reduced-motion issue Firefox does on this machine;
   always keep the meter animating there regardless of the OS-level signal. */
html.is-chrome .request-line-vu__bars span {
  animation-name: request-line-vu;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

/* ---- audio player ---- */
.audio-player { display: flex; align-items: center; gap: 12px; }
.audio-player audio { display: none; }
.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;
}
/* ---- VU ladder meters (episode player) ---- */
/* Structure mirrors the "1C" (desktop) / "2A" (mobile) mockup exactly: one
   row of [btn][flex:1 min-width:0 track+time column][flex:none ladders],
   sized down at the mobile breakpoint rather than reflowed onto a second
   line -- the min-width:0 on .audio-player__main is what lets the middle
   column shrink instead of the row overflowing. */
.vu-meters { display: flex; align-items: flex-end; gap: 9px; flex-shrink: 0; padding-left: 16px; border-left: 1px solid #232323; }
.vu-ladder-wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.vu-ladder { position: relative; display: block; width: 11px; height: 52px; background: #191919; border: 1px solid #242424; overflow: hidden; }
.vu-ladder::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent 0 4px, #131313 4px 5px);
}
.vu-ladder__fill {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  background: linear-gradient(0deg, #7fbf1f 0%, #c8ff3d 62%, #ffb020 84%, #e4362a 97%);
}
.vu-ladder__tag { font-family: 'IBM Plex Mono', monospace; font-weight: 600; font-size: 9.5px; color: #5c5c5c; }

.vu-readout__db { font-family: 'IBM Plex Mono', monospace; font-weight: 700; color: #c8ff3d; }
.vu-readout__unit { font-family: 'IBM Plex Mono', monospace; font-weight: 700; letter-spacing: 0.14em; color: #6f6f6f; }

.vu-readout--inline { display: none; align-items: baseline; gap: 5px; flex-shrink: 0; margin-left: auto; }
.vu-readout--inline .vu-readout__db { font-size: 12px; }
.vu-readout--inline .vu-readout__unit { font-size: 9px; }

.vu-readout--panel { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; padding-bottom: 2px; }
.vu-readout--panel .vu-readout__db { font-size: 13px; }
.vu-readout--panel .vu-readout__unit { font-size: 8.5px; }
.vu-readout--panel .vu-readout__toggle {
  margin-top: 4px;
  padding: 4px 7px;
  background: transparent;
  border: 1px solid #2b2b2b;
  border-radius: 2px;
  color: #8f8f8f;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  cursor: pointer;
}
.vu-readout--panel .vu-readout__toggle:hover { color: #c8ff3d; border-color: #c8ff3d; }

@media (max-width: 700px) {
  .ep-player .audio-player { gap: 10px; }
  .ep-player .audio-player__btn { width: 48px; height: 48px; font-size: 14px; }
  .audio-player__main { gap: 9px; }
  .vu-meters { gap: 5px; padding-left: 0; border-left: none; }
  .vu-ladder { width: 8px; height: 44px; }
  .vu-ladder-wrap { gap: 0; }
  .vu-ladder__tag { display: none; }
  .vu-readout--panel { display: none; }
  .vu-readout--inline { display: flex; }
}

/* ---- page hero (about / contact / support) ---- */
.page-hero { width: 100%; max-width: 1080px; margin: 0 auto; padding: 66px 34px 40px; box-sizing: border-box; }
.page-hero__eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.26em;
  color: #c8ff3d;
  margin-bottom: 16px;
}
.page-hero__title {
  margin: 0 0 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 8vw, 92px);
  line-height: 0.86;
  letter-spacing: -0.025em;
  color: #f4f1ea;
  text-transform: uppercase;
  max-width: 14ch;
}
.page-hero__lede { margin: 0; font-family: 'Barlow', sans-serif; font-size: 18px; line-height: 1.5; color: #8f8f8f; max-width: 54ch; }

/* ---- rack head (recurring section divider used on about/contact/support) ---- */
.rack-head { display: flex; align-items: baseline; gap: 14px; padding: 20px 0 24px; border-top: 1px solid #1e1e1e; }
.rack-head--noline { border-top: none; }
.rack-head__label { font-family: 'IBM Plex Mono', monospace; font-weight: 700; font-size: 12px; letter-spacing: 0.26em; color: #c8ff3d; }
.rack-head__note { margin-left: auto; font-family: 'IBM Plex Mono', monospace; font-weight: 500; font-size: 11px; letter-spacing: 0.18em; color: #5c5c5c; }

/* ---- request-line button color modifiers (reused on contact + support) ---- */
.request-line-btn--amber { background: #ffb020; color: #0d0d0d; }
.request-line-btn--amber:hover { background: #ffc65c; color: #0d0d0d; box-shadow: 0 0 0 1px rgba(255, 176, 32, .3), 0 0 20px rgba(255, 176, 32, .18); }
.request-line-btn--lime { background: #c8ff3d; color: #0e0e0e; }
.request-line-btn--lime:hover { background: #c8ff3d; color: #0e0e0e; box-shadow: 0 0 0 1px rgba(200, 255, 61, .3), 0 0 20px rgba(200, 255, 61, .16); }

@media (max-width: 700px) {
  .page-hero { padding: 8px 24px 30px; }
  .page-hero__title { font-size: clamp(54px, 14vw, 92px); }
  .rack-head { flex-direction: column; align-items: flex-start; gap: 4px; }
  .rack-head__note { margin-left: 0; }
}

/* ---- home hero ---- */
.home-hero {
  width: 100%;
  max-width: 1080px;
  margin: 24px auto 0;
  padding: 74px 34px 62px;
  box-sizing: border-box;
  background: #0c0c0c;
  border: 1px solid #201f22;
  border-radius: 14px;
  background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 3px);
}
.home-hero__top { display: flex; gap: 24px; align-items: flex-start; }
.home-hero__intro { flex: 1; min-width: 0; }
.home-hero__cover { flex: none; width: 330px; aspect-ratio: 1 / 1; border-radius: 3px; overflow: hidden; border: 1px solid #242424; box-shadow: 0 0 40px rgba(0, 0, 0, .5); display: block; transition: box-shadow .2s ease; }
.home-hero__cover:hover { box-shadow: 0 0 0 1px rgba(200, 255, 61, .4), 0 0 44px 8px rgba(200, 255, 61, .2), 0 0 40px rgba(0, 0, 0, .5); }
.home-hero__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.home-hero__status { display: flex; align-items: center; gap: 11px; flex-wrap: wrap; margin-bottom: 28px; }
.home-hero__dot { width: 9px; height: 9px; border-radius: 50%; background: #e4362a; box-shadow: 0 0 12px 2px rgba(228, 54, 42, .8); animation: onair 2.4s ease-in-out infinite; }
.home-hero__onair { font-family: 'IBM Plex Mono', monospace; font-weight: 700; font-size: 11px; letter-spacing: 0.24em; color: #e4362a; }
.home-hero__meta { font-family: 'IBM Plex Mono', monospace; font-weight: 500; font-size: 11px; letter-spacing: 0.18em; color: #5c5c5c; }
.home-hero__title { margin: 0 0 24px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: clamp(40px, 9vw, 104px); line-height: 0.85; letter-spacing: -0.025em; color: #f4f1ea; text-transform: uppercase; max-width: 15ch; text-wrap: balance; }
.home-hero__title span { color: #ffb020; }
.home-hero__lede { margin: 0 0 38px; font-family: 'Barlow', sans-serif; font-size: 19px; line-height: 1.5; color: #a3a09a; max-width: 56ch; }
.home-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 11px; margin-top: 38px; }
.home-hero__btn { display: inline-flex; align-items: center; gap: 9px; padding: 17px 24px; background: #151515; border: 1px solid #333; color: #f4f1ea; border-radius: 2px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.16em; }
.home-hero__btn:hover { background: #1a1a1a; color: #f4f1ea; border-color: #c8ff3d; box-shadow: 0 0 0 1px rgba(200, 255, 61, .3), 0 0 20px rgba(200, 255, 61, .16); }
@media (max-width: 700px) {
  .home-hero { margin: 16px auto 0; padding: 8px 24px 40px; }
  .home-hero__title { font-size: clamp(50px, 14vw, 104px); }
  .home-hero__top { flex-direction: column; }
  .home-hero__cover { width: 100%; max-width: 260px; }
}

/* ---- about page ---- */
.about-hero-grid { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 56px; align-items: start; padding: 0 34px 34px; width: 100%; max-width: 1080px; margin: 0 auto; box-sizing: border-box; }
.about-intro { display: flex; flex-direction: column; gap: 18px; border-left: 2px solid #c8ff3d; padding-left: 22px; }
.about-intro__photo { margin: 0; background: #151515; border: 1px solid #242424; border-radius: 4px; padding: 8px; box-sizing: border-box; }
.about-intro__photo img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; border-radius: 2px; }
.about-intro__caption { margin-top: 8px; padding: 0 2px; font-family: 'IBM Plex Mono', monospace; font-weight: 500; font-size: 11px; letter-spacing: 0.08em; color: #6f6f6f; }
.about-intro__caption-note { display: block; margin-top: 2px; font-weight: 400; font-size: 10px; letter-spacing: 0.02em; color: #4a4a4a; }
.about-intro__lead { margin: 0; font-family: 'Barlow', sans-serif; font-size: 19px; line-height: 1.55; color: #d8d5ce; }
.about-intro p:not(.about-intro__lead) { margin: 0; font-family: 'Barlow', sans-serif; font-size: 16px; line-height: 1.6; color: #9a9790; }

.about-signal { background: #131313; border: 1px solid #242424; border-radius: 4px; overflow: hidden; }
.about-signal__head { padding: 12px 16px; background: #c8ff3d; font-family: 'IBM Plex Mono', monospace; font-weight: 700; font-size: 11px; letter-spacing: 0.2em; color: #0e0e0e; }
.about-signal__row { display: flex; justify-content: space-between; gap: 12px; padding: 14px 16px; border-bottom: 1px solid #1e1e1e; }
.about-signal__row:last-child { border-bottom: none; }
.about-signal__label { font-family: 'IBM Plex Mono', monospace; font-weight: 500; font-size: 11px; letter-spacing: 0.14em; color: #6f6f6f; }
.about-signal__value { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: 0.08em; color: #f4f1ea; text-transform: uppercase; }
.about-signal__value--accent { color: #ffb020; }

.about-patch { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 34px 44px; box-sizing: border-box; }
.about-patch__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.about-patch__card { display: flex; flex-direction: column; background: #151515; border: 1px solid #242424; border-radius: 3px; overflow: hidden; }
.about-patch__card:hover { border-color: #c8ff3d; box-shadow: 0 0 0 1px rgba(200, 255, 61, .3), 0 0 20px rgba(200, 255, 61, .16); }
.about-patch__card-head { display: flex; align-items: center; gap: 8px; min-height: 34px; padding: 9px 12px; border-bottom: 1px solid #242424; background: #1a1a1a; box-sizing: border-box; }
.about-patch__ch { font-family: 'IBM Plex Mono', monospace; font-weight: 700; font-size: 10px; letter-spacing: 0.14em; color: #c8ff3d; }
.about-patch__tag { margin-left: auto; font-family: 'IBM Plex Mono', monospace; font-weight: 500; font-size: 9.5px; letter-spacing: 0.16em; color: #6f6f6f; text-align: right; }
.about-patch__body { display: flex; flex-direction: column; padding: 15px 13px 17px; flex: 1; }
.about-patch__title { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 19px; line-height: 1.05; color: #f4f1ea; text-transform: uppercase; margin-bottom: 10px; }
.about-patch__desc { margin-top: 0; font-family: 'Barlow', sans-serif; font-size: 13.5px; line-height: 1.45; color: #8f8f8f; }

.about-listen { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 34px 66px; box-sizing: border-box; }
.about-listen__box { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; padding: 26px 30px; background: #131313; border: 1px solid #242424; border-radius: 4px; }
.about-listen__eyebrow { font-family: 'IBM Plex Mono', monospace; font-weight: 700; font-size: 11px; letter-spacing: 0.24em; color: #c8ff3d; margin-bottom: 9px; }
.about-listen__title { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 24px; letter-spacing: 0.02em; color: #f4f1ea; text-transform: uppercase; }
.about-listen__links { display: flex; flex-wrap: wrap; gap: 10px; margin-left: auto; }
.about-listen__link { display: inline-flex; align-items: center; gap: 9px; padding: 13px 20px; border: 1px solid #333; color: #f4f1ea; border-radius: 2px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.16em; }
.about-listen__link:hover { color: #f4f1ea; border-color: #c8ff3d; box-shadow: 0 0 0 1px rgba(200, 255, 61, .3), 0 0 20px rgba(200, 255, 61, .16); }

@media (max-width: 760px) {
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-patch__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 460px) {
  .about-patch__grid { grid-template-columns: 1fr; }
  .about-listen__links { margin-left: 0; width: 100%; }
}

/* ---- contact page ---- */
.contact-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 34px 44px; box-sizing: border-box; }

.contact-line {
  background: #0a0a0a;
  border: 1px solid #1e1e1e;
  border-radius: 4px;
  padding: 30px 32px;
  background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 3px);
}
.contact-line__status { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.contact-line__dot { width: 9px; height: 9px; border-radius: 50%; background: #e4362a; box-shadow: 0 0 12px 2px rgba(228, 54, 42, .8); animation: onair 2.4s ease-in-out infinite; flex: none; }
.contact-line__status-text { font-family: 'IBM Plex Mono', monospace; font-weight: 700; font-size: 11px; letter-spacing: 0.22em; color: #e4362a; }
.contact-line__note { margin-left: auto; font-family: 'IBM Plex Mono', monospace; font-weight: 500; font-size: 10px; letter-spacing: 0.16em; color: #5c5c5c; }
.contact-line__label { font-family: 'IBM Plex Mono', monospace; font-weight: 500; font-size: 10px; letter-spacing: 0.24em; color: #6b6b6b; margin-bottom: 12px; }
.contact-line__number { font-family: 'IBM Plex Mono', monospace; font-weight: 600; font-size: clamp(26px, 7vw, 38px); letter-spacing: 0.01em; color: #ffb020; margin-bottom: 24px; overflow-wrap: anywhere; }
.contact-line__actions { display: flex; gap: 11px; flex-wrap: wrap; }
.contact-line__actions .request-line-btn { flex: 1; text-align: center; min-width: 160px; }
.contact-line__email {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 11px;
  padding: 16px 18px;
  border: 1px solid #3a3a3a;
  border-radius: 2px;
  color: #f4f1ea;
}
.contact-line__email:hover { border-color: #c8ff3d; color: #c8ff3d; box-shadow: 0 0 0 1px rgba(200, 255, 61, .3), 0 0 20px rgba(200, 255, 61, .16); }
.home-hero__btn svg,
.request-line-btn--icon svg,
.ep-pill svg,
.platform-link svg,
.contact-line__email svg {
  flex: none;
}
.contact-line__email-label { white-space: nowrap; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 0.14em; }
.contact-line__email-address { margin-left: auto; font-family: 'IBM Plex Mono', monospace; font-weight: 500; font-size: 12px; color: #6f6f6f; }
@media (max-width: 480px) {
  .contact-line__email { flex-wrap: wrap; row-gap: 6px; }
  .contact-line__email-address { margin-left: 30px; flex-basis: 100%; }
  .contact-line__status { flex-wrap: wrap; row-gap: 6px; }
  .contact-line__note { margin-left: 19px; flex-basis: 100%; }
}
@keyframes onair { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

.contact-onair { display: flex; flex-direction: column; background: #131313; border: 1px solid #242424; border-radius: 4px; padding: 30px 32px; }
.contact-onair__label { font-family: 'IBM Plex Mono', monospace; font-weight: 700; font-size: 11px; letter-spacing: 0.24em; color: #c8ff3d; margin-bottom: 16px; }
.contact-onair__list { display: flex; flex-direction: column; border-top: 1px solid #1e1e1e; }
.contact-onair__item { display: flex; gap: 14px; align-items: center; padding: 13px 0; border-bottom: 1px solid #1e1e1e; }
.contact-onair__item:last-child { border-bottom: none; }
.contact-onair__mark { width: 10px; height: 10px; border: 1.5px solid #c8ff3d; flex: none; }
.contact-onair__text { font-family: 'Barlow', sans-serif; font-size: 14.5px; line-height: 1.35; color: #d8d5ce; }
.contact-onair__caption { margin: 16px 0 0; font-family: 'Barlow', sans-serif; font-size: 12.5px; line-height: 1.55; color: #6f6f6f; }

.contact-socials { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 34px 66px; box-sizing: border-box; }
.contact-socials__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.contact-social { display: flex; align-items: center; gap: 13px; padding: 17px 18px; background: #151515; border: 1px solid #242424; border-radius: 3px; color: #f4f1ea; }
.contact-social:hover { color: #c8ff3d; border-color: #c8ff3d; box-shadow: 0 0 0 1px rgba(200, 255, 61, .3), 0 0 20px rgba(200, 255, 61, .16); }
.contact-social__icon { flex: none; display: flex; }
.contact-social__meta { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.contact-social__label { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 20px; letter-spacing: 0.06em; text-transform: uppercase; }
.contact-social__handle { font-family: 'IBM Plex Mono', monospace; font-weight: 500; font-size: 11px; color: #6f6f6f; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

@media (max-width: 760px) {
  .contact-split { grid-template-columns: 1fr; }
  .contact-socials__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 460px) {
  .contact-socials__grid { grid-template-columns: 1fr; }
}

/* ---- support page ---- */
.support-tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 34px 34px; box-sizing: border-box; }
.support-tier { display: flex; flex-direction: column; background: #151515; border-radius: 4px; overflow: hidden; }
.support-tier--direct { border: 1px solid #c8ff3d; }
.support-tier--sub { border: 1px solid #242424; }
.support-tier--sub:hover { border-color: #ffb020; box-shadow: 0 0 0 1px rgba(255, 176, 32, .3), 0 0 20px rgba(255, 176, 32, .18); }
.support-tier__head { display: flex; align-items: center; gap: 8px; padding: 9px 14px; }
.support-tier--direct .support-tier__head { background: #c8ff3d; }
.support-tier--sub .support-tier__head { background: #1a1a1a; border-bottom: 1px solid #242424; }
.support-tier__head-label { font-family: 'IBM Plex Mono', monospace; font-weight: 700; font-size: 11px; letter-spacing: 0.16em; }
.support-tier--direct .support-tier__head-label { color: #0e0e0e; }
.support-tier--sub .support-tier__head-label { color: #ffb020; }
.support-tier__head-note { margin-left: auto; font-family: 'IBM Plex Mono', monospace; font-weight: 500; font-size: 10px; }
.support-tier--direct .support-tier__head-note { color: rgba(14, 14, 14, .62); }
.support-tier--sub .support-tier__head-note { color: #6f6f6f; }
.support-tier__body { padding: 28px 26px 26px; }
.support-tier__title { margin: 0 0 10px; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 34px; color: #f4f1ea; text-transform: uppercase; }
.support-tier__blurb { margin: 0 0 22px; font-family: 'Barlow', sans-serif; font-size: 15px; line-height: 1.5; color: #8f8f8f; max-width: 40ch; }

.support-partners { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 34px 66px; box-sizing: border-box; }
.support-partners__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.support-partner { display: flex; flex-direction: column; background: #131313; border: 1px solid #242424; border-radius: 3px; padding: 22px 22px 24px; }
.support-partner:hover { border-color: #c8ff3d; box-shadow: 0 0 0 1px rgba(200, 255, 61, .3), 0 0 20px rgba(200, 255, 61, .16); }
.support-partner__kind { font-family: 'IBM Plex Mono', monospace; font-weight: 500; font-size: 10px; letter-spacing: 0.2em; color: #6f6f6f; margin-bottom: 12px; }
.support-partner__name { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 26px; color: #f4f1ea; text-transform: uppercase; margin-bottom: 10px; }
.support-partner__body { font-family: 'Barlow', sans-serif; font-size: 14px; line-height: 1.5; color: #8f8f8f; margin-bottom: 18px; }
.support-partner__cta { margin-top: auto; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.16em; color: #c8ff3d; }
.support-partner__cta:hover { color: #c8ff3d; text-shadow: 0 0 14px rgba(200, 255, 61, .55); }

@media (max-width: 760px) {
  .support-tiers { grid-template-columns: 1fr; }
  .support-partners__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 460px) {
  .support-partners__grid { grid-template-columns: 1fr; }
}

/* ---- links page (link in bio) ---- */
.links-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 34px 20px 46px;
  box-sizing: border-box;
  background: #0d0d0d;
  background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, .022) 0 1px, transparent 1px 3px);
}
.links-container { width: 100%; max-width: 460px; display: flex; flex-direction: column; gap: 14px; }

.links-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #131313;
  border: 1px solid #262626;
  border-radius: 3px;
}
.links-status .home-hero__meta { margin-left: auto; }

.links-brand { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 12px 0 6px; }
.links-brand__logo { width: 62px; height: auto; margin-bottom: 18px; }
.links-brand__title {
  margin: 0 0 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: #f4f1ea;
  text-transform: uppercase;
  max-width: 14ch;
}
.links-brand__title span { color: #c8ff3d; }
.links-brand__lede { margin: 0; font-family: 'Barlow', sans-serif; font-size: 15px; line-height: 1.5; color: #8f8f8f; max-width: 40ch; text-wrap: pretty; }

.links-latest {
  display: flex;
  flex-direction: column;
  background: #151515;
  border: 1px solid #242424;
  border-radius: 3px;
  overflow: hidden;
  color: inherit;
  margin-top: 8px;
}
.links-latest:hover { color: inherit; border-color: #c8ff3d; box-shadow: 0 0 0 1px rgba(200, 255, 61, .3), 0 0 22px rgba(200, 255, 61, .16); }
.links-latest__strip { display: flex; align-items: center; gap: 8px; padding: 8px 13px; background: #c8ff3d; font-family: 'IBM Plex Mono', monospace; }
.links-latest__cart { font-weight: 700; font-size: 11px; letter-spacing: 0.1em; color: #0d0d0d; }
.links-latest__duration { margin-left: auto; font-weight: 500; font-size: 10px; color: rgba(13, 13, 13, .62); }
.links-latest__body { display: flex; align-items: center; gap: 16px; padding: 18px 16px 20px; }
.links-latest__title { flex: 1; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 22px; line-height: 1.08; color: #f4f1ea; text-transform: uppercase; }
.links-latest__play {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 50%;
  border: 1px solid #3a3a3a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #c8ff3d;
}

.links-divider { display: flex; align-items: center; gap: 12px; padding: 14px 0 4px; }
.links-divider__label { font-family: 'IBM Plex Mono', monospace; font-weight: 700; font-size: 10px; letter-spacing: 0.24em; color: #c8ff3d; }
.links-divider__line { flex: 1; height: 1px; background: #1e1e1e; }

.links-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 18px;
  background: #151515;
  border: 1px solid #242424;
  border-radius: 3px;
  color: #f4f1ea;
}
.links-row:hover { color: #c8ff3d; border-color: #c8ff3d; box-shadow: 0 0 0 1px rgba(200, 255, 61, .3), 0 0 20px rgba(200, 255, 61, .16); }
.links-row__icon { flex: none; display: flex; }
.links-row__label { flex: 1; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px; letter-spacing: 0.06em; }
.links-row__arrow { font-family: 'Barlow', sans-serif; font-size: 13px; color: #5c5c5c; }
.links-row--solid { background: #c8ff3d; border-color: #c8ff3d; color: #0d0d0d; }
.links-row--solid .links-row__arrow { color: rgba(13, 13, 13, .55); }
.links-row--solid:hover { color: #0d0d0d; box-shadow: 0 0 0 1px rgba(200, 255, 61, .4), 0 0 26px rgba(200, 255, 61, .28); }

.links-social-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-top: 2px; }
.links-social {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #151515;
  border: 1px solid #242424;
  border-radius: 3px;
  color: #8f8f8f;
}
.links-social:hover { border-color: #c8ff3d; color: #c8ff3d; box-shadow: 0 0 0 1px rgba(200, 255, 61, .3), 0 0 18px rgba(200, 255, 61, .18); }

.links-hotline {
  display: flex;
  align-items: stretch;
  gap: 14px;
  margin-top: 2px;
  padding: 18px 18px;
  background: #0a0a0a;
  border: 1px solid #1e1e1e;
  border-radius: 3px;
  background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, .028) 0 1px, transparent 1px 3px);
}
.links-hotline__main { flex: 1; min-width: 0; }
.links-hotline__tag { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.links-hotline__number { font-family: 'IBM Plex Mono', monospace; font-weight: 600; font-size: 26px; color: #ffb020; margin-bottom: 14px; }
.links-hotline__actions { display: flex; gap: 9px; }
.request-line-btn--sm { flex: 1; padding: 12px; font-size: 12px; }
.links-hotline__vu { width: 34px; flex: none; display: flex; align-items: flex-end; gap: 3px; padding-bottom: 2px; }
.links-hotline__vu-bar {
  flex: 1;
  height: 100%;
  background: linear-gradient(to top, #c8ff3d, #8fd400);
  border-radius: 1px;
  transform-origin: bottom;
  animation: request-line-vu 1.4s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .links-hotline__vu-bar { animation: none; }
  .links-hotline__vu-bar:nth-child(1) { transform: scaleY(0.55); }
  .links-hotline__vu-bar:nth-child(2) { transform: scaleY(0.80); }
  .links-hotline__vu-bar:nth-child(3) { transform: scaleY(0.38); }
  .links-hotline__vu-bar:nth-child(4) { transform: scaleY(0.65); }
}
html.is-chrome .links-hotline__vu-bar {
  animation-name: request-line-vu;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.links-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-top: 4px;
  padding-top: 20px;
  border-top: 1px solid #1e1e1e;
}
.links-footer .footer-disclaimer { max-width: 44ch; }

@media (max-width: 480px) {
  .links-brand__title { font-size: 34px; }
  .links-hotline { flex-direction: column; }
  .links-hotline__vu { display: none; }
}
@media (max-width: 420px) {
  .links-social-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Podcast platform brand-color glow, wherever a platform link/pill shows up */
[data-platform="spotify"] { --brand-glow: 29, 185, 84; }
[data-platform="apple-podcasts"] { --brand-glow: 168, 85, 247; }
[data-platform="youtube-music"] { --brand-glow: 255, 0, 0; }
[data-platform="rss"] { --brand-glow: 255, 138, 0; }

.home-hero__btn[data-platform]:hover,
.ep-pill[data-platform]:hover,
.about-listen__link[data-platform]:hover,
.links-row[data-platform]:hover,
.links-social[data-platform]:hover,
.contact-social[data-platform]:hover {
  color: rgb(var(--brand-glow));
  border-color: rgb(var(--brand-glow));
  box-shadow: 0 0 0 1px rgba(var(--brand-glow), .35), 0 0 22px rgba(var(--brand-glow), .4);
}
