:root {
    --ink: #17202a;
    --muted: #5f6d7b;
    --paper: #fbfcfb;
    --panel: #ffffff;
    --line: #dce3e7;
    --sky: #2f80a7;
    --sky-dark: #0f4258;
    --sun: #e4a11b;
    --clay: #b85b3f;
    --green: #426a58;
    --soft-blue: #e8f3f7;
    --soft-green: #edf5ef;
    --radius: 8px;
    --shadow: 0 18px 44px rgba(30, 41, 59, .10);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    line-height: 1.64;
    background:
        linear-gradient(90deg, rgba(47, 128, 167, .05) 1px, transparent 1px),
        linear-gradient(180deg, #fff 0, var(--paper) 340px);
    background-size: 72px 72px, auto;
    font-size: 16px;
}

a {
    color: var(--sky-dark);
    text-underline-offset: 3px;
}

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

h1,
h2,
h3,
h4,
.navbar-brand,
.btn,
.eyebrow {
    letter-spacing: 0;
}

h1 {
    font-size: clamp(2rem, 3.2vw, 2.45rem);
    line-height: 1.12;
    font-weight: 850;
    max-width: 900px;
}

h2 {
    font-size: clamp(1.45rem, 2.2vw, 1.9rem);
    line-height: 1.2;
    font-weight: 820;
}

h3 {
    font-size: 1.12rem;
    line-height: 1.25;
    font-weight: 800;
}

p {
    color: var(--muted);
}

.lead {
    max-width: 760px;
    color: #425160;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .07);
    backdrop-filter: blur(14px);
}

.site-header .navbar {
    padding-block: 12px;
}

.navbar-brand img {
    height: 42px;
    width: auto;
    border-radius: 6px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .12);
}

.navbar-dark .navbar-toggler {
    border-color: rgba(23, 32, 42, .25);
}

.navbar-dark .navbar-toggler-icon {
    filter: invert(1);
}

.navbar-nav {
    gap: 4px;
}

.nav-link {
    color: #334155 !important;
    font-size: .91rem;
    font-weight: 720;
    border-radius: 999px;
    padding: .48rem .72rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--sky-dark) !important;
    background: var(--soft-blue);
}

.btn {
    border-radius: 999px;
    font-weight: 820;
    padding-inline: 1.15rem;
}

.btn-lg {
    font-size: 1rem;
    padding: .8rem 1.25rem;
}

.btn-cta {
    background: var(--sun);
    border-color: var(--sun);
    color: #17202a;
    box-shadow: 0 12px 24px rgba(228, 161, 27, .22);
}

.btn-cta:hover {
    background: #c98613;
    border-color: #c98613;
    color: #101828;
}

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

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--clay);
    font-size: .74rem;
    text-transform: uppercase;
    font-weight: 850;
    margin-bottom: .72rem;
}

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

.hero {
    min-height: auto;
    position: relative;
    overflow: hidden;
    color: var(--ink);
    padding: 76px 0 56px;
    background: linear-gradient(135deg, #fff 0%, #f4f8fa 55%, #eef6f0 100%);
}

.hero::before {
    content: "";
    position: absolute;
    top: 30px;
    right: max(20px, calc((100vw - 1140px) / 2));
    bottom: 30px;
    width: min(39vw, 470px);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(15, 66, 88, .08), rgba(15, 66, 88, .22)),
        var(--hero) center/cover no-repeat;
    box-shadow: var(--shadow);
}

.hero::after {
    content: "X04 / ORLANDO APOPKA";
    position: absolute;
    right: max(38px, calc((100vw - 1110px) / 2));
    bottom: 48px;
    z-index: 1;
    color: #fff;
    background: rgba(15, 66, 88, .82);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    padding: .45rem .75rem;
    font-size: .75rem;
    font-weight: 850;
}

.hero .container {
    position: relative;
    z-index: 2;
}

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

.hero .lead {
    max-width: 680px;
}

.hero .lead.fs-4 {
    font-size: clamp(1rem, 1.5vw, 1.15rem) !important;
}

.hero-panel {
    margin-top: 34px;
    background: rgba(255, 255, 255, .93);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    color: var(--ink);
    box-shadow: var(--shadow);
}

.hero-panel strong {
    display: block;
    color: var(--sky-dark);
    font-size: 1.28rem;
    line-height: 1.1;
}

.hero-panel span {
    color: var(--muted);
    font-size: .92rem;
}

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

.trust-strip {
    background: var(--ink);
    color: #fff;
    border-block: 1px solid rgba(255, 255, 255, .14);
    font-size: .92rem;
    font-weight: 780;
}

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

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

.section {
    padding: 66px 0;
}

.section-alt {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--soft-blue), #fff 62%);
}

main > .section:first-child:not(.section-dark),
main > article.section:first-child,
main.section {
    background:
        linear-gradient(135deg, rgba(47, 128, 167, .14), rgba(66, 106, 88, .10)),
        #fff;
    border-bottom: 1px solid var(--line);
}

main > .section:first-child:not(.section-dark) .container,
main > article.section:first-child .container,
main.section .container {
    position: relative;
}

