/* ============================================================
   Pondereth — Landing Site
   Brand: Come Follow Me Meditations
   Montserrat (display) + Open Sans (body)
   ============================================================ */

:root {
  /* Brand blues */
  --blue:      #045C82;   /* Pondereth Blue (primary) */
  --blue-600:  #0A6C96;
  --blue-2:    #347C9A;
  --blue-3:    #679DB3;
  --blue-4:    #89BED2;
  --blue-5:    #99BDCD;
  --mist:      #DCE9EF;
  --mist-2:    #EAF1F5;

  /* Neutrals */
  --paper:     #F6F4EF;   /* warm off-white */
  --paper-2:   #FFFFFF;
  --ink:       #122A38;   /* deep blue-ink text */
  --ink-soft:  #4B5F69;
  --ink-faint: #7C8B92;
  --line:      rgba(18,42,56,.10);
  --line-2:    rgba(18,42,56,.06);

  /* Accent */
  --gold:      #C6A15B;
  --gold-soft: #E7D6AE;
  --tan:       #CDB592;

  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Open Sans', system-ui, sans-serif;

  --shadow-sm: 0 1px 2px rgba(18,42,56,.06), 0 1px 1px rgba(18,42,56,.04);
  --shadow:    0 18px 40px -20px rgba(18,42,56,.28), 0 4px 12px -6px rgba(18,42,56,.12);
  --shadow-lg: 0 40px 90px -40px rgba(8,52,76,.45), 0 10px 30px -14px rgba(18,42,56,.18);

  --maxw: 1200px;
  --r: 20px;
}

/* ----- Accent themes (Tweak) ----- */
[data-accent="deep"] {
  --blue:     #06435F;
  --blue-600: #075676;
  --gold:     #C6A15B;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }

/* Eyebrow */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--gold);
  display: inline-block;
}

.section-title {
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-lead {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 56ch;
  text-wrap: pretty;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 78%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line-2);
}
.nav-inner {
  height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark { width: 32px; height: 36px; flex: none; }
/* dual-image mark: crossfade blue/white with nav state */
.logo-dual { position: relative; display: inline-block; }
.logo-dual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.logo-dual .ld-white { opacity: 0; transition: opacity .25s ease; }
.logo-dual .ld-blue { opacity: 1; transition: opacity .25s ease; }
.logo-mark { object-fit: contain; }
.brand .word {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .22em;
  font-size: 16px;
  color: var(--ink);
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color .18s ease;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: .02em;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff !important;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  transition: background .18s ease, transform .18s ease;
}
.nav-cta:hover { background: var(--blue-600); transform: translateY(-1px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
}
.hero-photo { position: absolute; inset: 0; z-index: 0; }
.hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%; display: block;
}
/* airy scrim: lighten the left where the copy sits, reveal mountains on the right */
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(246,244,239,1) 0%,
      rgba(246,244,239,1) 40%,
      rgba(246,244,239,.74) 54%,
      rgba(246,244,239,.32) 71%,
      rgba(246,244,239,.06) 88%,
      rgba(246,244,239,0) 100%),
    linear-gradient(180deg, rgba(246,244,239,0) 58%, rgba(246,244,239,.55) 100%);
}

.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { max-width: 520px; }
.badge-soon {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 7px 15px 7px 11px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  box-shadow: var(--shadow-sm);
}
.badge-soon .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--gold) 22%, transparent);
}
.hero h1 {
  font-weight: 800;
  font-size: clamp(40px, 5.4vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 22px 0 0;
}
.hero h1 .accent { color: var(--blue); display: block; }
.hero-sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 1.7vw, 21px);
  color: var(--ink-soft);
  margin: 18px 0 0;
  letter-spacing: .005em;
}
.hero-lead {
  font-size: 16.5px;
  color: var(--ink-soft);
  margin: 18px 0 0;
  max-width: 40ch;
  text-wrap: pretty;
}

