/* A Healthy Conversation — landing page styles */

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

:root {
  --teal: #5BA4CF;
  --teal-hover: #4A93BE;
  --teal-deep: #3A7FA8;
  --teal-light: rgba(91, 164, 207, 0.10);
  --navy: #2C3E50;
  --navy-dark: #1a2a38;
  --accent: #00AEEF;
  --white: #ffffff;
  --off-white: #F7F9FB;
  --gray-50: #f0f4f8;
  --gray-100: #e1e8ef;
  --gray-200: #c8d3de;
  --gray-300: #a8b6c4;
  --gray-400: #8a9bb0;
  --gray-600: #5a6b7d;
  --gray-800: #2e3d4f;
  --shadow-sm: 0 1px 3px rgba(44,62,80,0.08), 0 4px 12px rgba(44,62,80,0.04);
  --shadow-md: 0 4px 12px rgba(44,62,80,0.10), 0 12px 36px rgba(44,62,80,0.08);
  --radius: 4px;
  --radius-lg: 12px;
  --max: 1140px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--navy);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--teal-deep); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--accent); }

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

/* ===== Header ===== */
.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02), 0 6px 18px rgba(44, 62, 80, 0.04);
}
.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--teal-deep) 50%, var(--accent) 100%);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy);
}
.brand:hover { color: var(--navy); }
.brand-mic {
  width: 36px;
  height: 36px;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand-mic svg { width: 100%; height: 100%; }
.brand-title {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-line-1 {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}
.brand-line-1 .a {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
}
.brand-line-1 .healthy {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
}
.brand-line-2 {
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  margin-top: 0.1rem;
}
.site-nav {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
.site-nav a {
  color: var(--gray-600);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.site-nav a:hover { color: var(--navy); }
.site-nav .nav-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--teal-deep) 100%);
  color: #fff;
  padding: 0.55rem 1.05rem;
  border-radius: var(--radius);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 174, 239, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.site-nav .nav-cta:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 174, 239, 0.32);
}

@media (max-width: 720px) {
  .site-nav { display: none; }
  .site-nav .nav-cta { display: inline-flex; }
  .site-nav { display: flex; }
  .site-nav a:not(.nav-cta) { display: none; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  position: relative;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--teal-deep) 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 174, 239, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 174, 239, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 174, 239, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(2px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
}
.btn-secondary:active {
  transform: translateY(0);
}
.btn-large {
  padding: 1.15rem 2.3rem;
  font-size: 1rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--teal-deep);
  border-bottom: 1px solid transparent;
}
.link-arrow:hover {
  color: var(--accent);
  border-bottom-color: currentColor;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #34516b 100%);
  color: #fff;
  padding: 4.5rem 0 6.5rem;
  position: relative;
  overflow: hidden;
}
.hero-waveform {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.85rem;
  height: 56px;
  width: 100%;
  color: var(--accent);
  opacity: 0.16;
  pointer-events: none;
  display: block;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
@media (max-width: 720px) {
  .hero-waveform { display: none; }
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,174,239,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  opacity: 0.7;
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--gray-200);
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-ctas {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.hero-art {
  position: relative;
  margin: 0;
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: -14px;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.35), rgba(91, 164, 207, 0.0) 60%);
  border-radius: 18px;
  filter: blur(18px);
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
}
/* Bio hero portraits are taller-than-wide; cap the width so they don't
   stretch to fill the full 1fr column on wide screens. */
.bio-hero-art {
  max-width: 360px;
  justify-self: end;
  width: 100%;
}
@media (max-width: 860px) {
  .bio-hero-art {
    max-width: 280px;
    justify-self: center;
    margin: 0 auto;
  }
}
.hero-art img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(0, 174, 239, 0.15);
  width: 100%;
  height: auto;
  display: block;
  background: var(--navy-dark);
}
.hero-caption {
  font-size: 0.78rem;
  color: var(--gray-300);
  text-align: center;
  margin-top: 0.85rem;
  letter-spacing: 0.02em;
}
@media (max-width: 860px) {
  .hero { padding: 3rem 0 3.5rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-art { order: -1; max-width: 320px; margin: 0 auto; }
}

/* ===== Section scaffolding ===== */
section { padding: 5rem 0; }
@media (max-width: 720px) { section { padding: 3.5rem 0; } }

/* ===== Side-photo (smaller image alongside section content) ===== */
.has-side-photo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(33%, 360px);
  gap: 3rem;
  align-items: center;
}
.has-side-photo-left {
  grid-template-columns: min(33%, 360px) minmax(0, 1fr);
}
.side-photo {
  margin: 0;
}
.side-photo a {
  display: block;
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.side-photo a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}
.side-photo img {
  display: block;
  width: 100%;
  height: auto;
}
.side-photo figcaption {
  margin-top: 0.7rem;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}
