:root {
  --hue: 150;

  --bg: oklch(0.18 0.035 158);
  --ink: oklch(0.97 0.02 150);
  --muted: oklch(0.82 0.03 155);
  --line: oklch(0.35 0.04 158);

  --accent: oklch(0.82 0.19 var(--hue));
  --accent-soft: oklch(0.82 0.19 var(--hue) / 0.16);

  --maxw: 720px;
}

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

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Ambient glows */
.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.glow-a {
  width: 46vw;
  height: 46vw;
  top: -14vw;
  right: -8vw;
  background: var(--accent-soft);
}

.glow-b {
  width: 40vw;
  height: 40vw;
  bottom: -16vw;
  left: -10vw;
  background: oklch(0.66 0.18 var(--hue) / 0.14);
}

/* Stage */
.stage {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  padding: 48px 24px;
  text-align: center;
}

.ticker-chip {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}

/* Mascot */
.mascot {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  animation: bob 4s ease-in-out infinite;
}

.mascot-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 68%);
  border: 3px solid var(--accent);
}

.mascot-face {
  font-size: 7rem;
  filter: drop-shadow(0 12px 24px oklch(0.16 0.05 var(--hue) / 0.6));
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

/* Type */
.title {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 12vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
  margin: 0;
}

.tagline {
  color: var(--muted);
  font-size: 1.2rem;
  max-width: 44ch;
  margin: 20px auto 32px;
  text-wrap: pretty;
}

.coming {
  display: inline-block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 26px;
  margin: 0 0 36px;
}

/* X button */
.btn-x {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  color: oklch(0.16 0.04 var(--hue));
  background: var(--accent);
  padding: 15px 30px;
  border-radius: 999px;
  transition: transform 0.18s ease;
}

.btn-x:hover {
  transform: translateY(-2px);
}

.btn-x:active {
  transform: translateY(1px) scale(0.98);
}

/* Disclaimer */
.disclaimer {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 52ch;
  margin: 48px auto 0;
  opacity: 0.85;
  text-wrap: pretty;
}

@media (max-width: 520px) {
  .mascot {
    width: 170px;
    height: 170px;
  }

  .mascot-face {
    font-size: 5.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mascot {
    animation: none;
  }
}
