:root {
  --bg: #0b0b1a;
  --bg-accent: #171732;
  --highlight: #ffb02e;
  --text: #f4f1ff;
  --muted: #a9a2d3;
  --glass: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Bebas Neue", "Oswald", "DIN Condensed", sans-serif;
  color: var(--text);
  background: #000;
  overflow: hidden;
}

.stage {
  position: relative;
  z-index: 2;
  max-width: 960px;
  padding: 8vh 6vw 6vh;
  margin: 0 auto;
  display: grid;
  gap: 4vh;
}

.hero {
  display: grid;
  gap: 12px;
  text-align: left;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.7rem;
  color: var(--muted);
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.95;
}

.sub {
  font-family: "Source Sans 3", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  color: var(--muted);
}

.sequence {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(6rem, 18vw, 12rem);
  color: var(--highlight);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 3;
  text-shadow: 0 0 40px rgba(255, 176, 46, 0.35);
}

.sequence.active {
  opacity: 1;
}

.sequence.pulse {
  animation: pulse 0.7s ease;
}

.sequence.glow {
  color: #ffe2a8;
  text-shadow: 0 0 60px rgba(255, 212, 141, 0.75);
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  60% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

#scene {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@media (max-width: 600px) {
  .stage {
    padding: 6vh 6vw 8vh;
  }
}