/* notify */
.notify { margin-top: 30px; }
.notify-form {
  display: flex; gap: 10px;
  background: var(--paper-2);
  padding: 7px;
  border-radius: 999px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  max-width: 440px;
}
.notify-form input {
  flex: 1; border: 0; background: transparent;
  padding: 0 16px; font-family: var(--font-body); font-size: 15px;
  color: var(--ink); outline: none; min-width: 0;
}
.notify-form input::placeholder { color: var(--ink-faint); }
.btn {
  font-family: var(--font-display);
  font-weight: 600; font-size: 14.5px; letter-spacing: .01em;
  border: 0; cursor: pointer;
  padding: 13px 24px; border-radius: 999px;
  background: var(--blue); color: #fff;
  box-shadow: var(--shadow-sm);
  transition: background .18s ease, transform .18s ease;
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
}
.btn:hover { background: var(--blue-600); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--blue);
  border: 1.5px solid color-mix(in srgb, var(--blue) 35%, transparent);
  box-shadow: none;
}
.btn-ghost:hover { background: color-mix(in srgb, var(--blue) 7%, transparent); }
.notify-note {
  font-size: 13px; color: var(--ink-faint); margin-top: 11px;
  display: flex; align-items: center; gap: 7px;
}
.notify-success {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--mist-2); border: 1px solid var(--line);
  padding: 14px 20px; border-radius: 14px;
  font-size: 15px; font-weight: 600; color: var(--ink);
}
[data-hero="dark"] .notify-success {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #eaf3f8;
}
[data-hero="dark"] .notify-success svg { stroke: var(--blue-4) !important; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-yt {
  margin-top: 22px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14.5px; font-weight: 600; color: var(--ink-soft);
}
.hero-yt a { color: var(--blue); border-bottom: 1.5px solid color-mix(in srgb, var(--blue) 30%, transparent); padding-bottom: 1px; }
.hero-yt a:hover { border-color: var(--blue); }

/* ---- phone mockup ---- */
.hero-stage { display: flex; justify-content: center; position: relative; }
.phone {
  position: relative;
  width: 320px; height: 660px;
  border-radius: 46px;
  background: #0c1418;
  padding: 11px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.phone::after {  /* side button */
  content:""; position:absolute; left:-2px; top:150px; width:3px; height:54px;
  background:#0c1418; border-radius:3px;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 36px; overflow: hidden;
  background: var(--paper-2);
  position: relative;
  display: flex; flex-direction: column;
}
.phone-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph-notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 104px; height: 26px; background: #0c1418; border-radius: 14px; z-index: 6;
}
.ph-status {
  position: absolute; top: 13px; left: 0; right: 0; z-index: 5;
  display: flex; justify-content: space-between; padding: 0 24px;
  font-size: 12px; font-weight: 700; color: #fff; font-family: var(--font-body);
}
.ph-head {
  position: relative;
  background: linear-gradient(165deg, #5a7d8f 0%, #3f6076 45%, #2d4a5e 100%);
  padding: 44px 18px 64px;
  color: #fff;
}
.ph-head .row { display: flex; align-items: center; justify-content: space-between; }
.ph-greet { display: flex; align-items: center; gap: 9px; }
.ph-ava { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg,#cfe0e8,#8fb0c0); border: 1.5px solid rgba(255,255,255,.6);}
.ph-greet small { display:block; font-size: 9px; opacity:.85; }
.ph-greet b { font-size: 13px; font-weight: 700; font-family: var(--font-display); }
.ph-icons { display:flex; gap: 12px; opacity:.92; }
.ph-icons span { width: 15px; height: 15px; display:block; }
.ph-ponder {
  font-family: var(--font-display); font-weight: 800;
  font-size: 19px; letter-spacing: .04em; margin-top: 20px;
}
.ph-search {
  margin-top: 13px; height: 34px; border-radius: 10px;
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.25);
  display:flex; align-items:center; padding: 0 12px; font-size: 11px; color: rgba(255,255,255,.85);
}
.ph-body { flex: 1; background: var(--paper-2); padding: 0 14px 12px; overflow: hidden; }
.ph-tabs { display:flex; gap: 8px; margin: -22px 0 0; position: relative; z-index: 3; }
.ph-tab {
  flex: 1; text-align:center; padding: 9px; border-radius: 12px;
  font-size: 11px; font-weight: 700; font-family: var(--font-display);
  background: var(--paper-2); color: var(--ink); box-shadow: var(--shadow-sm);
}
.ph-tab.alt { background: var(--blue); color: #fff; flex: .5; }
.ph-feature {
  margin-top: 12px; height: 118px; border-radius: 16px; position: relative; overflow: hidden;
  background: linear-gradient(150deg, #7a98a6, #46707f 70%);
}
.ph-feature::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 40%, rgba(8,30,40,.55));
}
.ph-feature b {
  position:absolute; left: 12px; bottom: 11px; z-index:2; color:#fff;
  font-family: var(--font-display); font-weight:700; font-size: 13px;
}
.ph-feature .play {
  position:absolute; right: 12px; bottom: 10px; z-index:2;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.92); display:flex; align-items:center; justify-content:center;
}
.ph-feature .play::after { content:""; border-left: 9px solid var(--blue); border-top: 6px solid transparent; border-bottom: 6px solid transparent; margin-left: 3px; }
.ph-label { display:flex; justify-content: space-between; align-items:center; margin: 15px 2px 9px; }
.ph-label b { font-family: var(--font-display); font-weight:700; font-size: 12px; }
.ph-label small { font-size: 9.5px; color: var(--blue); font-weight:700; }
.ph-chips { display:flex; gap: 7px; flex-wrap: wrap; }
.ph-chip { font-size: 9.5px; padding: 6px 11px; border-radius: 999px; background: var(--mist); color: var(--blue); font-weight: 600; }
.ph-chip.on { background: var(--blue); color: #fff; }
.ph-recs { display:flex; gap: 8px; margin-top: 13px; }
.ph-rec { flex:1; }
.ph-rec .img { height: 64px; border-radius: 11px; background: linear-gradient(160deg,#bcd0d9,#7d9fae); }
.ph-rec .img.b { background: linear-gradient(160deg,#cdbfa6,#9c8f74); }
.ph-rec .img.c { background: linear-gradient(160deg,#b9cdc2,#7a9b8c); }
.ph-rec small { display:block; font-size: 8.5px; color: var(--ink-faint); margin-top: 5px; }
.ph-nav {
  height: 50px; background: var(--paper-2); border-top: 1px solid var(--line-2);
  display:flex; align-items:center; justify-content: space-around; padding-bottom: 6px;
}
.ph-nav i { width: 19px; height: 19px; border-radius: 5px; background: var(--line); display:block; }
.ph-nav i.on { background: var(--blue); }

/* ============================================================
   DARK RESTFUL HERO  (Tweak: hero = dark)
   ============================================================ */
[data-hero="dark"] .hero-scrim {
  background:
    linear-gradient(96deg,
      rgba(6,26,38,.9) 0%,
      rgba(6,26,38,.66) 36%,
      rgba(6,26,38,.32) 58%,
      rgba(6,26,38,.12) 78%,
      rgba(6,26,38,.05) 100%),
    linear-gradient(180deg, rgba(6,26,38,.35) 0%, transparent 32%, rgba(6,26,38,.6) 100%);
}
[data-hero="dark"] .badge-soon {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.2);
  color: #d3e8f1;
  box-shadow: none;
}
[data-hero="dark"] .hero h1 { color: #fff; }
[data-hero="dark"] .hero h1 .accent { color: var(--blue-4); }
[data-hero="dark"] .hero-sub { color: #b9d3df; }
[data-hero="dark"] .hero-lead { color: rgba(221,236,243,.82); }
[data-hero="dark"] .hero-lead em { color: #cfe6f0; }
[data-hero="dark"] .notify-form {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.16);
  box-shadow: none;
}
[data-hero="dark"] .notify-form input { color: #fff; }
[data-hero="dark"] .notify-form input::placeholder { color: rgba(221,236,243,.5); }
[data-hero="dark"] .notify-note { color: rgba(205,224,232,.66); }
[data-hero="dark"] .notify-note svg { stroke: var(--blue-4) !important; }
[data-hero="dark"] .hero-yt { color: rgba(210,228,236,.78); }
[data-hero="dark"] .hero-yt a { color: var(--blue-4); border-color: rgba(137,190,210,.5); }
[data-hero="dark"] .btn-ghost { color: #d3e8f1; border-color: rgba(255,255,255,.32); }
[data-hero="dark"] .btn-ghost:hover { background: rgba(255,255,255,.08); }

/* nav over dark hero: transparent at top, solidifies on scroll */
[data-hero="dark"] .nav { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; border-color: transparent; }
[data-hero="dark"] .nav .word { color: #eaf3f8; }
[data-hero="dark"] .nav .logo-dual .ld-white { opacity: 1; }
[data-hero="dark"] .nav .logo-dual .ld-blue { opacity: 0; }
[data-hero="dark"] .nav-links a { color: rgba(232,243,248,.92); }
[data-hero="dark"] .nav-links a:hover { color: #fff; }
[data-hero="dark"] .nav.solid {
  background: color-mix(in srgb, var(--paper) 80%, transparent);
  backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-color: var(--line-2);
}
[data-hero="dark"] .nav.solid .word { color: var(--ink); }
[data-hero="dark"] .nav.solid .logo-dual .ld-white { opacity: 0; }
[data-hero="dark"] .nav.solid .logo-dual .ld-blue { opacity: 1; }
[data-hero="dark"] .nav.solid .nav-links a { color: var(--ink-soft); }
[data-hero="dark"] .nav.solid .nav-links a:hover { color: var(--blue); }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { padding: 96px 0; position: relative; }
.section.tint { background: var(--paper-2); }
.section.band {
  background:
    radial-gradient(900px 500px at 80% 0%, color-mix(in srgb, var(--blue-4) 26%, transparent), transparent 60%),
    linear-gradient(180deg, var(--blue) 0%, var(--blue-600) 100%);
  color: #fff;
}
.section.band h2, .section.band h3 { color: #fff; }

/* Podcast section — light-blue band */
#podcast.section { background: var(--blue-2); }
#podcast .eyebrow { color: #fff; }
#podcast .eyebrow::before, #podcast .eyebrow::after { background: rgba(255,255,255,.8); }
#podcast .section-title { color: #fff; }
#podcast .section-lead { color: rgba(255,255,255,.9); }
#podcast .plat { background: #fff; border-color: #fff; color: var(--blue); }
#podcast .plat:hover { background: var(--paper); border-color: var(--paper); }

/* Follow section — tan band */
#follow.section.band {
  background: var(--paper-2);
  color: var(--ink);
}
#follow.section.band h2 { color: var(--ink); }
#follow .eyebrow { color: var(--ink); }
#follow .eyebrow::before, #follow .eyebrow::after { background: var(--blue); }
#follow .soc {
  background: rgba(18,42,56,.08);
  border: 1px solid rgba(18,42,56,.18);
  color: var(--ink);
}
#follow .soc:hover { background: rgba(18,42,56,.16); }
#follow .handle { color: rgba(18,42,56,.72); }
.section-head { max-width: 640px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head .section-title { margin-top: 16px; }
.section-head .section-lead { margin-top: 16px; }

/* ============================================================
   PODCAST
   ============================================================ */
.pod-top {
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end;
  margin-bottom: 44px;
}
.platforms { display: flex; gap: 10px; flex-wrap: wrap; }
.plat {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 16px; border-radius: 12px;
  background: var(--blue-2); border: 1px solid var(--blue-2);
  font-size: 13.5px; font-weight: 600; color: #fff;
  box-shadow: var(--shadow-sm); transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.plat:hover { transform: translateY(-2px); background: var(--blue); border-color: var(--blue); }
.plat svg { width: 18px; height: 18px; }

/* episode cards */
.episodes { display: grid; gap: 18px; }
.pod-live { max-width: 920px; margin: 0 auto; }
.pod-live iframe { display: block; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); background: var(--paper-2); border: 1px solid var(--line); }
.pod-live-note { text-align: center; font-size: 13px; color: var(--ink-soft); margin-top: 14px; }
[data-pod="cards"] .episodes { grid-template-columns: repeat(3, 1fr); }
[data-pod="rows"] .episodes { grid-template-columns: 1fr; max-width: 860px; }
[data-pod="list"] .episodes { grid-template-columns: 1fr; max-width: 820px; gap: 0; }

.ep {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex; flex-direction: column;
}
.ep:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ep-art {
  aspect-ratio: 1 / 1; border-radius: 14px; margin-bottom: 18px;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--mist) 0%, var(--blue-4) 120%);
}
.ep-art image-slot { width: 100%; height: 100%; display: block; }
.ep-tag {
  font-family: var(--font-display); font-weight: 700; font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--blue);
}
.ep-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 16px; line-height: 1.32; margin: 9px 0 0;
  color: var(--ink); text-wrap: pretty;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.ep-meta { margin-top: auto; padding-top: 16px; display: flex; align-items: center; gap: 12px; }
.ep-play {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: var(--blue); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px -6px color-mix(in srgb, var(--blue) 60%, transparent);
  transition: transform .16s ease, background .16s ease;
}
.ep:hover .ep-play { transform: scale(1.06); background: var(--blue-600); }
.ep-play::after { content:""; border-left: 12px solid #fff; border-top: 8px solid transparent; border-bottom: 8px solid transparent; margin-left: 3px; }
.ep-when { font-size: 12.5px; color: var(--ink-faint); }
.ep-when b { display:block; font-size: 13px; color: var(--ink-soft); font-weight: 700; font-family: var(--font-display); }
.ep-wave { display:flex; align-items: center; gap: 2.5px; height: 22px; margin-left: auto; }
.ep-wave i { width: 2.5px; border-radius: 2px; background: color-mix(in srgb, var(--blue) 35%, transparent); }

/* rows variant */
[data-pod="rows"] .ep { flex-direction: row; align-items: center; gap: 20px; padding: 18px; }
[data-pod="rows"] .ep-art {
  width: 96px; height: 96px; margin: 0; flex: none; border-radius: 14px;
}
[data-pod="rows"] .ep-body { flex: 1; min-width: 0; }
[data-pod="rows"] .ep-title { -webkit-line-clamp: 2; }
[data-pod="rows"] .ep-meta { margin: 12px 0 0; padding: 0; }

/* list variant */
[data-pod="list"] .ep {
  flex-direction: row; align-items: center; gap: 18px;
  border: 0; border-bottom: 1px solid var(--line); border-radius: 0;
  box-shadow: none; padding: 20px 4px;
}
[data-pod="list"] .ep:hover { transform: none; background: color-mix(in srgb, var(--blue) 3%, transparent); }
[data-pod="list"] .ep:first-child { border-top: 1px solid var(--line); }
[data-pod="list"] .ep-art { display: none; }
[data-pod="list"] .ep-num {
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  color: color-mix(in srgb, var(--blue) 45%, transparent); width: 28px; flex: none;
}
[data-pod="list"] .ep-body { flex: 1; min-width: 0; }
[data-pod="list"] .ep-title { -webkit-line-clamp: 2; margin: 6px 0 0; }
[data-pod="list"] .ep-meta { margin: 0; padding: 0; flex: none; }
[data-pod="list"] .ep-meta .ep-when, [data-pod="list"] .ep-meta .ep-wave { display: none; }
.ep-num { display: none; }
[data-pod="list"] .ep-num { display: block; }

.about-pod {
  display: flex; gap: 16px; align-items: flex-start;
  margin-top: 40px; padding: 22px 24px;
  background: var(--mist-2); border-radius: 16px; max-width: 720px;
}
.about-pod .logo-arch {
  width: 56px; height: 64px; flex: none; object-fit: contain;
}
.about-pod h4 { font-size: 14px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--blue); }
.about-pod p { font-size: 14.5px; color: var(--ink-soft); margin-top: 6px; }

/* ============================================================
   YOUTUBE
   ============================================================ */
.yt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
.video {
  background: var(--paper-2); border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
  cursor: pointer;
}
.video:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.video-thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; background: linear-gradient(160deg, var(--mist) 0%, var(--blue-4) 130%); }
.video-thumb image-slot { width: 100%; height: 100%; display: block; }
.video-thumb .video-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.video.playing { cursor: default; }
.video.playing:hover { transform: none; box-shadow: var(--shadow-sm); }
.video-thumb .video-embed { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.video-thumb .yt-play {
  position: absolute; inset: 0; margin: auto; width: 58px; height: 40px;
  background: rgba(220,40,40,.94); border-radius: 11px;
  display: flex; align-items: center; justify-content: center; z-index: 2;
  box-shadow: 0 8px 22px -8px rgba(0,0,0,.5);
  transition: transform .16s ease, background .16s ease;
}
.video:hover .yt-play { transform: scale(1.08); background: rgba(230,30,30,1); }
.video-thumb .yt-play::after { content:""; border-left: 16px solid #fff; border-top: 10px solid transparent; border-bottom: 10px solid transparent; margin-left: 3px; }
.video-thumb .dur {
  position: absolute; right: 9px; bottom: 9px; z-index: 2;
  background: rgba(8,20,26,.82); color: #fff; font-size: 11.5px; font-weight: 600;
  padding: 3px 7px; border-radius: 6px;
}
.video-body { padding: 16px 18px 20px; }
.video-body b {
  font-family: var(--font-display); font-weight: 700; font-size: 14.5px; line-height: 1.34;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  text-wrap: pretty;
}
.video-body small { display:flex; align-items:center; gap: 7px; margin-top: 9px; font-size: 12.5px; color: var(--ink-faint); }
.yt-foot { display:flex; justify-content:center; margin-top: 44px; }

/* ============================================================
   FOLLOW
   ============================================================ */
.follow { text-align: center; }
.socials { display: flex; justify-content: center; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.soc {
  width: 60px; height: 60px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff; transition: transform .18s ease, background .18s ease;
}
.soc:hover { transform: translateY(-4px); background: rgba(255,255,255,.22); }
.soc svg { width: 24px; height: 24px; }
.follow .handle { margin-top: 26px; font-size: 14.5px; color: rgba(255,255,255,.85); font-weight: 600; letter-spacing: .04em; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 60px 0 40px; text-align: center; }
.footer .logo-arch { width: 64px; height: 72px; object-fit: contain; margin: 0 auto; display: block; }
.footer .footer-wordmark { width: 230px; max-width: 70%; height: auto; margin: 18px auto 0; display: block; }
.footer .invite { font-size: 15px; color: rgba(255,255,255,.75); margin-top: 22px; font-style: italic; }
.footer .fline { width: 60px; height: 1px; background: rgba(255,255,255,.18); margin: 32px auto; }
.footer .copy { font-size: 12.5px; color: rgba(255,255,255,.45); }

/* reveal — content is always visible (calm, still; on-brand, capture-safe) */
.reveal { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: 620px; }
  .hero-stage { order: -1; }
  [data-pod="cards"] .episodes { grid-template-columns: 1fr; max-width: 640px; }
  .yt-grid { grid-template-columns: 1fr 1fr; }
  /* keep only the Notify Me button in the mobile header as a persistent CTA */
  .nav-links { gap: 0; }
  .nav-links a:not(.nav-cta) { display: none; }
  .pod-top { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 22px; }
  .section { padding: 68px 0; }
  .hero { padding: 56px 0 64px; }
  .yt-grid { grid-template-columns: 1fr; }
  .notify-form { flex-direction: column; border-radius: 20px; }
  .notify-form input { padding: 12px 14px; }
  .notify-form .btn { justify-content: center; }
  .phone { width: 280px; height: 580px; }
}
