.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.75rem, 10vw, 7rem);
  letter-spacing: -0.02em;
}

.hero-tagline {
  margin-top: 1rem;
  font-family: 'Work Sans Variable', system-ui, sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  opacity: 0.85;
}

@media (prefers-reduced-motion: no-preference) {
  .hero h1,
  .hero-tagline {
    opacity: 0;
    animation: hero-rise-in 0.9s ease both;
  }

  .hero-tagline {
    animation-delay: 0.15s;
  }

  .hero-scroll-cue {
    animation: hero-scroll-pulse 2.4s ease-in-out infinite;
  }
}

@keyframes hero-rise-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-scroll-pulse {
  0%, 100% {
    opacity: 0.15;
  }
  50% {
    opacity: 0.6;
  }
}
