/* =========================================================
   APURAX TECHNOLOGIES
   PROFESSIONAL CORPORATE DESIGN SYSTEM
========================================================= */

:root {

    --bg: #060a13;
    --bg-soft: #0a101d;
    --panel: rgba(15, 24, 41, .78);
    --panel-solid: #0d1626;

    --gold: #d8ad4f;
    --gold-bright: #f1cf78;

    --cyan: #25e1d1;
    --cyan-soft: #75e8df;

    --white: #f4f7fb;
    --text: #c7d0df;
    --muted: #8b98aa;

    --line: rgba(255,255,255,.09);

    --radius: 22px;

    --shadow:
        0 25px 70px rgba(0,0,0,.35);

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    background:
        radial-gradient(
            circle at 20% 10%,
            rgba(37,225,209,.06),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 20%,
            rgba(216,173,79,.06),
            transparent 30%
        ),
        var(--bg);

    color: var(--white);

    font-family:
        "Inter",
        sans-serif;

    overflow-x: hidden;

}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select {
    font: inherit;
}


/* =========================================================
   BACKGROUND
========================================================= */

.background-effects {
    position: fixed;
    inset: 0;
    z-index: -10;
    pointer-events: none;
    overflow: hidden;
}

.grid-background {

    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: 70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 85%
        );

}

.ambient {

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: .15;

    animation:
        ambientMove 12s ease-in-out infinite alternate;

}

.ambient-one {
    background: var(--cyan);
    top: -200px;
    left: -180px;
}

.ambient-two {
    background: var(--gold);
    right: -200px;
    top: 20%;
    animation-delay: -4s;
}

.ambient-three {
    background: #334dff;
    left: 30%;
    bottom: -300px;
    animation-delay: -7s;
}

@keyframes ambientMove {

    0% {
        transform: translate3d(0,0,0) scale(1);
    }

    100% {
        transform: translate3d(80px,-40px,0) scale(1.15);
    }

}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    height: 86px;

    z-index: 1000;

    border-bottom:
        1px solid rgba(255,255,255,.07);

    background:
        rgba(6,10,19,.68);

    backdrop-filter:
        blur(18px);

    transition:
        .35s ease;

}

.navbar.scrolled {

    background:
        rgba(6,10,19,.92);

    box-shadow:
        0 10px 40px rgba(0,0,0,.25);

}

.nav-container {

    max-width: 1280px;

    height: 100%;

    margin: auto;

    padding:
        0 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

}


/* BRAND */

.brand {

    display: flex;

    align-items: center;

    gap: 12px;

    min-width: 245px;

}

.brand-logo {

    width: 64px;
    height: 64px;

    border-radius: 12px;

    overflow: hidden;

    border:
        1px solid rgba(255,255,255,.15);

    box-shadow:
        0 0 25px rgba(37,225,209,.08);

}

.brand-logo img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}

.brand-name {

    display: block;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 29px;

    font-weight: 800;

    letter-spacing: -.8px;

}

.brand-name span {
    color: var(--gold-bright);
}

.brand-subtitle {

    display: block;

    margin-top: 2px;

    color: #718097;

    font-family:
        monospace;

    font-size: 9px;

    letter-spacing: 3px;

}


/* NAV */

.desktop-nav {

    display: flex;

    align-items: center;

    gap: 5px;

}

.nav-link,
.nav-dropdown-btn {

    border: 0;

    background: none;

    color: #aeb8c9;

    padding: 12px 10px;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition: .25s;

}

.nav-link:hover,
.nav-dropdown-btn:hover,
.nav-link.active {

    color: white;

}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-btn {

    display: flex;

    align-items: center;

    gap: 7px;

}

.nav-dropdown-btn i {

    font-size: 10px;

    transition: .25s;

}

.nav-dropdown:hover
.nav-dropdown-btn i {

    transform: rotate(180deg);

}


/* DROPDOWN */

