.sab-hero {
    position: relative;
    min-height: 995rem;
    overflow: hidden;
    padding-bottom: var(--sab-hero-bottom, 134rem);
    background:
        radial-gradient(circle at 7% 5%, rgba(198, 17, 34, .72), transparent 36%),
        radial-gradient(circle at 82% 96%, rgba(185, 16, 38, .68), transparent 39%),
        linear-gradient(115deg, #66101b 0%, #31072f 38%, #21052f 68%, #250739 100%);
    color: #f8f9fa;
    font-family: "Gilroy", Arial, sans-serif;
}

.sab-hero *,
.sab-hero *::before,
.sab-hero *::after {
    box-sizing: border-box;
}

.sab-hero__bg {
    position: absolute;
    z-index: 0;
    inset: 0;
    display: block;
}

.sab-hero__bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sab-hero__inner {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 326rem), 1594rem);
    min-height: 861rem;
    margin-inline: auto;
    padding-top: 234rem;
}

.sab-hero__copy {
    width: 1030rem;
    max-width: 70%;
}

.sab-hero__title {
    width: 100%;
    margin: 0;
    color: #f8f9fa;
    font: inherit;
    font-size: var(--sab-hero-title-size, 59.2rem);
    font-weight: 700;
    line-height: 1.349;
    letter-spacing: 0;
}


.sab-hero__subtitle {
    margin: 12rem 0 0;
    color: #f8f9fa;
    font-size: 36rem;
    font-weight: 300;
    line-height: 1.387;
}

.sab-hero__bullets {
    display: flex;
    margin: 38rem 0 0;
    padding: 0;
    flex-direction: column;
    gap: 8rem;
    list-style: none;
}

.sab-hero__bullets li {
    display: grid;
    grid-template-columns: 22rem minmax(0, 1fr);
    align-items: start;
    gap: 15rem;
    min-height: 22rem;
    color: #fff;
    font-size: 21.7rem;
    font-weight: 400;
    line-height: 1.38;
}

.sab-hero__bullet-mark {
    position: relative;
    display: block;
    width: 22rem;
    height: 22rem;
    margin-top: 1rem;
    border: 2rem solid rgba(244, 65, 69, .8);
    border-radius: 50%;
}

.sab-hero__bullet-mark::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: #f44145;
    transform: translate(-50%, -50%);
}

.sab-hero__bullet-icon {
    display: block;
    width: 25rem;
    height: 25rem;
    object-fit: contain;
}

.sab-hero__cta {
    position: relative;
    display: inline-flex;
    width: 384rem;
    min-height: 102rem;
    margin-top: 79rem;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    border-radius: 10rem;
    background: #f44145;
    color: #fff;
    font-size: 18rem;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    isolation: isolate;
}

.sab-hero__cta span {
    position: relative;
    z-index: 1;
}

.sab-hero__video {
    position: absolute;
    top: 222rem;
    right: 155rem;
    width: 390rem;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 20rem;
    background: #000;
}

.sab-hero__video-cover {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sab-hero__play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 62rem;
    height: 62rem;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #f44145;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(244,65,69,.6), 0 10rem 25rem rgba(0,0,0,.58);
    transform: translate(-50%, -50%);
    isolation: isolate;
    animation: sab-play-pulse-main 3s infinite;
}

.sab-hero__play::before,
.sab-hero__play::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(244,65,69,.6);
    animation: sab-play-pulse-wave 3s infinite;
    pointer-events: none;
}
.sab-hero__play::after { animation-delay: .3s; }
.sab-hero__play::before { animation-delay: .9s; }

.sab-hero__play-icon {
    position: relative;
    z-index: 1;
    display: block;
    width: 13rem;
    height: 14rem;
    margin-left: 3rem;
}

@keyframes sab-play-pulse-main {
    0% { box-shadow: 0 0 0 0 rgba(244,65,69,.6), 0 10rem 25rem rgba(0,0,0,.58); }
    70% { box-shadow: 0 0 0 20rem rgba(244,65,69,0), 0 10rem 25rem rgba(0,0,0,.58); }
    100% { box-shadow: 0 0 0 0 rgba(244,65,69,0), 0 10rem 25rem rgba(0,0,0,.58); }
}
@keyframes sab-play-pulse-wave {
    0% { box-shadow: 0 0 0 0 rgba(244,65,69,.6); }
    70% { box-shadow: 0 0 0 20rem rgba(244,65,69,0); }
    100% { box-shadow: 0 0 0 0 rgba(244,65,69,0); }
}

