﻿
:root {
    --navy-950: #040814;
    --navy-900: #071125;
    --navy-850: #0b1730;
    --navy-800: #102044;
    --blue: #1158e8;
    --cyan: #08b7ee;
    --purple: #7c5cff;
    --emerald: #36d7a3;
    --orange: #ffad0d;
    --red: #ff5b5b;
    --white: #ffffff;
    --cloud: #f4f7fc;
    --muted: #9ba9c4;
    --line: rgba(255,255,255,.12);
    --glass: rgba(255,255,255,.075);
    --shadow: 0 30px 80px rgba(0,0,0,.35);
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --container: min(1240px, calc(100% - 48px));
    --ease: cubic-bezier(.22,1,.36,1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--white);
    background: radial-gradient(circle at 75% 12%, rgba(30, 90, 238, .14), transparent 25%), radial-gradient(circle at 12% 30%, rgba(124, 92, 255, .1), transparent 25%), var(--navy-950);
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

    body.menu-open {
        overflow: hidden;
    }

::selection {
    background: rgba(54,215,163,.28);
    color: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
}

button, input, textarea, select {
    font: inherit;
}

button {
    color: inherit;
}

img {
    max-width: 100%;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--white);
    color: var(--navy-950);
    transform: translateY(-150%);
    transition: transform .2s;
}

    .skip-link:focus {
        transform: translateY(0);
    }

.container {
    width: var(--container);
    margin-inline: auto;
}

.section {
    padding: 130px 0;
    position: relative;
}

.page-noise {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.particle-canvas {
    position: fixed;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.site-header {
    position: fixed;
    inset: 18px 0 auto;
    z-index: 1000;
    transition: .4s var(--ease);
}

.nav-shell {
    width: min(1320px, calc(100% - 32px));
    height: 78px;
    margin: auto;
    padding: 8px 10px 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 23px;
    background: rgba(5,11,25,.38);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 16px 50px rgba(0,0,0,.18);
    transition: .4s var(--ease);
}

.site-header.scrolled {
    inset-block-start: 8px;
}

    .site-header.scrolled .nav-shell {
        background: rgba(5,11,25,.88);
        border-color: rgba(255,255,255,.17);
        box-shadow: 0 14px 40px rgba(0,0,0,.36);
    }

.brand {
    display: grid;
    place-items: center;
    width: 202px;
    height: 60px;
    padding: 6px 14px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

    .brand img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.primary-nav {
    display: flex;
    align-items: center;
    gap: 7px;
}

    .primary-nav > a, .dropdown-toggle {
        padding: 12px 15px;
        border-radius: 12px;
        border: 0;
        background: transparent;
        cursor: pointer;
        color: #dce5f7;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: -.01em;
        transition: .25s;
    }

        .primary-nav > a:hover, .dropdown-toggle:hover {
            color: #fff;
            background: rgba(255,255,255,.08);
        }

.nav-login {
    border: 1px solid rgba(255,255,255,.17) !important;
    margin-left: 4px;
}

    .nav-login span {
        margin-left: 5px;
        color: var(--orange);
    }

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

    .dropdown-toggle svg {
        width: 14px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        transition: transform .25s;
    }

.nav-dropdown.open .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: -118px;
    width: 390px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 20px;
    background: rgba(8,18,39,.96);
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(.98);
    transition: .25s var(--ease);
    transform-origin: top;
}

.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu, .nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.dropdown-menu a {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 13px;
    align-items: center;
    padding: 13px;
    border-radius: 14px;
    transition: .25s;
}

    .dropdown-menu a:hover {
        background: rgba(255,255,255,.07);
    }

.dropdown-code {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(17,88,232,.26), rgba(124,92,255,.22));
    color: #dbe6ff;
    font-family: "Space Grotesk";
    font-size: 13px;
    font-weight: 700;
}

.dropdown-menu strong {
    display: block;
    font-size: 13px;
}

.dropdown-menu small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,.06);
    cursor: pointer;
}

    .menu-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        background: white;
        margin: 4px auto;
        transition: .25s;
    }

.hero {
    min-height: 100svh;
    padding: 150px 0 34px;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
        background-size: 70px 70px;
        mask-image: linear-gradient(to bottom, black, transparent 88%);
    }

.hero-grid {
    min-height: calc(100svh - 215px);
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-copy {
    padding-left: clamp(0px, 2vw, 28px);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 27px;
    color: #aebbd2;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

    .eyebrow span {
        width: 32px;
        height: 1px;
        background: linear-gradient(90deg, var(--emerald), transparent);
    }

.hero h1, .section-heading h2, .mentor h2, .about-strip h2, .contact h2 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    letter-spacing: -.065em;
    line-height: .96;
    font-weight: 600;
}

.hero h1 {
    max-width: 720px;
    font-size: clamp(54px, 6.35vw, 94px);
}

em {
    font-style: normal;
    font-weight: 500;
    color: transparent;
    -webkit-text-stroke: 1.1px rgba(209,223,252,.78);
}

.hero-copy > p {
    max-width: 620px;
    margin: 30px 0 0;
    color: #aebbd2;
    font-size: clamp(16px,1.3vw,19px);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 38px;
}

.button {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    min-height: 55px;
    padding: 0 23px;
    border-radius: 15px;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -.01em;
    transition: transform .3s var(--ease), box-shadow .3s, background .3s;
    overflow: hidden;
}

    .button::after {
        content: "";
        position: absolute;
        inset: -80% -30%;
        background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.4), transparent 62%);
        transform: translateX(-80%) rotate(8deg);
        transition: transform .7s var(--ease);
    }

    .button:hover::after {
        transform: translateX(80%) rotate(8deg);
    }

.button-primary {
    color: white;
    background: linear-gradient(135deg, #1158e8, #764fff);
    box-shadow: 0 14px 38px rgba(73,82,255,.25), inset 0 1px rgba(255,255,255,.23);
}

    .button-primary:hover {
        box-shadow: 0 18px 48px rgba(73,82,255,.38), inset 0 1px rgba(255,255,255,.27);
        transform: translateY(-3px);
    }

.button-ghost {
    color: #e7edfa;
    border-color: rgba(255,255,255,.16);
    background: rgba(255,255,255,.04);
}

    .button-ghost:hover {
        background: rgba(255,255,255,.08);
        transform: translateY(-3px);
    }

.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 3px solid rgba(54,215,163,.7);
    outline-offset: 3px;
}

.hero-proof {
    margin-top: 46px;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    color: #7787a5;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

    .hero-proof span {
        display: flex;
        align-items: center;
        gap: 9px;
    }

        .hero-proof span::before {
            content: "";
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--emerald);
            box-shadow: 0 0 15px rgba(54,215,163,.9);
        }

.hero-stage {
    min-height: 650px;
    display: grid;
    place-items: center;
    position: relative;
    isolation: isolate;
}

.stage-glow {
    position: absolute;
    width: 580px;
    height: 580px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(17,88,232,.25), rgba(124,92,255,.09) 35%, transparent 70%);
    filter: blur(4px);
}

.glass-lens {
    position: absolute;
    z-index: 5;
    top: 7%;
    right: 17%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 26%, rgba(255,255,255,.75), rgba(125,181,255,.15) 27%, rgba(32,86,187,.14) 55%, rgba(5,14,35,.08) 72%);
    border: 1px solid rgba(255,255,255,.3);
    box-shadow: inset -18px -24px 38px rgba(19,42,108,.25), inset 15px 16px 28px rgba(255,255,255,.25), 0 35px 90px rgba(22,73,207,.35);
    backdrop-filter: blur(8px);
    animation: lensFloat 7s ease-in-out infinite;
}

.lens-core {
    position: absolute;
    inset: 22%;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    background: radial-gradient(circle at 66% 65%, rgba(54,215,163,.22), transparent 45%);
}

.lens-shine {
    position: absolute;
    left: 25%;
    top: 18%;
    width: 31%;
    height: 17%;
    border-radius: 50%;
    background: rgba(255,255,255,.42);
    filter: blur(4px);
    transform: rotate(-28deg);
}

@keyframes lensFloat {
    0%, 100% {
        transform: translate3d(-18px,0,0) rotate(-3deg)
    }

    50% {
        transform: translate3d(18px,13px,0) rotate(4deg)
    }
}

.course-orbit {
    position: relative;
    width: min(520px, 85vw);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

    .course-orbit::before {
        content: "";
        position: absolute;
        inset: 8%;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,.09);
        box-shadow: inset 0 0 100px rgba(17,88,232,.12), 0 0 90px rgba(17,88,232,.09);
    }

.orbit-text {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    fill: #95a8cb;
    font: 700 13px "Space Grotesk";
    letter-spacing: 4.3px;
    animation: orbitSpin 24s linear infinite;
}

@keyframes orbitSpin {
    to {
        transform: rotate(360deg);
    }
}

.orbit-rings {
    position: absolute;
    inset: 16%;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.08);
    animation: orbitReverse 30s linear infinite;
}

    .orbit-rings span {
        position: absolute;
        border-radius: 50%;
    }

        .orbit-rings span:nth-child(1) {
            inset: 11%;
            border: 1px dashed rgba(124,92,255,.3);
        }

        .orbit-rings span:nth-child(2) {
            width: 11px;
            height: 11px;
            left: 6%;
            top: 47%;
            background: var(--emerald);
            box-shadow: 0 0 18px rgba(54,215,163,.8);
        }

        .orbit-rings span:nth-child(3) {
            width: 7px;
            height: 7px;
            right: 15%;
            top: 13%;
            background: var(--orange);
            box-shadow: 0 0 16px rgba(255,173,13,.8);
        }

@keyframes orbitReverse {
    to {
        transform: rotate(-360deg);
    }
}

