@font-face {
  font-family: 'Baloo Two';
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/Baloo2-Variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito Kid';
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/Nunito-Variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Chewy';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/Chewy-Regular.woff2') format('woff2');
}

:root{
  /* ---- Brand colors: change these to re-theme the whole site ---- */
  --gold: #E8AE3D;       /* primary accent / buttons */
  --gold-ink: #8A5C10;   /* darker gold, used for text on light backgrounds */
  --coral: #F2907A;      /* secondary warm accent */
  --coral-ink: #A24A34;
  --teal: #6FA8A2;       /* mid-depth water */
  --teal-mid: #3E7F79;   /* getting deeper, still clearly teal */
  --teal-deep: #1A4A46;  /* deep teal (stays teal-hued, not navy) */
  --teal-abyss: #0F2724; /* darkest teal before Meet the Pod hands off to Humans */
  --navy: #123A4C;       /* brand navy */
  --navy-deep: #0A2530;
  --night: #071B24;      /* sleep-stories band */

  /* ---- Candidate palette (promoted to section backgrounds) ---- */
  --pacific-teal: #3B9CB7;   /* Human Pod band */
  --superpod-blue: #0878D1;  /* For Grown-Ups band */
  --sky-blue: #A9D8E8;       /* Contact band */
  --sky-blue-soft: #E1F1F8;  /* Listen/Follow cards on the beige hero */

  /* ---- Neutrals ---- */
  --cream: #F7F1E3;      /* main light background */
  --cream-2: #FBF8EF;    /* card surfaces on cream */
  --peach: #F6E3D3;      /* For Grown-Ups band — distinct from cream/cream-2 */
  --ink: #16323D;        /* body text on light backgrounds */
  --ink-soft: #3C5A63;
  --foam: #EAF3F1;       /* text on dark backgrounds */
  --foam-soft: #B9D3D0;

  /* ---- Kiko / character illustration colors ---- */
  --orca: #172129;       /* body + fins */
  --orca-belly: #FBF8EF; /* belly + eye patch */

  /* ---- Listening platforms (real brand colors, generic icons — not logo reproductions) ---- */
  --pf-apple: #8B5FBF;
  --pf-spotify: #1DB954;
  --pf-youtube: #E2373F;
  --pf-amazon: #17A6C4;
  --pf-iheart: #C6002B;

  /* ---- Social platforms ---- */
  --soc-instagram: #C1367B;
  --soc-facebook: #1877F2;
  --soc-youtube: #E2373F;
  --soc-tiktok: #1F1F23;

  /* ---- Type ---- */
  --display: 'Baloo Two', ui-rounded, 'Segoe UI Rounded', system-ui, sans-serif;
  --body: 'Nunito Kid', ui-rounded, system-ui, -apple-system, sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; font-size: 18px; }
body{
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
}
img, svg{ display:block; max-width:100%; }

h1,h2,h3{
  font-family: var(--display);
  font-weight: 800;
  text-wrap: balance;
  margin: 0;
}
p{ margin:0; }
a{ color: inherit; }

