.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--bg);
}

/* Subtle radial ambient light behind hero content */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
}

.hero-eyebrow {
  opacity: 0;
  margin-bottom: 20px;
}

.hero-subtext {
  opacity: 0;
  margin-top: 28px;
  max-width: 400px;
}

.hero-cta {
  opacity: 0;
  margin-top: 44px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-word,
  .hero-eyebrow,
  .hero-subtext,
  .hero-cta {
    opacity: 1 !important;
    transform: none !important;
  }
}
