.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 20px 64px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 72%, rgba(255, 179, 87, 0.18), transparent 20%),
    radial-gradient(ellipse at 50% 18%, rgba(77, 163, 255, 0.24), transparent 32%),
    linear-gradient(180deg, #02050a 0%, #07111f 52%, #0b1d33 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 25%, rgba(84, 255, 216, 0.075) 34%, transparent 47%),
    linear-gradient(75deg, transparent 0 48%, rgba(97, 139, 255, 0.085) 58%, transparent 72%);
  filter: blur(8px);
  animation: aurora 9s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -1px;
  height: 180px;
  clip-path: polygon(0 82%, 12% 55%, 24% 72%, 38% 34%, 52% 68%, 67% 28%, 82% 64%, 100% 42%, 100% 100%, 0 100%);
  background-color: rgba(255, 255, 255, 0.045);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.snow-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  bottom: 68px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 179, 87, 0.34), transparent 62%);
  filter: blur(4px);
  animation: furnacePulse 3s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  animation: heroEnter 900ms ease both;
}

.lore {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 18px;
  animation: fadeDelay 1200ms ease both;
}

.hero h1 {
  display: grid;
  gap: 0;
  line-height: 0.82;
}

.hero h1 span {
  font-size: clamp(3.4rem, 18vw, 7rem);
  letter-spacing: -0.08em;
  font-weight: 950;
}

.hero h1 strong {
  font-size: clamp(5.6rem, 31vw, 12rem);
  letter-spacing: -0.1em;
  font-weight: 1000;
  color: var(--soft);
  text-shadow:
    0 0 24px rgba(142, 220, 255, 0.22),
    0 0 80px rgba(77, 163, 255, 0.22);
}

.subtitle {
  color: var(--ice);
  font-size: 1.05rem;
  margin-top: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

@media (min-width: 720px) {
  .hero-actions {
    display: flex;
    justify-content: center;
  }
}