.dropdown-menu {

    position: absolute;

    top: calc(100% + 14px);

    left: 50%;

    transform:
        translateX(-50%)
        translateY(10px);

    width: 300px;

    padding: 10px;

    background:
        rgba(11,18,31,.96);

    border:
        1px solid var(--line);

    border-radius: 17px;

    box-shadow:
        0 30px 80px rgba(0,0,0,.5);

    backdrop-filter:
        blur(25px);

    opacity: 0;

    visibility: hidden;

    transition:
        .25s ease;

}

.nav-dropdown:hover
.dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform:
        translateX(-50%)
        translateY(0);

}

.dropdown-menu a {

    display: flex;

    gap: 13px;

    padding: 12px;

    border-radius: 12px;

    transition: .25s;

}

.dropdown-menu a:hover {

    background:
        rgba(255,255,255,.06);

    transform:
        translateX(4px);

}

.dropdown-menu strong {

    display: block;

    font-size: 13px;

}

.dropdown-menu small {

    display: block;

    margin-top: 4px;

    color: var(--muted);

    font-size: 11px;

}

.dropdown-icon {

    min-width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background:
        rgba(255,255,255,.05);

}

.ai-icon {
    color: var(--gold-bright);
}

.cloud-icon,
.cyber-icon,
.data-icon {
    color: var(--cyan);
}

.leadership-icon {
    color: #b79cff;
}

.programmes-dropdown {
    width: 330px;
}

.program-number {

    min-width: 32px;

    color: var(--gold-bright);

    font-family: monospace;

    font-size: 12px;

}


/* BUTTONS */

.btn {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border-radius: 12px;

    padding: 13px 19px;

    border: 1px solid transparent;

    font-weight: 700;

    cursor: pointer;

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;

}

.btn:hover {

    transform:
        translateY(-3px);

}

.btn-gold {

    color: #101318;

    background:
        linear-gradient(
            135deg,
            #e2b85a,
            #f1cf78
        );

    box-shadow:
        0 10px 30px rgba(216,173,79,.18);

}

.btn-gold:hover {

    box-shadow:
        0 15px 40px rgba(216,173,79,.3);

}

.btn-outline {

    color: white;

    border:
        1px solid rgba(255,255,255,.17);

    background:
        rgba(255,255,255,.025);

}

.btn-outline:hover {

    border-color:
        rgba(37,225,209,.45);

    background:
        rgba(37,225,209,.05);

}

.btn-large {

    padding:
        15px 22px;

}

.btn-video {

    color: #cbd5e5;

    background:
        rgba(255,255,255,.03);

    border:
        1px solid rgba(255,255,255,.09);

}

.play-icon {

    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(37,225,209,.1);

    color: var(--cyan);

}

.nav-actions {

    display: flex;

    gap: 10px;

}


/* MOBILE */

.mobile-menu-btn {

    display: none;

    width: 44px;
    height: 44px;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid var(--line);

    border-radius: 10px;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 5px;

}

.mobile-menu-btn span {

    width: 20px;
    height: 2px;

    background: white;

    transition: .3s;

}

.mobile-nav {

    position: fixed;

    top: 86px;

    left: 0;
    right: 0;

    padding: 20px;

    z-index: 999;

    display: none;

    flex-direction: column;

    gap: 5px;

    background:
        rgba(7,12,21,.98);

    border-bottom:
        1px solid var(--line);

    transform:
        translateY(-20px);

    opacity: 0;

    pointer-events: none;

    transition: .3s;

}

.mobile-nav.open {

    transform:
        translateY(0);

    opacity: 1;

    pointer-events: auto;

}

.mobile-nav > a {

    padding: 13px;

    border-radius: 10px;

    color: var(--text);

}

.mobile-nav > a:hover {

    background:
        rgba(255,255,255,.05);

}

.mobile-buttons {

    display: grid;

    gap: 10px;

    margin-top: 10px;

}


/* =========================================================
   HERO
========================================================= */

.hero {

    min-height: 100vh;

    padding:
        150px 25px 70px;

    position: relative;

}

.hero-container {

    max-width: 1280px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 30px;

}

.hero-content {

    max-width: 700px;

}

.eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--cyan);

    font-family: monospace;

    font-size: 13px;

    letter-spacing: 2.5px;

}

.eyebrow-line {

    width: 28px;
    height: 1px;

    background: var(--cyan);

}

