.academy-page {
    --academy-ink: #111827;
    --academy-navy: #071426;
    --academy-teal: #0b7d70;
    --academy-gold: #c9aa72;
    --academy-wine: #7b2d42;
    --academy-mist: #eef4f3;
    --academy-paper: #fbfaf7;
    --academy-muted: #66717f;
    background: #fff;
    color: var(--academy-ink);
}

.academy-page a {
    text-decoration: none;
}

.academy-hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--academy-navy);
}

.academy-hero-media {
    position: absolute;
    inset: 0;
}

.academy-hero-media:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 20, 38, .96) 0%, rgba(7, 20, 38, .82) 48%, rgba(7, 20, 38, .38) 100%);
}

.academy-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

.academy-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 48px;
    align-items: end;
    padding: 150px 0 80px;
}

.academy-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--academy-gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.academy-kicker:before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
}

.academy-hero-copy h1 {
    max-width: 860px;
    margin: 18px 0 20px;
    color: #fff;
    font-size: 72px;
    line-height: 1.02;
}

.academy-hero-copy p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 18px;
    line-height: 1.75;
}

.academy-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.academy-btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    padding: 0 20px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.academy-btn:hover {
    transform: translateY(-2px);
}

.academy-btn-primary {
    background: var(--academy-gold);
    color: #fff;
}

.academy-btn-primary:hover {
    background: var(--academy-teal);
    color: #fff;
}

.academy-btn-secondary {
    border-color: rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.academy-btn-secondary:hover {
    border-color: rgba(255, 255, 255, .45);
    color: #fff;
}

.academy-hero-panel {
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 26px 55px rgba(0, 0, 0, .22);
    backdrop-filter: blur(12px);
}

.academy-hero-panel > span {
    display: block;
    margin-bottom: 12px;
    color: var(--academy-gold);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.academy-hero-panel > strong {
    display: block;
    color: #fff;
    font-family: "Mona Sans", sans-serif;
    font-size: 24px;
    line-height: 1.35;
}

.academy-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 24px;
}

.academy-hero-stats div {
    min-height: 96px;
    padding: 14px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .11);
}

.academy-hero-stats b,
.academy-hero-stats small {
    display: block;
}

.academy-hero-stats b {
    color: #fff;
    font-size: 31px;
    line-height: 1;
}

.academy-hero-stats small {
    margin-top: 9px;
    color: rgba(255, 255, 255, .68);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.35;
}

.academy-strip {
    position: relative;
    z-index: 2;
    margin-top: -54px;
}

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

.academy-pillar,
.academy-module-card,
.academy-program-card {
    border: 1px solid rgba(17, 24, 39, .08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(17, 24, 39, .08);
}

.academy-pillar {
    min-height: 210px;
    padding: 28px;
}

.academy-pillar i {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 8px;
    background: var(--academy-mist);
    color: var(--academy-teal);
    font-size: 20px;
}

.academy-pillar h2 {
    margin: 22px 0 10px;
    color: var(--academy-ink);
    font-size: 23px;
}

.academy-pillar p,
.academy-section-head p,
.academy-timeline p,
.academy-module-card p,
.academy-program-card p,
.academy-lab-copy p,
.academy-faq-aside p,
.academy-accordion p {
    margin: 0;
    color: var(--academy-muted);
    font-size: 15px;
    line-height: 1.75;
}

.academy-intro,
.academy-modules,
.academy-programs,
.academy-faq {
    padding: 105px 0;
}

.academy-intro {
    background: linear-gradient(180deg, #fff 0%, var(--academy-paper) 100%);
}

.academy-section-head {
    max-width: 850px;
    margin-bottom: 42px;
}

.academy-section-head h2 {
    margin: 12px 0 14px;
    color: var(--academy-ink);
    font-size: 48px;
    line-height: 1.12;
}

.academy-section-head-split {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .75fr);
    gap: 44px;
    align-items: end;
}

.academy-section-head-split p {
    padding-bottom: 10px;
}

.academy-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid rgba(17, 24, 39, .08);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 44px rgba(17, 24, 39, .06);
}

.academy-timeline article {
    min-height: 238px;
    padding: 28px;
    border-right: 1px solid rgba(17, 24, 39, .08);
}

.academy-timeline article:last-child {
    border-right: 0;
}

.academy-timeline span {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    background: var(--academy-navy);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.academy-timeline h3 {
    margin: 22px 0 10px;
    color: var(--academy-ink);
    font-size: 22px;
    line-height: 1.3;
}

.academy-modules {
    background: #fff;
}

.academy-module-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.academy-module-card {
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.academy-module-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 55px rgba(17, 24, 39, .12);
}

.academy-module-card > a {
    position: relative;
    display: block;
    height: 245px;
    overflow: hidden;
    background: var(--academy-mist);
}

.academy-module-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .35s ease;
}

.academy-module-card:hover img {
    transform: scale(1.04);
}

.academy-module-card > a:after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 56%;
    background: linear-gradient(180deg, rgba(7, 20, 38, 0), rgba(7, 20, 38, .82));
}

.academy-module-card > a span {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 1;
    max-width: calc(100% - 32px);
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .94);
    color: var(--academy-navy);
    font-size: 12px;
    font-weight: 900;
}

.academy-module-card > div {
    min-height: 170px;
    padding: 24px;
}

.academy-module-card h3,
.academy-program-card h3 {
    margin: 0 0 10px;
    color: var(--academy-ink);
    font-size: 23px;
    line-height: 1.28;
}

