/* src/styles/variables.css */
:root {
    --color-dark-blue: #00205b;
    --color-dark-blue-hover: #5173b1;
    --color-light-blue: #79d9ff;
    --color-light-blue-hover: #dff7ff;
    --color-yellow: #ffcc00;
    --color-yellow-hover: #ffe57e;
    --font-centra-bold: CentraNo1-Bold, FuturaStd, "Segoe UI", sans-serif;
}

/* src/styles/ok-features.css */
.ok-features-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 6rem;
}

@media (min-width: 69em) {
    .ok-features-wrapper {
        max-width: 69rem;
    }
}

@media (min-width: 81em) {
    .ok-features-wrapper {
        max-width: 81rem;
    }
}

.ok-features {
    margin: 14rem auto 0;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 10;
}

.ok-features__intro {
    text-align: center;
    position: absolute;
    top: -14rem;
    width: 100%;
    left: 0;
    text-wrap: balance;
    z-index: 11;
}

    .ok-features__intro h2 {
        font-size: 3.25rem;
        line-height: 1.05;
        margin: 0 auto;
        max-width: 25rem;
    }

    .ok-features__intro p {
        color: var(--color-dark-blue);
        margin-top: 22px;
    }

@media (min-width: 48em) {
    .ok-features__intro h2 {
        max-width: none;
        font-size: 3.625rem;
    }

    .ok-features__intro p {
        font-size: 1.375rem;
    }
}

@media (min-width: 81em) {
    .ok-features__intro h2 {
        font-size: 4rem;
    }
}

.ok-features__icon {
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: -14%;
    height: calc(87vh - 10rem);
}

    .ok-features__icon svg {
        position: absolute;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translate(-50%, 0);
    }

.ok-features__illustration {
    height: calc(87vh - 13rem);
    position: relative;
}

.ok-features__illustration--shadow::before {
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    bottom: 5%;
    height: 60%;
    border-radius: 3rem;
    box-shadow: 0px 72.884px 58.308px 0px rgba(0, 32, 91, 0.28), 0px 30.449px 24.359px 0px rgba(0, 32, 91, 0.2), 0px 16.28px 13.024px 0px rgba(0, 32, 91, 0.17), 0px 9.126px 7.301px 0px rgba(0, 32, 91, 0.14), 0px 4.847px 3.878px 0px rgba(0, 32, 91, 0.11), 0px 2.017px 1.614px 0px rgba(0, 32, 91, 0.08);
}

@media (min-height: 50em) {
    .ok-features__illustration--shadow::before {
        box-shadow: 0px 100px 80px 0px rgba(0, 32, 91, 0.28), 0px 41.778px 33.422px 0px rgba(0, 32, 91, 0.2), 0px 22.336px 17.869px 0px rgba(0, 32, 91, 0.17), 0px 12.522px 10.017px 0px rgba(0, 32, 91, 0.14), 0px 6.65px 5.32px 0px rgba(0, 32, 91, 0.11), 0px 2.767px 2.214px 0px rgba(0, 32, 91, 0.08);
    }
}

.ok-features__illustration img {
    width: auto;
    height: 100%;
    position: relative;
}

.ok-features__list-wrapper {
    margin: 0 auto;
    color: var(--color-dark-blue);
    position: relative;
    left: -2rem;
    right: -2rem;
    padding: 2rem 0 0;
    top: 100%;
    width: calc(100% + 4rem);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

    .ok-features__list-wrapper::-webkit-scrollbar {
        display: none;
    }

.ok-features__list {
    display: flex;
}

    .ok-features__list::before,
    .ok-features__list::after {
        content: "";
        display: block;
        width: 17%;
        flex-shrink: 0;
    }

    .ok-features__list li {
        width: 66%;
        flex-shrink: 0;
        padding: 0 0.5rem;
        will-change: opacity, transform;
        scroll-snap-align: center;
    }

    .ok-features__list p {
        max-width: 17rem;
        margin: 0 auto;
    }

.ok-features__navigation {
    display: flex;
    justify-content: center;
    gap: 0.125rem;
    position: relative;
    margin-top: 1.5rem;
}

    .ok-features__navigation button {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 1rem;
        height: 1rem;
        border: 0.125rem solid transparent;
        border-radius: 100%;
        padding: 0;
        cursor: pointer;
        background-color: #ddf4fb;
        background-clip: content-box;
    }

        .ok-features__navigation button[aria-selected=true] {
            background-color: var(--color-dark-blue);
        }

.ok-features__button-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 2rem;
}

    .ok-features__button-wrapper b {
        font-family: var(--font-centra-bold) !important;
    }

