.hero {
    position: relative;
    max-width: min(var(--maxw), 92vw);
    margin: 12px auto 36px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
    isolation: isolate;
    background: var(--bg-1);
}

.hero__bg img {
    display: block;
    width: 100%;
    height: clamp(420px, 45vw, 660px);
    object-fit: cover;
    object-position: 50% 40%;
    filter: saturate(105%);
    -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 1) 10%,
        rgba(0, 0, 0, 1) 85%,
        rgba(0, 0, 0, 0) 100%
    );
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 1) 10%,
        rgba(0, 0, 0, 1) 85%,
        rgba(0, 0, 0, 0) 100%
    );
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
            70% 55% at 50% 35%,
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.7) 65%
        ),
        linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.6));
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70px;
    background: linear-gradient(
        180deg,
        rgba(10, 16, 25, 0) 0%,
        rgba(10, 16, 25, 1) 100%
    );
    pointer-events: none;
}

.hero__inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    padding: 18px;
    max-width: 780px;
    margin-inline: auto;
}

.hero__badge {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e8eefb;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 6px 10px;
    backdrop-filter: blur(6px);
}

.hero__title {
    font-size: clamp(26px, 4vw, 40px);
    margin: 2px 0 4px;
}

.hero__copy {
    max-width: 60ch;
}

.hero__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero__cta .btn {
    min-width: 160px;
}