.side-photo figcaption a {
  color: var(--gray-600, #4b5563);
  text-decoration: none;
  border-bottom: 1px solid var(--gray-300, #d1d5db);
  display: inline;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}
.side-photo figcaption a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
  transform: none;
  box-shadow: none;
}
@media (max-width: 860px) {
  .has-side-photo,
  .has-side-photo-left {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .side-photo a { max-width: 320px; margin: 0 auto; }
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  opacity: 0.55;
  flex-shrink: 0;
}
section h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 1.5rem;
  max-width: 720px;
}
.section-lede {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 640px;
  margin-bottom: 2rem;
}

/* ===== Listen band (when + where, sits right under the hero) ===== */
.listen-band {
  background: linear-gradient(90deg, var(--teal-deep) 0%, var(--accent) 50%, var(--teal-deep) 100%);
  color: #fff;
  padding: 1.1rem 0;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.listen-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
}
.listen-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 2rem;
}
.listen-band-when {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  align-items: baseline;
}
.listen-band-day {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.005em;
  color: #fff;
}
.listen-band-station {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.listen-band-how {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
}
.listen-band-link {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 1px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.listen-band-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}
.listen-band-divider {
  color: rgba(255,255,255,0.5);
}
.listen-band-pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  margin-right: 0.1rem;
}
.listen-band-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  animation: pulse-out 1.6s ease-out infinite;
}
@keyframes pulse-out {
  0%   { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}
@media (max-width: 720px) {
  .listen-band-inner { flex-direction: column; align-items: flex-start; }
  .listen-band-how { gap: 0.4rem 0.6rem; }
}

/* ===== Quote rail (rotating pull quotes) ===== */
.quote-rail {
  background: linear-gradient(180deg, #f4f7fa 0%, #eef3f7 100%);
  padding: 4rem 0 3.5rem;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}
.quote-rail::before,
.quote-rail::after {
  content: '\201C';
  position: absolute;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.06;
  pointer-events: none;
  font-weight: 700;
}
.quote-rail::before {
  top: -3.5rem;
  left: 1.5rem;
}
.quote-rail::after {
  content: '\201D';
  bottom: -8rem;
  right: 1.5rem;
}
@media (max-width: 720px) {
  .quote-rail::before,
  .quote-rail::after { font-size: 10rem; }
  .quote-rail::after { bottom: -4.5rem; }
  .quote-rail::before { top: -1.5rem; }
}
.quote-stage {
  position: relative;
  min-height: 220px;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.quote-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  margin: 0;
  padding: 0 1rem;
}
.quote-card.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.quote-text {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--navy);
  letter-spacing: -0.005em;
  margin-bottom: 1.5rem;
}
.quote-mark {
  color: var(--accent);
  font-weight: 700;
  margin: 0 0.05em;
}
.quote-cite {
  font-size: 0.92rem;
  color: var(--gray-600);
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.quote-speaker {
  font-weight: 600;
  color: var(--navy);
}
.quote-cite.is-host .quote-speaker {
  color: var(--teal-deep);
}
.quote-show {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-400);
  font-weight: 600;
}
.quote-dots {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}
.quote-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  border: none;
  background: var(--gray-200);
  cursor: pointer;
  padding: 0;
  transition: width 0.25s ease, background 0.18s ease;
}
.quote-dot:hover { background: var(--gray-400); width: 12px; }
.quote-dot.is-active { background: var(--accent); width: 28px; }