.orbit-center {
    width: 190px;
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    background: radial-gradient(circle at 35% 28%, rgba(255,255,255,.15), rgba(15,33,72,.78) 45%, rgba(6,14,32,.88));
    border: 1px solid rgba(255,255,255,.15);
    box-shadow: inset 0 0 35px rgba(255,255,255,.05), 0 28px 70px rgba(0,0,0,.4);
}

    .orbit-center img {
        width: 84px;
        height: 84px;
        object-fit: contain;
        border-radius: 20px;
        box-shadow: 0 14px 35px rgba(0,0,0,.25);
    }

    .orbit-center small {
        color: #8999b8;
        font-size: 9px;
        letter-spacing: .15em;
        text-transform: uppercase;
    }

.orbit-option {
    position: absolute;
    z-index: 4;
    width: 195px;
    min-width: 195px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(145deg, rgba(15,33,70,.88), rgba(7,18,40,.78));
    backdrop-filter: blur(16px);
    box-shadow: 0 15px 40px rgba(0,0,0,.22), inset 0 1px rgba(255,255,255,.08);
    transition: .4s var(--ease);
}

    .orbit-option::before {
        content: "";
        position: absolute;
        z-index: 0;
        inset: -80% -45%;
        pointer-events: none;
        background: linear-gradient(112deg, transparent 38%, rgba(255,255,255,.04) 44%, rgba(255,230,160,.72) 50%, rgba(255,255,255,.08) 56%, transparent 63%);
        transform: translateX(-72%) rotate(7deg);
        animation: tabGlitterSweep 4.2s ease-in-out infinite;
    }

    .orbit-option::after {
        content: "";
        position: absolute;
        z-index: 0;
        inset: 0;
        pointer-events: none;
        opacity: .68;
        background: radial-gradient(circle at 16% 23%, rgba(255,221,128,.95) 0 1px, transparent 2px), radial-gradient(circle at 78% 22%, rgba(255,255,255,.9) 0 1px, transparent 2px), radial-gradient(circle at 86% 72%, rgba(54,215,163,.9) 0 1px, transparent 2px), radial-gradient(circle at 28% 78%, rgba(255,255,255,.75) 0 1px, transparent 2px);
        background-size: 37px 31px, 43px 37px, 49px 41px, 53px 47px;
        animation: tabSparkle 2.8s steps(2,end) infinite;
    }

    .orbit-option > * {
        position: relative;
        z-index: 1;
    }

    .orbit-option strong {
        display: block;
        font-family: "Space Grotesk";
        font-size: 23px;
        transition: .35s var(--ease);
    }

    .orbit-option span {
        display: block;
        margin-top: 5px;
        color: #a8b6cf;
        font-size: 8.5px;
        line-height: 1.42;
        letter-spacing: .075em;
        text-transform: uppercase;
    }

.orbit-ftp {
    left: -8%;
    top: 42%;
}

.orbit-set {
    right: -8%;
    bottom: 22%;
}

    .orbit-set::before {
        animation-delay: -2.1s;
    }

    .orbit-set::after {
        animation-delay: -1.2s;
    }

.orbit-option:hover, .orbit-option.active {
    transform: scale(1.12);
    border-color: rgba(255,215,112,.54);
    background: linear-gradient(145deg, rgba(22,48,96,.96), rgba(14,29,65,.93));
    box-shadow: 0 18px 55px rgba(17,88,232,.28), 0 0 22px rgba(255,190,72,.12), inset 0 1px rgba(255,255,255,.12);
}

    .orbit-option:hover::after, .orbit-option.active::after {
        opacity: 1;
    }

    .orbit-option.active strong {
        color: var(--emerald);
        text-shadow: 0 0 18px rgba(54,215,163,.3);
    }

@keyframes tabGlitterSweep {
    0%, 58% {
        transform: translateX(-72%) rotate(7deg);
        opacity: 0;
    }

    66% {
        opacity: 1;
    }

    88%, 100% {
        transform: translateX(72%) rotate(7deg);
        opacity: 0;
    }
}

@keyframes tabSparkle {
    0%, 100% {
        filter: brightness(.8);
        transform: translate3d(0,0,0);
    }

    50% {
        filter: brightness(1.45);
        transform: translate3d(2px,-1px,0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .orbit-option::before, .orbit-option::after {
        animation: none;
    }
}

.course-preview {
    position: absolute;
    z-index: 6;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    width: min(480px, 90%);
    padding: 14px 14px 14px 16px;
    display: grid;
    grid-template-columns: 54px 1fr 38px;
    gap: 13px;
    align-items: center;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 17px;
    background: rgba(7,17,37,.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 60px rgba(0,0,0,.27);
}

.preview-code {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(17,88,232,.38), rgba(124,92,255,.35));
    font-family: "Space Grotesk";
    font-weight: 700;
    font-size: 13px;
}

.course-preview strong {
    display: block;
    font-size: 12px;
}

.course-preview p {
    margin: 4px 0 0;
    color: #8796b3;
    font-size: 9.5px;
    line-height: 1.5;
}

.course-preview > a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(255,255,255,.07);
    color: var(--orange);
}

.molecule {
    position: absolute;
    opacity: .45;
}

    .molecule i {
        position: absolute;
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: var(--cyan);
        box-shadow: 0 0 15px rgba(8,183,238,.7);
    }

    .molecule::before, .molecule::after {
        content: "";
        position: absolute;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(8,183,238,.7), transparent);
        transform-origin: left;
    }

.molecule-a {
    width: 130px;
    height: 90px;
    left: 3%;
    top: 16%;
    animation: moleculeDrift 8s ease-in-out infinite;
}

    .molecule-a i:nth-child(1) {
        left: 0;
        top: 40px
    }

    .molecule-a i:nth-child(2) {
        left: 45px;
        top: 0
    }

    .molecule-a i:nth-child(3) {
        left: 88px;
        top: 54px
    }

    .molecule-a i:nth-child(4) {
        left: 124px;
        top: 20px
    }

    .molecule-a::before {
        width: 67px;
        left: 6px;
        top: 43px;
        transform: rotate(-42deg)
    }

    .molecule-a::after {
        width: 92px;
        left: 48px;
        top: 5px;
        transform: rotate(39deg)
    }

.molecule-b {
    width: 90px;
    height: 80px;
    right: 6%;
    top: 34%;
    animation: moleculeDrift 6.5s ease-in-out infinite reverse;
}

    .molecule-b i:nth-child(1) {
        left: 0;
        top: 12px
    }

    .molecule-b i:nth-child(2) {
        left: 52px;
        top: 0
    }

    .molecule-b i:nth-child(3) {
        left: 72px;
        top: 62px
    }

    .molecule-b::before {
        width: 55px;
        left: 6px;
        top: 15px;
        transform: rotate(-12deg)
    }

    .molecule-b::after {
        width: 70px;
        left: 55px;
        top: 5px;
        transform: rotate(74deg)
    }

@keyframes moleculeDrift {
    50% {
        transform: translateY(18px) rotate(7deg);
    }
}

.hero-marquee {
    margin-top: 28px;
    padding: 18px 0;
    display: flex;
    overflow: hidden;
    border-block: 1px solid rgba(255,255,255,.08);
    color: #73829e;
    font: 700 10px "Space Grotesk";
    letter-spacing: .18em;
    white-space: nowrap;
}

    .hero-marquee > div {
        display: flex;
        align-items: center;
        gap: 26px;
        min-width: max-content;
        padding-right: 26px;
        animation: marquee 27s linear infinite;
    }

    .hero-marquee i {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--emerald);
    }

@keyframes marquee {
    to {
        transform: translateX(-100%);
    }
}

.section-heading {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 65px;
}

    .section-heading.compact {
        grid-template-columns: 1fr;
    }

.section-index {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: #7889aa;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

    .section-index::before {
        content: "";
        width: 28px;
        height: 1px;
        background: var(--emerald);
    }

.section-heading h2, .mentor h2, .about-strip h2, .contact h2 {
    font-size: clamp(44px, 5.1vw, 76px);
}

.section-heading > p {
    max-width: 470px;
    margin: 0 0 4px;
    color: #92a0bb;
    font-size: 15px;
    line-height: 1.85;
}

.programmes {
    background: linear-gradient(to bottom, transparent, rgba(8,18,39,.64) 14%, rgba(8,18,39,.7) 86%, transparent);
}

.programme-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    perspective: 1500px;
}

.programme-card {
    position: relative;
    min-height: 715px;
    padding: 34px 36px 30px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
    box-shadow: inset 0 1px rgba(255,255,255,.07), 0 28px 80px rgba(0,0,0,.18);
    transform-style: preserve-3d;
    transition: transform .28s ease-out, border-color .35s, box-shadow .35s;
}

    .programme-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        padding: 1px;
        background: linear-gradient(135deg, transparent 20%, rgba(54,215,163,.5), transparent 55%, rgba(124,92,255,.35));
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: .28;
        transition: opacity .35s;
        pointer-events: none;
    }

    .programme-card:hover {
        border-color: rgba(255,255,255,.2);
        box-shadow: inset 0 1px rgba(255,255,255,.09), 0 35px 100px rgba(0,0,0,.34);
    }

        .programme-card:hover::before {
            opacity: .9;
        }

.card-light {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(62,141,255,.22), transparent 27%);
    opacity: 0;
    transition: opacity .35s;
    pointer-events: none;
}

.programme-card:hover .card-light {
    opacity: 1;
}

.set-card .card-light {
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(124,92,255,.24), transparent 27%);
}

.programme-top {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    color: #7d8ca8;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.programme-symbol {
    position: absolute;
    top: 70px;
    right: -20px;
    width: 250px;
    height: 250px;
    opacity: .2;
    transform: translateZ(18px);
}

    .programme-symbol svg {
        width: 100%;
        height: 100%;
        fill: none;
        stroke: #78a8ff;
        stroke-width: .75;
    }

.set-card .programme-symbol svg {
    stroke: #a99aff;
}

.programme-code {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 110px;
    font: 600 clamp(68px,8vw,114px) "Space Grotesk";
    letter-spacing: -.07em;
    color: transparent;
    -webkit-text-stroke: 1.1px rgba(166,190,236,.5);
    transition: .45s var(--ease);
}