.hero h1 {

    margin:
        25px 0;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(3.5rem, 6vw, 5.8rem);

    line-height: .98;

    letter-spacing:
        -4px;

}

.gradient-text {

    background:
        linear-gradient(
            100deg,
            var(--gold-bright),
            #a9d58a
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;

}

.gradient-text.second {

    background:
        linear-gradient(
            100deg,
            #75e5bc,
            var(--cyan)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;

}

.hero-description {

    max-width: 670px;

    color: var(--text);

    font-size: 18px;

    line-height: 1.8;

}

.hero-buttons {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;

}

.hero-features {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 40px;

    color: #8d99aa;

}

.feature {

    display: flex;

    align-items: center;

    gap: 8px;

    font-family: monospace;

    font-size: 10px;

    letter-spacing: 1px;

}

.feature i {
    color: var(--cyan);
}

.feature-divider {

    width: 1px;
    height: 22px;

    background:
        rgba(255,255,255,.12);

}


/* HERO ORBIT */

.hero-visual {

    min-height: 590px;

    display: grid;

    place-items: center;

    perspective: 1000px;

}

.orbit-system {

    width: 520px;
    height: 520px;

    position: relative;

    transition:
        transform .15s ease-out;

}

.orbit {

    position: absolute;

    left: 50%;
    top: 50%;

    border:
        1px solid rgba(37,225,209,.16);

    border-radius: 50%;

    transform:
        translate(-50%,-50%);

    animation:
        orbitSpin 24s linear infinite;

}

.orbit-one {

    width: 500px;
    height: 300px;

}

.orbit-two {

    width: 390px;
    height: 390px;

    border-color:
        rgba(216,173,79,.2);

    animation-duration: 18s;

    animation-direction:
        reverse;

}

.orbit-three {

    width: 280px;
    height: 500px;

    border-color:
        rgba(37,225,209,.12);

    animation-duration: 30s;

}

@keyframes orbitSpin {

    to {
        transform:
            translate(-50%,-50%)
            rotate(360deg);
    }

}

.core-wrapper {

    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%,-50%);

}

.core-glow {

    position: absolute;

    inset: -70px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(37,225,209,.2),
            transparent 65%
        );

    filter: blur(20px);

    animation:
        coreGlow 4s ease-in-out infinite;

}

@keyframes coreGlow {

    0%,100% {
        transform: scale(.9);
        opacity: .55;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

}

.core {

    width: 190px;
    height: 190px;

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    position: relative;

    background:
        radial-gradient(
            circle at 35% 25%,
            #263b62,
            #0a111f 68%
        );

    border:
        1px solid rgba(37,225,209,.4);

    box-shadow:
        inset 0 0 45px rgba(216,173,79,.08),
        0 0 60px rgba(37,225,209,.1);

}

.core-pulse {

    position: absolute;

    inset: 12px;

    border:
        1px dashed rgba(241,207,120,.5);

    border-radius: 50%;

    animation:
        orbitSpin 10s linear infinite;

}

.core-name {

    font-family:
        "Space Grotesk";

    font-size: 25px;

    font-weight: 800;

    letter-spacing: 2px;

}

.core-tagline {

    margin-top: 7px;

    font-family: monospace;

    color: #78869b;

    font-size: 8px;

    letter-spacing: 1.5px;

}


/* ORBIT CARDS */

.orbit-card {

    position: absolute;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 10px 14px;

    border:
        1px solid rgba(255,255,255,.1);

    background:
        rgba(12,20,35,.86);

    backdrop-filter:
        blur(15px);

    border-radius: 50px;

    font-family: monospace;

    font-size: 9px;

    letter-spacing: 1px;

    box-shadow:
        0 15px 35px rgba(0,0,0,.3);

    animation:
        floating 4s ease-in-out infinite;

}

.card-icon {

    width: 24px;
    height: 24px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.05);

}

.card-ai {
    top: 70px;
    left: 35px;
    color: var(--gold-bright);
}

.card-cloud {
    right: 5px;
    top: 210px;
    color: var(--cyan);
    animation-delay: -1s;
}

.card-cyber {
    right: 80px;
    bottom: 45px;
    color: var(--cyan);
    animation-delay: -2s;
}