/* ===== Why this show ===== */
.why { background: #fff; }
.why-headline {
  margin-bottom: 2.5rem;
  max-width: 760px;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy-dark);
  letter-spacing: -0.005em;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: why-counter;
}
.why-block {
  position: relative;
  padding-top: 1.5rem;
  counter-increment: why-counter;
}
.why-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(0, 174, 239, 0) 70%);
}
.why-block::after {
  content: counter(why-counter, decimal-leading-zero);
  position: absolute;
  top: 0.95rem;
  right: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gray-300);
  font-variant-numeric: tabular-nums;
}
.why-block h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.why-block p {
  color: var(--gray-800);
  line-height: 1.7;
  font-size: 1rem;
}
@media (max-width: 720px) {
  .why-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .why-block { padding-top: 1rem; }
}

/* ===== About ===== */
.about { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
}
.about-stat {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 500;
}
.about-prose {
  max-width: 720px;
}
.about-prose p {
  font-size: 1.02rem;
  color: var(--gray-800);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.about-cta { margin-top: 1.5rem; }
@media (max-width: 720px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ===== Episodes ===== */
.episodes { background: #fff; }
.episodes-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 980px) {
  .episodes-list { grid-template-columns: 1fr; }
}
.episodes-loading {
  color: var(--gray-400);
  font-style: italic;
  padding: 2rem 0;
}
.episode-slot { display: contents; }
.episode-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem 1.85rem 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  position: relative;
  min-height: 340px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.episode-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--teal-deep) 100%);
  opacity: 0.45;
  transition: opacity 0.22s ease;
}
.episode-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(44, 62, 80, 0.10), 0 4px 10px rgba(44, 62, 80, 0.05);
  border-color: rgba(0, 174, 239, 0.25);
}
.episode-card:hover::before { opacity: 1; }
.episode-card-pinned {
  background: #fff;
  border-color: rgba(58, 127, 168, 0.25);
  box-shadow: 0 10px 32px rgba(44, 62, 80, 0.08), 0 2px 8px rgba(44, 62, 80, 0.04);
}
.episode-card-pinned::before {
  height: 5px;
  opacity: 1;
}
.episode-card-pinned::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at top right, rgba(0, 174, 239, 0.09), transparent 65%);
  pointer-events: none;
}
.episode-pin {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--teal-deep);
  background: rgba(58, 127, 168, 0.10);
  padding: 0.32rem 0.65rem 0.3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 1;
}
.episode-pin::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.18);
}
.episode-date {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--teal-deep);
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.25rem;
}
.episode-date::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--teal-deep);
  opacity: 0.45;
}
.episode-card-pinned .episode-date { color: var(--accent); }
.episode-card-pinned .episode-date::before { background: var(--accent); opacity: 0.55; }
.episode-topic {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.episode-card-pinned .episode-topic { font-size: 1.4rem; }
.episode-guest {
  color: var(--gray-600);
  font-size: 0.95rem;
  font-weight: 500;
}
.episode-guest::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gray-300);
  margin-right: 0.55rem;
  vertical-align: middle;
}
.episode-links {
  display: flex;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.82rem;
  flex-wrap: wrap;
}
.episode-links a {
  font-weight: 600;
  color: var(--teal-deep);
  padding: 0.32rem 0.7rem;
  border: 1px solid var(--gray-100);
  border-radius: 999px;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.episode-links a:hover {
  background: rgba(0, 174, 239, 0.08);
  border-color: rgba(0, 174, 239, 0.4);
  color: var(--accent);
}

/* Per-card rotating pull quote */
.episode-quote {
  position: relative;
  margin: 1rem -0.4rem 0.35rem;
  min-height: 140px;
}
.episode-quote-slide {
  margin: 0;
  padding: 1rem 1.1rem 0.85rem;
  background: linear-gradient(180deg, rgba(91, 164, 207, 0.06), rgba(91, 164, 207, 0.02));
  border-radius: 6px;
  border-left: 2px solid rgba(0, 174, 239, 0.45);
  opacity: 0;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.episode-quote-slide.is-active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}
.episode-card-rotating .episode-quote-slide:not(.is-active) {
  position: absolute;
}
.episode-card-pinned .episode-quote-slide {
  background: linear-gradient(180deg, rgba(0, 174, 239, 0.07), rgba(0, 174, 239, 0.02));
  border-left-color: var(--accent);
}
.episode-quote-text {
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--navy);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 0.55rem;
}
.episode-quote-cite {
  font-size: 0.72rem;
  color: var(--teal-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}
.episode-quote-context {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--gray-500);
  line-height: 1.45;
}
.episodes-empty {
  color: var(--gray-400);
  text-align: center;
  padding: 2rem;
  border: 1px dashed var(--gray-200);
  border-radius: var(--radius);
}