.academy-programs {
    background: var(--academy-mist);
}

.academy-program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.academy-program-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 28px;
}

.academy-program-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}

.academy-program-meta span,
.academy-program-meta small {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
}

.academy-program-meta span {
    padding: 0 11px;
    background: var(--academy-navy);
    color: #fff;
}

.academy-program-meta small {
    gap: 7px;
    color: var(--academy-teal);
}

.academy-program-card ul {
    display: grid;
    gap: 11px;
    margin: 22px 0 26px;
    padding: 0;
    list-style: none;
}

.academy-program-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #394557;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
}

.academy-program-card li i {
    margin-top: 3px;
    color: var(--academy-gold);
}

.academy-program-card > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    color: var(--academy-navy);
    font-size: 14px;
    font-weight: 900;
}

.academy-program-card > a i {
    color: var(--academy-gold);
    transition: transform .2s ease;
}

.academy-program-card > a:hover i {
    transform: translateX(4px);
}

.academy-lab {
    padding: 95px 0;
    background: var(--academy-navy);
    color: #fff;
}

.academy-lab-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(340px, 1fr);
    gap: 70px;
    align-items: center;
}

.academy-lab-copy h2 {
    margin: 14px 0 16px;
    color: #fff;
    font-size: 46px;
    line-height: 1.14;
}

.academy-lab-copy p {
    color: rgba(255, 255, 255, .72);
}

.academy-lab-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.academy-lab-list div {
    display: flex;
    min-height: 112px;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .07);
}

.academy-lab-list i {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 8px;
    background: var(--academy-gold);
    color: #fff;
}

.academy-lab-list span {
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.35;
}

.academy-faq {
    background: #fff;
}

.academy-faq-grid {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 60px;
    align-items: start;
}

.academy-faq-aside {
    position: sticky;
    top: 120px;
}

.academy-faq-aside h2 {
    margin: 14px 0 14px;
    color: var(--academy-ink);
    font-size: 42px;
    line-height: 1.15;
}

.academy-accordion .accordion-item {
    margin-bottom: 12px;
    border: 1px solid rgba(17, 24, 39, .09);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 30px rgba(17, 24, 39, .05);
}

.academy-accordion .accordion-button {
    min-height: 68px;
    padding: 18px 22px;
    background: #fff;
    color: var(--academy-ink);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.35;
    box-shadow: none;
}

.academy-accordion .accordion-button:not(.collapsed) {
    background: var(--academy-paper);
    color: var(--academy-teal);
}

.academy-accordion .accordion-body {
    padding: 0 22px 22px;
    background: var(--academy-paper);
}

@media (max-width: 1199px) {
    .academy-hero-grid {
        grid-template-columns: 1fr;
    }

    .academy-hero-panel {
        max-width: 640px;
    }

    .academy-timeline,
    .academy-lab-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .academy-timeline article:nth-child(2) {
        border-right: 0;
    }

    .academy-timeline article:nth-child(-n+2) {
        border-bottom: 1px solid rgba(17, 24, 39, .08);
    }
}

@media (max-width: 991px) {
    .academy-hero {
        min-height: auto;
    }

    .academy-hero-grid {
        padding: 130px 0 86px;
    }

    .academy-hero-copy h1 {
        font-size: 54px;
    }

    .academy-pillars,
    .academy-section-head-split,
    .academy-module-grid,
    .academy-program-grid,
    .academy-lab-grid,
    .academy-faq-grid {
        grid-template-columns: 1fr;
    }

    .academy-faq-aside {
        position: static;
    }

    .academy-intro,
    .academy-modules,
    .academy-programs,
    .academy-faq {
        padding: 80px 0;
    }

    .academy-section-head h2,
    .academy-lab-copy h2 {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .academy-hero-media:after {
        background: linear-gradient(180deg, rgba(7, 20, 38, .96) 0%, rgba(7, 20, 38, .82) 64%, rgba(7, 20, 38, .66) 100%);
    }

    .academy-hero-grid {
        gap: 30px;
        padding: 118px 0 76px;
    }

    .academy-hero-copy h1 {
        font-size: 42px;
    }

    .academy-hero-copy p {
        font-size: 15px;
    }

    .academy-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .academy-hero-panel {
        display: none;
    }

    .academy-btn {
        width: 100%;
        padding: 0 14px;
    }

    .academy-timeline,
    .academy-lab-list {
        grid-template-columns: 1fr;
    }

    .academy-hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .academy-hero-stats div {
        min-height: 84px;
        padding: 12px 8px;
    }

    .academy-hero-stats b {
        font-size: 27px;
    }

    .academy-hero-stats small {
        font-size: 10px;
    }

    .academy-timeline article,
    .academy-timeline article:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(17, 24, 39, .08);
    }

    .academy-timeline article:last-child {
        border-bottom: 0;
    }

    .academy-section-head h2,
    .academy-faq-aside h2 {
        font-size: 34px;
    }

    .academy-lab-copy h2 {
        font-size: 30px;
    }

    .academy-pillar,
    .academy-program-card {
        padding: 24px;
    }
}

@media (max-width: 575px) {
    .academy-strip {
        margin-top: -34px;
    }

    .academy-hero-copy h1 {
        font-size: 37px;
    }

    .academy-hero-panel {
        padding: 20px;
    }

    .academy-module-card > a {
        height: 230px;
    }

    .academy-module-card > div {
        min-height: auto;
    }
}