.card-data {
    left: 10px;
    bottom: 115px;
    color: var(--gold-bright);
    animation-delay: -3s;
}

.card-leadership {
    top: 320px;
    left: 45px;
    color: #b89aff;
    animation-delay: -1.5s;
}

@keyframes floating {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}

.floating-dot {

    position: absolute;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--cyan);

    box-shadow:
        0 0 15px var(--cyan);

    animation:
        dotFloat 4s ease-in-out infinite;

}

.dot-one {
    top: 10%;
    left: 65%;
}

.dot-two {
    top: 45%;
    right: 0;
    animation-delay: -1s;
}

.dot-three {
    bottom: 10%;
    left: 60%;
    animation-delay: -2s;
}

.dot-four {
    bottom: 35%;
    left: 0;
    animation-delay: -3s;
}

.dot-five {
    top: 25%;
    left: 15%;
    animation-delay: -1.5s;
}

.dot-six {
    bottom: 5%;
    right: 35%;
    animation-delay: -2.5s;
}

@keyframes dotFloat {

    0%,100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-18px) scale(1.5);
    }

}


/* =========================================================
   STATS
========================================================= */

.stats-container {

    max-width: 1280px;

    margin:
        20px auto 0;

    display: grid;

    grid-template-columns:
        repeat(5,1fr);

    border:
        1px solid var(--line);

    border-radius: 20px;

    overflow: hidden;

    background:
        rgba(255,255,255,.025);

    backdrop-filter:
        blur(15px);

}

.stat {

    padding: 22px;

    display: flex;

    align-items: center;

    gap: 14px;

    border-right:
        1px solid var(--line);

}

.stat:last-child {
    border-right: 0;
}

.stat-icon {

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background:
        rgba(37,225,209,.07);

    color: var(--cyan);

}

.stat strong {

    display: block;

    font-family:
        "Space Grotesk";

    font-size: 23px;

}

.stat-title {

    display: block;

    color: #c4cedd;

    font-size: 11px;

    font-weight: 700;

}

.stat small {

    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size: 10px;

}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

section:not(.hero) {

    padding:
        120px 25px;

}

.section-container {

    max-width: 1280px;

    margin: auto;

}

.section-heading {

    max-width: 760px;

    margin:
        0 auto 55px;

    text-align: center;

}

.section-label {

    color: var(--cyan);

    font-family: monospace;

    font-size: 11px;

    letter-spacing: 2px;

}

.section-heading h2 {

    margin-top: 15px;

    font-family:
        "Space Grotesk";

    font-size:
        clamp(2.2rem,4vw,3.5rem);

    line-height: 1.05;

}

.section-heading h2 span {

    color: var(--gold-bright);

}

.section-heading p {

    margin-top: 18px;

    color: var(--muted);

    line-height: 1.8;

}


/* =========================================================
   FACE CARDS
========================================================= */

.face-grid {

    display: grid;

    grid-template-columns:
        repeat(5,1fr);

    gap: 15px;

}

.face-card {

    height: 490px;

    position: relative;

    overflow: hidden;

    border-radius: 22px;

    border:
        1px solid rgba(255,255,255,.1);

    background: var(--panel-solid);

    transform-style: preserve-3d;

    transition:
        transform .5s cubic-bezier(.2,.8,.2,1),
        box-shadow .5s ease,
        border-color .4s;

}

.face-card img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1s cubic-bezier(.2,.8,.2,1),
        filter .6s;

    filter:
        saturate(.82)
        brightness(.7);

}

.face-card:hover img {

    transform:
        scale(1.12);

    filter:
        saturate(1.15)
        brightness(.75);

}

.face-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(3,7,14,.98) 5%,
            rgba(3,7,14,.55) 45%,
            rgba(3,7,14,.05) 100%
        );

}

.face-glow {

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(37,225,209,.12),
            transparent 45%
        );

    opacity: 0;

    transition: .5s;

}

.face-card:hover .face-glow {
    opacity: 1;
}

.face-content {

    position: absolute;

    inset:
        auto 22px 25px;

}