.programme-card:hover .programme-code {
    transform: translateX(8px) scale(1.03);
    -webkit-text-stroke-color: rgba(54,215,163,.75);
}

.set-card:hover .programme-code {
    -webkit-text-stroke-color: rgba(169,154,255,.85);
}

.programme-card h3 {
    position: relative;
    z-index: 1;
    margin: 4px 0 19px;
    font: 600 clamp(31px,3.1vw,45px)/1.05 "Space Grotesk";
    letter-spacing: -.045em;
}

.programme-lead {
    position: relative;
    z-index: 1;
    max-width: 520px;
    color: #a2b0c9;
    font-size: 14px;
    line-height: 1.75;
}

.programme-card ul {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
    margin: 26px 0 33px;
    padding: 0;
    list-style: none;
    color: #d8e0ef;
    font-size: 11px;
}

.programme-card li {
    display: flex;
    gap: 9px;
    line-height: 1.5;
}

    .programme-card li::before {
        content: "+";
        color: var(--emerald);
        font-weight: 800;
    }

.set-card li::before {
    color: #a99aff;
}

.card-link {
    position: absolute;
    z-index: 2;
    left: 36px;
    right: 36px;
    bottom: 30px;
    height: 58px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 15px;
    background: rgba(255,255,255,.055);
    font-size: 12px;
    font-weight: 800;
    transition: .3s;
}

    .card-link span {
        color: var(--orange);
        font-size: 18px;
        transition: .3s;
    }

    .card-link:hover {
        background: rgba(255,255,255,.1);
        border-color: rgba(54,215,163,.38);
    }

        .card-link:hover span {
            transform: translate(3px,-3px);
        }

.outcomes {
    padding-top: 90px;
}

.outcome-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
    box-shadow: inset 0 1px rgba(255,255,255,.04), 0 28px 90px rgba(0,0,0,.18);
}

    .outcome-grid article {
        min-height: 430px;
        padding: 28px 25px 32px;
        position: relative;
        isolation: isolate;
        overflow: hidden;
        background: rgba(255,255,255,.025);
        border-right: 1px solid rgba(255,255,255,.09);
        transition: transform .45s var(--ease), background .45s, box-shadow .45s;
    }

        .outcome-grid article::before {
            content: "";
            position: absolute;
            width: 250px;
            height: 250px;
            left: 50%;
            top: 80px;
            transform: translateX(-50%);
            border-radius: 50%;
            background: radial-gradient(circle, var(--card-glow, rgba(17,88,232,.16)), transparent 68%);
            filter: blur(10px);
            opacity: .55;
            transition: .45s var(--ease);
            z-index: -1;
        }

        .outcome-grid article::after {
            content: "";
            position: absolute;
            inset: 0;
            border-top: 1px solid transparent;
            background: linear-gradient(135deg, rgba(255,255,255,.06), transparent 36%);
            opacity: 0;
            pointer-events: none;
            transition: opacity .45s;
        }

        .outcome-grid article:nth-child(1) {
            --card-glow: rgba(41,210,255,.24);
        }

        .outcome-grid article:nth-child(2) {
            --card-glow: rgba(133,100,255,.25);
        }

        .outcome-grid article:nth-child(3) {
            --card-glow: rgba(255,173,13,.22);
        }

        .outcome-grid article:nth-child(4) {
            --card-glow: rgba(54,215,163,.23);
        }

        .outcome-grid article:last-child {
            border-right: 0;
        }

        .outcome-grid article:hover {
            background: rgba(255,255,255,.058);
            transform: translateY(-8px);
            box-shadow: 0 25px 60px rgba(0,0,0,.2);
        }

            .outcome-grid article:hover::before {
                opacity: .95;
                transform: translateX(-50%) scale(1.12);
            }

            .outcome-grid article:hover::after {
                opacity: 1;
            }

        .outcome-grid article > span {
            color: #6e7f9e;
            font-size: 9px;
            letter-spacing: .13em;
        }

.outcome-visual {
    position: relative;
    width: 100%;
    height: 155px;
    margin: 36px 0 25px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 23px;
    overflow: hidden;
    background: radial-gradient(circle at 50% 95%, rgba(62,141,255,.18), transparent 44%), linear-gradient(145deg, rgba(16,37,78,.75), rgba(6,15,34,.72));
    box-shadow: inset 0 1px rgba(255,255,255,.08), 0 18px 45px rgba(0,0,0,.22);
    transform: translateZ(0);
    transition: transform .45s var(--ease), border-color .45s, box-shadow .45s;
}

    .outcome-visual::before {
        content: "";
        position: absolute;
        inset: 0;
        opacity: .38;
        background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
        background-size: 22px 22px;
        mask-image: linear-gradient(to bottom, #000, transparent 90%);
    }

    .outcome-visual::after {
        content: "";
        position: absolute;
        width: 90px;
        height: 22px;
        left: 50%;
        bottom: 12px;
        transform: translateX(-50%);
        border-radius: 50%;
        background: rgba(0,0,0,.42);
        filter: blur(10px);
    }

    .outcome-visual svg {
        position: relative;
        z-index: 2;
        width: 100%;
        height: 100%;
        overflow: visible;
        filter: drop-shadow(0 15px 18px rgba(0,0,0,.22));
        animation: outcomeFloat 5.4s ease-in-out infinite;
        transition: transform .45s var(--ease), filter .45s;
    }

.outcome-grid article:nth-child(2) .outcome-visual svg {
    animation-delay: -.9s;
}

.outcome-grid article:nth-child(3) .outcome-visual svg {
    animation-delay: -1.8s;
}

.outcome-grid article:nth-child(4) .outcome-visual svg {
    animation-delay: -2.7s;
}

.outcome-grid article:hover .outcome-visual {
    transform: translateY(-4px) scale(1.025);
    border-color: rgba(255,255,255,.2);
    box-shadow: inset 0 1px rgba(255,255,255,.12), 0 25px 55px rgba(0,0,0,.3);
}

    .outcome-grid article:hover .outcome-visual svg {
        transform: scale(1.055) rotate(-1deg);
        filter: drop-shadow(0 20px 23px rgba(0,0,0,.3));
    }

.outcome-visual .spin-slow {
    transform-origin: center;
    animation: outcomeSpin 14s linear infinite;
}

.outcome-visual .spin-reverse {
    transform-origin: center;
    animation: outcomeSpinReverse 11s linear infinite;
}

.outcome-visual .pulse-soft {
    animation: outcomePulse 2.8s ease-in-out infinite;
}

.outcome-visual .bob-one {
    animation: outcomeBob 3.8s ease-in-out infinite;
}

.outcome-visual .bob-two {
    animation: outcomeBob 3.8s ease-in-out -1.7s infinite;
}

.outcome-grid h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 13px;
    font: 600 20px "Space Grotesk";
    letter-spacing: -.035em;
}

.outcome-grid p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #8e9db9;
    font-size: 12px;
    line-height: 1.72;
}

@keyframes outcomeFloat {
    0%, 100% {
        transform: translateY(0) rotate(.2deg)
    }

    50% {
        transform: translateY(-7px) rotate(-.5deg)
    }
}

@keyframes outcomeSpin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes outcomeSpinReverse {
    to {
        transform: rotate(-360deg)
    }
}

@keyframes outcomePulse {
    0%, 100% {
        opacity: .62;
        transform: scale(.95)
    }

    50% {
        opacity: 1;
        transform: scale(1.08)
    }
}

@keyframes outcomeBob {
    0%, 100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-7px)
    }
}

.mentor {
    overflow: hidden;
}

    .mentor::before {
        content: "";
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        left: -350px;
        top: 80px;
        background: radial-gradient(circle, rgba(17,88,232,.16), transparent 65%);
    }

.mentor-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 100px;
    align-items: center;
}

.mentor-visual {
    min-height: 620px;
    display: grid;
    place-items: center;
    position: relative;
}

.mentor-frame {
    position: relative;
    z-index: 2;
    width: min(410px,100%);
    aspect-ratio: .78;
    border-radius: 190px 190px 34px 34px;
    padding: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,.19), rgba(255,255,255,.04));
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 35px 100px rgba(0,0,0,.38), inset 0 1px rgba(255,255,255,.18);
}

    .mentor-frame > img, .mentor-fallback {
        position: absolute;
        inset: 10px;
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        border-radius: 180px 180px 27px 27px;
        object-fit: cover;
        object-position: center 15%;
    }

