.ee-skip-link {
    background: #fff;
    color: #1d2146;
    left: 1rem;
    padding: 0.75rem 1rem;
    position: fixed;
    top: -6rem;
    z-index: 10000;
}

.ee-skip-link:focus {
    outline: 3px solid #ffc107;
    outline-offset: 2px;
    top: 1rem;
}

.ee-static-page {
    --ee-static-accent: #ef5595;
    --ee-static-accent-dark: #cf2870;
    --ee-static-ink: #181d43;
    --ee-static-muted: #62677f;
    --ee-static-surface: #f6f7fb;
    background: #fff;
    color: var(--ee-static-ink);
    overflow: hidden;
}

.ee-static-page__hero {
    background-attachment: fixed;
    background-position: center 35%;
    background-size: cover;
    min-height: 31rem;
    overflow: hidden;
    padding: 14rem 0 5.5rem;
    position: relative;
}

.ee-static-page__hero-overlay {
    background:
        linear-gradient(90deg, rgb(12 17 45 / 94%) 0%, rgb(15 21 53 / 77%) 48%, rgb(15 21 53 / 38%) 100%),
        linear-gradient(180deg, transparent 55%, rgb(12 17 45 / 52%) 100%);
    inset: 0;
    position: absolute;
}

.ee-static-page__hero-inner {
    position: relative;
    z-index: 2;
}

.ee-static-page__title-box {
    max-width: 52rem;
    position: relative;
}

.ee-static-page__eyebrow {
    color: #ffc107;
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.ee-static-page__ghost-title {
    color: rgb(255 255 255 / 9%);
    font-size: clamp(4.5rem, 9vw, 9rem);
    font-weight: 800;
    left: -0.08em;
    letter-spacing: -0.055em;
    line-height: 0.8;
    max-width: 90vw;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    text-overflow: clip;
    text-transform: uppercase;
    top: -0.25em;
    white-space: nowrap;
}

.ee-static-page__title-box h1 {
    color: #fff;
    font-size: clamp(2.75rem, 5vw, 5.25rem);
    line-height: 1.02;
    margin: 0;
    position: relative;
    text-wrap: balance;
}

.ee-static-page__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
}

