:root {
  --gold: #e4c24a;
  --text: #f4f1ea;
  --muted: #cbbfa8;
  --font: "Outfit", system-ui, sans-serif;
  --mono: "Share Tech Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  min-height: 100%;
  height: 100%;
}
body.coming-soon {
  font-family: var(--font);
  color: var(--text);
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  overflow: hidden;
  background: #070709;
}

.scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.scene-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 50% 35%, #1a1520 0%, #0b0c10 55%, #070709 100%);
}
.scene-flicker {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 42% at 50% 40%, rgba(255, 210, 120, 0.22), transparent 70%);
  mix-blend-mode: soft-light;
  animation: flicker 2.8s infinite;
}
.scene-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent 40%, rgba(0,0,0,0.45) 100%);
}

@keyframes flicker {
  0%, 100% { opacity: 0.78; filter: brightness(1); }
  8% { opacity: 0.92; filter: brightness(1.12); }
  10% { opacity: 0.55; filter: brightness(0.82); }
  12% { opacity: 0.95; filter: brightness(1.18); }
  18% { opacity: 0.7; filter: brightness(0.9); }
  22% { opacity: 1; filter: brightness(1.22); }
  28% { opacity: 0.8; filter: brightness(1.02); }
  45% { opacity: 0.88; filter: brightness(1.08); }
  52% { opacity: 0.6; filter: brightness(0.85); }
  54% { opacity: 0.98; filter: brightness(1.2); }
  70% { opacity: 0.82; filter: brightness(1.04); }
  86% { opacity: 0.94; filter: brightness(1.14); }
}

.topbar, .stage, .foot {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.04em;
}
.logo img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(228, 194, 74, 0.35);
}
.back {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}
.back:hover { color: var(--gold); }

.stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 1.25rem 1.5rem;
  max-width: 42rem;
  margin: 0 auto;
}
.kicker {
  margin: 0 0 0.55rem;
  font-family: var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.78rem;
  text-shadow: 0 0 18px rgba(228, 194, 74, 0.45);
}
h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.65);
}
.lead {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.45;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}
.lead strong { color: var(--text); }

.pulse-line {
  width: min(14rem, 50vw);
  height: 2px;
  margin: 1.25rem auto 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 16px rgba(228, 194, 74, 0.65);
  animation: pulseLine 2.2s ease-in-out infinite;
}
@keyframes pulseLine {
  0%, 100% { opacity: 0.45; transform: scaleX(0.85); }
  50% { opacity: 1; transform: scaleX(1); }
}

.soon-chip {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(228, 194, 74, 0.45);
  background: rgba(0, 0, 0, 0.45);
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  animation: chipGlow 2.8s ease-in-out infinite;
}
@keyframes chipGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(228, 194, 74, 0); }
  50% { box-shadow: 0 0 22px rgba(228, 194, 74, 0.35); }
}

.foot {
  text-align: center;
  padding: 0.75rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.85rem;
}
.foot a { color: var(--gold); text-decoration: none; }

@media (max-width: 640px) {
  body.coming-soon { overflow: auto; }
  .stage { padding-top: 1.5rem; }
}