.sab-hero-modal {
    position: fixed;
    z-index: 1200;
    inset: 0;
    display: grid;
    padding: 40rem;
    place-items: center;
    background: rgba(5, 3, 11, .9);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, visibility 180ms ease;
}

.sab-hero-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.sab-hero-modal__stage {
    position: relative;
    width: min(450rem, calc(100vw - 120rem));
    max-height: 80vh;
    aspect-ratio: 9 / 16;
    background: #000;
}

.sab-hero-modal__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #000;
}

.sab-hero-modal__stage iframe,
.sab-hero-modal__stage video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.sab-hero-modal__stage video {
    object-fit: contain;
    background: #000;
}

.sab-hero-modal__close {
    position: absolute;
    top: -48rem;
    right: 0;
    width: 40rem;
    height: 40rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 38rem;
    font-weight: 200;
    line-height: 1;
    cursor: pointer;
}

html.sab-hero-modal-open,
html.sab-hero-modal-open body {
    overflow: hidden;
}


/* 768px+ keeps the desktop composition; only mobile switches layout. */

@media (max-width: 767px) {
    .sab-hero {
        min-height: 836rem;
        padding-bottom: var(--sab-hero-bottom-m, 58rem);
        background:
            radial-gradient(circle at 5% 0%, rgba(190, 19, 36, .76), transparent 36%),
            radial-gradient(circle at 82% 92%, rgba(185, 16, 38, .68), transparent 42%),
            linear-gradient(150deg, #57101c 0%, #2b0732 48%, #210631 100%);
    }

    .sab-hero__inner {
        display: flex;
        width: calc(100% - 66rem);
        min-height: 0;
        margin-inline: auto;
        padding-top: 116rem;
        flex-direction: column;
    }

    .sab-hero__video {
        position: relative;
        top: auto;
        right: auto;
        order: 1;
        width: 100%;
        height: 200rem;
        align-self: center;
        aspect-ratio: auto;
        border-radius: 20rem;
    }

    .sab-hero__copy {
        display: contents;
        width: auto;
        max-width: none;
    }

    .sab-hero__title {
        order: 2;
        margin-top: 26rem;
        font-size: var(--sab-hero-title-size-m, 21.7rem);
        line-height: 1.33;
    }


    .sab-hero__subtitle {
        order: 3;
        margin: 25rem 0 0;
        font-size: 18.4rem;
        line-height: 1.38;
    }

    .sab-hero__bullets {
        order: 5;
        margin: 20rem 0 0;
        gap: 8rem;
    }

    .sab-hero__bullets li {
        grid-template-columns: 21rem minmax(0, 1fr);
        gap: 15rem;
        min-height: 21rem;
        font-size: 14.7rem;
        line-height: 20.3rem;
    }

    .sab-hero__bullet-mark {
        width: 21rem;
        height: 21rem;
        margin-top: 0;
    }

    .sab-hero__bullet-icon {
        width: 25rem;
        height: 25rem;
    }

    .sab-hero__cta {
        order: 4;
        width: 100%;
        min-height: 58rem;
        margin-top: 28rem;
        font-size: 14.7rem;
    }

    .sab-hero__play {
        width: 46rem;
        height: 46rem;
        box-shadow: 0 0 0 6rem rgba(244, 65, 69, .28), 0 8rem 20rem rgba(0,0,0,.5);
    }

    .sab-hero__play::before,
    .sab-hero__play::after {
        inset: -6rem;
    }

    .sab-hero__play-icon {
        margin-left: 3rem;
        border-top-width: 5rem;
        border-bottom-width: 5rem;
        border-left-width: 9rem;
    }

    .sab-hero-modal {
        padding: 16rem;
    }

    .sab-hero-modal__stage {
        width: min(76vw, 300rem);
        max-height: 80dvh;
    }

    .sab-hero-modal__close {
        top: -42rem;
        right: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sab-hero__play::before,
    .sab-hero__play::after {
        animation: none;
    }
}
.sab-hero__title span { color: #f44145; }