.face-number {

    color: var(--gold-bright);

    font-family: monospace;

    font-size: 11px;

}

.face-icon {

    width: 43px;
    height: 43px;

    margin:
        18px 0 15px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background:
        rgba(255,255,255,.08);

    border:
        1px solid rgba(255,255,255,.1);

    color: var(--cyan);

    backdrop-filter: blur(10px);

}

.face-content h3 {

    font-family:
        "Space Grotesk";

    font-size: 23px;

}

.face-content p {

    margin-top: 9px;

    color: #aeb9c9;

    font-size: 12px;

    line-height: 1.65;

}

.face-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 18px;

    color: white;

    font-size: 12px;

    font-weight: 700;

}

.face-link i {

    color: var(--cyan);

    transition: .3s;

}

.face-card:hover .face-link i {

    transform:
        translateX(6px);

}


/* =========================================================
   PROGRAMME CATEGORY
========================================================= */

.programmes-section {

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(255,255,255,.015),
            transparent
        );

}

.programme-category-section {

    margin-top: 85px;

    scroll-margin-top: 110px;

}

.category-heading {

    display: grid;

    grid-template-columns:
        90px 1fr auto;

    align-items: center;

    gap: 25px;

    padding-bottom: 28px;

    margin-bottom: 25px;

    border-bottom:
        1px solid var(--line);

}

.category-index {

    width: 72px;
    height: 72px;

    display: grid;
    place-items: center;

    border-radius: 18px;

    color: var(--gold-bright);

    font-family:
        "Space Grotesk";

    font-size: 24px;

    font-weight: 800;

    background:
        linear-gradient(
            145deg,
            rgba(216,173,79,.13),
            rgba(37,225,209,.04)
        );

    border:
        1px solid rgba(216,173,79,.2);

}

.category-heading span {

    color: var(--cyan);

    font-family: monospace;

    font-size: 10px;

    letter-spacing: 2px;

}

.category-heading h3 {

    margin-top: 6px;

    font-family:
        "Space Grotesk";

    font-size: 30px;

}

.category-heading p {

    margin-top: 5px;

    color: var(--muted);

    font-size: 13px;

}

.category-count {

    text-align: right;

    color: var(--gold-bright);

    font-family:
        "Space Grotesk";

    font-size: 30px;

    font-weight: 800;

}

.category-count small {

    color: var(--muted);

    font-size: 8px;

    letter-spacing: 1.5px;

}


/* PROGRAMME GRID */

.programme-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 18px;

}

.programme-card {

    position: relative;

    padding: 28px;

    border:
        1px solid rgba(255,255,255,.09);

    border-radius: 20px;

    background:
        linear-gradient(
            145deg,
            rgba(18,29,48,.88),
            rgba(8,14,25,.92)
        );

    overflow: hidden;

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;

}

.programme-card::before {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -100px;
    right: -100px;

    border-radius: 50%;

    background:
        rgba(37,225,209,.1);

    filter: blur(20px);

    transition: .5s;

}

.programme-card:hover {

    transform:
        translateY(-9px);

    border-color:
        rgba(37,225,209,.25);

    box-shadow:
        0 25px 60px rgba(0,0,0,.35);

}

.programme-card:hover::before {

    transform:
        scale(1.5);

}

.programme-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.programme-number {

    color: var(--gold-bright);

    font-family: monospace;

    font-size: 12px;

}

.programme-tag {

    padding: 5px 9px;

    border-radius: 30px;

    color: var(--cyan);

    background:
        rgba(37,225,209,.07);

    border:
        1px solid rgba(37,225,209,.15);

    font-family: monospace;

    font-size: 8px;

    letter-spacing: 1px;

}

.programme-icon {

    width: 50px;
    height: 50px;

    margin:
        25px 0 18px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    color: var(--gold-bright);

    background:
        linear-gradient(
            145deg,
            rgba(216,173,79,.14),
            rgba(37,225,209,.06)
        );

    border:
        1px solid rgba(216,173,79,.16);

    font-size: 18px;

}

.programme-card h4 {

    font-family:
        "Space Grotesk";

    font-size: 21px;

    line-height: 1.25;

}

