/* ===== Design tokens: Sanity Pending brand ===== */
:root {
  /* Brand palette: #000000 · #907BD6 · #42B8A9 · #FFFFFF */
  --ink: #000000;
  --ink-soft: #50495c;
  --purple: #907bd6;
  --purple-soft: #bcaee9;
  --purple-deep: #6f57c2;
  --teal: #42b8a9;
  --teal-deep: #339a8c;
  --paper: #ffffff;
  --paper-tint: #f5f2fc;
  --line: #e6e0f5;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 20px 44px -22px rgba(20, 18, 22, 0.45);
  --maxw: 1100px;
  --display: "Montserrat", system-ui, sans-serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--display); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); margin-bottom: 0.6em; text-transform: uppercase; }
h3 { font-size: 1.35rem; text-transform: uppercase; letter-spacing: 0.01em; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 0.8rem;
}
.center { text-align: center; }
.eyebrow.center { display: block; }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section__sub { color: var(--ink-soft); max-width: 560px; margin: 0 auto 2.5rem; }

/* ===== Logo wordmark (speech bubble) ===== */
.logo-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--teal);
  color: #fff;
  padding: 7px 12px 8px;
  border-radius: 7px 7px 7px 0;
  position: relative;
  line-height: 1;
  box-shadow: 3px 3px 0 var(--ink);
}
.logo-mark::after {
  content: "";
  position: absolute;
  left: 0; bottom: -9px;
  border-width: 0 14px 10px 0;
  border-style: solid;
  border-color: transparent var(--teal) transparent transparent;
  transform: scaleX(-1);
  filter: drop-shadow(2px 2px 0 var(--ink));
}
.logo-mark__top { font-family: var(--display); font-weight: 900; font-size: 1.15rem; letter-spacing: 0.01em; }
.logo-mark__bottom { font-family: var(--display); font-weight: 700; font-size: 0.55rem; letter-spacing: 0.42em; margin-top: 2px; }
.logo-mark--footer { background: var(--purple); }
.logo-mark--footer::after { border-color: transparent var(--purple) transparent transparent; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 14px 26px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease;
  box-shadow: 0 12px 24px -12px rgba(66, 184, 169, 0.85);
}
.btn:hover { background: var(--teal-deep); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid rgba(20, 18, 22, 0.18);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(20, 18, 22, 0.05); border-color: var(--ink); }
.btn--small { padding: 10px 20px; font-size: 0.82rem; }

