/* Hero v16 — Aurora Flow */

.hero-v16 {
  min-height: 88vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem) 1.25rem;
  background-color: var(--background-color, #0c1929);
  background-image: var(--background-image, none), linear-gradient(145deg, #0c1929 0%, #1e1b4b 45%, #312e81 100%);
  background-size: cover, auto;
  background-position: center, center;
}

.hero-v16-glow {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 25% 35%, color-mix(in srgb, var(--accent-color, #38bdf8) 35%, transparent), transparent 55%),
    radial-gradient(circle at 75% 65%, color-mix(in srgb, var(--accent-color, #38bdf8) 22%, transparent), transparent 50%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.hero-v16-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-v16-eyebrow {
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-color, #38bdf8);
  margin: 0 0 1rem;
}

.hero-v16 .hero-title {
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 1rem;
  background: linear-gradient(110deg, #f0f9ff 0%, var(--accent-color, #38bdf8) 50%, #c4b5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-v16 .hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  opacity: 0.9;
  margin: 0 0 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
