html.gc-entry-gate-pending,
html.gc-entry-gate-pending body {
    overflow: hidden !important;
}

.gc-entry-gate {
    --gc-entry-navy: #073f69;
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: none;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    background: var(--gc-entry-navy);
    color: #fff;
    opacity: 1;
    transition: opacity 280ms ease, transform 280ms ease;
}

html.gc-entry-gate-pending .gc-entry-gate {
    display: block;
}

html.gc-entry-gate-confirmed .gc-entry-gate,
.gc-entry-gate[hidden] {
    display: none !important;
}

.gc-entry-gate.is-leaving {
    opacity: 0;
    transform: scale(1.012);
    pointer-events: none;
}

.gc-entry-gate__backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(4, 34, 57, 0.82);
    background-image: var(--gc-entry-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: multiply;
    transform: scale(1.01);
}

.gc-entry-gate__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: min(1180px, calc(100% - 64px));
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0 auto;
    padding: 40px 0 8vh;
}

.gc-entry-gate__brand {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 52px;
    color: #fff;
    font-size: 25px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
}

.gc-entry-gate__logo {
    display: block;
    width: auto;
    max-width: 190px;
    height: 58px;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.24));
}

.gc-entry-gate__content {
    width: min(680px, 100%);
}

.gc-entry-gate__eyebrow {
    margin: 0 0 18px;
    color: #8fd0ff;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0;
}

.gc-entry-gate h1 {
    max-width: 650px;
    margin: 0;
    color: #fff;
    font-size: 58px;
    font-weight: 760;
    line-height: 1.04;
    letter-spacing: 0;
    text-wrap: balance;
}

.gc-entry-gate__description {
    max-width: 610px;
    margin: 24px 0 30px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.65;
}

.gc-entry-gate__button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: min(320px, 100%);
    min-height: 58px;
    padding: 0 22px;
    border: 1px solid #fff;
    border-radius: 4px;
    background: #fff;
    color: var(--gc-entry-navy);
    font: inherit;
    font-size: 16px;
    font-weight: 750;
    letter-spacing: 0;
    cursor: pointer;
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.gc-entry-gate__button:hover {
    background: #8fd0ff;
    border-color: #8fd0ff;
    transform: translateY(-2px);
}

.gc-entry-gate__button:focus-visible {
    outline: 3px solid #8fd0ff;
    outline-offset: 4px;
}

.gc-entry-gate__button:disabled {
    cursor: wait;
    opacity: 0.78;
    transform: none;
}

.gc-entry-gate__arrow {
    font-size: 22px;
    line-height: 1;
}

.gc-entry-gate__note {
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 700px) {
    .gc-entry-gate__backdrop {
        background-position: 62% center;
        background-color: rgba(4, 34, 57, 0.88);
    }

    .gc-entry-gate__inner {
        width: calc(100% - 40px);
        padding: 26px 0 max(42px, 7vh);
    }

    .gc-entry-gate__brand {
        min-height: 42px;
        font-size: 22px;
    }

    .gc-entry-gate__logo {
        max-width: 154px;
        height: 48px;
    }

    .gc-entry-gate__eyebrow {
        margin-bottom: 14px;
        font-size: 12px;
    }

    .gc-entry-gate h1 {
        font-size: 40px;
        line-height: 1.08;
    }

    .gc-entry-gate__description {
        margin: 18px 0 24px;
        font-size: 16px;
        line-height: 1.55;
    }

    .gc-entry-gate__button {
        width: 100%;
        min-height: 56px;
    }
}

@media (max-width: 380px), (max-height: 650px) {
    .gc-entry-gate__inner {
        padding-top: 20px;
        padding-bottom: 24px;
    }

    .gc-entry-gate h1 {
        font-size: 34px;
    }

    .gc-entry-gate__description {
        margin: 14px 0 18px;
        font-size: 14px;
    }

    .gc-entry-gate__note {
        margin-top: 10px;
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gc-entry-gate,
    .gc-entry-gate__button {
        transition: none;
    }
}