.ee-static-page__breadcrumb li {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.ee-static-page__breadcrumb li + li::before {
    color: #ffc107;
    content: "/";
    margin-right: 0.65rem;
}

.ee-static-page__breadcrumb a {
    color: #fff;
}

.ee-static-page__breadcrumb a:hover,
.ee-static-page__breadcrumb a:focus-visible {
    color: #ffc107;
}

.ee-static-page__content {
    background:
        radial-gradient(circle at 8% 14%, rgb(239 85 149 / 9%), transparent 18rem),
        radial-gradient(circle at 94% 82%, rgb(255 193 7 / 10%), transparent 20rem),
        var(--ee-static-surface);
    padding: 0 0 7rem;
}

.ee-static-page__intro {
    align-items: flex-start;
    background: #fff;
    border-radius: 0 0 1.25rem 1.25rem;
    box-shadow: 0 1.5rem 4rem rgb(24 29 67 / 9%);
    display: flex;
    gap: 1.5rem;
    margin: 0 auto 4rem;
    max-width: 73rem;
    padding: clamp(2rem, 5vw, 3.5rem);
    position: relative;
}

.ee-static-page__intro-mark {
    background: linear-gradient(180deg, var(--ee-static-accent), #ffc107);
    border-radius: 999px;
    flex: 0 0 0.4rem;
    height: 4.5rem;
}

.ee-static-page__intro p {
    color: var(--ee-static-muted);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.65;
    margin: 0;
    max-width: 59rem;
    text-wrap: balance;
}

.ee-static-page__prose {
    background: #fff;
    border: 1px solid rgb(24 29 67 / 7%);
    border-radius: 1.25rem;
    box-shadow: 0 1.5rem 4rem rgb(24 29 67 / 7%);
    color: #41465e;
    font-size: 1.05rem;
    line-height: 1.85;
    margin: 0 auto;
    max-width: 73rem;
    padding: clamp(2rem, 5vw, 4.5rem);
}

.ee-static-page__prose h2,
.ee-static-page__prose h3 {
    color: var(--ee-static-ink);
    font-weight: 750;
    line-height: 1.2;
    scroll-margin-top: 7rem;
    text-wrap: balance;
}

.ee-static-page__prose h2 {
    border-top: 1px solid rgb(24 29 67 / 10%);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    margin: 3rem 0 1rem;
    padding: 2.75rem 0 0 2rem;
    position: relative;
}

.ee-static-page__prose h2:first-child {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
}

.ee-static-page__prose h2::before {
    background: var(--ee-static-accent);
    border-radius: 999px;
    content: "";
    height: 0.7rem;
    left: 0;
    position: absolute;
    top: 3.45rem;
    width: 0.7rem;
}

.ee-static-page__prose h2:first-child::before {
    top: 0.72rem;
}

.ee-static-page__prose h2::after {
    background: #ffc107;
    border-radius: 999px;
    content: "";
    height: 0.35rem;
    left: 0.85rem;
    position: absolute;
    top: 3.62rem;
    width: 0.35rem;
}

.ee-static-page__prose h2:first-child::after {
    top: 0.89rem;
}

.ee-static-page__prose h3 {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    margin: 2.25rem 0 0.75rem;
}

.ee-static-page__prose p {
    color: #555a71;
    margin: 0 0 1.5rem;
}

.ee-static-page__prose a {
    color: var(--ee-static-accent-dark);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.2em;
}

.ee-static-page__prose a:hover,
.ee-static-page__prose a:focus-visible {
    color: var(--ee-static-ink);
}

.ee-static-page__prose ul,
.ee-static-page__prose ol {
    margin: 0 0 2rem;
}

.ee-static-page__prose ul {
    list-style: none;
    padding-left: 0;
}

.ee-static-page__prose ol {
    padding-left: 1.35rem;
}

.ee-static-page__prose li {
    margin-bottom: 0.65rem;
}

.ee-static-page__prose ol > li {
    padding-left: 0.45rem;
}

.ee-static-page__prose ol > li::marker {
    color: var(--ee-static-accent);
    font-weight: 800;
}

.ee-static-page__prose ul > li {
    padding-left: 2rem;
    position: relative;
}

.ee-static-page__prose ul > li::before {
    color: var(--ee-static-accent-dark);
    content: "\f1a9";
    font-family: "Flaticon";
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    left: 0;
    line-height: inherit;
    position: absolute;
    top: 0;
}

.ee-static-page__prose li > ul {
    margin: 0.65rem 0;
}

.ee-static-page__prose blockquote {
    background: var(--ee-static-surface);
    border-left: 0.3rem solid var(--ee-static-accent);
    border-radius: 0 0.75rem 0.75rem 0;
    color: var(--ee-static-ink);
    margin: 2rem 0;
    padding: 1.5rem 1.75rem;
}

.ee-static-page__prose table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    width: 100%;
}

.ee-static-page__prose th,
.ee-static-page__prose td {
    border-bottom: 1px solid rgb(24 29 67 / 10%);
    padding: 0.9rem 1rem;
    text-align: left;
}

.ee-static-page__prose th {
    color: var(--ee-static-ink);
}

/*
 * Pair-only Markdown pages become a responsive editorial matrix without storing
 * Bootstrap markup in source. Richer pages retain the conventional prose flow.
 */
@supports selector(.ee-static-page__prose:has(> h2)) {
    .ee-static-page__prose:not(:has(> :not(h2, p))) {
        display: grid;
        grid-template-columns: minmax(15rem, 0.85fr) minmax(0, 1.4fr);
        padding: 0;
    }

    .ee-static-page__prose:not(:has(> :not(h2, p))) > h2 {
        align-items: center;
        background: linear-gradient(135deg, #fff 0%, #faf5f8 100%);
        border: 0;
        border-bottom: 1px solid rgb(24 29 67 / 8%);
        display: flex;
        margin: 0;
        min-height: 12rem;
        padding: 2.5rem 2.5rem 2.5rem 4.25rem;
    }

    .ee-static-page__prose:not(:has(> :not(h2, p))) > h2::before {
        left: 2.5rem;
        top: calc(50% - 0.35rem);
    }

    .ee-static-page__prose:not(:has(> :not(h2, p))) > h2::after {
        left: 3.35rem;
        top: calc(50% - 0.175rem);
    }

    .ee-static-page__prose:not(:has(> :not(h2, p))) > p {
        align-items: center;
        border-bottom: 1px solid rgb(24 29 67 / 8%);
        display: flex;
        margin: 0;
        min-height: 12rem;
        padding: 2.5rem 3rem;
    }

    .ee-static-page__prose:not(:has(> :not(h2, p))) > h2:last-of-type,
    .ee-static-page__prose:not(:has(> :not(h2, p))) > p:last-child {
        border-bottom: 0;
    }
}

.ee-static-page__cta {
    background: var(--ee-static-ink);
    color: #fff;
    overflow: hidden;
    padding: 4.5rem 0;
    position: relative;
}

.ee-static-page__cta::before,
.ee-static-page__cta::after {
    border: 1px solid rgb(239 85 149 / 34%);
    border-radius: 50%;
    content: "";
    height: 20rem;
    position: absolute;
    right: 6%;
    top: -13rem;
    width: 20rem;
}

.ee-static-page__cta::after {
    border-color: rgb(255 193 7 / 26%);
    height: 15rem;
    right: -4rem;
    top: 1rem;
    width: 15rem;
}

.ee-static-page__cta-inner {
    align-items: center;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.ee-static-page__cta h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    margin: 0;
    text-wrap: balance;
}

.ee-content-status {
    background: #f6f7fb;
    min-height: 60vh;
    padding: 90px 0;
}

.ee-content-status__card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 18px 50px rgb(29 33 70 / 8%);
    margin: 0 auto;
    max-width: 720px;
    padding: clamp(2rem, 6vw, 4rem);
    text-align: center;
}

.ee-content-status__code {
    color: #ffc107;
    display: block;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin-bottom: 1rem;
}

.ee-content-status__card h1 {
    color: #1d2146;
    font-size: clamp(2rem, 5vw, 3rem);
}

.ee-content-status__card p {
    color: #5b607e;
    font-size: 1.125rem;
    margin: 1rem auto 2rem;
    max-width: 560px;
}

.ee-content-status__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

@media only screen and (max-width: 991px) {
    .ee-static-page__hero {
        background-attachment: scroll;
        min-height: 27rem;
        padding: 11rem 0 4rem;
    }

    .ee-static-page__cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media only screen and (max-width: 767px) {
    .ee-static-page__hero {
        min-height: 24rem;
        padding: 9rem 0 3.5rem;
    }

    .ee-static-page__ghost-title {
        font-size: 4.25rem;
    }

    .ee-static-page__breadcrumb {
        margin-top: 1.5rem;
    }

    .ee-static-page__content {
        padding-bottom: 4.5rem;
    }

    .ee-static-page__intro {
        margin-bottom: 2rem;
        padding: 1.75rem;
    }

    .ee-static-page__intro-mark {
        height: 3.5rem;
    }

    .ee-static-page__prose {
        border-radius: 1rem;
        padding: 1.75rem;
    }

    @supports selector(.ee-static-page__prose:has(> h2)) {
        .ee-static-page__prose:not(:has(> :not(h2, p))) {
            display: block;
            padding: 1.75rem;
        }

        .ee-static-page__prose:not(:has(> :not(h2, p))) > h2 {
            background: transparent;
            min-height: 0;
            padding: 2rem 0 0 2rem;
        }

        .ee-static-page__prose:not(:has(> :not(h2, p))) > h2:first-child {
            padding-top: 0;
        }

        .ee-static-page__prose:not(:has(> :not(h2, p))) > h2::before {
            left: 0;
            top: 2.7rem;
        }

        .ee-static-page__prose:not(:has(> :not(h2, p))) > h2:first-child::before {
            top: 0.72rem;
        }

        .ee-static-page__prose:not(:has(> :not(h2, p))) > h2::after {
            left: 0.85rem;
            top: 2.87rem;
        }

        .ee-static-page__prose:not(:has(> :not(h2, p))) > h2:first-child::after {
            top: 0.89rem;
        }

        .ee-static-page__prose:not(:has(> :not(h2, p))) > p {
            min-height: 0;
            padding: 0.75rem 0 1.75rem;
        }
    }
}

@media (prefers-reduced-motion: reduce) {
    .ee-static-page__hero {
        background-attachment: scroll;
    }
}