.link-arrow { display: inline-block; margin-top: 0.5rem; color: var(--purple-deep); font-weight: 700; text-decoration: none; }
.link-arrow:hover { text-decoration: underline; }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { text-decoration: none; }
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  text-decoration: none; color: var(--ink-soft);
  font-family: var(--display); font-weight: 600; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 0.04em; transition: color 0.2s;
}
.nav__links a:hover { color: var(--teal-deep); }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(48px, 7vw, 90px) 0 clamp(56px, 8vw, 110px);
  background:
    radial-gradient(circle at 90% 10%, rgba(66, 184, 169, 0.20), transparent 40%),
    linear-gradient(160deg, #efebfa 0%, #e3dbf7 55%, #dccff4 100%);
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero__title {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  text-transform: uppercase;
  color: var(--ink);
  margin: 0.25em 0 0.4em;
}
.hero__tag { font-size: clamp(1.02rem, 1.8vw, 1.2rem); color: #463f54; max-width: 520px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 1.9rem 0 1.6rem; }
.hero__platforms { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; font-size: 0.9rem; color: #463f54; }
.hero__platforms span { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.78rem; }
.hero__platforms a { color: var(--ink); text-decoration: none; border-bottom: 2px solid var(--teal); padding-bottom: 1px; font-weight: 600; }
.hero__platforms a:hover { color: var(--teal-deep); }
.hero__soon { color: #463f54; font-weight: 600; opacity: 0.65; }
.hero__art { position: relative; }
.hero__art img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 4px solid #fff;
}

/* ===== About ===== */
.about__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: center; }
.about__copy p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.about__topics { list-style: none; display: grid; gap: 14px; }
.about__topics li {
  background: var(--paper-tint);
  border: 1px solid var(--line);
  padding: 16px 18px; border-radius: var(--radius);
  font-weight: 500; display: flex; align-items: center; gap: 12px;
}
.about__topics span { font-size: 1.3rem; }

/* ===== Hosts ===== */
.hosts { background: var(--purple); color: #fff; }
.hosts .eyebrow { color: var(--ink); }
.hosts h2 { color: #fff; }
.hosts__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 2.5rem; }
.host-card {
  background: #fff; color: var(--ink);
  border-radius: var(--radius-lg); padding: 38px 34px;
  box-shadow: var(--shadow); text-align: center;
}
.host-card__avatar {
  width: 96px; height: 96px; margin: 0 auto 1.2rem;
  border-radius: 50%; display: grid; place-items: center;
  font-family: var(--display); font-size: 2.4rem; font-weight: 900; color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
}
.host-card__avatar--alt { background: linear-gradient(135deg, var(--purple), var(--purple-deep)); }
.host-card__role { color: var(--teal-deep); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.04em; margin-bottom: 0.9rem; text-transform: uppercase; }
.host-card__link { display: inline-block; margin-top: 1rem; color: var(--teal-deep); font-weight: 700; text-decoration: none; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; }
.host-card__link:hover { text-decoration: underline; }
.host-card p:last-child { color: var(--ink-soft); }

/* ===== Episodes ===== */
.episodes__row { display: grid; grid-template-columns: 1.5fr 1fr; gap: 24px; margin-bottom: 2.5rem; align-items: stretch; }
.episodes__embed {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: #000;
}
.episodes__embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.episodes__spotify { min-height: 352px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.episodes__spotify iframe { display: block; border: 0; min-height: 352px; height: 100%; }
.transcript { max-width: 900px; margin: 0 auto 2.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-tint); overflow: hidden; }
.transcript > summary {
  cursor: pointer; padding: 18px 24px; font-family: var(--display); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.03em; font-size: 0.92rem; color: var(--ink);
  list-style: none; display: flex; align-items: center; justify-content: space-between;
}
.transcript > summary::-webkit-details-marker { display: none; }
.transcript > summary::after { content: "+"; font-size: 1.4rem; color: var(--teal-deep); font-weight: 700; }
.transcript[open] > summary::after { content: "\2212"; }
.transcript__note { padding: 0 24px; margin: 0 0 0.5rem; color: var(--ink-soft); font-size: 0.85rem; }
.transcript__body { max-height: 360px; overflow-y: auto; padding: 4px 24px 22px; }
.transcript__body p { color: #3c3645; font-size: 0.95rem; margin-bottom: 0.9rem; }

/* ===== Listen ===== */
.listen { background: var(--paper-tint); }
.platforms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 1rem; }
.platform {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; text-decoration: none; color: var(--ink); text-align: center;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s;
}
.platform:hover { transform: translateY(-4px); border-color: var(--teal); box-shadow: var(--shadow); }
.platform__icon { display: block; font-size: 1.9rem; margin-bottom: 0.5rem; }
.platform__name { display: block; font-family: var(--display); font-weight: 800; font-size: 1.1rem; text-transform: uppercase; }
.platform__hint { display: block; color: var(--ink-soft); font-size: 0.85rem; margin-top: 0.2rem; }

/* ===== CTA ===== */
.cta { background: var(--ink); color: #fff; }
.cta__inner { text-align: center; max-width: 600px; margin: 0 auto; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255, 255, 255, 0.72); }
.cta__form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 1.8rem; }
.cta__form input {
  flex: 1 1 260px; max-width: 340px; padding: 14px 18px; border-radius: 100px;
  border: 2px solid rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.06);
  color: #fff; font-size: 1rem; font-family: var(--sans);
}
.cta__form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.cta__form input:focus { outline: none; border-color: var(--teal); }
.cta__note { margin-top: 1rem; color: var(--purple-soft); font-weight: 700; }

/* ===== Footer ===== */
.footer { background: #0f0d12; color: rgba(255, 255, 255, 0.7); padding: 50px 0 40px; }
.footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; }
.footer__brand { display: flex; align-items: center; gap: 18px; }
.footer__brand p { font-size: 0.9rem; }
.footer__links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__links a {
  color: rgba(255, 255, 255, 0.82); text-decoration: none; font-size: 0.82rem;
  font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; transition: color 0.2s;
}
.footer__links a:hover { color: var(--teal); }
.footer__copy { width: 100%; font-size: 0.82rem; color: rgba(255, 255, 255, 0.42); border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 20px; }

/* ===== Legal pages ===== */
.legal { padding: clamp(48px, 7vw, 90px) 0 clamp(56px, 8vw, 100px); }
.legal__wrap { max-width: 760px; margin: 0 auto; }
.legal h1 { font-size: clamp(2rem, 5vw, 3rem); text-transform: uppercase; margin-bottom: 0.4rem; }
.legal__updated { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 2.5rem; }
.legal h2 { font-size: 1.3rem; text-transform: uppercase; margin: 2.4rem 0 0.8rem; }
.legal p, .legal li { color: #3c3645; margin-bottom: 0.9rem; }
.legal ul { padding-left: 1.3rem; margin-bottom: 0.9rem; }
.legal li { margin-bottom: 0.5rem; }
.legal a { color: var(--purple-deep); font-weight: 600; }
.legal__back { display: inline-block; margin-bottom: 2rem; color: var(--teal-deep); font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.85rem; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.footer__legal a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.82rem; }
.footer__legal a:hover { color: var(--teal); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__art { order: -1; max-width: 440px; margin: 0 auto; }
  .about__grid { grid-template-columns: 1fr; gap: 36px; }
  .hosts__grid { grid-template-columns: 1fr; }
  .episodes__row { grid-template-columns: 1fr; }
  .platforms { grid-template-columns: repeat(2, 1fr); }
  .nav__links { display: none; }
}
@media (max-width: 520px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { text-align: center; }
}
