.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: -30px;
    background: url('../img/hero.png') center center / cover no-repeat;
    filter: brightness(.72) contrast(1.08);
    transform: scale(1.05);
    transition: transform 0.2s ease-out;
    will-change: transform;
}

.hero-shadow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(0,0,0,.05), rgba(0,0,0,.78)),
        linear-gradient(to bottom, rgba(0,0,0,.12), rgba(0,0,0,.62));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 20px;
    animation: fadeUp 1.2s ease;
}

.kicker {
    font-size: 12px;
    letter-spacing: 4px;
    opacity: .6;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(60px, 9vw, 140px);
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(255,255,255,.12);
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 18px;
    opacity: .88;
}

.hero-text {
    font-size: 16px;
    line-height: 1.8;
    opacity: .68;
    margin-bottom: 40px;
}

/* Hero atmosphere update */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 35%),
    linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.72));
  pointer-events: none;
  z-index: 1;
}

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

.hero h1 {
  text-shadow:
    0 0 22px rgba(255,255,255,0.16),
    0 0 55px rgba(255,255,255,0.08);
  letter-spacing: 0.12em;
}

.hero-subtitle {
  text-shadow: 0 0 18px rgba(255,255,255,0.12);
}

.hero-text {
  max-width: 760px;
}
/* HERO FINAL BOOST */

.hero h1 {
  text-shadow:
    0 0 30px rgba(255,255,255,0.18),
    0 0 80px rgba(255,255,255,0.10);
}

.hero-subtitle {
  font-size: 24px;
  opacity: 0.95;
}

.hero-text {
  opacity: 0.8;
}

.hero::after {
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.06), transparent 40%),
    linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.78));
}
