.atrios-hero {
    --atrios-blue: #0192DA;
    --atrios-blue-hover: #0076B3;
    --atrios-blue-active: #00689D;
    --atrios-navy: #071F35;
    --atrios-deep: #021b32;
    --atrios-white: #ffffff;
    position: relative;
    isolation: isolate;
    box-sizing: border-box;
    height: 100svh;
    min-height: 680px;
    max-height: 980px;
    padding: 0;
    overflow: hidden;
    background: var(--atrios-deep);
    color: var(--atrios-white);
}

#header[data-transparent="true"] + .atrios-hero {
    top: -80px;
    margin-bottom: -80px;
}

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

.atrios-hero__track,
.atrios-hero__slide {
    position: absolute;
    inset: 0;
}

.atrios-hero__slide {
    opacity: 0;
    visibility: hidden;
    transform: translateX(18px);
    transition: opacity 900ms ease, transform 900ms ease, visibility 900ms ease;
    pointer-events: none;
}

.atrios-hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 1;
}

.atrios-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.atrios-hero__image--one {
    object-position: 58% center;
}

.atrios-hero__image--two {
    object-position: 52% center;
}

.atrios-hero__slide.is-active .atrios-hero__image {
    animation: atriosHeroKenburns 7000ms ease-out forwards;
}

.atrios-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 27, 50, 0.88) 0%, rgba(3, 35, 63, 0.70) 38%, rgba(2, 27, 50, 0.20) 72%, rgba(2, 27, 50, 0.08) 100%);
    z-index: 1;
}

.atrios-hero__container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 100%;
    padding-top: 118px;
    padding-bottom: 88px;
}

.atrios-hero__content {
    max-width: 760px;
}

.atrios-hero__eyebrow,
.atrios-hero__title,
.atrios-hero__text,
.atrios-hero__actions {
    opacity: 0;
    transform: translateY(24px);
}

.atrios-hero__slide.is-active .atrios-hero__eyebrow {
    animation: atriosHeroContent 560ms ease forwards 90ms;
}

.atrios-hero__slide.is-active .atrios-hero__title {
    animation: atriosHeroContent 620ms ease forwards 200ms;
}

.atrios-hero__slide.is-active .atrios-hero__text {
    animation: atriosHeroContent 620ms ease forwards 320ms;
}

.atrios-hero__slide.is-active .atrios-hero__actions {
    animation: atriosHeroContent 620ms ease forwards 440ms;
}

.atrios-hero__eyebrow {
    margin: 0 0 18px;
    font-family: "Exo 2", sans-serif;
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.atrios-hero__title {
    max-width: 700px;
    margin: 0;
    color: var(--atrios-white);
    font-family: "Exo 2", sans-serif;
    font-size: clamp(46px, 4.8vw, 78px);
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: 0;
}

.atrios-hero__text {
    max-width: 640px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-family: "Exo 2", sans-serif;
    font-size: clamp(18px, 1.4vw, 23px);
    font-weight: 400;
    line-height: 1.52;
}

.atrios-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.atrios-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 24px;
    border: 2px solid transparent;
    border-radius: 6px;
    font-family: "Exo 2", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0;
    text-align: center;
    text-decoration: none;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.atrios-hero__button,
.atrios-hero__button span,
.atrios-hero__button:visited,
.atrios-hero__button:visited span {
    color: inherit;
}

.atrios-hero__button:hover,
.atrios-hero__button:focus {
    text-decoration: none;
    transform: translateY(-2px);
}

.atrios-hero__button--primary,
.atrios-hero__button--primary:visited {
    background: var(--atrios-blue);
    border-color: var(--atrios-blue);
    color: var(--atrios-navy);
}

.atrios-hero__button--primary:hover,
.atrios-hero__button--primary:focus,
.atrios-hero__button--primary:focus-visible {
    background: var(--atrios-blue-hover);
    border-color: var(--atrios-blue-hover);
    color: var(--atrios-white);
}

.atrios-hero__button--primary:active {
    background: var(--atrios-blue-active);
    border-color: var(--atrios-blue-active);
    color: var(--atrios-white);
    transform: translateY(0);
}

.atrios-hero__button--secondary,
.atrios-hero__button--secondary:visited {
    background: rgba(7, 31, 53, 0.38);
    border-color: rgba(255, 255, 255, 0.90);
    color: var(--atrios-white);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.atrios-hero__button--secondary:hover,
.atrios-hero__button--secondary:focus,
.atrios-hero__button--secondary:focus-visible {
    background: var(--atrios-blue);
    border-color: var(--atrios-blue);
    color: var(--atrios-navy);
}

.atrios-hero__button--secondary:active {
    background: var(--atrios-blue-active);
    border-color: var(--atrios-blue-active);
    color: var(--atrios-white);
    transform: translateY(0);
}

.atrios-hero__control,
.atrios-hero__dot {
    border: 0;
    appearance: none;
    cursor: pointer;
}

.atrios-hero__control {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: var(--atrios-white);
    font-size: 24px;
    line-height: 1;
    transform: translateY(-50%);
    transition: background-color 180ms ease, transform 180ms ease;
}

.atrios-hero__control:hover,
.atrios-hero__control:focus {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-50%) scale(1.04);
}

.atrios-hero__control--prev {
    left: max(18px, calc((100vw - 1140px) / 2 - 76px));
}

.atrios-hero__control--next {
    right: max(18px, calc((100vw - 1140px) / 2 - 76px));
}

.atrios-hero__dots {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 3;
    display: flex;
    gap: 12px;
    transform: translateX(-50%);
}

.atrios-hero__dot {
    width: 42px;
    min-width: 42px;
    height: 12px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.44);
    transition: background-color 180ms ease, width 180ms ease;
}

