:root {
      --bg: #f8f8f8;
      --blue: #0073EB;
      --pink: #EC2C79;
      --text: #141414;
      --glass: rgba(255, 255, 255, 0.7);
      --glass-border: rgba(255, 255, 255, 0.30);
      --shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
      --radius-xl: 34px;
      --radius-lg: 24px;
      --max-width: 1280px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "Inter", "Segoe UI", Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

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

    .page-shell {
      min-height: 500vh;
      position: relative;
      isolation: isolate;
      background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.96) 0%, rgba(255,255,255,0.68) 18%, rgba(243,243,245,0) 30%),
        var(--bg);
    }
    
    .container {
      width: min(calc(100% - 32px), var(--max-width));
      margin: 0 auto;
      position: relative;
      z-index: 3;
    }

    :root {
      --curtain-side-height: clamp(300px, 60vw, 690px); /* increased ~30% */
      --curtain-top-height: clamp(55px, 7vw, 110px); /* reduced ~40% */
      --curtain-top-overlap: clamp(18px, 2vw, 34px);
    }
    
    /* keep page-shell as the positioning context */
    .page-shell {
      min-height: 100vh;
      position: relative;
      isolation: isolate;
      overflow: hidden;
      background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.96) 0%, rgba(255,255,255,0.68) 18%, rgba(243,243,245,0) 30%),
        var(--bg);
    }
    


/* =========================
   NEXT SHOW HERO
========================= */

.next-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw); /* forces full-bleed */
  min-height: 100svh;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(90px, 12vh, 150px) 0 clamp(36px, 7vh, 80px);

  overflow: hidden;
}

.next-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("SVG_assets/Nursery.svg") center center / cover no-repeat;
}

/* optional soft white haze like the screenshot */
.next-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 32%, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.06) 22%, rgba(255,255,255,0) 55%);
  pointer-events: none;
}

.next-stage {
  position: relative;
  z-index: 3;
  width: min(1400px, 100vw);
  margin-top: clamp(-90px, -7vh, -42px);
}

.next-banner-wrap {
  --banner-content-y: 57%;
  position: relative;
  width: 88%;
  margin: 0 auto;
  aspect-ratio: 1531 / 494;
}

.next-banner {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  pointer-events: none;
  user-select: none;
}

.next-overlay-content {
  position: absolute;
  top: var(--banner-content-y);
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(760px, 58%);
  text-align: center;
  z-index: 4;
  display: grid;
  justify-items: center;
}

.pet-rock {
  width: clamp(52px, 6.5vw, 88px);
  height: auto;
  display: block;
  margin: 0 auto 8px;
}

#countdown-title {
  margin: 0;
  max-width: 100%;
  font-size: clamp(3.25rem, 6.35vw, 6.35rem);
  line-height: 0.95;
  font-weight: 700;
  color: #000;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

#countdown-title.countdown-clock {
  display: grid;
  grid-template-columns: 2ch 0.48ch 2ch 0.48ch 2ch;
  align-items: baseline;
  width: 7ch;
  max-width: none;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  overflow-wrap: normal;
}

.countdown-unit,
.countdown-colon {
  display: block;
  text-align: center;
}

#countdown-subtext {
  margin: 6px auto 0;
  max-width: min(560px, 100%);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.2;
  color: #111;
  font-weight: 400;
}

.watch-now-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.show-date-line {
  display: grid;
  justify-items: center;
  gap: 3px;
  margin: 17px auto 0;
  max-width: 100%;
  font-size: clamp(1.05rem, 1.58vw, 1.26rem);
  line-height: 1.12;
  color: #111;
  font-weight: 700;
  text-wrap: balance;
}

.show-date-line[hidden] {
  display: none;
}

.show-date-label {
  display: block;
  color: rgba(17, 17, 17, 0.78);
  font-size: 0.78em;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#show-date-text {
  display: block;
  font-weight: 700;
}

.hero-pet {
  position: absolute;
  z-index: 5;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.hero-left {
  left: -2%;
  top: -32%;
  width: 24%;
}

.hero-right {
  right: -3%;
  top: -31%;
  width: 29%;
  transform: rotate(-4deg);
  transform-origin: 60% 55%;
}

/* Make the hero flow nicely into footer */
.page-shell {
  min-height: auto;
}

@media (min-width: 1500px) {
  .next-stage {
    width: min(1450px, 88vw);
  }
}

@media (max-width: 1200px) {
  .next-stage {
    width: 112vw;
  }

  .next-banner-wrap {
    --banner-content-y: 59%;
    width: 95%;
  }

  .next-overlay-content {
    width: min(720px, 54%);
  }

}

@media (max-width: 700px) {
  .next-hero {
    align-items: flex-start;
    min-height: 100svh;
    padding-top: clamp(120px, 18svh, 170px);
    padding-bottom: 54px;
  }

  .next-bg {
    background-position: center bottom;
  }

  .next-stage {
    width: 100vw;
    margin-top: clamp(-8px, 1vh, 14px);
  }

  .next-banner-wrap {
    --banner-content-y: 61%;
    left: 50%;
    width: 145%;
    margin-inline: 0;
    transform: translateX(-50%);
  }

  .next-overlay-content {
    width: min(86vw, 540px);
  }

  .pet-rock {
    width: clamp(46px, 12vw, 66px);
    margin-bottom: 6px;
  }

  #countdown-title {
    font-size: clamp(2.65rem, 13vw, 4.45rem);
    line-height: 0.94;
  }

  #countdown-subtext,
  .show-date-line {
    font-size: clamp(0.95rem, 4vw, 1.08rem);
    line-height: 1.15;
  }

  .show-date-line {
    margin-top: 7px;
  }

  .hero-pet {
    display: block;
  }

  .hero-left {
    top: calc(0px - clamp(120px, 18svh, 170px) - 5vw);
    left: -12vw;
    width: clamp(170px, 46vw, 280px);
    transform: rotate(10deg);
  }

  .hero-right {
    top: calc(100svh - clamp(120px, 18svh, 170px) - 46vw);
    right: -17vw;
    width: clamp(210px, 61vw, 350px);
    transform: rotate(-10deg);
  }
}

@media (max-width: 589.98px) {
  .next-banner-wrap {
    width: 190%;
  }
}

@media (max-width: 449.98px) {
  .next-banner-wrap {
    width: 270%;
  }
}

@media (max-width: 420px) {
  .next-banner-wrap {
    --banner-content-y: 60%;
  }

  .next-overlay-content {
    width: min(86vw, 420px);
  }
}

@media (orientation: landscape) and (min-width: 701px) and (max-height: 560px) {
  .next-hero {
    padding-top: 76px;
    padding-bottom: 24px;
  }

  .next-stage {
    width: min(1080px, 118vw);
    margin-top: -16px;
  }

  .next-banner-wrap {
    --banner-content-y: 50%;
    width: 90%;
  }

  .next-overlay-content {
    width: 54%;
  }

  .pet-rock {
    width: clamp(42px, 6vw, 64px);
  }

  #countdown-title {
    font-size: clamp(2.4rem, 7vw, 4.2rem);
  }

  #countdown-subtext,
  .show-date-line {
    font-size: 0.95rem;
  }

}

/* This page intentionally tops out at the requested 700 weight. */
.footer-brand h2 {
  font-weight: 700;
}
