* {
  box-sizing: border-box;
}

:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #666666;
  --soft: #f3f3f3;
  --soft-2: #ebebeb;
  --line: #111111;
  --max: 1380px;
  --radius: 30px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 14px 36px rgba(0, 0, 0, 0.08);
  --header-height: 118px;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
  overflow-x: hidden;
}

body.menu-open,
body.search-open,
body.preloader-active {
  overflow: hidden;
}

img,
iframe,
video {
  display: block;
  max-width: 100%;
}

iframe {
  width: 100%;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 42px, var(--max));
  margin: 0 auto;
}

#page-shell {
  padding-top: var(--header-height);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: #000;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.preloader video {
  width: auto;
  height: auto;
  max-width: 100vw;
  max-height: 100svh;
  object-fit: contain;
  margin: auto;
}

.preloader-copy {
  position: absolute;
  inset: auto 20px 30px;
  display: grid;
  justify-items: center;
  gap: 16px;
  color: #fff;
  text-align: center;
}

.preloader.is-playing .preloader-copy p {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.preloader-copy p {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.enter-button {
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.preloader.is-playing .enter-button {
  background: rgba(0, 0, 0, 0.58);
}

.enter-button:hover {
  background: #fff;
  color: #111;
  transform: translateY(-2px);
}

.top-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 2000;
  background: #f4f4f4;
  border-bottom: 0;
}

.support-bar {
  border-bottom: 0;
  background: #e8e8e8;
}

.support-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  min-height: 48px;
}

.support-inner p {
  margin: 0;
  grid-column: 2;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.support-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.support-copy {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: none;
}

.support-inner .btn {
  grid-column: 3;
  justify-self: end;
}

.support-glow-btn {
  position: relative;
  box-shadow:
    0 0 0 1px rgba(11, 32, 18, 0.08),
    0 0 18px rgba(45, 214, 99, 0.34),
    0 0 42px rgba(45, 214, 99, 0.22);
  transition:
    box-shadow 0.22s ease,
    transform 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

.support-glow-btn:hover {
  box-shadow:
    0 0 0 1px rgba(11, 32, 18, 0.1),
    0 0 24px rgba(45, 214, 99, 0.46),
    0 0 54px rgba(45, 214, 99, 0.3);
}

.nav-wrap {
  background: #f6f6f6;
}

.nav-inner {
  min-height: 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

.site-brand {
  display: none;
  gap: 2px;
}

.brand-kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-name {
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
}

.main-nav a,
.footer-nav-links a,
.footer-policy-links a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: lowercase;
}

.main-nav a::after,
.footer-nav-links a::after,
.footer-policy-links a::after,
.footer-social-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after,
.footer-nav-links a:hover::after,
.footer-policy-links a:hover::after,
.footer-social-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mobile-menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 46px;
  height: 46px;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.mobile-menu-toggle span {
  position: absolute;
  left: 50%;
  display: block;
  width: 26px;
  height: 4px;
  border-radius: 999px;
  background: #111;
  margin: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform: translateX(-50%);
}

.mobile-menu-toggle span:nth-child(1) {
  top: 17px;
}

.mobile-menu-toggle span:nth-child(2) {
  top: 26px;
}

.mobile-menu-toggle span:nth-child(3) {
  top: 35px;
}

body.menu-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateX(-50%) translateY(9px) rotate(45deg);
}

body.menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateX(-50%) translateY(-9px) rotate(-45deg);
}

.icon-btn {
  width: 48px;
  height: 48px;
  border: 2px solid #111;
  border-radius: 50%;
  background: #fff;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.icon-btn:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
}

.search-trigger svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 24px;
  border: 2px solid #111;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  background: #fff;
  color: #111;
  transform: translateY(-2px);
}

.btn-sm {
  min-height: 38px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}

.btn-outline,
.btn-outline-dark {
  background: #fff;
  color: #111;
}

.btn-outline:hover,
.btn-outline-dark:hover {
  background: #111;
  color: #fff;
}

.btn-primary {
  align-self: center;
}