.programme-details {

    margin-top: 25px;

}

.detail-title {

    color: #7f8da1;

    font-family: monospace;

    font-size: 9px;

    letter-spacing: 1.3px;

    text-transform: uppercase;

}

.programme-details ul {

    list-style: none;

    margin-top: 12px;

    display: grid;

    gap: 8px;

}

.programme-details li {

    position: relative;

    padding-left: 17px;

    color: #aeb8c8;

    font-size: 11px;

    line-height: 1.45;

}

.programme-details li::before {

    content: "";

    position: absolute;

    left: 0;
    top: 7px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background:
        var(--cyan);

    box-shadow:
        0 0 8px rgba(37,225,209,.6);

}

.target-box {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-top: 25px;

    padding: 13px;

    border-radius: 12px;

    background:
        rgba(255,255,255,.035);

    border:
        1px solid rgba(255,255,255,.06);

}

.target-box i {

    color: var(--gold-bright);

    margin-top: 3px;

}

.target-box span {

    color: #9da9bb;

    font-size: 10px;

    line-height: 1.5;

}

.target-box strong {

    display: block;

    color: #e1e7ef;

    margin-bottom: 2px;

}


/* =========================================================
   HOW IT WORKS
========================================================= */

.process-section {

    background:
        rgba(255,255,255,.012);

}

.process-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 18px;

}

.process-card {

    position: relative;

    padding: 30px;

    border:
        1px solid var(--line);

    border-radius: 18px;

    background:
        rgba(255,255,255,.025);

    transition: .4s;

}

.process-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(37,225,209,.25);

}

.process-card > span {

    color: var(--gold-bright);

    font-family: monospace;

    font-size: 11px;

}

.process-card i {

    display: block;

    margin:
        25px 0 20px;

    color: var(--cyan);

    font-size: 25px;

}

.process-card h3 {

    font-family:
        "Space Grotesk";

    font-size: 21px;

}

.process-card p {

    margin-top: 10px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;

}


/* =========================================================
   WORKSHOP
========================================================= */

.workshop-section {

    padding-top: 80px !important;
    padding-bottom: 80px !important;

}

.workshop-container {

    max-width: 1180px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    padding: 55px;

    border-radius: 26px;

    border:
        1px solid rgba(216,173,79,.2);

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(216,173,79,.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            rgba(19,30,49,.95),
            rgba(9,15,26,.95)
        );

    box-shadow:
        0 30px 80px rgba(0,0,0,.3);

}

.workshop-content {

    max-width: 700px;

}

.workshop-container h2 {

    margin-top: 12px;

    font-family:
        "Space Grotesk";

    font-size:
        clamp(2rem,4vw,3.4rem);

}

.workshop-container h2 span {

    color: var(--gold-bright);

}

.workshop-container p {

    margin-top: 15px;

    color: var(--muted);

    line-height: 1.7;

}

.workshop-points {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 20px;

}

.workshop-points span {

    color: #b8c3d2;

    font-size: 11px;

}

.workshop-points i {

    color: var(--cyan);

    margin-right: 6px;

}


/* =========================================================
   TRAINER
========================================================= */

.trainer-card {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 45px;

    padding: 50px;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(14,24,41,.95),
            rgba(7,13,23,.95)
        );

    border:
        1px solid var(--line);

}

.trainer-content h2 {

    margin-top: 12px;

    font-family:
        "Space Grotesk";

    font-size:
        clamp(2rem,4vw,3.3rem);

    line-height: 1.05;

}

.trainer-content h2 span {

    display: block;

    color: var(--cyan);

}

.trainer-content p {

    margin-top: 18px;

    color: var(--muted);

    line-height: 1.8;

}

.trainer-form-wrapper {

    padding: 25px;

    border-radius: 18px;

    background:
        rgba(255,255,255,.025);

    border:
        1px solid var(--line);

}

.form-grid {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 15px;

}

.field {

    display: flex;

    flex-direction: column;

    gap: 7px;

    margin-bottom: 16px;

}

.field label {

    color: #aab5c5;

    font-size: 11px;

    font-weight: 600;

}