.atrios-hero__dot.is-active {
    width: 58px;
    background: var(--atrios-white);
}

.atrios-hero__button:focus-visible,
.atrios-hero__control:focus-visible,
.atrios-hero__dot:focus-visible {
    outline: 3px solid rgba(1, 146, 218, 0.42);
    outline-offset: 4px;
}

.atrios-hero:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: -8px;
}

@keyframes atriosHeroKenburns {
    from {
        transform: scale(1.02);
    }

    to {
        transform: scale(1.07);
    }
}

@keyframes atriosHeroContent {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1199px) {
    .atrios-hero {
        min-height: 640px;
    }

    .atrios-hero__container {
        padding-top: 106px;
    }

    .atrios-hero__control--prev {
        left: 18px;
    }

    .atrios-hero__control--next {
        right: 18px;
    }
}

@media (max-width: 991px) {
    .atrios-hero {
        min-height: 620px;
        max-height: none;
    }

    .atrios-hero__container {
        align-items: flex-end;
        padding: 126px 24px 92px;
    }

    .atrios-hero__content {
        max-width: 680px;
    }

    .atrios-hero__title {
        font-size: clamp(40px, 6vw, 58px);
    }

    .atrios-hero__overlay {
        background: linear-gradient(180deg, rgba(2, 27, 50, 0.30) 0%, rgba(2, 27, 50, 0.48) 42%, rgba(2, 27, 50, 0.92) 100%);
    }
}

@media (max-width: 767px) {
    .atrios-hero {
        height: 100svh;
        min-height: 620px;
    }

    .atrios-hero__image--one {
        object-position: 63% center;
    }

    .atrios-hero__image--two {
        object-position: 54% center;
    }

    .atrios-hero__container {
        padding: 112px 22px 96px;
    }

    .atrios-hero__eyebrow {
        margin-bottom: 14px;
        font-size: clamp(12px, 3.4vw, 14px);
        letter-spacing: 0.12em;
    }

    .atrios-hero__title {
        max-width: 100%;
        font-size: clamp(34px, 9vw, 48px);
        line-height: 1.05;
    }

    .atrios-hero__text {
        margin-top: 18px;
        font-size: clamp(16px, 4.3vw, 18px);
        line-height: 1.48;
    }

    .atrios-hero__actions {
        gap: 10px;
        margin-top: 24px;
    }

    .atrios-hero__button {
        width: 100%;
        min-height: 50px;
        padding: 13px 16px;
        font-size: 14px;
    }

    .atrios-hero__control {
        top: auto;
        bottom: 28px;
        width: 42px;
        height: 42px;
        font-size: 20px;
        transform: none;
    }

    .atrios-hero__control:hover,
    .atrios-hero__control:focus {
        transform: scale(1.04);
    }

    .atrios-hero__control--prev {
        left: 22px;
    }

    .atrios-hero__control--next {
        right: 22px;
    }

    .atrios-hero__dots {
        bottom: 42px;
    }

    .atrios-hero__dot {
        width: 34px;
        min-width: 34px;
        height: 10px;
    }

    .atrios-hero__dot.is-active {
        width: 48px;
    }
}

@media (max-width: 360px) {
    .atrios-hero {
        min-height: 568px;
    }

    .atrios-hero__container {
        padding: 104px 20px 88px;
    }

    .atrios-hero__title {
        font-size: clamp(31px, 9vw, 36px);
    }

    .atrios-hero__text {
        margin-top: 14px;
        font-size: 15px;
    }

    .atrios-hero__actions {
        margin-top: 18px;
    }

    .atrios-hero__button {
        min-height: 48px;
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .atrios-hero__slide,
    .atrios-hero__image,
    .atrios-hero__eyebrow,
    .atrios-hero__title,
    .atrios-hero__text,
    .atrios-hero__actions,
    .atrios-hero__button,
    .atrios-hero__control,
    .atrios-hero__dot {
        animation: none !important;
        transition: opacity 180ms ease, visibility 180ms ease !important;
        transform: none !important;
    }

    .atrios-hero__slide.is-active .atrios-hero__eyebrow,
    .atrios-hero__slide.is-active .atrios-hero__title,
    .atrios-hero__slide.is-active .atrios-hero__text,
    .atrios-hero__slide.is-active .atrios-hero__actions {
        opacity: 1;
    }
}
