:root {
  --orange: #ff7a18;
  --orange-bright: #ffb066;
  --orange-pale: #ffe0c2;
  --orange-dim: #b2530f;
  --bg: #000000;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--orange);
  font-family: ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
  overflow-x: hidden;
}

/* --- Backdrop layers ------------------------------------------------ */

#rain {
  position: fixed;
  inset: 0;
  display: block;
  z-index: 0;
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.45;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0 2px,
    rgba(0, 0, 0, 0.35) 2px 4px
  );
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.88) 100%
  );
}

/* --- Content -------------------------------------------------------- */

.shell {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  text-align: center;
}

header { text-align: left; }

.prompt {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--orange-dim);
  text-transform: uppercase;
}

.prompt::before {
  content: "> ";
  color: var(--orange);
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
}

h1 { margin: 0; }

.title {
  display: block;
  font-size: clamp(2rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.04em;
  color: var(--orange-pale);
  text-shadow:
    0 0 10px rgba(255, 122, 24, 0.9),
    0 0 34px rgba(255, 122, 24, 0.55),
    0 0 70px rgba(255, 122, 24, 0.3);
}

.subtitle {
  display: block;
  margin-top: 1rem;
  font-size: clamp(0.7rem, 2.4vw, 1.15rem);
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--orange);
  text-shadow: 0 0 12px rgba(255, 122, 24, 0.7);
}

.soon {
  margin: 0;
  font-size: clamp(0.95rem, 3vw, 1.5rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange-bright);
  text-shadow: 0 0 14px rgba(255, 176, 102, 0.75);
}

.cursor {
  display: inline-block;
  margin-left: 0.15em;
  animation: blink 1.1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

footer {
  color: var(--orange-dim);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}

footer p { margin: 0.2rem 0; }

/* --- Accessibility -------------------------------------------------- */

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