.field input,
.field select {

    width: 100%;

    padding: 13px;

    color: white;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.1);

    border-radius: 10px;

    outline: none;

}

.field input:focus,
.field select:focus {

    border-color:
        rgba(37,225,209,.5);

    box-shadow:
        0 0 0 3px rgba(37,225,209,.06);

}

.file-upload {

    min-height: 75px;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 15px;

    border:
        1px dashed rgba(37,225,209,.35);

    border-radius: 12px;

    cursor: pointer;

    background:
        rgba(37,225,209,.025);

    transition: .3s;

}

.file-upload:hover {

    background:
        rgba(37,225,209,.06);

}

.file-upload i {

    color: #ff6b6b;

    font-size: 22px;

}

.file-upload span {

    color: #cbd4df;

    font-size: 12px;

}

.file-upload small {

    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size: 9px;

}

.file-upload input {
    display: none;
}

.form-note {

    margin-top: 8px;

    color: #6f7c8f;

    font-size: 9px;

}


/* =========================================================
   CONTACT
========================================================= */

.contact-card {

    padding: 50px;

    border:
        1px solid rgba(37,225,209,.14);

    border-radius: 24px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    background:
        linear-gradient(
            135deg,
            rgba(37,225,209,.06),
            rgba(216,173,79,.04)
        );

}

.contact-card h2 {

    margin-top: 10px;

    font-family:
        "Space Grotesk";

    font-size:
        clamp(2rem,4vw,3.2rem);

}

.contact-card h2 span {
    color: var(--gold-bright);
}

.contact-card p {

    max-width: 600px;

    margin-top: 12px;

    color: var(--muted);

    line-height: 1.7;

}


/* =========================================================
   FOOTER
========================================================= */

footer {

    padding:
        60px 25px 25px;

    border-top:
        1px solid var(--line);

}

.footer-container {

    max-width: 1280px;

    margin: auto;

    display: flex;

    justify-content: space-between;

    gap: 40px;

}

.footer-brand > span {

    display: block;

    font-family:
        "Space Grotesk";

    font-size: 25px;

    font-weight: 800;

}

.footer-brand > span span {
    color: var(--gold-bright);
}

.footer-brand small {

    color: #6d798b;

    font-family: monospace;

    letter-spacing: 3px;

    font-size: 8px;

}

.footer-brand p {

    max-width: 330px;

    margin-top: 12px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;

}

.footer-links {

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 18px;

}

.footer-links a {

    color: #8e9bad;

    font-size: 11px;

    transition: .25s;

}

.footer-links a:hover {
    color: white;
}

.footer-bottom {

    max-width: 1280px;

    margin:
        45px auto 0;

    padding-top: 20px;

    border-top:
        1px solid var(--line);

    display: flex;

    justify-content: space-between;

    color: #626e80;

    font-size: 9px;

}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.2,.8,.2,1);

}

.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);

}


/* =========================================================
   RIPPLE
========================================================= */

.btn {
    position: relative;
}

.ripple-effect {

    position: absolute;

    border-radius: 50%;

    background:
        rgba(255,255,255,.35);

    transform:
        scale(0);

    animation:
        ripple .7s linear;

    pointer-events: none;

}