.mentor-fallback {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 13px;
    background: radial-gradient(circle at 35% 25%, rgba(95,148,255,.32), transparent 30%), linear-gradient(145deg,#112751,#071328 70%);
}

    .mentor-fallback::before {
        content: "";
        width: 170px;
        height: 170px;
        border-radius: 50%;
        background: radial-gradient(circle at 50% 35%, #294d8e 0 22%, transparent 23%), radial-gradient(ellipse at 50% 100%, #1b3768 0 43%, transparent 44%);
        opacity: .75;
    }

    .mentor-fallback span {
        font: 600 44px "Space Grotesk";
        letter-spacing: -.06em;
        color: transparent;
        -webkit-text-stroke: 1px rgba(255,255,255,.65);
    }

    .mentor-fallback small {
        color: #7f91b1;
        font-size: 9px;
        letter-spacing: .16em;
        text-transform: uppercase;
    }

.mentor-tag {
    position: absolute;
    z-index: 3;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 15px;
    background: rgba(5,14,32,.72);
    backdrop-filter: blur(16px);
}

    .mentor-tag span {
        display: block;
        color: var(--emerald);
        font-size: 8px;
        font-weight: 800;
        letter-spacing: .16em;
        text-transform: uppercase;
    }

    .mentor-tag strong {
        display: block;
        margin-top: 4px;
        font: 600 17px "Space Grotesk";
    }

.mentor-orbit {
    position: absolute;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    animation: orbitSpin 35s linear infinite;
}

    .mentor-orbit::before {
        content: "";
        position: absolute;
        inset: 14%;
        border: 1px dashed rgba(124,92,255,.24);
        border-radius: 50%;
    }

    .mentor-orbit span {
        position: absolute;
        border-radius: 50%;
    }

        .mentor-orbit span:nth-child(1) {
            width: 12px;
            height: 12px;
            background: var(--emerald);
            left: 4%;
            top: 45%;
            box-shadow: 0 0 20px rgba(54,215,163,.8)
        }

        .mentor-orbit span:nth-child(2) {
            width: 8px;
            height: 8px;
            background: var(--orange);
            right: 10%;
            top: 15%;
            box-shadow: 0 0 17px rgba(255,173,13,.8)
        }

        .mentor-orbit span:nth-child(3) {
            width: 6px;
            height: 6px;
            background: var(--purple);
            right: 17%;
            bottom: 8%;
            box-shadow: 0 0 17px rgba(124,92,255,.8)
        }

.mentor-statement {
    max-width: 720px;
    margin: 35px 0 0;
    color: #99a8c3;
    font-size: clamp(16px,1.45vw,20px);
    line-height: 1.8;
}

    .mentor-statement strong {
        color: #e6edf9;
        font-weight: 700;
    }

.mentor-points {
    margin-top: 43px;
    border-top: 1px solid rgba(255,255,255,.1);
}

    .mentor-points > div {
        display: grid;
        grid-template-columns: 44px 1fr;
        gap: 16px;
        padding: 18px 0;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .mentor-points span {
        color: var(--emerald);
        font-size: 9px;
        font-weight: 800;
        letter-spacing: .12em;
    }

    .mentor-points p {
        margin: 0;
        color: #a0adc3;
        font-size: 13px;
        line-height: 1.7;
    }

.about-strip {
    padding: 145px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(17,88,232,.14), rgba(124,92,255,.08));
    border-block: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
}

    .about-strip .container {
        position: relative;
    }

    .about-strip .section-index {
        justify-content: center;
    }

    .about-strip h2 {
        max-width: 950px;
        margin: 0 auto;
    }

    .about-strip p {
        max-width: 730px;
        margin: 35px auto 0;
        color: #9cabca;
        font-size: 16px;
        line-height: 1.85;
    }

.about-wordmark {
    position: absolute;
    z-index: -1;
    inset: 50% auto auto 50%;
    transform: translate(-50%,-48%);
    display: flex;
    gap: 20px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.035);
    font: 600 clamp(110px,16vw,240px) "Space Grotesk";
    letter-spacing: -.1em;
    white-space: nowrap;
}

.contact-shell {
    padding: 60px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 38px;
    background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
    box-shadow: var(--shadow);
}

.contact-copy > p {
    max-width: 520px;
    margin: 30px 0 35px;
    color: #92a1bc;
    font-size: 14px;
    line-height: 1.8;
}

.contact-links {
    border-top: 1px solid rgba(255,255,255,.1);
}

    .contact-links a {
        display: grid;
        grid-template-columns: 82px 1fr 30px;
        align-items: center;
        gap: 12px;
        padding: 17px 0;
        border-bottom: 1px solid rgba(255,255,255,.1);
        transition: .25s;
    }

        .contact-links a:hover {
            padding-left: 8px;
        }

    .contact-links small {
        color: #7383a1;
        font-size: 9px;
        font-weight: 800;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .contact-links strong {
        font-size: 12px;
    }

    .contact-links span {
        color: var(--orange);
    }

.enquiry-form {
    padding: 32px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 25px;
    background: rgba(3,9,20,.48);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.enquiry-form label {
    display: block;
    margin-bottom: 15px;
}

    .enquiry-form label > span {
        display: block;
        margin-bottom: 8px;
        color: #8c9bb7;
        font-size: 9px;
        font-weight: 800;
        letter-spacing: .13em;
        text-transform: uppercase;
    }

.enquiry-form input, .enquiry-form textarea, .enquiry-form select {
    width: 100%;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 13px;
    color: #edf3ff;
    background: rgba(255,255,255,.05);
    padding: 14px 15px;
    outline: none;
    transition: .25s;
}

    .enquiry-form input::placeholder, .enquiry-form textarea::placeholder {
        color: #65738f;
    }

    .enquiry-form input:focus, .enquiry-form textarea:focus, .enquiry-form select:focus {
        border-color: rgba(54,215,163,.55);
        background: rgba(255,255,255,.075);
        box-shadow: 0 0 0 4px rgba(54,215,163,.08);
    }

    .enquiry-form select option {
        color: #111;
    }

.enquiry-form textarea {
    resize: vertical;
    min-height: 115px;
}

.enquiry-form .button {
    width: 100%;
    border: 0;
}

.form-status {
    min-height: 20px;
    margin: 12px 0 0;
    color: var(--emerald);
    font-size: 11px;
    text-align: center;
}

.site-footer {
    padding: 75px 0 24px;
    border-top: 1px solid rgba(255,255,255,.08);
    background: rgba(3,7,16,.65);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .6fr .8fr .6fr;
    gap: 55px;
}

.footer-logo {
    width: 190px;
    padding: 8px 12px;
    border-radius: 15px;
    background: white;
}

    .footer-logo img {
        display: block;
        width: 100%;
    }

.footer-brand p {
    max-width: 330px;
    color: #7f8da8;
    font-size: 12px;
    line-height: 1.75;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .footer-links strong {
        margin-bottom: 7px;
        color: #dce4f4;
        font-size: 10px;
        letter-spacing: .13em;
        text-transform: uppercase;
    }

    .footer-links a {
        color: #7d8ba7;
        font-size: 11px;
        transition: .2s;
    }

        .footer-links a:hover {
            color: white;
            transform: translateX(3px);
        }

.footer-bottom {
    margin-top: 55px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #65738d;
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .85s var(--ease), transform .85s var(--ease);
}

    [data-reveal].revealed {
        opacity: 1;
        transform: none;
    }

@media (max-width: 1100px) {
    :root {
        --container: min(100% - 36px, 1040px);
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: clamp(52px,7vw,76px);
    }

    .hero-stage {
        min-height: 590px;
        transform: scale(.9);
        transform-origin: center;
    }

    .section-heading {
        gap: 45px;
    }

    .programme-card {
        min-height: 730px;
    }

        .programme-card ul {
            grid-template-columns: 1fr;
        }

    .outcome-grid {
        grid-template-columns: repeat(2,1fr);
    }

        .outcome-grid article:nth-child(2) {
            border-right: 0;
        }

        .outcome-grid article:nth-child(-n+2) {
            border-bottom: 1px solid rgba(255,255,255,.09);
        }

    .mentor-grid {
        gap: 55px;
    }

    .contact-shell {
        gap: 45px;
        padding: 45px;
    }
}

@media (max-width: 820px) {
    .section {
        padding: 95px 0;
    }

    .site-header {
        inset-block-start: 9px;
    }

    .nav-shell {
        height: 68px;
        padding: 7px;
        border-radius: 19px;
    }

    .brand {
        width: 175px;
        height: 52px;
        border-radius: 13px;
        padding: 5px 11px;
    }

    .menu-toggle {
        display: block;
    }

        .menu-toggle[aria-expanded="true"] span:nth-child(1) {
            transform: translateY(6px) rotate(45deg);
        }

        .menu-toggle[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle[aria-expanded="true"] span:nth-child(3) {
            transform: translateY(-6px) rotate(-45deg);
        }

    .primary-nav {
        position: fixed;
        inset: 86px 16px auto;
        padding: 14px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        border: 1px solid rgba(255,255,255,.14);
        border-radius: 21px;
        background: rgba(5,12,27,.97);
        backdrop-filter: blur(22px);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: .3s var(--ease);
    }

        .primary-nav.open {
            opacity: 1;
            visibility: visible;
            transform: none;
        }

        .primary-nav > a, .dropdown-toggle {
            width: 100%;
            padding: 14px;
            text-align: left;
            justify-content: space-between;
        }

    .nav-login {
        margin: 4px 0 0;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        display: none;
        margin: 4px 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255,255,255,.03);
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .hero {
        padding-top: 122px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-copy {
        text-align: center;
        padding: 35px 0 0;
    }

    .eyebrow, .hero-actions, .hero-proof {
        justify-content: center;
    }

    .hero-copy > p {
        margin-inline: auto;
    }

    .hero-stage {
        min-height: 600px;
        transform: scale(.93);
    }

    .section-heading {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 25px;
    }

    .programme-grid {
        grid-template-columns: 1fr;
    }

    .programme-card {
        min-height: 660px;
    }

        .programme-card ul {
            grid-template-columns: 1fr 1fr;
        }

    .mentor-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .mentor-visual {
        min-height: 590px;
        order: -1;
    }

    .mentor-copy {
        text-align: center;
    }

        .mentor-copy .section-index {
            justify-content: center;
        }

    .mentor-statement {
        margin-inline: auto;
    }

    .mentor-points {
        text-align: left;
    }

    .contact-shell {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

        .footer-grid > div:last-child {
            grid-column: 2 / 3;
        }
}

@media (max-width: 560px) {
    :root {
        --container: min(100% - 24px, 520px);
    }

    .section {
        padding: 5px 0;
    }

    .site-header .nav-shell {
        width: calc(100% - 18px);
    }

    .brand {
        width: 157px;
    }

    .hero {
        padding-top: 102px;
    }

        .hero h1 {
            font-size: clamp(43px,13vw,62px);
        }

    .hero-copy > p {
        font-size: 14px;
        line-height: 1.75;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-proof {
        gap: 13px;
    }

        .hero-proof span {
            font-size: 8px;
        }

    .hero-stage {
        min-height: 490px;
        transform: scale(.8);
        margin: -40px -60px;
    }

    .glass-lens {
        width: 125px;
        height: 125px;
        right: 13%;
    }

    .course-preview {
        bottom: -4%;
    }

    .hero-marquee {
        margin-top: 45px;
    }

    .section-heading h2, .mentor h2, .about-strip h2, .contact h2 {
        font-size: clamp(38px,11vw,52px);
    }

    .programme-card {
        min-height: 715px;
        padding: 26px 24px;
        border-radius: 28px;
    }

    .programme-code {
        margin-top: 105px;
    }

    .programme-card ul {
        grid-template-columns: 1fr;
    }

    .card-link {
        left: 24px;
        right: 24px;
        bottom: 25px;
    }

    .outcome-grid {
        grid-template-columns: 1fr;
    }

        .outcome-grid article {
            min-height: 270px;
            border-right: 0 !important;
            border-bottom: 1px solid rgba(255,255,255,.09);
        }

            .outcome-grid article:last-child {
                border-bottom: 0;
            }

    .outcome-visual {
        height: 165px;
        margin-top: 30px;
    }

    .mentor-visual {
        min-height: 500px;
    }

    .mentor-frame {
        width: 330px;
    }

    .mentor-orbit {
        width: 410px;
        height: 410px;
    }

    .about-strip p {
        font-size: 14px;
    }

    .contact-shell {
        padding: 28px 19px;
        border-radius: 27px;
    }

    .contact-links a {
        grid-template-columns: 65px 1fr 24px;
    }

    .contact-links strong {
        font-size: 10px;
        word-break: break-word;
    }

    .enquiry-form {
        padding: 21px 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-grid > div:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        line-height: 1.6;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}


.nav-shell {
    height: 88px;
    padding: 8px 12px 8px 14px
}

.brand {
    width: 252px;
    height: 70px;
    padding: 5px 10px;
    background: #fff;
    border-radius: 17px;
    overflow: hidden
}

    .brand img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        transform: none
    }

.hero h1 {
    max-width: 650px;
    font-size: clamp(46px,5.25vw,78px);
    line-height: .98;
    letter-spacing: -.058em
}

.hero-copy > p {
    max-width: 590px;
    margin-top: 24px
}

.orbit-option {
    cursor: pointer
}

@media(max-width:1100px) {
    .hero h1 {
        font-size: clamp(44px,6.1vw,68px)
    }

    .brand {
        width: 230px;
        height: 66px
    }
}

@media(max-width:760px) {
    .nav-shell {
        height: 76px
    }

    .brand {
        width: 190px;
        height: 58px;
        padding: 4px 8px
    }

    .hero h1 {
        font-size: clamp(40px,12vw,58px);
        line-height: 1.01
    }

    .hero-copy > p {
        margin-top: 20px
    }
}

.site-header .nav-shell {
    height: 96px !important;
    min-height: 96px !important;
    padding: 6px 10px 6px 12px !important;
}

.site-header .brand {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 252px !important;
    height: 84px !important;
    padding: 5px 10px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    background: #fff !important;
    line-height: 0 !important;
}

    .site-header .brand img {
        display: block !important;
        width: auto !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
        object-position: center center !important;
        margin: auto !important;
        transform: none !important;
    }

.footer-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 78px !important;
    padding: 7px 12px !important;
    overflow: hidden !important;
}

    .footer-logo img {
        display: block !important;
        width: auto !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: 64px !important;
        object-fit: contain !important;
        object-position: center !important;
    }

@media (max-width:820px) {
    .site-header .nav-shell {
        height: 82px !important;
        min-height: 82px !important;
    }

    .site-header .brand {
        width: 210px !important;
        height: 70px !important;
        padding: 4px 8px !important;
    }
}

@media (max-width:560px) {
    .site-header .nav-shell {
        height: 74px !important;
        min-height: 74px !important;
    }

    .site-header .brand {
        width: 176px !important;
        height: 62px !important;
        padding: 4px 7px !important;
        border-radius: 14px !important;
    }
}


.premium-hero {
    --premium-cyan: #43d9ff;
    --premium-blue: #2e72ff;
    --premium-violet: #9a68ff;
    position: relative;
    min-height: 100svh;
    padding: 142px 0 46px;
    overflow: hidden;
    isolation: isolate;
    background: radial-gradient(circle at 73% 47%, rgba(32,96,255,.15), transparent 32%), radial-gradient(circle at 92% 70%, rgba(132,72,255,.10), transparent 28%), linear-gradient(135deg, #030713 0%, #061127 46%, #030815 100%);
}

.premium-hero::before {
    display: none;
}

.premium-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    opacity: .42;
    background-image: linear-gradient(rgba(120,163,255,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(120,163,255,.055) 1px,transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom,black 0%,black 75%,transparent 100%);
}

.hero-aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .26;
}

.hero-aurora-a {
    width: 520px;
    height: 520px;
    right: 20%;
    top: 12%;
    background: #1549d8;
    animation: premiumDrift 12s ease-in-out infinite alternate;
}

.hero-aurora-b {
    width: 420px;
    height: 420px;
    right: -8%;
    bottom: -10%;
    background: #6e36c9;
    animation: premiumDrift 15s ease-in-out infinite alternate-reverse;
}

.premium-hero-shell {
    min-height: calc(100svh - 188px);
    display: grid;
    grid-template-columns: minmax(430px,.82fr) minmax(650px,1.18fr);
    gap: clamp(20px,3vw,58px);
    align-items: center;
    position: relative;
    z-index: 2;
}

.premium-copy {
    padding: 20px 0 30px;
    max-width: 650px;
}

.premium-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 27px;
    color: #9dadca;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

    .premium-kicker span {
        width: 34px;
        height: 1px;
        background: linear-gradient(90deg,var(--premium-cyan),transparent);
        box-shadow: 0 0 12px rgba(67,217,255,.6);
    }

.premium-hero h1 {
    margin: 0;
    max-width: 690px;
    font-family: "Space Grotesk",sans-serif;
    font-size: clamp(52px,5.25vw,82px);
    font-weight: 600;
    letter-spacing: -.068em;
    line-height: .96;
    color: #f8faff;
    text-wrap: balance;
}

    .premium-hero h1 strong {
        display: inline-block;
        font-weight: 600;
        color: transparent;
        background: linear-gradient(92deg,#45a3ff 3%,#637bff 48%,#a56bff 95%);
        -webkit-background-clip: text;
        background-clip: text;
        filter: drop-shadow(0 10px 28px rgba(83,97,255,.22));
    }

.premium-copy > p {
    max-width: 580px;
    margin: 30px 0 0;
    color: #aeb9ce;
    font-size: clamp(15px,1.15vw,18px);
    line-height: 1.72;
}

.premium-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.premium-cta {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 800;
    transition: transform .32s var(--ease),box-shadow .32s var(--ease),background .32s var(--ease);
}

    .premium-cta svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.premium-cta-primary {
    min-width: 215px;
    padding: 0 22px;
    color: #fff;
    background: linear-gradient(112deg,#287dff,#6d57ff 60%,#a050ff);
    box-shadow: 0 16px 42px rgba(57,75,255,.32),inset 0 1px rgba(255,255,255,.32);
}

    .premium-cta-primary:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 58px rgba(69,72,255,.45),inset 0 1px rgba(255,255,255,.4);
    }

.premium-cta-secondary {
    padding: 0 16px;
    color: #c5cede;
}

    .premium-cta-secondary:hover {
        color: #fff;
        transform: translateY(-2px);
    }

.play-dot {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    background: rgba(255,255,255,.045);
}

    .play-dot svg {
        width: 16px;
    }

.premium-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 52px;
}

    .premium-proof > div {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #a5afc1;
        font-size: 11px;
        line-height: 1.45;
    }

.proof-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(13,31,68,.72);
    border: 1px solid rgba(78,134,255,.15);
    box-shadow: inset 0 0 24px rgba(35,98,255,.1);
}

    .proof-icon svg {
        width: 21px;
        height: 21px;
        fill: none;
        stroke: #46bfff;
        stroke-width: 1.65;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.premium-proof > div:nth-child(2) .proof-icon svg {
    stroke: #a475ff;
}

.premium-proof > div:nth-child(3) .proof-icon svg {
    stroke: #42d7df;
}

.premium-visual {
    min-height: 700px;
    position: relative;
    display: grid;
    place-items: center;
    perspective: 1400px;
}

.orbit-glow {
    position: absolute;
    width: min(640px,74vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(25,110,255,.18) 0%,rgba(65,55,210,.075) 38%,transparent 70%);
    filter: blur(4px);
}

.orbit-system {
    position: relative;
    width: min(660px,50vw);
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

    .orbit-system::before, .orbit-system::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
    }

    .orbit-system::before {
        inset: 12%;
        border: 1px dashed rgba(89,108,255,.34);
        animation: orbitRotate 34s linear infinite reverse;
    }

    .orbit-system::after {
        inset: 25%;
        border: 1px solid rgba(105,154,255,.18);
        box-shadow: 0 0 55px rgba(20,98,255,.1);
    }

.orbit-line {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(88,139,255,.18);
}

.orbit-line-1 {
    inset: 2%;
    animation: orbitRotate 48s linear infinite;
}

.orbit-line-2 {
    inset: 15%;
    border-color: rgba(91,127,255,.20);
    animation: orbitRotate 32s linear infinite reverse;
}

.orbit-line-3 {
    inset: 31%;
    border-color: rgba(78,174,255,.24);
}

.orbit-line-4 {
    inset: 39%;
    border: 1px dotted rgba(67,217,255,.34);
    animation: orbitRotate 22s linear infinite;
}

.orbit-line-1::before, .orbit-line-2::before, .orbit-line-3::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 50%;
    left: -4px;
    background: #62d9ff;
    box-shadow: 0 0 18px #37bfff;
}

.orbit-line-2::before {
    left: auto;
    right: 12%;
    top: 1%;
    width: 6px;
    height: 6px;
    background: #8d74ff;
    box-shadow: 0 0 16px #765aff;
}

.orbit-line-3::before {
    top: auto;
    bottom: -3px;
    left: 58%;
    width: 5px;
    height: 5px;
}

.premium-orbit-text {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    animation: orbitRotate 30s linear infinite;
    filter: drop-shadow(0 0 14px rgba(79,117,255,.35));
}

    .premium-orbit-text text {
        fill: url(#premiumTextGradient);
        fill: #8ca6f5;
        font-family: "Space Grotesk",sans-serif;
        font-size: 19px;
        font-weight: 600;
        letter-spacing: 9px;
    }

.orbit-core-wrap {
    position: relative;
    width: 214px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

.orbit-core-radar {
    position: absolute;
    inset: -28px;
    border-radius: 50%;
    background: repeating-conic-gradient(from 0deg,rgba(58,157,255,.48) 0 1deg,transparent 1deg 5deg);
    mask: radial-gradient(circle,transparent 56%,#000 57% 62%,transparent 63%);
    animation: orbitRotate 16s linear infinite;
    opacity: .55;
}

.orbit-core-wrap::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(88,168,255,.55);
    box-shadow: 0 0 25px rgba(38,128,255,.42),inset 0 0 32px rgba(42,117,255,.16);
}

.orbit-core {
    width: 176px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(112,175,255,.38);
    background: radial-gradient(circle at 34% 28%,rgba(60,115,218,.30),rgba(8,24,56,.82) 43%,rgba(3,10,26,.96) 74%);
    box-shadow: inset 0 1px rgba(255,255,255,.2),0 0 70px rgba(20,104,255,.27);
    backdrop-filter: blur(12px);
    animation: coreFloat 5.5s ease-in-out infinite;
}

    .orbit-core img {
        width: 104px;
        height: 104px;
        object-fit: contain;
        border-radius: 26px;
        filter: drop-shadow(0 15px 22px rgba(0,0,0,.38));
    }

.orbit-node {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #72d8ff;
    box-shadow: 0 0 18px #4bbcff;
}

.node-a {
    top: 10%;
    left: 28%;
    animation: nodePulse 2.7s ease-in-out infinite;
}

.node-b {
    right: 7%;
    top: 48%;
    width: 5px;
    height: 5px;
    background: #a37cff;
    animation: nodePulse 3.1s ease-in-out infinite .5s;
}

.node-c {
    bottom: 8%;
    left: 54%;
    width: 5px;
    height: 5px;
    animation: nodePulse 3.4s ease-in-out infinite 1s;
}

.premium-course-card {
    position: absolute;
    z-index: 8;
    width: 410px;
    min-height: 196px;
    display: grid;
    grid-template-columns: 96px 1fr 42px;
    align-items: center;
    gap: 20px;
    padding: 26px 22px 26px 20px;
    border: 1px solid rgba(75,193,255,.62);
    border-radius: 21px;
    background: linear-gradient(145deg,rgba(12,34,74,.88),rgba(5,17,39,.92));
    box-shadow: 0 28px 78px rgba(0,0,0,.36),inset 0 1px rgba(255,255,255,.12),0 0 34px rgba(42,151,255,.10);
    backdrop-filter: blur(22px);
    transform-style: preserve-3d;
    transition: transform .35s var(--ease),border-color .35s,box-shadow .35s;
}

    .premium-course-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        pointer-events: none;
        background: radial-gradient(circle at var(--card-x,20%) var(--card-y,10%),rgba(255,255,255,.14),transparent 32%);
        opacity: .8;
    }

    .premium-course-card:hover {
        border-color: rgba(96,220,255,.95);
        box-shadow: 0 34px 90px rgba(0,0,0,.48),0 0 44px rgba(39,152,255,.17);
    }

.cftp-card {
    right: -4%;
    top: 20%;
}

.set-card {
    right: -4%;
    bottom: 14%;
    border-color: rgba(153,101,255,.70);
    background: linear-gradient(145deg,rgba(20,25,69,.9),rgba(8,13,37,.94));
    box-shadow: 0 28px 78px rgba(0,0,0,.36),inset 0 1px rgba(255,255,255,.12),0 0 36px rgba(129,79,255,.10);
}

    .set-card:hover {
        border-color: rgba(181,126,255,.98);
        box-shadow: 0 34px 90px rgba(0,0,0,.48),0 0 44px rgba(135,79,255,.19);
    }

.course-icon {
    width: 90px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(73,192,255,.42);
    background: radial-gradient(circle,rgba(37,138,217,.18),rgba(6,25,55,.28));
    box-shadow: inset 0 0 28px rgba(43,145,255,.12);
}

    .course-icon svg {
        width: 48px;
        height: 48px;
        fill: none;
        stroke: #40d7ff;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.school-icon {
    border-color: rgba(155,103,255,.5);
    background: radial-gradient(circle,rgba(102,55,208,.20),rgba(13,15,49,.3));
}

    .school-icon svg {
        stroke: #a36cff;
    }

.course-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.course-code {
    margin-bottom: 10px;
    color: #4ad8f5;
    font-family: "Space Grotesk",sans-serif;
    font-size: 31px;
    font-weight: 700;
    letter-spacing: -.045em;
}

.set-card .course-code {
    color: #a27aff;
}

.course-copy strong {
    color: #f6f9ff;
    font-size: 16px;
    line-height: 1.36;
    letter-spacing: -.015em;
}

.course-copy small {
    display: block;
    margin-top: 15px;
    color: #aeb8cc;
    font-size: 12px;
    line-height: 1.55;
}

.course-arrow {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.28);
    color: #eaf3ff;
    transition: transform .3s,background .3s;
}

    .course-arrow svg {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.premium-course-card:hover .course-arrow {
    transform: translateX(4px);
    background: rgba(255,255,255,.08);
}

.hero-scroll {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #74839f;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

    .hero-scroll span {
        width: 28px;
        height: 42px;
        border: 1px solid rgba(255,255,255,.18);
        border-radius: 20px;
        position: relative;
    }

        .hero-scroll span::after {
            content: "";
            position: absolute;
            width: 3px;
            height: 7px;
            border-radius: 3px;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            background: #67cfff;
            animation: scrollDot 1.7s ease-in-out infinite;
        }

@keyframes orbitRotate {
    to {
        transform: rotate(360deg);
    }
}

@keyframes coreFloat {
    0%, 100% {
        transform: translateY(-4px)
    }

    50% {
        transform: translateY(7px)
    }
}

@keyframes nodePulse {
    0%, 100% {
        opacity: .45;
        transform: scale(.75)
    }

    50% {
        opacity: 1;
        transform: scale(1.35)
    }
}

@keyframes premiumDrift {
    from {
        transform: translate3d(-2%,0,0) scale(1)
    }

    to {
        transform: translate3d(5%,4%,0) scale(1.12)
    }
}

@keyframes scrollDot {
    0% {
        opacity: 0;
        transform: translate(-50%,0)
    }

    35% {
        opacity: 1
    }

    100% {
        opacity: 0;
        transform: translate(-50%,15px)
    }
}

@media (max-width:1260px) {
    .premium-hero-shell {
        grid-template-columns: minmax(390px,.8fr) minmax(560px,1.2fr);
    }

    .orbit-system {
        width: min(590px,52vw);
        transform: translateX(-20px);
    }

    .premium-course-card {
        width: 365px;
        min-height: 178px;
        grid-template-columns: 78px 1fr 38px;
        gap: 16px;
        padding: 22px 18px;
    }

    .course-icon {
        width: 76px;
    }

        .course-icon svg {
            width: 40px;
            height: 40px;
        }

    .cftp-card, .set-card {
        right: -1%;
    }
}

@media (max-width:1050px) {
    .premium-hero {
        padding-top: 128px;
    }

    .premium-hero-shell {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 22px;
    }

    .premium-copy {
        max-width: 760px;
        text-align: left;
        margin: auto;
        padding-top: 35px;
    }

    .premium-kicker, .premium-actions, .premium-proof {
        justify-content: center;
    }

    .premium-copy > p {
        margin-inline: auto;
    }

    .premium-visual {
        min-height: 720px;
        margin-top: -30px;
    }

    .orbit-system {
        width: min(620px,82vw);
        transform: none;
    }

    .cftp-card {
        right: 1%;
        top: 17%;
    }

    .set-card {
        right: 1%;
        bottom: 15%;
    }
}

@media (max-width:760px) {
    .premium-hero {
        padding: 118px 0 65px;
    }

    .premium-hero-shell {
        width: min(100% - 28px,1240px);
    }

    .premium-kicker {
        font-size: 9px;
        letter-spacing: .13em;
    }

    .premium-hero h1 {
        font-size: clamp(45px,13vw,66px);
        line-height: .98;
    }

    .premium-copy > p {
        font-size: 15px;
        line-height: 1.65;
        text-align: justify;
    }

    .premium-actions {
        flex-direction: column;
        align-items: stretch;
        max-width: 360px;
        margin-inline: auto;
    }

    .premium-cta {
        width: 100%;
    }

    .premium-proof {
        gap: 15px;
        margin-top: 38px;
    }

        .premium-proof > div {
            flex: 1 1 95px;
            justify-content: center;
            font-size: 9px;
        }

    .proof-icon {
        width: 38px;
        height: 38px;
    }

    .premium-visual {
        min-height: 730px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 14px;
        padding-top: 20px;
    }

    .orbit-glow {
        top: 0;
    }

    .orbit-system {
        width: min(470px,104vw);
        flex: 0 0 auto;
        margin-bottom: -40px;
    }

    .premium-orbit-text text {
        font-size: 17px;
        letter-spacing: 8px;
    }

    .orbit-core-wrap {
        width: 170px;
    }

    .orbit-core {
        width: 140px;
    }

        .orbit-core img {
            width: 84px;
            height: 84px;
        }

    .premium-course-card {
        position: relative;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: min(100%,440px);
        min-height: 150px;
        grid-template-columns: 68px 1fr 34px;
        gap: 14px;
        padding: 18px 16px;
    }

    .course-icon {
        width: 66px;
    }

        .course-icon svg {
            width: 35px;
            height: 35px;
        }

    .course-code {
        font-size: 25px;
        margin-bottom: 6px;
    }

    .course-copy strong {
        font-size: 14px;
    }

    .course-copy small {
        margin-top: 8px;
        font-size: 10px;
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width:480px) {
    .premium-hero h1 br:nth-of-type(1), .premium-hero h1 br:nth-of-type(2) {
        display: none;
    }

    .premium-hero h1 {
        font-size: 44px;
    }

    .premium-proof {
        display: grid;
        grid-template-columns: repeat(3,1fr);
    }

        .premium-proof > div {
            flex-direction: column;
            text-align: center;
            gap: 7px;
        }

    .premium-visual {
        min-height: 700px;
        width: 100%;
    }

    .orbit-system {
        width: 100%;
        max-width: 116vw;
    }
}

@media (prefers-reduced-motion: reduce) {
    .premium-orbit-text, .orbit-line, .orbit-system::before, .orbit-core-radar, .orbit-core, .hero-aurora, .orbit-node, .hero-scroll span::after {
        animation: none !important;
    }
}


/* Balanced desktop orbit layout: smaller programme cards keep the centre visible */
@media (min-width:761px) {
    .orbit-core-wrap {
        z-index: 10;
    }

    .premium-course-card {
        width: 320px;
        min-height: 150px;
        grid-template-columns: 68px minmax(0,1fr) 32px;
        gap: 14px;
        padding: 18px 15px 18px 16px;
        border-radius: 18px;
    }

    .cftp-card {
        right: -5%;
        top: 16%;
    }

    .set-card {
        right: -5%;
        bottom: 14%;
    }

    .course-icon {
        width: 64px;
    }

        .course-icon svg {
            width: 34px;
            height: 34px;
        }

    .course-code {
        margin-bottom: 6px;
        font-size: 25px;
    }

    .course-copy strong {
        font-size: 13px;
        line-height: 1.32;
    }

    .course-copy small {
        margin-top: 8px;
        font-size: 10px;
        line-height: 1.45;
    }

    .course-arrow {
        width: 32px;
        height: 32px;
    }

        .course-arrow svg {
            width: 15px;
            height: 15px;
        }
}

@media (min-width:761px) and (max-width:1260px) {
    .premium-course-card {
        width: 292px;
        min-height: 140px;
        grid-template-columns: 60px minmax(0,1fr) 30px;
        gap: 12px;
        padding: 16px 13px 16px 14px;
    }

    .course-icon {
        width: 58px;
    }

        .course-icon svg {
            width: 31px;
            height: 31px;
        }

    .course-code {
        font-size: 23px;
    }

    .course-copy strong {
        font-size: 12px;
    }

    .course-copy small {
        font-size: 9.5px;
    }

    .cftp-card, .set-card {
        right: 7%;
    }
}


/* Premium animated art — programme cards only */
.programme-card {
    min-height: 770px;
    background: radial-gradient(circle at 50% 13%, rgba(62,139,255,.115), transparent 31%), linear-gradient(145deg, rgba(255,255,255,.083), rgba(255,255,255,.032));
}

    .programme-card.set-card {
        background: radial-gradient(circle at 50% 13%, rgba(135,82,255,.14), transparent 32%), linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.03));
    }

.programme-motion-art {
    position: relative;
    z-index: 1;
    height: 275px;
    margin: 18px -8px 4px;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 27px;
    overflow: hidden;
    transform: translateZ(22px);
    background: linear-gradient(180deg, rgba(255,255,255,.036), rgba(255,255,255,.006)), radial-gradient(circle at 50% 35%, rgba(40,136,255,.15), transparent 52%);
    box-shadow: inset 0 1px rgba(255,255,255,.06), 0 22px 45px rgba(0,0,0,.16);
}

.set-motion-art {
    background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.006)), radial-gradient(circle at 50% 34%, rgba(128,78,255,.17), transparent 52%);
}

.programme-motion-art::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 31px 31px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.72), transparent 92%);
    pointer-events: none;
}

.programme-motion-art::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(115deg, transparent 18%, rgba(255,255,255,.095) 43%, transparent 59%);
    transform: translateX(-130%);
    animation: programmeSheen 7.5s ease-in-out infinite;
    pointer-events: none;
}

.programme-motion-art svg {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.art-aurora {
    position: absolute;
    z-index: 0;
    width: 250px;
    height: 250px;
    left: 50%;
    top: 42%;
    border-radius: 50%;
    transform: translate(-50%,-50%);
    background: radial-gradient(circle, rgba(51,217,255,.19), rgba(69,92,255,.08) 42%, transparent 70%);
    filter: blur(12px);
    animation: artAurora 5.2s ease-in-out infinite;
}

.set-motion-art .art-aurora {
    background: radial-gradient(circle, rgba(168,91,255,.22), rgba(57,167,255,.08) 45%, transparent 70%);
    animation-delay: -1.3s;
}

.art-caption {
    position: absolute;
    z-index: 4;
    left: 19px;
    bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #93a7ca;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

    .art-caption span {
        width: 24px;
        height: 1px;
        background: linear-gradient(90deg,#39f0d0,#37a2ff);
        box-shadow: 0 0 10px rgba(55,162,255,.65);
    }

.set-motion-art .art-caption span {
    background: linear-gradient(90deg,#a36dff,#ffbf58);
    box-shadow: 0 0 10px rgba(163,109,255,.65);
}

.programme-code {
    width: max-content;
    margin-top: 12px;
    padding: 7px 11px;
    border: 1px solid rgba(84,226,255,.25);
    border-radius: 999px;
    color: #71ecff;
    -webkit-text-stroke: 0;
    background: rgba(30,184,255,.08);
    font: 800 11px "Space Grotesk";
    letter-spacing: .16em;
    box-shadow: inset 0 1px rgba(255,255,255,.06), 0 0 24px rgba(47,200,255,.07);
}

.set-card .programme-code {
    color: #bc9cff;
    border-color: rgba(170,112,255,.28);
    background: rgba(135,80,255,.1);
}

.programme-card:hover .programme-code {
    transform: translateX(0) scale(1.03);
    -webkit-text-stroke-color: transparent;
}

.programme-card h3 {
    margin-top: 13px;
}

.programme-card:hover .programme-motion-art {
    border-color: rgba(101,223,255,.25);
    box-shadow: inset 0 1px rgba(255,255,255,.08), 0 26px 55px rgba(0,0,0,.22), 0 0 40px rgba(27,168,255,.07);
}

.programme-card.set-card:hover .programme-motion-art {
    border-color: rgba(174,116,255,.28);
    box-shadow: inset 0 1px rgba(255,255,255,.08), 0 26px 55px rgba(0,0,0,.22), 0 0 40px rgba(135,80,255,.08);
}

.art-main-object {
    transform-box: fill-box;
    transform-origin: center;
    animation: artMainFloat 4.4s ease-in-out infinite;
}

.set-motion-art .art-main-object {
    animation-delay: -1.1s;
}

.art-float {
    transform-box: fill-box;
    transform-origin: center;
    animation: artFloat 4.8s ease-in-out infinite;
}

.art-float-right {
    animation-delay: -1.7s;
}

.art-float-mini {
    animation-delay: -2.8s;
}

.set-float-left {
    animation-delay: -.8s;
}

.set-float-right {
    animation-delay: -2.2s;
}

.art-orbit {
    transform-box: fill-box;
    transform-origin: center;
    animation: artOrbit 18s linear infinite;
}

.art-orbit-b {
    animation-direction: reverse;
    animation-duration: 21s;
}

.art-node {
    transform-box: fill-box;
    transform-origin: center;
    animation: artNode 3.5s ease-in-out infinite;
}

.art-node-b, .art-node-d {
    animation-delay: -1.75s;
}

.art-pulse {
    transform-box: fill-box;
    transform-origin: center;
    animation: artPulse 3.8s ease-in-out infinite;
}

.art-bubbles circle {
    transform-box: fill-box;
    transform-origin: center;
    animation: artBubble 3s ease-in-out infinite;
}

    .art-bubbles circle:nth-child(2) {
        animation-delay: -.7s
    }

    .art-bubbles circle:nth-child(3) {
        animation-delay: -1.5s
    }

    .art-bubbles circle:nth-child(4) {
        animation-delay: -2.1s
    }

.cap-float {
    transform-box: fill-box;
    transform-origin: center;
    animation: capFloat 3.8s ease-in-out infinite;
}

.achievement-star {
    transform-box: fill-box;
    transform-origin: center;
    animation: starFloat 4s ease-in-out infinite;
}

.rising-dots circle {
    animation: dotPulse 2.1s ease-in-out infinite;
}

    .rising-dots circle:nth-child(2) {
        animation-delay: -.7s
    }

    .rising-dots circle:nth-child(3) {
        animation-delay: -1.4s
    }

.art-spark {
    transform-box: fill-box;
    transform-origin: center;
    animation: sparkTwinkle 2.8s ease-in-out infinite;
}

.art-spark-b, .art-spark-c {
    animation-delay: -1.35s;
}

@keyframes programmeSheen {
    0%, 68% {
        transform: translateX(-130%)
    }

    84%, 100% {
        transform: translateX(130%)
    }
}

@keyframes artAurora {
    0%, 100% {
        transform: translate(-50%,-50%) scale(.92);
        opacity: .7
    }

    50% {
        transform: translate(-50%,-50%) scale(1.12);
        opacity: 1
    }
}

@keyframes artMainFloat {
    0%, 100% {
        transform: translateY(2px) rotate(-.3deg)
    }

    50% {
        transform: translateY(-9px) rotate(.5deg)
    }
}

@keyframes artFloat {
    0%, 100% {
        transform: translateY(4px) rotate(-2deg)
    }

    50% {
        transform: translateY(-9px) rotate(2deg)
    }
}

@keyframes artOrbit {
    to {
        transform: rotate(360deg)
    }
}

@keyframes artNode {
    0%, 100% {
        transform: scale(.84);
        opacity: .65
    }

    50% {
        transform: scale(1.15);
        opacity: 1
    }
}

@keyframes artPulse {
    0%, 100% {
        transform: scale(.9);
        opacity: .35
    }

    50% {
        transform: scale(1.1);
        opacity: .72
    }
}

@keyframes artBubble {
    0%, 100% {
        transform: translateY(7px) scale(.75);
        opacity: .25
    }

    50% {
        transform: translateY(-8px) scale(1.15);
        opacity: 1
    }
}

@keyframes capFloat {
    0%, 100% {
        transform: translateY(2px) rotate(-1deg)
    }

    50% {
        transform: translateY(-9px) rotate(1.5deg)
    }
}

@keyframes starFloat {
    0%, 100% {
        transform: translateY(3px) rotate(-4deg)
    }

    50% {
        transform: translateY(-8px) rotate(6deg)
    }
}

@keyframes dotPulse {
    0%, 100% {
        opacity: .35
    }

    50% {
        opacity: 1
    }
}

@keyframes sparkTwinkle {
    0%, 100% {
        transform: scale(.72) rotate(0);
        opacity: .45
    }

    50% {
        transform: scale(1.12) rotate(18deg);
        opacity: 1
    }
}

@media (max-width:1100px) {
    .programme-card {
        min-height: 805px;
    }

    .programme-motion-art {
        height: 260px;
    }
}

@media (max-width:820px) {
    .programme-card {
        min-height: 750px;
    }

    .programme-motion-art {
        height: 270px;
    }
}

@media (max-width:560px) {
    .programme-card {
        min-height: 780px;
    }

    .programme-motion-art {
        height: 235px;
        margin-inline: -10px;
        border-radius: 22px;
    }

        .programme-motion-art svg {
            width: 116%;
            margin-left: -8%;
        }

    .art-caption {
        left: 14px;
        bottom: 10px;
        font-size: 7px;
    }

    .programme-code {
        margin-top: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .programme-motion-art::after, .art-aurora, .art-main-object, .art-float, .art-orbit, .art-node, .art-pulse, .art-bubbles circle, .cap-float, .achievement-star, .rising-dots circle, .art-spark {
        animation: none !important;
    }
}

.programme-card[data-programme-href] {
    cursor: pointer;
}

.programme-card[data-programme-href]:focus-visible {
    outline: 2px solid #7fdcff;
    outline-offset: 5px;
}

.programme-heading {
    margin-bottom: 48px;
}

.programme-card {
    min-height: 790px;
}

    .programme-card .programme-code {
        margin-top: 20px;
        padding: 10px 16px 9px;
        font-size: 18px;
        line-height: 1;
        letter-spacing: .13em;
        border-width: 1px;
    }

    .programme-card h3 {
        margin: 13px 0 20px;
        font-size: clamp(34px, 3vw, 46px);
        line-height: 1.03;
    }

.programme-motion-art {
    margin-top: 0;
    margin-bottom: 22px;
}

@media (max-width: 760px) {
    .programme-heading {
        margin-bottom: 34px;
    }

    .programme-card {
        min-height: 780px;
    }

        .programme-card .programme-code {
            margin-top: 17px;
            padding: 9px 14px 8px;
            font-size: 16px;
        }

        .programme-card h3 {
            margin-top: 11px;
            margin-bottom: 17px;
            font-size: clamp(31px, 9vw, 42px);
        }

    .programme-motion-art {
        margin-top: 0;
        margin-bottom: 19px;
    }
}


.programme-heading {
    position: relative;
    z-index: 3;
    margin-bottom: 105px;
}

.programme-heading h2 {
    max-width: 1120px;
}

.programme-grid {
    position: relative;
    z-index: 1;
    margin-top: 0;
}

@media (max-width: 1100px) {
    .programme-heading {
        margin-bottom: 78px;
    }

        .programme-heading h2 {
            max-width: 900px;
        }
}

@media (max-width: 760px) {
    .programme-heading {
        margin-bottom: 48px;
    }

        .programme-heading h2 {
            max-width: 100%;
        }
}


.programme-heading {
    display: block;
    margin-bottom: 64px;
}

.programme-heading > div {
    width: 100%;
}

.programme-heading .programme-intro-copy {
    max-width: 760px;
    margin: 28px 0 0;
    color: #92a0bb;
    font-size: clamp(16px, 1.35vw, 20px);
    line-height: 1.75;
}

@media (max-width: 760px) {
    .programme-heading {
        margin-bottom: 44px;
    }

        .programme-heading .programme-intro-copy {
            margin-top: 22px;
            max-width: 100%;
            font-size: 15px;
            line-height: 1.7;
        }
}


.programme-heading {
    position: relative;
    z-index: 3;
    margin-bottom: 92px;
}

.programme-heading h2 {
    max-width: 1280px;
}

.programme-heading .programme-intro-copy {
    width: fit-content;
    max-width: 690px;
    margin: 30px 0 0;
    color: #92a0bb;
    font-size: clamp(15px, 1.2vw, 19px);
    line-height: 1.7;
}

.programme-grid {
    position: relative;
    z-index: 1;
    margin-top: 0;
}

@media (max-width: 900px) {
    .programme-heading {
        margin-bottom: 58px;
    }

        .programme-heading .programme-intro-copy {
            max-width: 620px;
        }
}

@media (max-width: 760px) {
    .programme-heading {
        margin-bottom: 44px;
    }

        .programme-heading .programme-intro-copy {
            width: 100%;
            max-width: 100%;
            margin-top: 22px;
            font-size: 15px;
            line-height: 1.7;
        }

        .programme-heading .intro-desktop-break {
            display: none;
        }
}


.about-strip .container {
    position: relative;
    overflow: visible;
    isolation: isolate;
}

.purpose-art {
    position: absolute;
    top: 50%;
    width: 230px;
    height: 230px;
    transform: translateY(-42%);
    pointer-events: none;
    z-index: 0;
    opacity: .95;
}

.purpose-art-left {
    left: 18px;
}

.purpose-art-right {
    right: 18px;
}

.purpose-art > span {
    position: absolute;
    display: block;
}

.purpose-glow {
    inset: 36px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(101,126,255,.18), rgba(41,79,182,.05) 55%, transparent 72%);
    filter: blur(4px);
}

.purpose-orbit {
    border: 1px solid rgba(115,150,255,.26);
    border-radius: 50%;
}

.purpose-art-left .orbit-a {
    inset: 36px 18px 60px 22px;
    transform: rotate(8deg);
}

.purpose-art-left .orbit-b {
    inset: 62px 30px 30px 46px;
    transform: rotate(-18deg);
}

.purpose-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 0 16px currentColor;
}

.purpose-art-left .dot-a {
    top: 52px;
    left: 54px;
    color: #59d3ff;
    background: currentColor;
}

.purpose-art-left .dot-b {
    right: 30px;
    bottom: 58px;
    color: #9e7cff;
    background: currentColor;
}

.purpose-book {
    left: 58px;
    top: 80px;
    width: 116px;
    height: 78px;
}

.book-page {
    position: absolute;
    top: 10px;
    width: 52px;
    height: 48px;
    border: 1px solid rgba(207,223,255,.72);
    background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(72,122,255,.06));
    box-shadow: 0 12px 32px rgba(49,86,181,.14);
}

.book-left {
    left: 6px;
    border-radius: 16px 10px 10px 16px;
    transform: skewY(-10deg);
}

.book-right {
    right: 6px;
    border-radius: 10px 16px 16px 10px;
    transform: skewY(10deg);
}

.book-spine {
    left: 50%;
    top: 2px;
    width: 2px;
    height: 58px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(86,151,255,.22));
    box-shadow: 0 0 15px rgba(118,132,255,.24);
}

.purpose-ring {
    border-radius: 50%;
    border: 1px solid rgba(182,160,255,.28);
}

.purpose-art-right .ring-a {
    inset: 48px;
}

.purpose-art-right .ring-b {
    inset: 76px;
}

.purpose-art-right .dot-c {
    top: 56px;
    right: 56px;
    color: #f7bf49;
    background: currentColor;
}

.purpose-art-right .dot-d {
    left: 48px;
    bottom: 66px;
    color: #44d8b2;
    background: currentColor;
}

.purpose-growth {
    left: 62px;
    top: 76px;
    width: 112px;
    height: 96px;
}

.growth-line {
    position: absolute;
    left: 8px;
    right: 18px;
    bottom: 20px;
    height: 2px;
    background: linear-gradient(90deg, rgba(77,178,255,.3), rgba(186,145,255,.95));
    transform: rotate(-28deg);
    transform-origin: left center;
    box-shadow: 0 0 14px rgba(141,112,255,.24);
}

.growth-arrow {
    right: 6px;
    top: 8px;
    width: 24px;
    height: 24px;
    border-top: 2px solid rgba(255,255,255,.78);
    border-right: 2px solid rgba(255,255,255,.78);
    transform: rotate(22deg);
    box-shadow: 1px -1px 14px rgba(154,126,255,.18);
}

.purpose-star {
    left: 86px;
    top: 44px;
    width: 22px;
    height: 22px;
    background: radial-gradient(circle at 50% 50%, #ffe08a 0 48%, rgba(255,224,138,.15) 50% 100%);
    clip-path: polygon(50% 0%, 61% 37%, 100% 50%, 61% 63%, 50% 100%, 39% 63%, 0% 50%, 39% 37%);
    filter: drop-shadow(0 0 14px rgba(255,213,102,.32));
}

@keyframes purposeFloatA {
    0%, 100% {
        transform: translateY(-42%);
    }

    50% {
        transform: translateY(-46%);
    }
}

@keyframes purposeFloatB {
    0%, 100% {
        transform: translateY(-42%);
    }

    50% {
        transform: translateY(-39%);
    }
}

.purpose-art-left {
    animation: purposeFloatA 6.8s ease-in-out infinite;
}

.purpose-art-right {
    animation: purposeFloatB 7.4s ease-in-out infinite;
}

@media (max-width: 1280px) {
    .purpose-art {
        width: 190px;
        height: 190px;
    }

    .purpose-art-left {
        left: -4px;
    }

    .purpose-art-right {
        right: -4px;
    }
}

@media (max-width: 980px) {
    .purpose-art {
        opacity: .75;
        transform: translateY(-35%) scale(.88);
    }
}

@media (max-width: 760px) {
    .purpose-art {
        display: none;
    }
}