.ok-features__button {
    border-radius: 999rem;
    background: var(--color-dark-blue);
    color: var(--color-light-blue);
    text-decoration: none;
    padding: 1.8125rem;
    min-width: 19rem;
    text-align: center;
}

    .ok-features__button:visited {
        color: var(--color-light-blue);
    }

    .ok-features__button:hover {
        background: var(--color-dark-blue);
        text-decoration: none;
        color: var(--color-light-blue);
    }

.ok-features ul {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

.ok-features h2 {
    font-size: 1.4375rem;
    margin: 0 0 0.5rem;
}

.ok-features p {
    margin: 0 auto;
    line-height: 1.2;
}

@media (min-width: 37em) {
    .ok-features__list::before,
    .ok-features__list::after {
        width: 25%;
    }

    .ok-features__list li {
        width: 50%;
    }
}

@media (max-width: 69em) {
    .ok-features {
        margin: 20rem auto 0;
    }
}

@media (min-width: 69em) {
    .ok-features {
        position: relative;
        top: 0;
        max-width: 69rem;
        margin: 24% auto 0;
    }

        .ok-features p {
            margin: 0;
            max-width: none;
        }

    .ok-features__illustration {
        height: 32rem;
    }

    .ok-features__icon {
        height: 38rem;
        top: -20%;
    }

    .ok-features__list-wrapper {
        padding: 0;
        margin: 0;
        position: absolute;
        left: 0;
        top: 6rem;
        transform: none;
        max-width: 20rem;
        overflow: visible;
    }

    .ok-features__list::before,
    .ok-features__list::after {
        display: none;
    }

    .ok-features__list li {
        width: 100%;
        opacity: 0;
    }

    .ok-features__progress {
        display: none;
    }

    .ok-features__button-wrapper {
        margin-top: 3.5rem;
    }

    .ok-features__button {
        font-size: 1.375rem;
        min-width: 22.2rem;
    }

    .ok-features__navigation {
        display: none;
    }

    .ok-features__spacer {
        height: 0;
    }

    .ok-features ul {
        position: static;
        text-align: left;
    }

    .ok-features li {
        position: absolute;
        left: 0;
        transition: opacity 600ms, transform 1000ms;
    }

        .ok-features li:nth-child(1) {
            top: 0;
            transform: translate(-1rem, 0);
        }

        .ok-features li:nth-child(2) {
            left: 44.5rem;
            transform: translate(1rem, 0);
        }

        .ok-features li:nth-child(3) {
            top: 12.5rem;
            transform: translate(-1rem, 0);
        }

        .ok-features li:nth-child(4) {
            left: 44.5rem;
            top: 12.5rem;
            transform: translate(1rem, 0);
        }

    .ok-features h2 {
        font-size: 1.625rem;
    }

    .ok-features p {
        font-size: 1.125rem;
    }
}

@media (min-width: 81em) {
    .ok-features {
        max-width: 81rem;
    }

    .ok-features__icon {
        height: 64rem;
    }

    .ok-features__illustration {
        height: 55rem;
    }

    .ok-features__list-wrapper {
        top: 18rem;
    }

    .ok-features li:nth-child(2) {
        left: 58.5rem;
    }

    .ok-features li:nth-child(4) {
        left: 58.5rem;
    }
}

/* src/styles/page-navigation.css */
.page-navigation {
    display: flex;
    justify-self: center;
}

    .page-navigation nav {
        display: none;
    }

@media (min-width: 56em) {
    .page-navigation nav {
        display: block;
    }
}

.page-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.page-navigation a {
    border-radius: 999rem;
    border: 0.0625rem solid rgba(0 32 90 / 0.5);
    text-decoration: none;
    font-size: 0.9375rem;
    min-width: 11rem;
    padding: 1.125rem 1.5rem;
    display: block;
    text-align: center;
    line-height: 1;
    transition: background-color 100ms;
}

    .page-navigation a.active {
        color: #eefaff;
        background: var(--color-dark-blue);
        border-color: var(--color-dark-blue);
    }

.page-navigation select {
    border-radius: 999rem;
    color: #eefaff;
    background: var(--color-dark-blue);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-width: 12.5rem;
    font-family: inherit;
    font-size: 0.9375rem;
    padding: 1.125rem 3rem 1.125rem 1.625rem;
    line-height: 1;
}

.page-navigation__small {
    position: relative;
    margin: 0 auto;
}

@media (min-width: 56em) {
    .page-navigation__small {
        display: none;
    }
}

.page-navigation__small i {
    color: #eefaff;
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 80%;
}

/* src/styles/site-header.css */
.site-header {
    --item-height: 3.3125rem;
    color: var(--color-dark-blue);
    position: fixed;
    top: 0.8rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1030;
    font-size: 0.9375rem;
    padding: 0 1rem;
}

    .site-header nav {
        width: 100%;
    }

@media (min-width: 30em) {
    .site-header nav {
        width: auto;
    }
}

.site-header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    scrollbar-width: none;
}

    .site-header ul::-webkit-scrollbar {
        display: none;
    }