main > .section:first-child:not(.section-dark) .container::after,
main > article.section:first-child .container::after,
main.section .container::after {
    content: "";
    position: absolute;
    top: 0;
    right: 12px;
    width: min(31vw, 360px);
    height: 100%;
    min-height: 210px;
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(15, 66, 88, .12), rgba(15, 66, 88, .28)),
        url("https://images.unsplash.com/photo-1529074963764-98f45c47344b?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
    box-shadow: var(--shadow);
}

main > .section:first-child:not(.section-dark) h1,
main > .section:first-child:not(.section-dark) .lead,
main > article.section:first-child h1,
main > article.section:first-child .lead,
main.section h1,
main.section p,
main.section a {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.section-dark {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #17202a, #244c43);
    color: #fff;
}

.section-dark::after {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    width: 38%;
    background:
        linear-gradient(90deg, rgba(23, 32, 42, .55), rgba(23, 32, 42, .05)),
        url("https://images.unsplash.com/photo-1540962351504-03099e0a754b?auto=format&fit=crop&w=900&q=80") center/cover no-repeat;
    opacity: .72;
}

.section-dark .container {
    position: relative;
    z-index: 2;
}

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

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

.academy-band {
    background:
        linear-gradient(90deg, rgba(228, 161, 27, .10) 0 1px, transparent 1px),
        var(--soft-green);
    background-size: 42px 42px;
    border-block: 1px solid var(--line);
}

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

.feature-card,
.post-card,
.path-card {
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.feature-card:hover,
.post-card:hover,
.path-card:hover {
    transform: translateY(-3px);
    border-color: rgba(47, 128, 167, .42);
    box-shadow: var(--shadow);
}

.feature-card h2,
.post-card h2,
.feature-card h3,
.post-card h3 {
    margin-bottom: .7rem;
}

.feature-card ul {
    padding-left: 1.15rem;
    color: var(--muted);
}

.stat-card {
    min-height: 118px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 4px solid var(--sun);
    background: #fff;
}

.stat-card strong {
    display: block;
    color: var(--sky-dark);
    font-size: 1.55rem;
    line-height: 1;
}

.stat-card span {
    color: var(--muted);
}

.path-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    counter-reset: path;
}

.path-card {
    position: relative;
    padding-top: 52px;
}

.path-card span {
    position: absolute;
    top: 16px;
    left: 18px;
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--sky-dark);
    color: #fff;
    font-size: .82rem;
    font-weight: 900;
}

.split-band {
    background:
        linear-gradient(90deg, rgba(23, 32, 42, .96), rgba(23, 32, 42, .84)),
        url("https://images.unsplash.com/photo-1529074963764-98f45c47344b?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
    color: #fff;
    padding: 42px 0;
}

.split-band h2 {
    max-width: 700px;
}

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

.faq details {
    margin-bottom: 12px;
}

.faq {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

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

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

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

main > article.section:first-child .container::after {
    display: none;
}

.article-body h2 {
    margin-top: 1.75rem;
}

.article-body .btn {
    margin-top: .75rem;
}

.locator-panel {
    background: linear-gradient(135deg, #fff, var(--soft-blue));
}

label {
    color: var(--ink);
    font-weight: 720;
}

.form-control,
.form-select {
    border-radius: var(--radius);
    border-color: var(--line);
    min-height: 46px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--sky);
    box-shadow: 0 0 0 .2rem rgba(47, 128, 167, .16);
}

.site-footer {
    background: #17202a;
    color: rgba(255, 255, 255, .76);
    padding: 52px 0;
}

.site-footer img {
    border-radius: 6px;
}

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

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

.site-footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-title {
    color: #fff;
    font-size: .86rem;
    text-transform: uppercase;
    font-weight: 850;
}

.mobile-cta {
    display: none;
}

@media (max-width: 1199px) {
    .navbar-nav {
        gap: 1px;
        padding-top: 12px;
    }

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

@media (max-width: 991px) {
    body {
        padding-bottom: 76px;
    }

    .section {
        padding: 50px 0;
    }

    .hero {
        padding: 50px 0 42px;
    }

    .hero::before {
        position: relative;
        display: block;
        right: auto;
        top: auto;
        bottom: auto;
        width: auto;
        height: 250px;
        margin: 0 12px 28px;
    }

    .hero::after {
        top: 264px;
        right: 30px;
        bottom: auto;
    }

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

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

    main > .section:first-child:not(.section-dark) .container::after,
    main > article.section:first-child .container::after,
    main.section .container::after,
    .section-dark::after {
        display: none;
    }

    .mobile-cta {
        display: block;
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1040;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 1.85rem;
    }

    h2 {
        font-size: 1.38rem;
    }

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

    .hero::before {
        height: 210px;
    }

    .hero::after {
        top: 226px;
        font-size: .68rem;
    }

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

    .feature-card,
    .post-card,
    .stat-card,
    .path-card,
    .locator-panel,
    .faq details,
    form.feature-card {
        padding: 18px;
    }
}
