.hero-background {
  --black: #050505;
  --orange: #ff8a00;
  --amber: #ffbf33;
  --white: #ffffff;
}

.hero-background,
.hero-background * {
  box-sizing: border-box;
}

.hero-background {
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(
      circle at 50% 52%,
      rgba(255, 138, 0, 0.12),
      transparent 34rem
    ),
    var(--black);
  color: var(--white);
  font-family: "Courier New", Consolas, monospace;
}

.hero-background canvas.rain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  image-rendering: pixelated;
}

.hero-background .rain-back {
  z-index: 0;
}

.hero-background .rain-front {
  opacity: 0.82;
  pointer-events: none;
}

.hero-background .brand-lockup {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  text-align: center;
  padding: 24px;
  z-index: 2;
}

.hero-background .brand-lockup::before {
  content: "";
  position: absolute;
  width: min(78vw, 680px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.16), transparent 66%);
  filter: blur(6px);
}

.hero-background .brand-text {
  position: relative;
  display: grid;
  gap: 10px;
  animation: pulse 2.4s ease-in-out infinite;
}

.hero-background h1 {
  margin: 0;
  color: var(--white);
  font-family: Michroma, "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.4rem, 10vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.25),
    0 0 26px rgba(255, 138, 0, 0.78),
    0 0 60px rgba(255, 138, 0, 0.35);
}

.hero-background p {
  margin: 0;
  color: var(--orange);
  font-size: clamp(1rem, 3vw, 1.5rem);
  text-shadow: 0 0 16px rgba(255, 138, 0, 0.85);
}

@media (prefers-reduced-motion: reduce) {
  .hero-background .brand-text {
    animation: none;
  }
}

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

  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}