.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background-color: var(--color-navy);
    padding-block: var(--space-9);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    left: auto;
    width: 38%;
    background-color: var(--color-white);
    clip-path: polygon(calc(35% - 2px) 0, 100% 0, 100% 100%, calc(0% - 2px) 100%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    left: auto;
    width: 38%;
    background-color: var(--color-navy-dark);
    clip-path: polygon(35% 0, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
}

.hero__headline {
    color: var(--color-white);
    max-width: 1100px;
    margin-bottom: var(--space-5);
}

.hero__subheadline {
    color: var(--color-gray-light);
    font-weight: var(--fw-regular);
    max-width: 640px;
    margin-bottom: var(--space-6);
}

@media (max-width: 1023px) {
    .hero::before,
    .hero::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero {
        padding-block: var(--space-7);
    }

    .hero__cta {
        width: 100%;
        text-align: center;
    }
}

@media (max-height: 820px) {
    .hero {
        padding-block: var(--space-6);
    }

    .hero__headline {
        font-size: clamp(56px, 7vw, 96px);
        line-height: 1.08;
        margin-bottom: var(--space-3);
    }

    .hero__subheadline {
        margin-bottom: var(--space-4);
    }
}