:root {
    --navy-950: #06152b;
    --navy-900: #0a2342;
    --navy-800: #123b67;
    --navy-700: #1b527f;
    --blue-700: #1554b8;
    --blue-600: #2467d6;
    --blue-500: #3b82f6;
    --blue-100: #eaf2ff;
    --blue-50: #f4f8ff;
    --gold-500: #d9a936;
    --gold-400: #edc45d;
    --gold-100: #fff6d9;
    --slate-950: #111827;
    --slate-900: #172033;
    --slate-700: #40506a;
    --slate-600: #5d6b80;
    --slate-500: #758197;
    --slate-300: #cfd7e3;
    --slate-200: #e2e8f0;
    --slate-100: #f0f4f8;
    --surface: #ffffff;
    --page: #f7f9fc;
    --success: #138a5b;
    --focus: #1d70e8;
    --shadow-xs: 0 6px 18px rgba(9, 31, 58, 0.07);
    --shadow-sm: 0 12px 34px rgba(9, 31, 58, 0.1);
    --shadow-md: 0 26px 70px rgba(6, 21, 43, 0.16);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --container: 1200px;
}

.site-main {
    overflow: hidden;
}

.site-main .section-container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}

.site-main svg {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.site-main :focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
}

.site-main .button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 19px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.site-main .button:hover {
    transform: translateY(-2px);
}

.site-main .button svg {
    width: 18px;
    height: 18px;
}

.site-main .button-gold {
    background: var(--gold-400);
    color: var(--navy-950);
    box-shadow: 0 12px 30px rgba(217, 169, 54, 0.24);
}

.site-main .button-gold:hover {
    background: #f5d274;
    box-shadow: 0 15px 34px rgba(217, 169, 54, 0.33);
}

.site-main .button-ghost {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.site-main .button-ghost:hover {
    border-color: rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.13);
}

.site-main .button-large {
    min-height: 53px;
    padding: 14px 22px;
    font-size: 15px;
}