/* ===== "What we stand for" mission band ===== */
.stands-for {
  background: var(--navy-dark, #16242f);
  color: #fff;
  padding: 4rem 0;
}
.stands-for .section-eyebrow { color: var(--accent); }
.stands-for h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}
.stands-for-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2.5rem;
}
.stands-for-list li {
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.55;
  color: var(--gray-200, #e5e7eb);
}
.stands-for-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}
@media (max-width: 720px) {
  .stands-for-list { grid-template-columns: 1fr; }
}

/* ===== Reach signal pill (under hero) ===== */
.reach-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--gray-300, #d1d5db);
  margin-top: 1rem;
}
.reach-pill::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.18);
}

/* ===== Bio page avatar (rectangular portrait at top of About section) ===== */
.bio-avatar {
  margin: 0.25rem 0 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.bio-avatar img {
  width: 180px;
  height: 225px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}
@media (max-width: 720px) {
  .bio-avatar img { width: 140px; height: 175px; }
}

/* ===== Scroll reveal (fade-up on enter viewport) ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal-ready .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.75s ease-out, transform 0.75s ease-out;
    will-change: opacity, transform;
  }
  .reveal-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Numbers band (trust signals under hero) ===== */
.numbers-band {
  background: #fff;
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-100, #f3f4f6);
}
.numbers-prelude {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--teal-deep);
  margin: 0 auto 1.75rem;
}
.numbers-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: center;
}
.numbers-list li {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
}
.numbers-list li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1.25rem;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: var(--gray-200, #e5e7eb);
}
.numbers-figure {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--navy, #16242f);
  line-height: 1.05;
}
.numbers-label {
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--gray-600, #4b5563);
  max-width: 32ch;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .numbers-list {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .numbers-list li:not(:last-child)::after {
    right: 25%;
    left: 25%;
    top: auto;
    bottom: -0.85rem;
    width: auto;
    height: 1px;
  }
}

/* ===== Show-history card (full-width photo of original co-hosts) ===== */
.show-history-section {
  background: #fff;
  padding: 2rem 0 4rem;
}
.show-history {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 1.65rem 2rem;
  background: var(--off-white, #f7f7f8);
  border-right: 4px solid var(--gray-300, #d1d5db);
  border-radius: 10px;
}
.show-history img {
  grid-column: 2;
  grid-row: 1;
}
.show-history figcaption {
  grid-column: 1;
  grid-row: 1;
}
.show-history img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}
.show-history figcaption {
  margin: 0;
}
.show-history p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--gray-700, #374151);
  max-width: 56ch;
}
.show-history .show-history-eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-500, #6b7280);
  margin-bottom: 0.55rem;
}
@media (max-width: 860px) {
  .show-history {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
  .show-history img,
  .show-history figcaption {
    grid-column: 1;
    grid-row: auto;
  }
  .show-history p { font-size: 0.98rem; }
}

/* ===== Bio page pull-quotes ===== */
.bio-quote {
  margin: 0 0 1.5rem;
  padding: 0.85rem 1.25rem;
  border-left: 3px solid var(--accent);
  background: #fff;
}
.bio-quote p {
  font-size: 1.1rem;
  line-height: 1.45;
  font-style: italic;
  font-weight: 500;
  color: var(--navy, #16242f);
  margin: 0 0 0.4rem;
}
.bio-quote footer {
  font-size: 0.78rem;
  color: var(--gray-600, #4b5563);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===== Topics ===== */
.topics { background: var(--off-white); }
.topic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin-top: 1.5rem;
}
.topic-chips li {
  background: #fff;
  color: var(--navy);
  padding: 0.7rem 1.15rem 0.7rem 1.05rem;
  border-radius: 99px;
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.topic-chips li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.topic-chips li:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.08);
  border-color: rgba(0, 174, 239, 0.3);
}
/* Color rhythm — six tints rotated through the list. Subtle, not loud. */
.topic-chips li:nth-child(6n+1)::before { background: #00AEEF; }
.topic-chips li:nth-child(6n+2)::before { background: #3A7FA8; }
.topic-chips li:nth-child(6n+3)::before { background: #5BA4CF; }
.topic-chips li:nth-child(6n+4)::before { background: #1B7383; }
.topic-chips li:nth-child(6n+5)::before { background: #7FB8D5; }
.topic-chips li:nth-child(6n+6)::before { background: #2C3E50; }

/* ===== Contact form ===== */
.contact { background: #fff; }
.contact-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.contact-copy { margin-bottom: 3rem; }
.contact-copy h2 {
  margin-left: auto;
  margin-right: auto;
}
.contact-copy p {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 auto 1rem;
  max-width: 560px;
}
.contact-pitch-hint {
  background: var(--off-white);
  border-left: 3px solid var(--accent);
  padding: 0.85rem 1.15rem;
  border-radius: 4px;
  font-size: 0.95rem !important;
  color: var(--gray-800) !important;
  text-align: left;
  max-width: 560px;
  margin-top: 1.25rem !important;
}
.contact-pitch-hint strong { color: var(--navy); font-weight: 700; }

.contact-form {
  text-align: left;
}
.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-field { display: flex; flex-direction: column; }
.form-field-wide { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
  letter-spacing: 0.005em;
}
.form-field .req { color: var(--accent); margin-left: 0.15rem; }
.form-field .optional {
  font-weight: 400;
  color: var(--gray-400);
  font-size: 0.85rem;
  margin-left: 0.3rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  font-family: inherit;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--navy);
  background: var(--off-white);
  border: 1.5px solid var(--gray-100);
  border-radius: 6px;
  padding: 0.95rem 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  width: 100%;
}
.form-field input { height: 52px; }
.form-field select {
  height: 52px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='%232C3E50'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-field select:invalid { color: var(--gray-400); }
.form-field textarea {
  resize: vertical;
  min-height: 150px;
}
.form-field input:hover,
.form-field textarea:hover {
  border-color: var(--gray-200);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,174,239,0.18);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--gray-300);
}
.form-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}
.form-actions .btn {
  width: 100%;
  max-width: 320px;
  padding: 1.15rem 2rem;
  font-size: 1.02rem;
}
.contact-fallback {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin: 0;
  text-align: center;
}
.contact-fallback a { color: var(--teal-deep); font-weight: 600; }
.contact-fallback a:hover { color: var(--accent); }

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .contact-copy h2 { font-size: 1.6rem; }
}

/* ===== Footer ===== */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--gray-100);
  padding: 3rem 0 2rem;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--teal-deep) 50%, var(--accent) 100%);
  opacity: 0.7;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 0.95fr 0.95fr;
  gap: 2.5rem;
  align-items: start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-brand .brand-mic {
  width: 32px;
  height: 32px;
}
.footer-tag {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 260px;
}
/* Footer-links wrapper exists for HTML grouping; let its children
   participate directly in the outer grid so brand + 3 link columns
   distribute evenly across the footer width. */
.footer-links {
  display: contents;
}
.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--navy);
  margin-bottom: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.footer-col h4::before {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  color: var(--gray-600);
  font-size: 0.92rem;
}
.footer-col a:hover { color: var(--accent); }
.footer-fineprint {
  grid-column: 1 / -1;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
  color: var(--gray-400);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

/* Listen platforms */
.listen-platforms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 0.65rem;
}
.listen-platforms li { margin: 0; }
.listen-platforms a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.7rem;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  color: var(--navy);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  font-size: 0.88rem;
  font-weight: 600;
}
.listen-platforms a:hover {
  background: #fff;
  border-color: var(--accent);
  color: var(--navy);
  transform: translateY(-1px);
}
.platform-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.platform-icon svg { width: 100%; height: 100%; }
.platform-wgan { color: var(--teal-deep); }
.platform-apple { color: #b14cf2; }
.platform-spotify { color: #1ed760; }
.platform-podbean { color: #ff7300; }
.platform-tunein { color: #14d8cc; }

/* Team list */
.team-list li {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}
.team-name {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
}
.team-name-link {
  color: var(--teal-deep);
  text-decoration: none;
  border-bottom: 1px dotted var(--gray-200);
  padding-bottom: 1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.team-name-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.team-role {
  color: var(--gray-400);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Inline link context (e.g. "interview podcast" after a link) */
.link-context {
  color: var(--gray-400);
  font-size: 0.78rem;
  font-style: italic;
}

@media (max-width: 960px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .listen-platforms { grid-template-columns: 1fr; }
}
