:root {
  color-scheme: light;
  --page-bg: #ffffff;
  --hero-bg: #8dd541;
  --white: #ffffff;
  --strip-text: #364148;
  --legal-text: #f6ffe9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--page-bg);
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.stage {
  position: relative;
  min-height: 100dvh;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  position: relative;
  width: min(1840px, calc(100vw - 64px));
  min-height: calc(100dvh - 64px);
  background: var(--hero-bg);
  border-radius: 44px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: calc(clamp(56px, 9vh, 138px) + 40px) 24px 0;
}

.hero-copy h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 5.6vw, 6.2rem);
  font-weight: 800;
  line-height: 1.02;
}

.hero-copy h2 {
  margin: clamp(16px, 1.6vw, 26px) 0 0;
  color: #f4f8ef;
  font-size: clamp(2rem, 3.4vw, 4.4rem);
  font-weight: 700;
  line-height: 1.14;
}

.hero-copy h2 em {
  font-style: italic;
  font-weight: 800;
}

.coming-strip {
  position: absolute;
  left: 50%;
  top: calc(clamp(286px, 53%, 560px) - 78px);
  width: 112vw;
  height: clamp(34px, 2.7vw, 52px);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: rotate(-5deg);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
  z-index: 6;
  margin-left: -56vw;
}

.coming-strip p {
  margin: 0;
  width: 110%;
  white-space: nowrap;
  color: var(--strip-text);
  font-size: clamp(0.95rem, 1.45vw, 1.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
}

.bottom-banner {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(1200px, 94%);
  z-index: 3;
}

.bottom-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.legal-links {
  position: absolute;
  left: 32px;
  bottom: 24px;
  z-index: 5;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.legal-links a {
  color: var(--legal-text);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  font-size: 0.95rem;
  font-weight: 800;
}

.legal-links a:hover {
  opacity: 0.8;
}

.legal-links a:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (max-width: 1240px) {
  .coming-strip {
    top: calc(clamp(246px, 50%, 470px) - 78px);
    width: 116vw;
    margin-left: -58vw;
  }
}

@media (max-width: 900px) {
  .stage {
    padding: 16px;
  }

  .hero-card {
    width: calc(100vw - 32px);
    min-height: calc(100dvh - 32px);
    border-radius: 28px;
  }

  .hero-copy {
    padding-top: 102px;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 10vw, 3.75rem);
  }

  .hero-copy h2 {
    font-size: clamp(1.55rem, 6.2vw, 2.4rem);
  }

  .coming-strip {
    top: calc(clamp(220px, 43%, 360px) - 78px);
    width: 122vw;
    margin-left: -61vw;
    height: clamp(32px, 6vw, 46px);
    transform: rotate(-4.6deg);
  }

  .coming-strip p {
    font-size: clamp(0.9rem, 3.8vw, 1.35rem);
  }

  .bottom-banner {
    width: min(1200px, 96%);
  }

  .legal-links {
    left: 16px;
    bottom: max(14px, env(safe-area-inset-bottom));
    gap: 12px;
  }

  .legal-links a {
    font-size: 0.9rem;
  }
}

@media (max-width: 520px) {
  .hero-copy {
    padding-left: 14px;
    padding-right: 14px;
  }

  .coming-strip {
    top: calc(clamp(200px, 41%, 316px) - 78px);
    width: 132vw;
    margin-left: -66vw;
    transform: rotate(-4.4deg);
  }
}