.site-header a {
    text-decoration: none;
}

    .site-header a:hover {
        text-decoration: underline;
    }

.site-header b {
    font-family: var(--font-centra-bold);
}

.site-header > nav {
    display: flex;
    align-items: center;
}

.site-header__main {
    height: var(--item-height);
    background: var(--color-light-blue);
    border-radius: 1.625rem;
    padding: 0 1rem 0 1.75rem;
    display: flex;
    flex-grow: 1;
    align-items: center;
    position: relative;
}

@media (min-width: 56em) {
    .site-header__main {
        min-width: 23.5rem;
    }
}

.site-header__main .site-header__panel--grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.375rem 1rem 1em 1.75rem;
    max-height: calc(100vh - 6.25rem);
    overflow-y: auto;
}

    .site-header__main .site-header__panel--grid > div {
        display: flex;
        flex-direction: column;
    }

@media (min-width: 30em) {
    .site-header__logo-small {
        display: none;
    }
}

.site-header__logo {
    margin: -0.2rem 1rem 0 0;
    display: none;
}

@media (min-width: 30em) {
    .site-header__logo {
        display: flex;
    }
}

.site-header__menu-button {
    height: var(--item-height);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    margin: 0 0.5rem 0 0;
    padding: 0 1rem;
    background: transparent;
    font-size: inherit;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: inherit;
}

@media (min-width: 80em) {
    .site-header__menu-button {
        display: none;
    }
}

.site-header__main-nav {
    display: none;
}

    .site-header__main-nav > ul {
        display: flex;
        margin-left: 0.75rem;
    }

        .site-header__main-nav > ul > li > a {
            height: var(--item-height);
            display: flex;
            align-items: center;
            padding: 0 1rem 0;
        }

@media (min-width: 80em) {
    .site-header__main-nav {
        display: block;
    }
}

.site-header__panel {
    background: var(--color-light-blue);
    border-radius: 1.625rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1.375rem 1.75rem 0 1.75rem;
    line-height: 1.4;
    opacity: 0;
    visibility: hidden;
    transition: visibility 200ms, opacity 200ms;
}

    .site-header__panel h2 {
        font-size: 1.1875rem;
        margin: 0;
        line-height: 1;
        margin-bottom: 1rem;
    }

        .site-header__panel h2 span {
            font-size: 0.9375rem;
            letter-spacing: -0.01em;
        }

    .site-header__panel h3 {
        font-size: inherit;
        margin: 0;
    }

    .site-header__panel button {
        font-family: inherit;
        font-size: inherit;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border: 0;
        padding: 0;
        background: none;
        font-weight: inherit;
        color: inherit;
        cursor: pointer;
    }

        .site-header__panel button:hover {
            text-decoration: underline;
        }

    .site-header__panel ul {
        padding-bottom: 1.3em;
    }

