.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 24px 90px;
    background: #020202;
    color: #fff;
}

.hero-cinematic {
    isolation: isolate;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .62;
    transform: scale(1.04);
    filter: contrast(1.08) saturate(1.08) brightness(.88);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
            radial-gradient(circle at 50% 40%, rgba(230, 196, 94, .22), transparent 30%),
            linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.30), rgba(0,0,0,.76)),
            linear-gradient(180deg, rgba(0,0,0,.58), rgba(0,0,0,.12) 42%, rgba(0,0,0,.78));
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: .22;
    background-image:
            linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    z-index: 3;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    filter: blur(70px);
    opacity: .42;
    pointer-events: none;
}

.hero-glow-1 {
    top: 18%;
    left: 12%;
    background: rgba(212, 175, 55, .38);
}

.hero-glow-2 {
    right: 10%;
    bottom: 14%;
    background: rgba(255, 232, 151, .22);
}

.hero-content-cinematic {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1180px;
    text-align: center;
    transform: translateY(-8px);
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 10px 18px;
    border: 1px solid rgba(230, 196, 94, .38);
    border-radius: 999px;
    background: rgba(255,255,255,.045);
    box-shadow:
            inset 0 0 24px rgba(255,255,255,.035),
            0 0 35px rgba(212,175,55,.12);
    backdrop-filter: blur(14px);
    color: rgba(255, 231, 156, .92);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.hero-label::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4af37;
    box-shadow: 0 0 18px rgba(212,175,55,.95);
}

.hero-content-cinematic h1 {
    max-width: 920px;
    font-size: clamp(3rem, 6.1vw, 6.4rem);
    line-height: .9;
    letter-spacing: -.06em;

    margin: 0 auto;
    text-transform: uppercase;
    font-weight: 800;
    text-wrap: balance;
    text-shadow:
            0 0 34px rgba(212,175,55,.18),
            0 18px 70px rgba(0,0,0,.72);
}

.hero-content-cinematic h1 strong,
.hero-content-cinematic h1 span.gold {
    color: #e8c864;
    text-shadow: 0 0 42px rgba(212,175,55,.32);
}

.hero-content-cinematic p {
    max-width: 760px;
    margin: 32px auto 0;
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
    line-height: 1.75;
    color: rgba(255,255,255,.78);
    text-wrap: balance;
}

.hero-buttons {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: .86rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    transition:
            transform .25s ease,
            box-shadow .25s ease,
            border-color .25s ease,
            background .25s ease;
}

.btn-primary {
    color: #080808;
    background: linear-gradient(135deg, #f5df8d, #d4af37 45%, #9e7426);
    box-shadow:
            0 18px 45px rgba(212,175,55,.25),
            inset 0 1px 0 rgba(255,255,255,.45);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
            0 24px 60px rgba(212,175,55,.34),
            inset 0 1px 0 rgba(255,255,255,.5);
}

.btn-secondary {
    color: rgba(255,255,255,.86);
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.045);
    backdrop-filter: blur(14px);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    border-color: rgba(230,196,94,.42);
    background: rgba(255,255,255,.075);
    box-shadow: 0 18px 44px rgba(0,0,0,.34);
}

.hero-trust {
    max-width: 900px;
    margin: 58px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 28px;
    background: rgba(0,0,0,.28);
    backdrop-filter: blur(18px);
    overflow: hidden;
    box-shadow:
            0 24px 90px rgba(0,0,0,.36),
            inset 0 1px 0 rgba(255,255,255,.06);
}

.hero-trust div {
    padding: 24px 18px;
    border-right: 1px solid rgba(255,255,255,.08);
}

.hero-trust div:last-child {
    border-right: 0;
}

.hero-trust strong {
    display: block;
    margin-bottom: 8px;
    color: #e8c864;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: .04em;
}

.hero-trust span {
    display: block;
    color: rgba(255,255,255,.62);
    font-size: .78rem;
    line-height: 1.45;
}

.hero-scroll {
    position: absolute;
    z-index: 6;
    left: 50%;
    bottom: 28px;
    width: 22px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    transform: translateX(-50%);
    opacity: .7;
}

.hero-scroll span {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,.75);
    transform: translateX(-50%);
    animation: heroScroll 1.8s infinite;
}

@keyframes heroScroll {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    35% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 14px);
    }
}

@media (max-width: 980px) {
    .hero {
        min-height: auto;
        padding: 150px 22px 80px;
    }

    .hero-content-cinematic {
        transform: none;
    }

    .hero-content-cinematic h1 {
        font-size: clamp(2.8rem, 12vw, 5rem);
        line-height: .92;
    }

    .hero-content-cinematic p {
        margin-top: 26px;
    }

    .hero-trust {
        grid-template-columns: repeat(2, 1fr);
        max-width: 620px;
    }

    .hero-trust div:nth-child(2) {
        border-right: 0;
    }

    .hero-trust div:nth-child(1),
    .hero-trust div:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,.08);
    }
}

@media (max-width: 620px) {
    .hero {
        padding: 130px 18px 70px;
    }

    .hero-label {
        margin-bottom: 24px;
        font-size: .68rem;
        letter-spacing: .18em;
    }

    .hero-content-cinematic h1 {
        font-size: clamp(2.45rem, 14vw, 4.2rem);
        letter-spacing: -.055em;
    }

    .hero-content-cinematic p {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-buttons {
        margin-top: 36px;
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        min-height: 52px;
    }

    .hero-trust {
        margin-top: 42px;
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

    .hero-trust div {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .hero-trust div:last-child {
        border-bottom: 0;
    }

    .hero-scroll {
        display: none;
    }
}