:root {
    --ink: #1c2430;
    --muted: #667085;
    --paper: #fffdf8;
    --surface: #f4f7f5;
    --line: #d8ded8;
    --deep: #182129;
    --teal: #0f766e;
    --teal-dark: #115e59;
    --amber: #d97706;
    --blue: #2563eb;
    --radius: 8px;
    --shadow: 0 18px 38px rgba(28, 36, 48, .1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    line-height: 1.62;
    background:
        linear-gradient(90deg, rgba(24, 33, 41, .045) 1px, transparent 1px) 0 0 / 72px 72px,
        var(--paper);
}

body::before {
    content: "";
    position: fixed;
    inset: 0 auto 0 0;
    width: 8px;
    background: linear-gradient(180deg, var(--teal), var(--amber), var(--blue));
    z-index: 2000;
    pointer-events: none;
}

a {
    color: var(--teal-dark);
    text-decoration-thickness: 1px;
    text-underline-offset: .18em;
}

a:hover {
    color: var(--amber);
}

h1,
h2,
h3,
h4 {
    color: var(--deep);
    font-weight: 840;
    letter-spacing: 0;
    line-height: 1.15;
}

h1 {
    font-size: clamp(1.85rem, 3.2vw, 2.35rem);
}

h2 {
    font-size: clamp(1.35rem, 2.1vw, 1.75rem);
}

h3 {
    font-size: 1.12rem;
}

p {
    color: #4e5b68;
}

.lead,
.fs-4 {
    font-size: clamp(1.03rem, 1.5vw, 1.18rem) !important;
    line-height: 1.65;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 253, 248, .94);
    border-bottom: 1px solid rgba(24, 33, 41, .12);
    box-shadow: 0 8px 26px rgba(28, 36, 48, .08);
    backdrop-filter: blur(16px);
}

.navbar {
    padding: .72rem 0;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    padding: .25rem .7rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.navbar-brand img {
    height: 38px;
    width: auto;
}

.navbar-dark .navbar-toggler {
    border-color: var(--line);
    background: var(--deep);
}

.navbar-nav {
    gap: .2rem;
}

.nav-link {
    position: relative;
    border-radius: 999px;
    color: #344054 !important;
    font-size: .88rem;
    font-weight: 760;
    padding: .55rem .78rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: #fff !important;
    background: var(--deep);
}

.btn {
    border-radius: var(--radius);
    font-weight: 820;
    letter-spacing: 0;
}

.btn-lg {
    --bs-btn-padding-y: .72rem;
    --bs-btn-padding-x: 1.05rem;
    --bs-btn-font-size: 1rem;
}

.btn-cta {
    background: var(--amber);
    border-color: var(--amber);
    color: #111827;
    box-shadow: 0 9px 0 rgba(217, 119, 6, .2);
}

.btn-cta:hover {
    background: #c46a04;
    border-color: #c46a04;
    color: #111827;
    transform: translateY(1px);
}

.btn-main {
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
}

.btn-main:hover {
    background: var(--deep);
    border-color: var(--deep);
    color: #fff;
}

.btn-outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, .78);
}

.btn-outline-light:hover {
    color: var(--deep);
    background: #fff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: .8rem;
    color: var(--teal-dark);
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .09em;
    font-weight: 900;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--amber);
}

.hero {
    min-height: 620px;
    display: flex;
    align-items: stretch;
    color: #fff;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(18, 27, 34, .9) 0%, rgba(18, 27, 34, .76) 42%, rgba(18, 27, 34, .22) 100%),
        var(--hero) center / cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .12) 0 1px, transparent 1px 120px),
        linear-gradient(180deg, transparent 72%, rgba(15, 118, 110, .72));
    pointer-events: none;
}

.hero::after {
    content: "X04";
    position: absolute;
    right: clamp(18px, 5vw, 72px);
    bottom: -1.3rem;
    color: rgba(255, 255, 255, .16);
    font-size: clamp(2rem, 6vw, 3.2rem);
    font-weight: 940;
    line-height: .8;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding-top: 72px;
    padding-bottom: 72px;
}

.hero .row {
    width: 100%;
}

.hero h1 {
    max-width: 820px;
    color: #fff;
    font-size: clamp(1.95rem, 3.4vw, 2.5rem);
}

.hero .lead {
    max-width: 700px;
    color: rgba(255, 255, 255, .9);
}

.hero .eyebrow {
    color: #f7c67a;
}

.hero-panel {
    color: #182129;
    background: rgba(255, 253, 248, .94);
    border: 1px solid rgba(255, 255, 255, .56);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: 0 24px 70px rgba(2, 6, 23, .26);
}

.hero-panel strong {
    display: block;
    color: var(--teal-dark);
    font-size: 1.45rem;
    line-height: 1;
}

.hero-panel span {
    color: #53606d;
    font-size: .95rem;
}

.hero-panel hr {
    margin: 1rem 0;
    border-color: var(--line);
    opacity: 1;
}

.trust-strip {
    background: var(--deep);
    color: #fff;
    font-size: .88rem;
    font-weight: 820;
    letter-spacing: .02em;
}

.trust-strip span {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.trust-strip span::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--amber);
    border-radius: 999px;
}

.section {
    position: relative;
    padding: 70px 0;
}

.section > .container {
    position: relative;
    z-index: 1;
}

.section-alt {
    background:
        linear-gradient(90deg, rgba(15, 118, 110, .11), transparent 56%),
        var(--surface);
    border-block: 1px solid var(--line);
}

