.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(135deg, #0b1a4a, #1e3c72);
}

.hero::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), transparent);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 3;
    width: min(1240px, calc(100% - 2rem));
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-left {
    max-width: 600px;
    z-index: 2;
    text-shadow: 0 4px 22px rgba(0, 0, 0, 0.32);
}

.hero-right {
    position: absolute;
    bottom: 0;
    right: -340px;
}

.hero-right img {
    width: 52vw;
    max-width: none;
    height: auto;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.5));
    display: block;
    transform: translateY(-4rem);
}

.hero-left h1 {
    margin: 0;
    font-size: clamp(2.65rem, 5vw, 4.9rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.hero-left h1 .accent {
    color: #e1844f;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
}

.section-kicker {
    display: inline-block;
    margin: 0 0 0.85rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.subheadline {
    margin: 1rem 0 0;
    font-size: clamp(1rem, 1.45vw, 1.32rem);
    line-height: 1.25;
    font-weight: 700;
}

.lead {
    margin-top: 1rem;
    max-width: 500px;
    font-size: clamp(0.94rem, 0.98vw, 1.02rem);
    line-height: 1.62;
}

@media (max-width: 1100px) {
    .hero-right img {
        width: 520px;
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;
        padding: 6rem 0 2rem;
    }

    .hero::before {
        width: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.12));
    }

    .hero-inner {
        min-height: auto;
        display: block;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-right {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 2rem;
        display: flex;
        justify-content: center;
    }

    .hero-right img {
        width: min(100%, 420px);
        max-width: 100%;
    }
}

@media (max-width: 720px) {
    .hero-inner {
        width: min(100%, calc(100% - 1.25rem));
    }

    .hero-left h1 {
        font-size: 2.55rem;
    }

    .lead {
        font-size: 0.96rem;
        line-height: 1.6;
    }
}
