:root {
  --bg: #07090d;
  --line: rgba(180, 210, 255, 0.09);
  --text: #eef3fb;
  --muted: #8b97ab;
  --faint: #667085;
  --accent: #3dff8a;
  --cyan: #67e8f9;
  --font: "Outfit", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { height: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100%;
  min-height: 100dvh;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1100px 620px at 18% -8%, rgba(61, 255, 138, 0.16), transparent 55%),
    radial-gradient(800px 480px at 92% 8%, rgba(103, 232, 249, 0.09), transparent 52%),
    radial-gradient(700px 500px at 70% 100%, rgba(61, 255, 138, 0.06), transparent 55%),
    linear-gradient(180deg, #0a0e14 0%, var(--bg) 42%);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-plane {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-plane__glow {
  position: absolute;
  width: min(72vw, 820px);
  height: min(72vw, 820px);
  right: -12%;
  top: 50%;
  margin-top: calc(min(72vw, 820px) / -2);
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 40%, rgba(61, 255, 138, 0.18), transparent 58%),
    radial-gradient(circle at 65% 60%, rgba(103, 232, 249, 0.08), transparent 50%);
  filter: blur(8px);
  animation: glow-breathe 8s ease-in-out infinite;
  transform-origin: center;
}

@media (max-width: 820px) {
  .hero-plane__glow {
    right: 50%;
    left: auto;
    top: 28%;
    width: 120vw;
    height: 70vw;
    margin-top: 0;
    margin-right: -60vw;
  }
}

.stage {
  position: relative;
  z-index: 2;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 88px 24px 120px;
}

.stage-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: inherit;
}

.brand-logo {
  width: clamp(56px, 10vw, 72px);
  height: clamp(56px, 10vw, 72px);
  border-radius: 20px;
  flex-shrink: 0;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.brand-type {
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}

.brand-toggle { color: var(--text); }
.brand-host { color: var(--accent); }

.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 10px 18px 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(61, 255, 138, 0.28);
  background:
    linear-gradient(180deg, rgba(61, 255, 138, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(16, 21, 31, 0.72);
  box-shadow:
    0 0 0 1px rgba(61, 255, 138, 0.04) inset,
    0 12px 40px rgba(0, 0, 0, 0.28),
    0 0 36px rgba(61, 255, 138, 0.08);
  backdrop-filter: blur(12px);
}

.coming-soon__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(61, 255, 138, 0.55);
  animation: pulse-dot 2.2s ease-out infinite;
  flex-shrink: 0;
}

.coming-soon__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.foot {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.35em;
  padding: 16px 24px 24px;
  font-size: 12px;
  color: var(--faint);
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(7, 9, 13, 0.85) 55%);
}

.foot-brand {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.foot-brand .brand-toggle { color: var(--text); }
.foot-brand .brand-host { color: var(--accent); }

[data-animate] {
  opacity: 0;
  transform: translateY(16px);
  animation: rise-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

[data-animate]:nth-child(1) { animation-delay: 0.08s; }
[data-animate]:nth-child(2) { animation-delay: 0.22s; }

@media (prefers-reduced-motion: reduce) {
  [data-animate],
  .hero-plane__glow,
  .coming-soon__dot {
    animation: none !important;
  }
  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(61, 255, 138, 0.55);
    opacity: 1;
  }
  70% {
    box-shadow: 0 0 0 12px rgba(61, 255, 138, 0);
    opacity: 0.85;
  }
  100% {
    box-shadow: 0 0 0 0 rgba(61, 255, 138, 0);
    opacity: 1;
  }
}

@keyframes glow-breathe {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