.hero-subscribe-btn {
  box-shadow:
    0 0 0 0 rgba(44, 214, 101, 0.68),
    0 0 16px rgba(44, 214, 101, 0.32),
    0 0 42px rgba(44, 214, 101, 0.22);
  animation: hero-subscribe-pulse 1.6s ease-in-out infinite;
}

.hero-subscribe-btn:hover {
  box-shadow:
    0 0 0 0 rgba(44, 214, 101, 0.82),
    0 0 24px rgba(44, 214, 101, 0.46),
    0 0 58px rgba(44, 214, 101, 0.3);
}

@keyframes hero-subscribe-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(44, 214, 101, 0.14),
      0 0 14px rgba(44, 214, 101, 0.22),
      0 0 30px rgba(44, 214, 101, 0.12);
  }

  32% {
    box-shadow:
      0 0 0 10px rgba(44, 214, 101, 0),
      0 0 28px rgba(44, 214, 101, 0.54),
      0 0 62px rgba(44, 214, 101, 0.34);
  }

  70% {
    box-shadow:
      0 0 0 16px rgba(44, 214, 101, 0),
      0 0 18px rgba(44, 214, 101, 0.28),
      0 0 40px rgba(44, 214, 101, 0.18);
  }
}

.btn-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  font-size: 16px;
}

.search-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
}

.search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.44);
}

.search-panel {
  position: absolute;
  top: clamp(24px, 5vw, 56px);
  left: 50%;
  transform: translateX(-50%);
  width: min(100% - 28px, 760px);
  border: 2px solid #111;
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 28px;
}

.search-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.search-kicker {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.search-panel-head h2 {
  margin: 0;
  font-size: clamp(28px, 5vw, 54px);
  line-height: 0.95;
  text-transform: lowercase;
}

.search-close {
  font-size: 20px;
  font-weight: 700;
}

.search-field {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.search-field span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-field input {
  width: 100%;
  border: 2px solid #111;
  border-radius: 18px;
  min-height: 60px;
  padding: 16px 18px;
  outline: 0;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.search-result {
  border: 2px solid #111;
  border-radius: 18px;
  background: #fff;
  padding: 16px 18px;
  display: grid;
  gap: 6px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.search-result:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
}

.search-result-meta {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #666;
}

.search-result-title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.15;
}

.search-result-copy {
  font-size: 14px;
  line-height: 1.45;
  color: #444;
}

.search-result:hover .search-result-meta,
.search-result:hover .search-result-copy {
  color: rgba(255, 255, 255, 0.82);
}

.search-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px;
  border: 2px solid #111;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 700;
}

.section {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: stretch;
  padding: 38px 0;
  border-top: 0;
  background: #fff;
}

.section-shell {
  width: 100%;
  display: flex;
  align-items: center;
}

.hero-section {
  padding-top: 0;
  padding-bottom: 0;
}

.episodes-section .section-shell,
.articles-section .section-shell,
.about-section .section-shell,
.hosts-section .section-shell,
.partnership-section .section-shell,
.contact-section .section-shell {
  align-items: flex-start;
}

.hero-grid,
.about-grid,
.partnership-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  width: 100%;
  align-items: end;
}

.hosts-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(360px, 1.15fr) minmax(280px, 1fr);
  gap: clamp(26px, 3vw, 52px);
  width: 100%;
  align-items: center;
}

.hero-grid {
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(320px, clamp(360px, 34vw, 520px)) minmax(0, 1fr);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  text-align: center;
  padding: 0 0 36px clamp(0px, 3vw, 42px);
  max-width: clamp(320px, 34vw, 520px);
}

.hero-burst {
  width: clamp(220px, 24vw, 360px);
  position: relative;
  translate: 0 0;
  animation: hero-float 4.4s ease-in-out infinite;
  will-change: translate;
}

@keyframes hero-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

.hero-title,
.section-head h2,
.about-copy h2,
.partnership-copy h2,
.contact-copy h2,
.app-download-block h2 {
  margin: 0;
  font-size: clamp(36px, 5.5vw, 86px);
  line-height: 0.93;
  font-weight: 900;
}

.section-head h2,
.about-copy h2,
.partnership-copy h2,
.contact-copy h2,
.app-download-block h2 {
  text-transform: lowercase;
}

.hero-media {
  min-height: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: visible;
  padding-right: 18px;
  align-self: end;
}

