:root {
  color-scheme: dark;
  --bg: #07020d;
  --ink: #f9f5ff;
  --muted: #a9f8ff;
  --cyan: #00f0ff;
  --pink: #ff2bd6;
  --amber: #ffd166;
  --panel: rgba(9, 6, 24, 0.78);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  overflow-x: hidden;
  background:
    linear-gradient(115deg, rgba(255, 43, 214, 0.12) 0 12%, transparent 12% 18%, rgba(0, 240, 255, 0.1) 18% 30%, transparent 30%),
    linear-gradient(145deg, #05010a 0%, #13031b 48%, #030613 100%);
  color: var(--ink);
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 50%, rgba(0, 0, 0, 0.08) 50%),
    linear-gradient(90deg, rgba(255, 43, 214, 0.05), rgba(0, 240, 255, 0.05));
  background-size: 100% 4px, 6px 100%;
  mix-blend-mode: screen;
}

.stage {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(1.25rem, 4vw, 4rem);
  isolation: isolate;
}

.grid {
  position: fixed;
  inset: auto -10vw 0;
  z-index: -1;
  height: 45vh;
  transform: perspective(380px) rotateX(62deg);
  transform-origin: bottom;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 43, 214, 0.36) 1px, transparent 1px);
  background-size: 44px 44px;
  filter: drop-shadow(0 0 14px rgba(0, 240, 255, 0.6));
  opacity: 0.5;
}

.signal {
  width: min(100%, 980px);
  text-align: center;
}

.kicker {
  margin: 0 0 0.75rem;
  color: var(--amber);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(255, 209, 102, 0.9);
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: 6.5rem;
  line-height: 0.88;
  text-transform: uppercase;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.7),
    0 0 24px rgba(0, 240, 255, 0.88),
    0 0 52px rgba(255, 43, 214, 0.74);
}