.wrap{
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

/* anchor targets: keep section headings clear of the sticky nav when jumped to */
main [id]{ scroll-margin-top: 96px; }

.eyebrow{
  font-family: var(--body);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.eyebrow::before{
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}

/* ---------- NAV ---------- */
.nav{
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 48px);
  background: linear-gradient(180deg, #FBF8EF 0%, #BFE3E0 100%);
  transition: box-shadow .35s ease, padding .35s ease;
}
.nav.solid{
  box-shadow: 0 8px 24px rgba(18,58,76,0.1);
  padding-block: 10px;
}
.nav-brand{
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo{ height: 42px; width: auto; display: block; }
.nav-links{
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a{
  text-decoration: none;
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--ink-soft);
}
.nav-links a:hover{ color: var(--navy); }
.nav-links .btn{ padding: 9px 18px; font-size: 0.88rem; }
@media (max-width: 720px){ .nav-links a:not(.btn){ display:none; } }

.nav-toggle{
  display: none;
  width: 40px; height: 40px;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: none;
  background: rgba(18,58,76,0.08);
  color: var(--navy);
  cursor: pointer;
}
.nav-toggle svg{ width: 22px; height: 22px; }
@media (max-width: 720px){ .nav-toggle{ display: flex; } }

.mobile-menu-backdrop{
  position: fixed;
  inset: 0;
  z-index: 44;
  background: rgba(7,27,36,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.mobile-menu-backdrop.is-open{ opacity: 1; pointer-events: auto; }

.mobile-menu{
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 45;
  width: min(78vw, 320px);
  background: linear-gradient(180deg, #FBF8EF 0%, #BFE3E0 100%);
  box-shadow: -10px 0 30px rgba(18,58,76,0.18);
  padding: 20px 28px 32px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-menu.is-open{ transform: translateX(0); }
.mobile-menu-close{
  align-self: flex-end;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(18,58,76,0.08);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-bottom: 26px;
}
.mobile-menu-close svg{ width: 18px; height: 18px; }
.mobile-menu-links{
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-menu-links a{
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink-soft);
}
.mobile-menu-links a.btn{
  margin-top: 10px;
  font-size: 1rem;
  align-self: flex-start;
}

/* ---------- BUTTONS ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--body);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  box-shadow: 0 4px 10px -5px rgba(22,50,61,0.4);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.btn:focus-visible{ outline: 3px solid var(--teal); outline-offset: 3px; }
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: var(--gold); color: #4A2E06; box-shadow: 0 10px 24px -8px rgba(232,174,61,0.7), 0 3px 8px -4px rgba(22,50,61,0.35); }
.btn-primary:hover{ background: #eeb955; }
.btn-outline-dark{ border-color: var(--ink); color: var(--navy); }
.btn-outline-dark:hover{ border-color: var(--ink); background: rgba(18,58,76,0.06); }
.btn-outline-light{ border-color: rgba(234,243,241,0.4); color: var(--foam); }
.btn-outline-light:hover{ border-color: var(--foam); background: rgba(234,243,241,0.1); }
.btn-coral{ background: var(--coral); color: #4A1F13; box-shadow: 0 10px 24px -8px rgba(242,144,122,0.7), 0 3px 8px -4px rgba(22,50,61,0.35); }
.btn-coral:hover{ background: #f6a58f; }
.btn-icon{ width: 16px; height: 16px; flex: none; }

/* ---------- HERO ---------- */
.hero{
  background: var(--cream);
  overflow: hidden;
  padding-top: clamp(24px, 5vw, 40px);
}
.hero-inner{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(28px, 5vw, 56px);
  padding-top: clamp(20px, 4vw, 40px);
  padding-bottom: clamp(20px, 3vw, 36px);
}
@media (max-width: 880px){
  .hero-inner{ grid-template-columns: 1fr; text-align: center; padding-bottom: clamp(24px, 5vw, 40px); }
  .hero-copy{ order: 1; }
  .hero-art{ order: 2; }
  .hero-ctas{ justify-content: center; }
  .hero-copy .eyebrow{ justify-content: center; }
  .hero-copy p.lede{ margin-inline: auto; }
  .hero-features-list{ justify-content: center; }
  .hero-signup{ margin-inline: auto; }
}
.hero-copy .eyebrow{ color: var(--gold-ink); margin-bottom: 18px; }
.hero-copy h1{
  font-size: clamp(2.6rem, 5.4vw, 4.2rem);
  color: var(--navy);
  line-height: 1.05;
}
.hero-copy p.lede{
  margin-top: 22px;
  font-size: 1.3rem;
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero-ctas{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.hero-features{
  margin-top: 30px;
  padding-top: 22px;
  border-top: 2px dashed rgba(18,58,76,0.14);
}
.hero-features-title{
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--navy);
}
.hero-features-list{
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.hero-features-list li{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 0.96rem;
}
.hero-feature-icon{ font-size: 1.15rem; line-height: 1; flex: none; }

.hero-art{ position: relative; }
.kiko-animation{
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  display: block;
  filter: drop-shadow(0 24px 40px rgba(18,58,76,0.18));
}
.hero-quote{
  margin-top: 10px;
  text-align: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
}
.hero-quote span{
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.hero-signup{
  margin-top: 26px;
  max-width: 420px;
  padding-top: 22px;
  border-top: 2px dashed rgba(18,58,76,0.14);
  text-align: left;
}
.hero-signup-label{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-weight: 800;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  letter-spacing: 0.03em;
  color: var(--gold-ink);
}
.hero-signup-icon{ width: 22px; height: 22px; flex: none; }
.hero-signup-sub{
  margin-top: 6px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 38ch;
}
.hero-signup .signup-form{ margin-top: 14px; justify-content: flex-start; }
.hero-signup .signup-fine{ margin-top: 12px; }
.signup-status{
  margin-top: 12px;
  min-height: 1.3em;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal-deep);
}
.signup-status.is-error{ color: var(--coral-ink); }

/* ---------- LISTEN & FOLLOW (inside the beige hero) ---------- */
.hero-listen-follow{
  margin-top: clamp(6px, 2vw, 18px);
  padding-bottom: clamp(28px, 5vw, 48px);
}
.listen-follow-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.4vw, 22px);
  align-items: stretch;
}
@media (max-width: 820px){ .listen-follow-grid{ grid-template-columns: 1fr; } }
.listen-card{
  background: var(--sky-blue-soft);
  border-radius: 22px;
  padding: clamp(18px, 2.2vw, 24px);
  border: 1px solid rgba(18,58,76,0.08);
  box-shadow: 0 10px 22px -18px rgba(18,58,76,0.4);
}
.listen-card-title{
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--navy);
}
.listen-card-sub{
  margin-top: 4px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.platform-panel{
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}
@media (max-width: 540px){
  .platform-panel{ display: grid; grid-template-columns: 1fr 1fr; }
  .platform-badge{ justify-content: center; }
}
.platform-badge{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 6px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(18,58,76,0.14);
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--ink);
  text-decoration: none;
  min-height: 40px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.platform-badge:hover{ transform: translateY(-2px); box-shadow: 0 8px 18px -8px rgba(18,58,76,0.35); }
.platform-badge:focus-visible{ outline: 3px solid var(--teal); outline-offset: 2px; }
.platform-badge .pf-icon{
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--pf);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.platform-badge .pf-icon svg{ width: 13px; height: 13px; }

.kiko-stage{
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.86;
}
.kiko-stage svg{ width: 100%; height: 100%; overflow: visible; }
.kiko-swim{ animation: swim 6s ease-in-out infinite; transform-origin: 50% 50%; }
@keyframes swim{
  0%, 100%{ transform: translateY(0) rotate(-1.5deg); }
  50%{ transform: translateY(-14px) rotate(1.5deg); }
}
.bubble{ fill: rgba(111,168,162,0.5); }
.bubble-field .bubble{ animation: rise 5.5s ease-in infinite; }
.bubble-field .bubble:nth-child(2){ animation-delay: 1.1s; }
.bubble-field .bubble:nth-child(3){ animation-delay: 2.3s; }
.bubble-field .bubble:nth-child(4){ animation-delay: 3.4s; }
.bubble-field .bubble:nth-child(5){ animation-delay: .6s; }
@keyframes rise{
  0%{ transform: translateY(0); opacity: 0; }
  12%{ opacity: .8; }
  85%{ opacity: .3; }
  100%{ transform: translateY(-120px); opacity: 0; }
}

.wave-divider{ display:block; width:100%; height: clamp(46px, 8vw, 96px); }
.wave-divider svg{ width:100%; height:100%; display:block; }
/* prevents a hairline sliver of the body background from showing between
   adjacent bands due to sub-pixel rounding of clamp()-based heights */
.band-season, .band-pod, .band-humans, .band-grownups, .band-sleep, .band-press, .band-footer{
  margin-top: -1px;
}

/* ---------- POD (mid band) ---------- */
.band-pod{
  background: var(--teal-mid);
  color: var(--foam);
  padding-top: clamp(28px, 4vw, 48px);
}
.band-pod > .wrap{ padding-bottom: clamp(50px, 8vw, 90px); }
.band-head{ max-width: 62ch; margin-bottom: clamp(34px, 6vw, 54px); }
.band-season .band-head, .band-pod .band-head{ max-width: none; }
.band-press .band-head{ margin-bottom: 10px; }
.band-pod .eyebrow{ color: #E7FFFA; opacity: .85; margin-bottom: 14px; }
.band-pod h2{ font-size: clamp(1.9rem, 3.6vw, 2.7rem); color: #fff; }
.band-pod .band-sub{ margin-top: 14px; font-size: 1.05rem; color: #DCF1EE; }

.pod-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.4vw, 24px);
}
@media (max-width: 920px){ .pod-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .pod-grid{ grid-template-columns: 1fr; } }

.pod-card{
  background: var(--foam-soft);
  border: 1px solid rgba(18,58,76,0.14);
  border-radius: 20px;
  padding: 26px 22px;
  transition: transform .25s ease, background-color .25s ease;
}
.pod-card:hover{ transform: translateY(-6px); background: #AEC9C6; }
.pod-photo{
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  background: rgba(18,58,76,0.08);
}
.pod-photo img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.pod-card h3{ font-size: 1.32rem; color: var(--ink); }
.pod-role{
  font-weight: 800; font-size: 0.72rem; letter-spacing: .1em; text-transform: uppercase;
  margin-top: 4px; opacity: .8; color: var(--ink);
}
.pod-card p.trait{ margin-top: 12px; font-size: 0.96rem; color: var(--ink-soft); }

/* ---------- THE HUMAN POD ---------- */
.band-humans{
  background: var(--sky-blue);
  padding-top: clamp(50px, 8vw, 96px);
}
.band-humans > .wrap{ padding-bottom: clamp(50px, 8vw, 96px); }
.humans-inner{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}
@media (max-width: 820px){ .humans-inner{ grid-template-columns: 1fr; text-align: center; } }
.humans-photo{ border-radius: 20px; overflow: hidden; aspect-ratio: 3 / 2; }
.humans-photo img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.humans-copy .eyebrow{ color: var(--gold-ink); margin-bottom: 14px; }
.humans-copy h2{ font-size: clamp(1.6rem, 2.6vw, 2.15rem); color: var(--navy); white-space: nowrap; }
@media (max-width: 820px){ .humans-copy h2{ white-space: normal; } }
.humans-copy .lede{ margin-top: 16px; font-size: 1.05rem; color: var(--ink-soft); max-width: 56ch; }
@media (max-width: 820px){ .humans-copy .lede{ margin-inline: auto; } }
.soundtrack-links{ display: inline-flex; align-items: center; gap: 6px; margin-left: 6px; vertical-align: middle; }
.soundtrack-icon{
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.15em; height: 1.15em;
  border-radius: 50%;
  background: var(--pf);
  color: #fff;
  flex: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.soundtrack-icon svg{ width: 60%; height: 60%; }
.soundtrack-icon:hover{ transform: translateY(-1px); box-shadow: 0 4px 10px -4px rgba(18,58,76,0.45); }
.soundtrack-icon:focus-visible{ outline: 3px solid var(--teal); outline-offset: 2px; }

/* ---------- PRESS & CONTACT ---------- */
.band-press{
  background: var(--sky-blue);
  color: var(--ink);
  padding-top: clamp(50px, 8vw, 88px);
}
.band-press > .wrap{ padding-bottom: clamp(40px, 6vw, 64px); }
.band-press .eyebrow{ color: var(--gold-ink); margin-bottom: 14px; }
.band-press h2{ font-size: clamp(1.9rem, 3.6vw, 2.6rem); color: var(--navy); }
.band-press .band-sub{ margin-top: 14px; font-size: 1.05rem; color: var(--ink-soft); }
.press-actions{
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.press-card{
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 2px solid var(--ink);
  box-shadow: 0 4px 10px -5px rgba(22,50,61,0.4);
  border-radius: 18px;
  padding: 8px 20px;
  text-decoration: none;
  transition: background-color .18s ease, transform .18s ease;
}
.press-card:hover{ background: var(--cream); transform: translateY(-3px); }
.press-icon{
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #4A2E06;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.press-icon svg{ width: 20px; height: 20px; }
.press-card > span:last-child{ display: flex; align-items: center; justify-content: space-between; gap: 28px; min-width: min(360px, 60vw); max-width: 100%; }
@media (max-width: 480px){ .press-card > span:last-child{ min-width: 0; } }
.press-label{ font-weight: 800; font-size: 0.78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.press-email{ font-family: var(--display); font-weight: 700; font-size: 1.1rem; color: var(--navy); white-space: nowrap; }

/* ---------- SEASON ONE (deep band) ---------- */
.band-season{
  background: var(--foam-soft);
  color: var(--ink);
  padding-top: clamp(28px, 4vw, 48px);
}
.band-season > .wrap{ padding-bottom: clamp(50px, 8vw, 96px); }
.band-season .eyebrow{ color: var(--gold-ink); margin-bottom: 14px; }
.band-season h2{ font-size: clamp(1.9rem, 3.6vw, 2.7rem); color: var(--ink); }
.band-season .band-sub{ margin-top: 14px; font-size: 1.18rem; color: var(--ink-soft); }

.ep-list{
  margin-top: clamp(30px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ep-card{
  background: var(--foam);
  border: 1px solid rgba(18,58,76,0.12);
  border-radius: 20px;
  padding: clamp(18px, 2.6vw, 26px);
  transition: background-color .2s ease;
}
.ep-card:hover{ background: #DCEAE8; }
.ep-head{
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 20px;
}
.ep-num{
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--gold-ink);
  font-variant-numeric: tabular-nums;
}
.ep-title{ font-family: var(--display); font-weight: 700; font-size: 1.2rem; color: var(--ink); }
.ep-theme{ font-size: 0.94rem; color: var(--ink-soft); margin-top: 4px; }
.ep-tag{
  font-size: 0.72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; white-space: nowrap;
}
.ep-tag.ready{ background: rgba(232,174,61,0.16); color: var(--gold-ink); border: 1px solid rgba(232,174,61,0.4); }
.ep-tag.soon{ background: rgba(18,58,76,0.06); color: var(--ink-soft); border: 1px solid rgba(18,58,76,0.2); }
@media (max-width: 560px){
  .ep-head{ grid-template-columns: 34px 1fr; }
  .ep-tag{ grid-column: 1 / -1; justify-self: start; margin-top: 6px; }
}

.ep-player{
  margin-top: 18px;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.ep-player.ep-player-embed{
  background: none;
  border: none;
  padding: 0;
  display: block;
}
.play-btn{
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #4A2E06;
  border: none;
  display: flex; align-items: center; justify-content: center;
  flex: none;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease;
}
.play-btn:hover{ transform: scale(1.06); background: #eeb955; }
.play-btn:focus-visible{ outline: 2px solid var(--foam); outline-offset: 2px; }
.play-btn svg{ width: 17px; height: 17px; }
.waveform-wrap{ flex: 1; min-width: 0; }
.waveform{
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 34px;
  cursor: pointer;
}
.waveform span{
  flex: 1;
  min-width: 2px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  transition: background-color .1s ease;
}
.waveform span.is-played{ background: var(--gold); }
.player-meta{
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--foam-soft);
  font-variant-numeric: tabular-nums;
}
#sleep .ep-player{ background: var(--teal-deep); }
#sleep .player-meta{ color: #fff; }
@media (max-width: 520px){
  .ep-player{ padding: 12px; gap: 10px; }
  .play-btn{ width: 38px; height: 38px; }
}

.ep-actions{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(18,58,76,0.14);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ep-listen-panel{ display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px; width: 100%; }
.ep-platforms{ display: flex; flex-wrap: wrap; gap: 8px; }
.pf-btn{
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--pf);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: transform .18s ease, box-shadow .18s ease;
}
.pf-btn svg{ width: 15px; height: 15px; }
.pf-btn:hover{ transform: translateY(-3px); box-shadow: 0 8px 16px -6px rgba(0,0,0,0.45); }
.pf-btn:focus-visible{ outline: 2px solid var(--foam); outline-offset: 2px; }
.pf-btn[title]{ position: relative; }
.pf-btn[title]::after{
  content: attr(title);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translate(-50%, 4px);
  background: var(--ink);
  color: #fff;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.72rem;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  z-index: 5;
}
.pf-btn[title]:hover::after, .pf-btn[title]:focus-visible::after{
  opacity: 1;
  transform: translate(-50%, 0);
}

.ep-resources-panel{ display: flex; flex-wrap: wrap; gap: 10px; }
.res-pill{
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(18,58,76,0.06);
  border: 1px solid rgba(18,58,76,0.16);
  font-size: 0.82rem; font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: background-color .18s ease, transform .18s ease;
}
.res-pill svg{ width: 15px; height: 15px; color: var(--gold-ink); flex: none; }
.res-pill:hover{ background: rgba(18,58,76,0.12); transform: translateY(-2px); }

.ep-card.is-soon{ opacity: 0.82; }
.ep-soon-note{ margin-top: 14px; font-size: 0.9rem; color: var(--ink-soft); font-style: italic; }
#sleep .ep-tag.soon{ background: rgba(255,255,255,0.08); color: var(--foam-soft); border-color: rgba(255,255,255,0.22); }
#sleep .ep-soon-note{ color: var(--foam-soft); }

/* ---------- FOR GROWN-UPS (cream band) ---------- */
.band-grownups{
  background: var(--teal-mid);
  padding-top: clamp(50px, 8vw, 96px);
}
.band-grownups > .wrap{ padding-bottom: clamp(50px, 8vw, 96px); }
.band-grownups .band-head{ max-width: none; }
.band-grownups .eyebrow{ color: var(--foam); margin-bottom: 14px; }
.band-grownups h2{ font-size: clamp(1.9rem, 3.6vw, 2.7rem); color: #fff; }
.band-grownups .band-sub{ margin-top: 14px; font-size: 1.05rem; color: var(--foam); }

.gu-grid{
  margin-top: clamp(30px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 28px);
}
@media (max-width: 780px){ .gu-grid{ grid-template-columns: 1fr; } }
.gu-card{
  background: var(--cream-2);
  border: 1px solid rgba(18,58,76,0.08);
  border-radius: 22px;
  padding: clamp(24px, 3vw, 34px);
}
.gu-card h3{ font-size: 1.4rem; color: var(--navy); }
.gu-card ul{ margin: 18px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.gu-card li{ display: flex; gap: 12px; font-size: 0.98rem; color: var(--ink-soft); }
.gu-card li svg{ flex: none; width: 20px; height: 20px; margin-top: 2px; color: var(--coral-ink); }
.gu-card .btn{ margin-top: 22px; }

.gu-cta-grid{
  margin-top: clamp(20px, 3vw, 28px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 28px);
  align-items: stretch;
}
@media (max-width: 780px){ .gu-cta-grid{ grid-template-columns: 1fr; } }

.gu-signup, .gu-founding{
  display: flex;
  flex-direction: column;
  background: var(--cream-2);
  border: 1px solid rgba(18,58,76,0.08);
  border-radius: 22px;
  padding: clamp(24px, 3vw, 32px);
}
.gu-signup-copy h3{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  color: var(--navy);
}
.gu-signup-copy p{ margin-top: 8px; font-size: 0.96rem; color: var(--ink-soft); }
.gu-signup-form-wrap{ margin-top: 18px; }
.gu-signup-form-wrap .signup-form{ margin-top: 0; }
.gu-signup-form-wrap .signup-status{ margin-top: 10px; }
.gu-founding{ justify-content: space-between; }
.gu-founding .btn{ margin-top: 22px; align-self: flex-start; text-align: center; }
@media (max-width: 640px){
  .gu-signup, .gu-founding{ align-items: center; text-align: center; }
  .gu-signup-copy h3{ justify-content: center; }
  .gu-signup-form-wrap .signup-form{ justify-content: center; }
  .gu-founding .btn{ align-self: center; }
}

/* ---------- SLEEP STORIES (night band) ---------- */
.band-sleep{
  background: var(--navy-deep);
  color: var(--foam);
  padding-top: clamp(60px, 10vw, 110px);
  overflow: hidden;
}
.sleep-surface{ position: relative; padding-bottom: clamp(60px, 10vw, 110px); }
.stars{ position:absolute; inset:0; }
.star{ fill: #fff; opacity: .55; }
.sleep-inner{
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.sleep-inner + .wrap{ margin-top: 36px; }
@media (max-width: 780px){ .sleep-inner{ grid-template-columns: 1fr; text-align:center; } .sleep-inner .moon-wrap{ justify-self:center; } }
.band-sleep .eyebrow{ color: var(--foam-soft); margin-bottom: 14px; }
.band-sleep h2{ font-size: clamp(1.9rem, 3.6vw, 2.7rem); color: #fff; }
.band-sleep p.lede{ margin-top: 16px; font-size: 1.08rem; color: var(--foam-soft); max-width: 50ch; }
@media (max-width: 780px){ .band-sleep p.lede{ margin-inline:auto; } }
.band-sleep .btn{ margin-top: 28px; }
.moon-wrap{ width: clamp(140px, 20vw, 220px); }
.moon-glow{ width: 100%; height: auto; filter: drop-shadow(0 0 34px rgba(247,241,227,0.35)); }

/* ---------- TRAILER MODAL ---------- */
.trailer-modal{
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}
.trailer-modal.is-open{ display: flex; align-items: center; justify-content: center; padding: 24px; }
.trailer-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(7,27,36,0.82);
  backdrop-filter: blur(4px);
}
.trailer-dialog{
  position: relative;
  width: min(880px, 100%);
  animation: trailerIn .22s ease;
}
@keyframes trailerIn{
  from{ opacity: 0; transform: scale(.96); }
  to{ opacity: 1; transform: scale(1); }
}
.trailer-close{
  position: absolute;
  top: -46px;
  right: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background-color .18s ease;
}
.trailer-close:hover{ background: rgba(255,255,255,0.24); }
.trailer-close svg{ width: 18px; height: 18px; }
.trailer-frame{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--navy-deep);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
}
.trailer-frame iframe{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.trailer-soon{
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px;
  color: var(--foam-soft);
}
.trailer-soon svg{ width: 56px; height: 56px; color: var(--gold); }
.trailer-soon p{ font-family: var(--display); font-weight: 700; font-size: 1.2rem; color: var(--foam); }

/* ---------- PRESS KIT MODAL ---------- */
.press-modal{
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}
.press-modal.is-open{ display: flex; align-items: center; justify-content: center; padding: 24px; }
.press-dialog{
  position: relative;
  width: min(680px, 100%);
  animation: trailerIn .22s ease;
}
.press-panel{
  background: var(--cream-2);
  border-radius: 20px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
  max-height: min(720px, 84vh);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.press-panel-head{
  padding: 28px 30px 18px;
  border-bottom: 1px solid rgba(18,58,76,0.1);
  flex: none;
}
.press-panel-head h2{ font-size: 1.6rem; color: var(--navy); }
.press-panel-head p{ margin-top: 6px; color: var(--ink-soft); font-size: 0.98rem; }
.press-panel-body{
  padding: 22px 30px 30px;
  overflow-y: auto;
}
.press-loading, .press-empty, .press-error{
  color: var(--ink-soft);
  font-size: 0.96rem;
  padding: 20px 0;
  text-align: center;
}
.press-error{ color: var(--coral-ink); }
.press-group-title{
  font-family: var(--display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-top: 22px;
}
.press-group-title:first-child{ margin-top: 0; }
.press-file-list{
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.press-file{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid rgba(18,58,76,0.1);
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  transition: transform .15s ease, box-shadow .15s ease;
}
.press-file:hover{ transform: translateY(-1px); box-shadow: 0 8px 18px -10px rgba(18,58,76,0.35); }
.press-file-icon{
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--sky-blue-soft);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.press-file-icon svg{ width: 18px; height: 18px; }
.press-file-meta{ flex: 1; min-width: 0; }
.press-file-name{ display: block; font-weight: 700; font-size: 0.94rem; overflow-wrap: anywhere; }
.press-file-sub{ display: block; font-size: 0.8rem; color: var(--ink-soft); margin-top: 2px; }
.press-photo-grid{
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}
.press-photo{
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(18,58,76,0.1);
}
.press-photo img{ width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .18s ease; }
.press-photo:hover img{ transform: scale(1.06); }
@media (max-width: 640px){
  .press-panel-head{ padding: 22px 20px 16px; }
  .press-panel-body{ padding: 18px 20px 24px; }
}

/* ---------- FOOTER / SIGNUP ---------- */
.band-footer{
  background: var(--cream-2);
  padding-block: clamp(28px, 5vw, 48px) 40px;
}
.signup{
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.signup .eyebrow{ justify-content:center; color: var(--gold-ink); margin-bottom: 14px; }
.signup h2{ font-size: clamp(1.9rem, 3.6vw, 2.6rem); color: var(--navy); }
.signup p{ margin-top: 14px; font-size: 1.04rem; color: var(--ink-soft); }
.signup-form{
  margin-top: 26px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.signup-form input{
  font-family: var(--body);
  font-size: 1rem;
  padding: 14px 20px;
  border-radius: 999px;
  border: 2px solid rgba(18,58,76,0.18);
  background: #fff;
  color: var(--ink);
  min-width: min(320px, 100%);
}
.signup-form input:focus-visible{ outline: 3px solid var(--teal); outline-offset: 2px; }
.signup-fine{ margin-top: 14px; font-size: 0.82rem; color: var(--ink-soft); opacity: .8; }

.footer-links{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand{ display:flex; align-items:center; }
.footer-logo{ height: 26px; width: auto; display: block; }
.footer-nav{ display:flex; gap: 22px; flex-wrap: wrap; list-style:none; margin:0; padding:0; }
.footer-nav a{ text-decoration:none; font-size:0.9rem; font-weight:700; color: var(--ink-soft); }
.footer-nav a:hover{ color: var(--navy); }
.footer-social{ display: flex; flex-wrap: wrap; gap: 10px; }
.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}
.footer-copy{ font-size: 0.82rem; color: var(--ink-soft); opacity: .75; }

/* ---------- reveal ---------- */
.reveal{ opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .kiko-swim, .bubble-field .bubble{ animation: none !important; }
  .reveal{ transition: none; opacity: 1; transform: none; }
  .trailer-dialog{ animation: none; }
  .press-dialog{ animation: none; }
}