.hero-main-image,
.host-center-image {
  width: auto;
  max-height: min(84vh, 980px);
  object-fit: contain;
}

.hero-main-image {
  width: clamp(360px, 46vw, 680px);
  max-height: calc(100svh - var(--header-height) - 36px);
  height: auto;
}

.hero-title {
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: 0;
}

.social-strip {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 18px;
  padding: 12px 22px;
  border: 2px solid #111;
  border-radius: 999px;
  background: #fff;
}

.social-strip span {
  font-size: 18px;
  font-weight: 400;
  text-transform: none;
}

.social-strip a {
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 0;
  display: inline-grid;
  place-items: center;
  font-size: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-strip a:hover {
  background: transparent;
  color: #111;
  transform: translateY(-2px);
}

.social-strip svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.search-trigger {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.search-trigger:hover {
  background: transparent;
  color: #111;
  transform: translateY(-1px);
}

.listen-btn {
  min-height: 38px;
  padding: 0 6px 0 18px;
  gap: 14px;
  background: #fff;
  color: #111;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.listen-btn .btn-icon + span {
  order: 1;
  flex: 1 1 auto;
  text-align: center;
}

.listen-btn:hover {
  background: #111;
  color: #fff;
}

.listen-btn .btn-icon {
  order: 2;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  background: #111;
  color: #fff;
  font-size: 18px;
}

.listen-btn:hover .btn-icon {
  background: #fff;
  color: #111;
}

.episodes-section {
  background: linear-gradient(180deg, #f6f6f6 0%, #ffffff 55%, #f4f4f4 100%);
}

.section-head {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  width: 100%;
}

.collection-actions {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.collection-more-btn[hidden] {
  display: none;
}

.episode-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  border: 2px solid #111;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.episode-card:hover {
  background: #111;
  color: #fff;
  transform: translateY(-4px);
}

.episode-thumb {
  overflow: hidden;
  border: 2px solid #111;
  background: #000;
  aspect-ratio: 16 / 10;
}

.episode-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.episode-card:hover .episode-thumb {
  border-color: #fff;
}

.episode-card:hover .episode-thumb img {
  transform: scale(1.03);
}

.episode-card h3 {
  margin: 0;
  font-size: clamp(20px, 1.9vw, 30px);
  line-height: 1.14;
  font-weight: 800;
}

.episode-meta {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555;
}

.episode-card:hover .episode-meta {
  color: rgba(255, 255, 255, 0.82);
}

.play-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.play-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  border: 2px solid currentColor;
  font-size: 12px;
}

.about-grid {
  gap: 62px;
}

.about-stack {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.about-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(180px, 0.9fr);
  grid-template-rows: auto auto;
  gap: 22px;
  align-items: start;
}

.collage-item {
  position: relative;
  background: #fff;
  max-width: 100%;
}

.collage-large {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 100%;
  z-index: 1;
}

.collage-top {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: start;
  width: clamp(180px, 22vw, 320px);
  height: auto;
  aspect-ratio: auto;
  background: transparent;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  overflow: visible;
  z-index: 2;
}

.collage-bottom {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  align-self: end;
  width: min(100%, 360px);
  z-index: 3;
}

.about-copy,
.partnership-copy {
  max-width: 620px;
}

.about-copy p,
.host-copy p,
.partnership-copy p {
  margin: 0;
  font-size: clamp(17px, 1.2vw, 19px);
  color: #222;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-featured {
  margin-top: 38px;
  width: 100%;
}

.about-featured-label {
  margin: 0 0 18px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1;
  font-weight: 900;
  text-transform: lowercase;
}

.featured-marquee {
  position: relative;
  overflow: hidden;
  padding: 6px 0 10px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.featured-track {
  display: flex;
  width: max-content;
  animation: featured-scroll 74s linear infinite;
  will-change: transform;
}

.featured-marquee:hover .featured-track {
  animation-play-state: paused;
}

.featured-group {
  display: flex;
  gap: 18px;
  padding-right: 18px;
}

.featured-card {
  flex: 0 0 auto;
  min-width: clamp(176px, 17vw, 250px);
  height: clamp(82px, 8vw, 108px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 2px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
}

.featured-card-dark {
  background: #111;
  border-color: rgba(17, 17, 17, 0.5);
}

.featured-card img {
  max-width: calc(100% - 4px);
  max-height: 58px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

@keyframes featured-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.hosts-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr) minmax(0, 1fr);
  gap: 18px;
  width: 100%;
  align-items: end;
}

.host-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.eyebrow {
  margin: 0;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 0.92;
  font-weight: 900;
  text-transform: lowercase;
}

.eyebrow-right {
  text-align: left;
}

.host-badge {
  width: min(100%, 198px);
}

.host-copy h3 {
  margin: 0;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1;
  font-weight: 900;
}

.host-center-image-wrap {
  display: flex;
  align-items: end;
  justify-content: center;
  min-width: 0;
}

.host-copy-left {
  align-items: flex-start;
}

.host-copy-right {
  align-items: flex-start;
}

.partnership-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.partnership-media {
  border: 2px solid #111;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.partnership-image {
  width: 100%;
  height: min(64vh, 700px);
  object-fit: cover;
}

.partnership-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-grid {
  align-items: start;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid #111;
  background: #fff;
  color: #111;
  padding: 16px 18px;
  outline: 0;
  border-radius: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: #fafafa;
  transform: translateY(-1px);
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

.recaptcha-slot {
  width: 100%;
  min-height: 78px;
  display: flex;
  justify-content: flex-start;
  overflow: hidden;
}

.recaptcha-slot > div {
  max-width: 100%;
}

.form-status {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 600;
}

.form-status.is-error {
  color: #b42318;
}

.form-status.is-success {
  color: #086c39;
}

.site-footer {
  border-top: 1px solid #e3e3e3;
  padding: 42px 0 18px;
  background:
    linear-gradient(180deg, #fff 0, #fff 108px, #f4f4f4 108px, #f4f4f4 110px, #fff 110px);
}

.footer-top {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.footer-logo {
  width: min(100%, 220px);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 18px;
}

.platform-card,
.app-btn {
  border: 3px solid #8f8f8f;
  background: #fff;
  min-height: 100px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 999px;
  box-shadow: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.platform-card:hover,
.app-btn:hover {
  border-color: #111;
  transform: translateY(-2px);
}

.platform-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  flex: 0 0 62px;
}

.platform-logo--wide {
  width: 92px;
  height: 48px;
  flex: 0 0 92px;
}

.platform-copy,
.app-btn span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.platform-copy small,
.app-btn small {
  font-size: 11px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.platform-copy strong,
.app-btn strong {
  font-size: 24px;
  line-height: 1.06;
  font-weight: 800;
  font-style: italic;
  text-transform: lowercase;
}

.platform-mark,
.app-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border: 2px solid #111;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-weight: 900;
  font-size: 30px;
}

.platform-card:hover .platform-mark,
.app-btn:hover .app-icon {
  border-color: #fff;
}

.platform-mark.spotify {
  font-size: 28px;
}

.platform-mark.amazon {
  font-size: 30px;
  text-transform: lowercase;
}

.footer-lower,
.footer-bottom {
  margin-top: 34px;
}

.footer-lower {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(180px, 260px) minmax(320px, 1fr);
  gap: 36px;
  align-items: start;
  justify-content: center;
}

.footer-nav-links,
.footer-policy-links {
  display: grid;
  gap: 18px;
  align-content: start;
  justify-items: center;
  text-align: center;
}

.footer-nav-links a,
.footer-policy-links a {
  font-size: clamp(18px, 1.6vw, 28px);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-utility {
  display: grid;
  gap: 32px;
  justify-items: center;
  text-align: center;
}

.app-download-block {
  display: grid;
  gap: 18px;
}

.app-store-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.app-btn {
  min-height: 110px;
  justify-content: center;
}

.app-icon {
  font-size: 26px;
}

.app-icon-image {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  object-fit: contain;
}

.app-badge {
  width: min(100%, 220px);
  height: auto;
  object-fit: contain;
}

.app-icon-play {
  font-size: 18px;
}

.app-download-block h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.02;
  font-weight: 900;
  text-transform: none;
  text-align: center;
}

.footer-social-block h3 {
  margin: 0 0 16px;
  font-size: clamp(20px, 1.8vw, 34px);
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.footer-social-links a {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
}

.footer-social-links a::after {
  content: none;
}

.footer-social-links a:hover {
  transform: translateY(-2px);
}

.footer-social-links svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.footer-bottom {
  display: grid;
  width: 100%;
  justify-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid #e3e3e3;
}

.footer-bottom p {
  margin: 0;
  width: 100%;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #2f2f2f;
  text-align: center;
}

.footer-bottom a {
  text-decoration: underline;
}

.footer-credit-fr {
  display: inline-grid;
  width: 100%;
  justify-items: center;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: #2f2f2f;
  text-decoration: none;
  text-align: center;
}

.footer-credit-fr span {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: inherit;
}

.footer-credit-line {
  display: block;
  width: 100%;
  text-align: center;
}

.footer-credit-brand {
  display: grid;
  width: 100%;
  justify-items: center;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.footer-credit-name {
  display: block;
  width: 100%;
  text-align: center;
}

.footer-credit-logo {
  width: min(92px, 19vw);
  height: auto;
  object-fit: contain;
}

body.desktop-snap .snap-footer {
  min-height: auto;
  max-height: none;
  overflow: visible;
}

body.desktop-snap .snap-footer::-webkit-scrollbar {
  width: 10px;
}

body.desktop-snap .snap-footer::-webkit-scrollbar-thumb {
  background: rgba(17, 17, 17, 0.22);
  border-radius: 999px;
}

[data-reveal] {
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.9s ease;
  transition-delay: var(--delay, 0s);
}

body.desktop-snap .snap-section [data-reveal] {
  opacity: 0;
  transform:
    translate3d(var(--rx, 0), var(--ry, 0), 0)
    rotate(var(--rr, 0))
    scale(var(--rs, 1));
  will-change: transform, opacity;
}

body.desktop-snap .snap-section.is-active [data-reveal] {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}

body.desktop-snap .snap-section.is-exit-down [data-reveal] {
  opacity: 0;
  transform:
    translate3d(var(--ex-down-x, var(--rx, 0)), var(--ex-down-y, var(--ry, 0)), 0)
    rotate(var(--ex-down-r, var(--rr, 0)))
    scale(var(--ex-down-s, var(--rs, 1)));
}

body.desktop-snap .snap-section.is-exit-up [data-reveal] {
  opacity: 0;
  transform:
    translate3d(var(--ex-up-x, var(--rx, 0)), var(--ex-up-y, var(--ry, 0)), 0)
    rotate(var(--ex-up-r, var(--rr, 0)))
    scale(var(--ex-up-s, var(--rs, 1)));
}

body.desktop-snap .snap-section {
  overflow: clip;
}

body.desktop-snap .hero-section {
  min-height: calc(100svh - var(--header-height));
  max-height: calc(100svh - var(--header-height));
}

body.desktop-snap .hero-media {
  min-height: 0;
}

body.desktop-snap .section {
  min-height: calc(100svh - var(--header-height));
}

body.desktop-snap .episodes-section,
body.desktop-snap .articles-section,
body.desktop-snap .about-section,
body.desktop-snap .hosts-section,
body.desktop-snap .partnership-section,
body.desktop-snap .contact-section {
  padding-top: 26px;
}

@media (max-width: 1240px) {
  .about-grid,
  .partnership-grid,
  .contact-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hosts-layout {
    grid-template-columns: 1fr;
  }

  .platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-lower {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-utility {
    grid-column: 1 / -1;
  }

  .hero-media,
  .host-center-image-wrap {
    min-height: auto;
  }

  .host-center-image {
    max-height: 680px;
    margin-inline: auto;
  }

  .about-copy,
  .partnership-copy {
    max-width: none;
  }

  .about-featured {
    margin-top: 32px;
  }

  .featured-card {
    min-width: 186px;
    height: 92px;
    padding-inline: 16px;
  }

  .featured-card img {
    max-height: 56px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 0px;
  }

  #page-shell {
    padding-top: 0;
  }

  .top-header {
    position: sticky;
    inset: 0 0 auto;
    backdrop-filter: none;
  }

  .support-bar {
    display: none;
  }

  .support-inner {
    min-height: auto;
    padding: 12px 0;
  }

  .nav-inner {
    grid-template-columns: auto 1fr auto;
    min-height: 82px;
    gap: 16px;
  }

  .site-brand {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-grid;
    justify-self: start;
    width: 56px;
    height: 56px;
    background: #111;
    border-radius: 8px;
  }

  .mobile-menu-toggle span {
    background: #fff;
  }

  .main-nav {
    order: 4;
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 0 18px;
    background: #fff;
  }

  body.menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 12px 18px;
    font-size: 19px;
    letter-spacing: 0.12em;
  }

  .main-nav a.active {
    background: #43474e;
    color: #fff;
  }

  .main-nav a.active::after {
    width: 100%;
    background: #fff;
  }

  .nav-actions {
    grid-column: auto;
    justify-content: flex-end;
    display: flex;
    padding-bottom: 0;
  }

  .listen-btn {
    min-height: 46px;
    padding-left: 16px;
    padding-right: 6px;
    gap: 10px;
    font-size: 14px;
  }

  .listen-btn .btn-icon {
    width: 44px;
    height: 44px;
    font-size: 19px;
  }

  body.menu-open .nav-actions {
    display: flex;
  }

  .search-trigger {
    display: none;
  }

  .section {
    min-height: auto;
    padding: 34px 0;
  }

  .section-shell {
    display: block;
  }

  .episode-grid,
  .app-store-links {
    grid-template-columns: 1fr;
  }

  .about-collage {
    min-height: 520px;
  }

  .about-featured {
    margin-top: 26px;
  }

  .about-featured-label {
    margin-bottom: 14px;
    text-align: center;
  }

  .featured-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .featured-track {
    animation-duration: 58s;
  }

  .featured-group {
    gap: 14px;
    padding-right: 14px;
  }

  .featured-card {
    min-width: 156px;
    height: 78px;
    padding: 10px 14px;
  }

  .featured-card img {
    max-height: 44px;
  }

  .hero-title,
  .section-head h2,
  .about-copy h2,
  .partnership-copy h2,
  .contact-copy h2,
  .app-download-block h2 {
    font-size: clamp(34px, 9vw, 66px);
  }

  .hero-title {
    line-height: 1.08;
    font-weight: 400;
    font-size: clamp(28px, 5.6vw, 48px);
  }

  .hero-grid {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
  }

  .hero-copy {
    padding-left: 0;
    max-width: 100%;
    width: 100%;
    order: 1;
    gap: 16px;
    padding-bottom: 0;
  }

  .hero-media {
    min-height: auto;
    justify-content: center;
    padding-right: 0;
    order: 2;
    width: 100%;
    margin-top: 0;
    align-self: stretch;
  }

  .footer-links-row {
    display: grid;
    justify-content: start;
  }

  .footer-bottom {
    display: grid;
    justify-content: center;
    justify-items: center;
    text-align: center;
  }

  .footer-lower {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-nav-links,
  .footer-policy-links {
    gap: 14px;
  }

  .footer-nav-links a,
  .footer-policy-links a {
    font-size: clamp(18px, 4.4vw, 26px);
  }

  .app-store-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom p {
    letter-spacing: 0.08em;
    text-transform: none;
  }

  body.desktop-snap .snap-footer {
    min-height: auto;
    max-height: none;
    overflow: visible;
  }
}

@media (max-height: 860px) and (min-width: 901px) {
  .site-footer {
    padding: 28px 0 14px;
  }

  .footer-top {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
  }

  .footer-logo {
    width: min(100%, 176px);
  }

  .platform-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px 14px;
  }

  .platform-card,
  .app-btn {
    min-height: 82px;
    padding: 12px 14px;
    gap: 12px;
  }

  .platform-logo {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .platform-copy small,
  .app-btn small {
    font-size: 10px;
  }

  .platform-copy strong,
  .app-btn strong {
    font-size: 18px;
  }

  .footer-lower,
  .footer-bottom {
    margin-top: 24px;
  }

  .footer-lower {
    grid-template-columns: minmax(160px, 220px) minmax(160px, 220px) minmax(280px, 1fr);
    gap: 24px;
  }

  .footer-nav-links,
  .footer-policy-links {
    gap: 12px;
  }

  .footer-nav-links a,
  .footer-policy-links a {
    font-size: clamp(16px, 1.4vw, 22px);
  }

  .footer-utility {
    grid-column: auto;
    gap: 22px;
  }

  .app-download-block {
    gap: 14px;
  }

  .app-download-block h2 {
    font-size: clamp(22px, 2.2vw, 32px);
  }

  .app-store-links {
    gap: 14px;
  }

  .footer-social-block h3 {
    margin-bottom: 12px;
    font-size: clamp(18px, 1.6vw, 28px);
  }

  .footer-social-links {
    gap: 14px;
  }

  .footer-bottom {
    gap: 10px;
    padding-top: 16px;
  }

  .footer-bottom p,
  .footer-credit-fr span {
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .footer-credit-logo {
    width: min(82px, 14vw);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .hero-section {
    min-height: calc(100svh - 74px);
    display: block;
    padding: 18px 0 22px;
  }

  .about-grid,
  .partnership-grid,
  .contact-grid,
  .hosts-layout {
    gap: 28px;
  }

  .nav-inner {
    min-height: 74px;
  }

  .support-inner {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 12px;
  }

  .support-inner p,
  .support-inner .btn {
    grid-column: auto;
    width: 100%;
  }

  .support-inner .btn {
    justify-self: stretch;
  }

  .section-head {
    display: grid;
    justify-items: start;
  }

  .episode-grid,
  .platform-grid,
  .search-results {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .about-copy,
  .host-copy,
  .partnership-copy,
  .contact-copy {
    gap: 18px;
  }

  .hero-copy {
    text-align: center;
    align-items: center;
    padding-bottom: 0;
    padding-left: 0;
    max-width: 100%;
    width: 100%;
    gap: 16px;
  }

  .hero-burst {
    width: clamp(156px, 34vw, 210px);
    z-index: 1;
    margin: 0 auto 8px;
  }

  .hero-main-image {
    width: min(100%, 560px);
    max-height: min(48svh, 540px);
    margin-inline: auto;
  }

  .hero-title {
    font-size: clamp(24px, 5.8vw, 34px);
    margin-top: 0;
    max-width: 16ch;
    line-height: 1.08;
  }

  .btn-primary {
    min-height: 48px;
    padding: 10px 26px;
    background: #111;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.03em;
  }

  .btn-primary:hover {
    background: #fff;
    color: #111;
  }

  .social-strip {
    width: min(100%, 480px);
    justify-content: center;
    gap: 18px;
    padding: 12px 18px;
    margin: 4px auto 0;
  }

  .social-strip span {
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
  }

  .social-strip a {
    width: 24px;
    height: 24px;
  }

  .social-strip svg {
    width: 24px;
    height: 24px;
  }

  .hero-media {
    margin-top: 6px;
  }

  .about-collage {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: start;
  }

  .collage-item,
  .collage-large,
  .collage-top,
  .collage-bottom {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .collage-top {
    width: min(48vw, 220px);
    height: auto;
    margin-inline: auto;
  }

  .collage-large {
    grid-column: 1 / -1;
  }

  .host-center-image-wrap {
    justify-content: flex-start;
  }

  .host-center-image {
    width: min(100%, 360px);
    max-height: none;
    margin-inline: auto;
  }

  .partnership-image {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .platform-card,
  .app-btn {
    min-height: 104px;
  }

  .platform-card,
  .app-btn {
    padding: 14px 16px;
  }

  .platform-logo,
  .app-icon-image {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .app-badge {
    width: min(100%, 210px);
  }

  .platform-copy strong,
  .app-btn strong {
    font-size: clamp(18px, 5.2vw, 28px);
  }

  .footer-social-links {
    gap: 16px;
  }

  .footer-social-block h3 {
    font-size: 18px;
  }

  .search-panel {
    top: 14px;
    width: calc(100% - 18px);
    padding: 18px;
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-burst {
    animation: none !important;
  }

  [data-reveal],
  .btn,
  .icon-btn,
  .platform-card,
  .app-btn,
  .episode-card,
  .social-strip a,
  .enter-button {
    transition: none !important;
  }
}