main > .section:first-child:not(.hero) {
    padding: 58px 0 48px;
    background: var(--deep);
    border-bottom: 6px solid var(--amber);
}

main > .section:first-child:not(.hero) h1,
main > .section:first-child:not(.hero) h2 {
    max-width: 860px;
    color: #fff;
}

main > .section:first-child:not(.hero) p {
    max-width: 760px;
    color: rgba(255, 255, 255, .78);
}

main > .section:first-child:not(.hero) .eyebrow {
    color: #f7c67a;
}

.section-dark {
    background:
        linear-gradient(135deg, rgba(15, 118, 110, .35), transparent 42%),
        var(--deep);
    color: #fff;
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
    color: #fff;
}

.section-dark p {
    color: rgba(255, 255, 255, .8);
}

.layout-ribbon {
    border-top: 0;
}

.academy-band {
    background: #eef4f1;
    border-block: 1px solid var(--line);
}

.feature-card,
.post-card,
.stat-card,
.path-card,
.locator-panel {
    height: 100%;
    background: rgba(255, 255, 255, .9);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: none;
}

.feature-card,
.post-card,
.locator-panel {
    padding: 24px;
}

.feature-card,
.post-card {
    position: relative;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.feature-card::before,
.post-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--teal), var(--amber));
}

.feature-card:hover,
.post-card:hover {
    transform: translateY(-3px);
    border-color: rgba(15, 118, 110, .35);
    box-shadow: var(--shadow);
}

.feature-card h2,
.post-card h2,
.feature-card h3,
.post-card h3 {
    margin-top: .1rem;
}

.stat-card {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: .85rem;
    padding: 18px;
}

.stat-card strong {
    display: inline-grid;
    min-width: 54px;
    min-height: 54px;
    place-items: center;
    color: #fff;
    background: var(--teal);
    border-radius: 50%;
    font-size: 1.18rem;
    line-height: 1;
}

.stat-card span {
    color: #475467;
    font-weight: 760;
}

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

.path-card {
    position: relative;
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 16px;
    padding: 22px;
}

.path-card span {
    grid-row: span 2;
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #fff;
    background: var(--deep);
    border-radius: 50%;
    font-weight: 900;
}

.path-card h3 {
    margin-bottom: .35rem;
}

.path-card p {
    margin-bottom: 0;
}

.locator-panel {
    background:
        linear-gradient(135deg, rgba(217, 119, 6, .12), transparent 50%),
        #fff;
    border-color: rgba(217, 119, 6, .26);
}

.split-band {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(15, 118, 110, .92), rgba(24, 33, 41, .96)),
        linear-gradient(135deg, var(--teal), var(--deep));
}

.split-band::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 8px;
    background: repeating-linear-gradient(90deg, var(--amber) 0 42px, transparent 42px 72px);
}

.split-band h2 {
    color: #fff;
    font-size: clamp(1.35rem, 2.1vw, 1.8rem);
}

.split-band p {
    color: rgba(255, 255, 255, .84);
}

.faq details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin-bottom: 12px;
}

.faq summary {
    color: var(--deep);
    font-weight: 850;
    cursor: pointer;
}

.faq summary::marker {
    color: var(--teal);
}

.article-body {
    max-width: 880px;
}

.article-body h2 {
    margin-top: 2.1rem;
    padding-top: .8rem;
    border-top: 1px solid var(--line);
}

label,
.form-label {
    color: #1f2937;
    font-weight: 760;
}

.form-control,
.form-select {
    border-color: var(--line);
    border-radius: var(--radius);
    padding: .75rem .85rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 .2rem rgba(15, 118, 110, .14);
}

.site-footer {
    background: #111820;
    color: rgba(255, 255, 255, .72);
    padding: 54px 0;
    border-top: 6px solid var(--teal);
}

.site-footer img {
    max-width: 210px;
    height: auto;
    padding: .35rem .55rem;
    background: rgba(255, 255, 255, .94);
    border-radius: var(--radius);
}

.site-footer p {
    color: rgba(255, 255, 255, .72);
}

.site-footer a {
    display: block;
    color: rgba(255, 255, 255, .88);
    text-decoration: none;
    margin: .42rem 0;
}

.site-footer a:hover {
    color: #f7c67a;
}

.footer-title {
    color: #fff;
    font-size: .88rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.mobile-cta {
    display: none;
}

@media (max-width: 1199px) {
    .navbar-collapse {
        margin-top: .8rem;
        padding: .8rem;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: var(--radius);
    }

    .navbar-nav {
        align-items: stretch !important;
    }

    .nav-link {
        border-radius: var(--radius);
    }
}

@media (max-width: 991px) {
    body::before {
        width: 5px;
    }

    .section {
        padding: 52px 0;
    }

    .hero {
        min-height: auto;
    }

    .hero .container {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .hero h1 {
        font-size: clamp(1.75rem, 6vw, 2.15rem);
    }

    .hero-panel {
        margin-top: 24px;
    }

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

    .mobile-cta {
        display: block;
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1040;
        box-shadow: 0 12px 30px rgba(17, 24, 39, .24);
    }

    body {
        padding-bottom: 78px;
    }
}

@media (max-width: 575px) {
    .navbar-brand img {
        height: 34px;
    }

    .hero .d-flex {
        display: grid !important;
    }

    .hero .btn {
        width: 100%;
    }

    .trust-strip .container {
        gap: .65rem !important;
    }

    .path-card,
    .stat-card {
        grid-template-columns: 1fr;
    }
}