@keyframes ripple {

    to {

        transform: scale(2);

        opacity: 0;

    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1150px) {

    .desktop-nav,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin: auto;
    }

    .eyebrow,
    .hero-buttons,
    .hero-features {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .stats-container {
        grid-template-columns:
            repeat(2,1fr);
    }

    .stat:nth-child(2) {
        border-right: 0;
    }

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

    .hero-visual {
        min-height: 560px;
    }

}


@media(max-width:700px) {

    .navbar {
        height: 76px;
    }

    .mobile-nav {
        top: 76px;
    }

    .brand-logo {
        width: 50px;
        height: 50px;
    }

    .brand-name {
        font-size: 22px;
    }

    .brand-subtitle {
        font-size: 7px;
    }

    .hero {
        padding-top: 125px;
    }

    .hero h1 {

        font-size: 48px;

        letter-spacing:
            -2.5px;

    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-features {
        flex-direction: column;
    }

    .feature-divider {
        display: none;
    }

    .hero-visual {
        min-height: 400px;
    }

    .orbit-system {
        transform: scale(.58);
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: 0;
        border-bottom:
            1px solid var(--line);
    }

    .stat:last-child {
        border-bottom: 0;
    }

    section:not(.hero) {
        padding:
            80px 20px;
    }

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

    .face-card {
        height: 450px;
    }

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

    .category-heading {
        grid-template-columns:
            60px 1fr;
    }

    .category-index {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }

    .category-count {
        display: none;
    }

    .category-heading h3 {
        font-size: 25px;
    }

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

    .workshop-container,
    .contact-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 35px 25px;
    }

    .trainer-card {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

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

    .trainer-form-wrapper {
        padding: 20px;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media(prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        scroll-behavior:
            auto !important;

        transition-duration:
            .01ms !important;

    }

}
/* =====================================================
   APURAX BRAND STATEMENT
===================================================== */

.brand-statement {
    width: 100%;
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    position: relative;
    overflow: hidden;
    padding: 28px 5%;
    margin-top: 20px;
    border-top: 1px solid rgba(110, 218, 210, 0.12);
    border-bottom: 1px solid rgba(110, 218, 210, 0.12);
    background:
        linear-gradient(
            90deg,
            rgba(8, 12, 24, 0.2),
            rgba(16, 27, 43, 0.55),
            rgba(8, 12, 24, 0.2)
        );
}

/* Soft moving light across the complete row */

.brand-statement::before {
    content: "";
    position: absolute;
    top: 0;
    left: -35%;
    width: 35%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(110, 218, 210, 0.08),
        rgba(241, 210, 122, 0.12),
        transparent
    );
    filter: blur(10px);
    animation: brandLightSweep 6s ease-in-out infinite;
    pointer-events: none;
}

/* Subtle ambient glow */

.brand-statement::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 100px;
    border-radius: 50%;
    background: rgba(110, 218, 210, 0.07);
    filter: blur(55px);
    animation: brandGlow 5s ease-in-out infinite alternate;
    pointer-events: none;
}

.brand-statement-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    text-align: center;
    font-size: clamp(22px, 2.6vw, 36px);
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Individual words */

.brand-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(18px);
    animation: brandWordReveal 0.9s cubic-bezier(
        0.22,
        1,
        0.36,
        1
    ) forwards;
}

.brand-word.building {
    color: #6edbd2;
    animation-delay: 0.15s;
}

.brand-word.empowering {
    color: #f1d27a;
    animation-delay: 0.35s;
}

.brand-word.growth {
    color: #f1f3f8;
    animation-delay: 0.55s;
}

/* Vertical separators */

.brand-word:not(:last-child)::after {
    content: "•";
    margin-left: 18px;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 400;
}

/* Decorative lines */

.brand-statement-line {
    flex: 1;
    height: 1px;
    max-width: 170px;
    min-width: 40px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(110, 218, 210, 0.45),
        transparent
    );
    animation: linePulse 3s ease-in-out infinite;
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes brandWordReveal {

    0% {
        opacity: 0;
        transform: translateY(18px);
        filter: blur(5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

}

@keyframes brandLightSweep {

    0% {
        left: -35%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }

}

@keyframes brandGlow {

    0% {
        transform: translateX(-120px) scale(0.9);
        opacity: 0.35;
    }

    100% {
        transform: translateX(120px) scale(1.15);
        opacity: 0.75;
    }

}

@keyframes linePulse {

    0%,
    100% {
        opacity: 0.35;
        transform: scaleX(0.85);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .brand-statement {
        gap: 10px;
        padding: 24px 18px;
        min-height: 115px;
    }

    .brand-statement-content {
        gap: 8px;
        line-height: 1.5;
    }

    .brand-word:not(:last-child)::after {
        margin-left: 8px;
    }

    .brand-statement-line {
        min-width: 20px;
    }

}

@media (max-width: 520px) {

    .brand-statement {
        padding: 22px 12px;
    }

    .brand-statement-line {
        display: none;
    }

    .brand-statement-content {
        flex-direction: column;
        gap: 3px;
    }

    .brand-word:not(:last-child)::after {
        display: none;
    }

}