:root {
  --pink: #f11158;
  --pink-hover: #f62869;
  --pink-soft: #f4cdd9;
  --ink: #131516;
  --muted: #707c84;
  --dark: #383e42;
  --bg: #f4f5f6;
  --white: #ffffff;
  --container: 1140px;
  --font-head: "Sora", sans-serif;
  --font-body: "Lora", Georgia, serif;
  --radius: 12px;
  --shadow: 0 18px 40px rgba(19, 21, 22, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(241, 17, 88, 0.08), transparent 36%),
    radial-gradient(circle at 92% 8%, rgba(244, 205, 217, 0.55), transparent 28%),
    linear-gradient(180deg, #fafbfc 0%, var(--bg) 42%, #ffffff 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
.btn,
.nav a,
.logo-text,
.section-label,
.eyebrow {
  font-family: var(--font-head);
}

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--pink);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(19, 21, 22, 0.06);
  box-shadow: 0 10px 30px rgba(19, 21, 22, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.logo-text {
  font-size: 1.15rem;
  color: var(--ink);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--pink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background: var(--pink-hover);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--pink);
  padding: 0;
  border-radius: 0;
}

.btn-ghost:hover {
  background: transparent;
  color: var(--pink-hover);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */
.hero {
  padding: 5.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  color: var(--pink);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.hero h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero-lead {
  margin: 0 0 1.8rem;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.hero-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateY(0);
  animation: float-in 0.8s ease both;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.hero-card-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.hero-card-body .section-label {
  margin-bottom: 0.4rem;
}

.hero-card-body h2 {
  margin: 0 0 0.55rem;
  font-size: 1.25rem;
  line-height: 1.35;
}

.hero-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Platforms */
.platforms {
  padding: 0.5rem 0 3.5rem;
}

.platforms-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.6rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(19, 21, 22, 0.04);
}

.platforms h2 {
  margin: 0;
  font-size: 1rem;
  color: var(--dark);
}

.platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.4rem;
}

.platform-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s ease;
}

.platform-list a:hover {
  color: var(--pink);
}

.platform-list svg {
  width: 22px;
  height: 22px;
  fill: var(--pink);
}

/* Sections */
.section {
  padding: 4.25rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.72);
}

.section-label {
  display: inline-block;
  margin: 0 0 0.75rem;
  color: var(--pink);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-head h2,
.section h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-lead {
  margin: 0.85rem 0 0;
  color: var(--muted);
  max-width: 40rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.story-copy p {
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--pink);
}

.text-link:hover {
  color: var(--pink-hover);
}

.story-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Episodes */
.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.episode-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(19, 21, 22, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.episode-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.episode-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.episode-card-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.episode-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  line-height: 1.4;
}

.episode-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.episode-list {
  display: grid;
  gap: 1rem;
}

.episode-row {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 1.15rem;
  align-items: center;
  padding: 1rem;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(19, 21, 22, 0.04);
}

.episode-row img {
  width: 96px;
  height: 96px;
  border-radius: 10px;
  object-fit: cover;
}

.episode-row h3 {
  margin: 0 0 0.35rem;
  font-size: 1.08rem;
}

.episode-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Testimonials */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.quote-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.4rem 1.35rem;
  box-shadow: 0 10px 28px rgba(19, 21, 22, 0.05);
}

.quote-card p {
  margin: 0 0 1.1rem;
  color: var(--dark);
  font-size: 0.98rem;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.quote-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.quote-author strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.92rem;
}

.quote-author span {
  color: var(--muted);
  font-size: 0.85rem;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.blog-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.35rem 1.3rem 1.45rem;
  box-shadow: 0 10px 28px rgba(19, 21, 22, 0.05);
  transition: transform 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-card time {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
}

.blog-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.08rem;
  line-height: 1.4;
}

.blog-card p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Hosts */
.host-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.host-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.25rem;
  align-items: start;
  background: var(--white);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 10px 28px rgba(19, 21, 22, 0.05);
}

.host-card img {
  width: 160px;
  height: 160px;
  border-radius: 14px;
  object-fit: cover;
}

.host-card .host-num {
  font-family: var(--font-head);
  color: var(--pink);
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 0 0.35rem;
}

.host-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.35rem;
}

.host-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

/* Page hero */
.page-hero {
  padding: 4.5rem 0 2.5rem;
}

.page-hero h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(2.1rem, 4vw, 3rem);
  letter-spacing: -0.03em;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
  font-size: 1.05rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.info-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.2rem 1.25rem;
  box-shadow: 0 8px 22px rgba(19, 21, 22, 0.04);
}

.info-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--pink);
}

.info-card p {
  margin: 0;
  color: var(--muted);
}

.contact-form {
  background: var(--white);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(19, 21, 22, 0.15);
  border-radius: 10px;
  padding: 0.85rem 0.95rem;
  font: inherit;
  color: var(--ink);
  background: #fbfbfc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(241, 17, 88, 0.12);
}

.form-note {
  margin: 0.85rem 0 0;
  color: var(--pink);
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  min-height: 1.2em;
}

/* Footer */
.site-footer {
  background: #15181a;
  color: rgba(255, 255, 255, 0.72);
  padding: 3rem 0 2rem;
  margin-top: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
}

.footer-brand .logo-text {
  color: #fff;
}

.footer-brand p {
  margin: 0.65rem 0 0;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.35rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 1.25rem 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.copyright {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.42);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .story-grid,
  .host-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .episode-grid,
  .quote-grid,
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .host-card {
    grid-template-columns: 120px 1fr;
  }

  .host-card img {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: #fff;
    border-bottom: 1px solid rgba(19, 21, 22, 0.08);
    box-shadow: 0 16px 30px rgba(19, 21, 22, 0.08);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid rgba(19, 21, 22, 0.06);
  }

  .nav .btn {
    margin-top: 0.65rem;
    justify-content: center;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .episode-grid,
  .quote-grid,
  .blog-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .episode-row {
    grid-template-columns: 72px 1fr;
  }

  .episode-row .btn-ghost {
    grid-column: 2;
  }

  .episode-row img {
    width: 72px;
    height: 72px;
  }

  .platforms-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
