.hero {
    position: relative;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: 980px;
    margin: auto;
    padding-left: 40px;
    padding-right: 40px;

    text-align: center;
}

.hero-label {
    display: inline-block;
    margin-bottom: 24px;

    color: var(--gold);
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 800;
}

.hero-buttons {
    margin-top: 52px;

    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;
        padding-top: 160px;
        padding-bottom: 120px;
    }

    .hero-content {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.hero-cinematic {
    background: #020202;
}
.hero-cinematic::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
            radial-gradient(
                    circle at 50% 42%,
                    rgba(240,216,122,0.16),
                    transparent 35%
            ),
            radial-gradient(
                    circle at 75% 25%,
                    rgba(212,175,55,0.08),
                    transparent 30%
            ),
            linear-gradient(
                    90deg,
                    rgba(0,0,0,0.55),
                    rgba(0,0,0,0.10),
                    rgba(0,0,0,0.55)
            ),
            linear-gradient(
                    180deg,
                    rgba(0,0,0,0.35),
                    rgba(0,0,0,0.05),
                    rgba(0,0,0,0.35)
            );

    animation: heroBfbGlow 8s ease-in-out infinite alternate;
}
.hero-cinematic .hero-background img {
    transform: scale(1.08);

    filter:
            brightness(0.48)
            contrast(1.15)
            saturate(1);

    animation: heroBfbSlowZoom 18s ease-in-out infinite alternate;
}

.hero-content-cinematic {
    max-width: 1120px;
    padding-top: 40px;
    transform: translateY(-20px);
}

.hero-content-cinematic h1 {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;

    text-transform: uppercase;
    font-size: clamp(3rem, 6.4vw, 6.6rem);
    line-height: 0.96;
    letter-spacing: -0.055em;

    text-shadow: 0 0 45px rgba(212,175,55,0.18);
}

.hero-content-cinematic p {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;

    font-size: 1.18rem;
    line-height: 1.7;
}

.hero-orb {
    position: absolute;
    z-index: 3;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(25px);
    opacity: 0.55;
}

.hero-orb-1 {
    width: 280px;
    height: 280px;

    top: 18%;
    left: 12%;

    background: rgba(212,175,55,0.16);

    animation: heroBfbOrbFloat 8s ease-in-out infinite alternate;
}

.hero-orb-2 {
    width: 220px;
    height: 220px;

    right: 14%;
    bottom: 16%;

    background: rgba(240,216,122,0.11);

    animation: heroBfbOrbFloat 10s ease-in-out infinite alternate-reverse;
}

.hero-scroll-indicator {
    position: absolute;
    z-index: 6;

    bottom: 34px;
    left: 50%;

    transform: translateX(-50%);

    width: 1px;
    height: 70px;

    background: rgba(255,255,255,0.16);

    overflow: hidden;
}

.hero-scroll-indicator span {
    display: block;

    width: 100%;
    height: 28px;

    background: var(--gold);

    animation: heroBfbScrollLine 1.8s ease-in-out infinite;
}

@keyframes heroBfbSlowZoom {

    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1.16);
    }
}

@keyframes heroBfbOrbFloat {

    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-35px);
    }
}

@keyframes heroBfbScrollLine {

    from {
        transform: translateY(-30px);
    }

    to {
        transform: translateY(80px);
    }
}

@keyframes heroBfbGlow {

    from {
        opacity: 0.85;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 900px) {

    .hero-content-cinematic {
        transform: none;
        padding-top: 20px;
    }

    .hero-content-cinematic h1 {
        font-size: clamp(2.6rem, 12vw, 4.8rem);
    }

    .hero-content-cinematic p {
        font-size: 1.05rem;
    }

    .hero-orb-1,
    .hero-orb-2 {
        display: none;
    }
}