.js .site-main .reveal-item.is-visible {
    animation: main-reveal-in 560ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes main-reveal-in {
    from {
        transform: translateY(12px);
    }

    to {
        transform: none;
    }
}

.homepage-section {
    scroll-margin-top: 94px;
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(72px, 8vw, 112px) 0 clamp(82px, 9vw, 124px);
    background:
        radial-gradient(circle at 13% 15%, rgba(36, 103, 214, 0.28), transparent 31%),
        linear-gradient(132deg, var(--navy-950) 0%, #0b2443 53%, #102e51 100%);
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.15;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom right, #000, transparent 72%);
    -webkit-mask-image: linear-gradient(to bottom right, #000, transparent 72%);
}

.hero-orb {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.hero-orb-one {
    top: -160px;
    right: 4%;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(233, 191, 88, 0.2);
    box-shadow: inset 0 0 110px rgba(233, 191, 88, 0.05);
}

.hero-orb-two {
    right: 31%;
    bottom: -260px;
    width: 520px;
    height: 520px;
    background: rgba(36, 103, 214, 0.1);
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.82fr);
    align-items: center;
    gap: clamp(54px, 7vw, 104px);
}

.hero-copy,
.hero-journey {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    width: fit-content;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d8e4f4;
    font-size: 13px;
    font-weight: 760;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-eyebrow span {
    width: 9px;
    height: 9px;
    border: 2px solid rgba(7, 20, 38, 0.5);
    border-radius: 50%;
    background: var(--gold-400);
    box-shadow: 0 0 0 5px rgba(233, 191, 88, 0.13);
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 25px;
    font-family: Cambria, "Times New Roman", serif;
    font-size: clamp(42px, 5.1vw, 70px);
    font-weight: 650;
    letter-spacing: -0.045em;
    line-height: 1.03;
}

.hero h1 em {
    color: var(--gold-400);
    font-style: normal;
}

.hero-lead {
    max-width: 670px;
    margin-bottom: 34px;
    color: #c4d2e4;
    font-size: clamp(17px, 1.65vw, 20px);
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.hero-actions .button {
    min-width: 158px;
}

.hero-assurances {
    margin: 34px 0 0;
    padding: 26px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #b8c8dc;
    font-size: 13px;
    font-weight: 650;
    list-style: none;
}

.hero-assurances li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-assurances svg {
    width: 18px;
    height: 18px;
    color: var(--gold-400);
}

.hero-journey {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.97);
    color: var(--slate-900);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.27);
}

.journey-header {
    padding: 25px 27px 22px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--slate-200);
}

.journey-kicker {
    display: block;
    margin-bottom: 5px;
    color: var(--slate-500);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.journey-header h2 {
    margin: 0;
    color: var(--navy-900);
    font-family: Cambria, "Times New Roman", serif;
    font-size: 23px;
    line-height: 1.25;
}

.journey-status {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border-radius: 99px;
    background: #e9f8f1;
    color: #087448;
    font-size: 11px;
    font-weight: 800;
}

.journey-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #159664;
    box-shadow: 0 0 0 4px rgba(21, 150, 100, 0.12);
}

.journey-steps {
    margin: 0;
    padding: 8px 27px;
    list-style: none;
}

.journey-steps li {
    position: relative;
    min-height: 96px;
    display: grid;
    grid-template-columns: 28px 50px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    border-bottom: 1px solid var(--slate-100);
}

.journey-steps li:last-child {
    border-bottom: 0;
}

.journey-number {
    align-self: start;
    padding-top: 24px;
    color: #98a5b8;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.journey-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--blue-100);
    color: var(--blue-600);
}

.journey-icon-gold {
    background: var(--gold-100);
    color: #a3740c;
}

.journey-icon-green {
    background: #e7f7f0;
    color: var(--success);
}

.journey-icon svg {
    width: 23px;
    height: 23px;
}

.journey-copy {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.journey-copy strong {
    color: var(--navy-900);
    font-size: 14px;
    line-height: 1.35;
}

.journey-copy small {
    color: var(--slate-600);
    font-size: 12px;
    line-height: 1.45;
}

.journey-footer {
    min-height: 60px;
    padding: 13px 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: #f5f8fc;
    color: var(--slate-600);
    font-size: 12px;
    font-weight: 650;
}

.journey-footer a {
    color: var(--navy-900);
    font-weight: 800;
    text-decoration: none;
}

.journey-footer a:hover {
    color: var(--blue-600);
}

.home-overview {
    padding: clamp(76px, 8vw, 108px) 0;
    background: #fff;
}

.overview-heading {
    margin-bottom: 42px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.7fr);
    align-items: end;
    gap: 60px;
}

.home-overview .section-eyebrow {
    margin-bottom: 10px;
    color: #9a6b09;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.overview-heading h2 {
    max-width: 720px;
    margin: 0;
    color: var(--navy-900);
    font-family: Cambria, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 49px);
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.overview-heading > p {
    margin: 0 0 4px;
    color: var(--slate-600);
    font-size: 16px;
    line-height: 1.75;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.overview-card {
    min-height: 262px;
    padding: 27px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--slate-200);
    border-radius: 20px;
    background: #fbfcfe;
    scroll-margin-top: 100px;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.overview-card:hover {
    border-color: #c3d1e2;
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.overview-card-wide {
    grid-column: span 2;
    background:
        radial-gradient(circle at 88% 12%, rgba(36, 103, 214, 0.09), transparent 34%),
        #f8fbff;
}

.overview-card-support {
    background:
        radial-gradient(circle at 88% 12%, rgba(217, 169, 54, 0.12), transparent 37%),
        #fffdf7;
}

.overview-card-top {
    margin-bottom: 23px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.overview-icon {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #edf3fb;
    color: var(--navy-800);
}

.overview-icon-blue {
    background: var(--blue-100);
    color: var(--blue-600);
}

.overview-icon-violet {
    background: #f0edff;
    color: #6847c7;
}

.overview-icon-green {
    background: #e7f7f0;
    color: var(--success);
}

.overview-icon-gold {
    background: var(--gold-100);
    color: #9a6b09;
}

.overview-icon svg {
    width: 23px;
    height: 23px;
}

.overview-index {
    color: #a7b2c2;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.overview-card h3 {
    margin-bottom: 10px;
    color: var(--navy-900);
    font-size: 20px;
    line-height: 1.35;
}

.overview-card p {
    max-width: 620px;
    margin-bottom: 20px;
    color: var(--slate-600);
    font-size: 14px;
    line-height: 1.7;
}

.overview-link {
    width: fit-content;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--navy-900);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.overview-link span {
    transition: transform 160ms ease;
}

.overview-link:hover {
    color: var(--blue-600);
}

.overview-link:hover span {
    transform: translateX(4px);
}

@media (max-width: 1020px) {
    .hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
        gap: 46px;
    }

    .hero h1 {
        font-size: clamp(40px, 5.3vw, 58px);
    }

    .journey-header,
    .journey-steps,
    .journey-footer {
        padding-inline: 21px;
    }
}

@media (max-width: 880px) {
    .hero {
        padding-top: 64px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 720px;
    }

    .hero-journey {
        width: min(100%, 610px);
    }

    .overview-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .overview-heading > p {
        max-width: 650px;
    }

    .overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .overview-card-wide {
        grid-column: span 2;
    }
}

@media (max-width: 620px) {
    .hero {
        padding: 54px 0 72px;
    }

    .hero h1 {
        font-size: clamp(34px, 10vw, 42px);
        overflow-wrap: anywhere;
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-actions,
    .hero-actions .button {
        width: 100%;
    }

    .hero-assurances {
        display: grid;
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .journey-header {
        display: grid;
    }

    .journey-status {
        width: fit-content;
    }

    .journey-steps li {
        min-height: 108px;
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 12px;
    }

    .journey-number {
        display: none;
    }

    .journey-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .overview-card-wide {
        grid-column: auto;
    }

    .overview-card {
        min-height: 242px;
        padding: 24px;
    }
}

@media (max-width: 680px) {
    .site-main .section-container {
        width: min(var(--container), calc(100% - 32px));
    }
}

@media (prefers-reduced-motion: reduce) {
    .js .site-main .reveal-item.is-visible {
        animation: none;
    }
}