.site-header__menu {
    margin: 0 -1rem 0 auto;
}

    .site-header__menu .site-header__panel {
        overflow: hidden;
        transition: height 300ms, visibility 200ms, opacity 200ms;
        padding: 0;
    }

        .site-header__menu .site-header__panel::after {
            content: "";
            position: absolute;
            height: 3rem;
            left: 0;
            right: 0;
            background: red;
            bottom: 0;
            pointer-events: none;
            background: linear-gradient(transparent, var(--color-light-blue));
        }

        .site-header__menu .site-header__panel :where(button, a) {
            width: 100%;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .site-header__menu .site-header__panel button:hover {
            text-decoration: none !important;
        }

@media (min-width: 80em) {
    .site-header__menu .site-header__panel {
        display: none;
    }
}

.site-header__menu ul {
    position: relative;
    padding: 1.375rem 1.75rem 1.75rem;
}

.site-header__menu .site-header__panel .site-header__go-back {
    padding: 0.9rem 0;
    border-bottom: 0.0625rem rgba(0, 32, 91, 0.25) solid !important;
    margin-bottom: 0.5rem;
    justify-content: flex-start;
    gap: 0.8rem;
}

.site-header__top-nav {
    position: relative;
    max-height: calc(100vh - 6.25rem);
    overflow: auto;
}

    .site-header__top-nav > li > :where(a, button) {
        padding: 0.9rem 0;
        display: block;
        transition: visibility 200ms, opacity 200ms, transform 200ms;
        border-bottom: 0.0625rem rgba(0, 32, 91, 0.25) solid !important;
    }

        .site-header__top-nav > li > :where(a, button):hover {
            text-decoration: none;
        }

    .site-header__top-nav > li:last-child > :where(a, button) {
        border: 0 !important;
    }

    .site-header__top-nav.child-is-open {
        pointer-events: none;
        overflow: visible;
    }

        .site-header__top-nav.child-is-open > li > :where(a, button) {
            opacity: 0;
            visibility: hidden;
            transform: translate(-1rem, 0);
        }

.site-header__sub-nav {
    position: absolute !important;
    left: 0;
    top: 0;
    width: 100%;
    pointer-events: none;
    max-height: calc(100vh - 7rem);
    overflow-y: auto;
}

    .site-header__sub-nav a,
    .site-header__sub-nav button {
        padding: 0.4rem 0;
    }

    .site-header__sub-nav > li > :where(a, button) {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translate(1rem, 0);
        transition: visibility 200ms, opacity 200ms, transform 200ms;
    }

    .site-header__sub-nav.is-open {
        pointer-events: auto;
    }

        .site-header__sub-nav.is-open > li > :where(a, button) {
            opacity: 1;
            visibility: visible;
            transform: translate(0, 0);
        }

    .site-header__sub-nav.child-is-open {
        pointer-events: none;
        overflow: visible;
    }

        .site-header__sub-nav.child-is-open > li > :where(a, button) {
            opacity: 0;
            visibility: hidden;
            transform: translate(-1rem, 0);
        }

.site-header__panel-last {
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
}

.site-header__item {
    position: relative;
}

.site-header__item-inner {
    height: var(--item-height);
    background: var(--color-light-blue);
    border-radius: 1.625rem;
    padding: 0 1.75rem;
    display: flex;
    align-items: center;
    border: 0;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

a.site-header__item-inner {
    transition: background-color 100ms;
}

    a.site-header__item-inner:hover {
        background: var(--color-light-blue-hover);
        text-decoration: none;
    }

.site-header__item--hide-sm {
    display: none;
}

@media (min-width: 56em) {
    .site-header__item--hide-sm {
        display: block;
    }
}

.site-header__item--utilities {
    display: none;
}

@media (min-width: 80em) {
    .site-header__item--utilities {
        display: block;
    }
}

.site-header__item--customer-service .site-header__item-inner {
    background: var(--color-dark-blue);
    color: var(--color-light-blue);
    transition: background-color 100ms;
}

    .site-header__item--customer-service .site-header__item-inner:hover {
        background: var(--color-dark-blue-hover);
        text-decoration: none;
    }

.site-header__item--log-in {
    width: 4.875rem;
    transition: width 300ms;
    white-space: nowrap;
}

    .site-header__item--log-in:hover {
        width: 8rem;
    }

    .site-header__item--log-in .site-header__panel {
        background: var(--color-yellow);
    }

    .site-header__item--log-in .site-header__item-inner {
        background: var(--color-yellow);
        color: var(--color-dark-blue);
        font-family: var(--font-centra-bold);
        font-weight: 700;
    }

    .site-header__item--log-in span {
        display: none;
    }

@media (min-width: 30em) {
    .site-header__item--log-in {
        width: auto;
    }

        .site-header__item--log-in:hover {
            width: auto;
        }

        .site-header__item--log-in svg {
            display: none;
        }

        .site-header__item--log-in span {
            display: block;
        }
}

.site-header li:hover .site-header__panel,
.site-header .site-header__item:hover .site-header__panel,
.site-header .site-header__panel.is-open {
    opacity: 1;
    visibility: visible;
}

/* src/style.css */
