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

:root {
    --navy: #04151d;
    --navy2: #06222b;
    --blue: #087ea4;
    --cyan: #14b8c8;
    --teal: #10b981;
    --green: #3ddc97;
    --white: #f5ffff;
    --muted: #9bb6bc;

    --text-primary: #f5ffff;
    --text-secondary: #b9d0d5;
    --text-soft: #91b0b7;
    --text-faint: #71949b;

    --line: rgba(167, 236, 236, 0.14);
    --glass: rgba(8, 39, 48, 0.66);

    --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
    --radius: 28px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--navy);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =========================================================
   LIGHT MODE
========================================================= */

body.light-mode {
    --navy: #effbfc;
    --navy2: #e6f7f8;

    --white: #06222b;

    --text-primary: #06222b;
    --text-secondary: #294f58;
    --text-soft: #46666d;
    --text-faint: #58777e;

    --muted: #46666d;

    --line: rgba(6, 53, 63, 0.15);
    --glass: rgba(255, 255, 255, 0.82);

    background: var(--navy);
    color: var(--text-primary);
}

body.light-mode .navbar {
    background: rgba(239, 251, 252, 0.96);
    border-bottom-color: rgba(6, 53, 63, 0.12);
}

body.light-mode .navbar.scrolled {
    background: rgba(239, 251, 252, 0.94);
}

body.light-mode .nav-link {
    color: #46666d;
}

body.light-mode .nav-link:hover {
    color: #06222b;

    background: rgba(6, 53, 63, 0.06);
    border-color: rgba(6, 53, 63, 0.14);
}

body.light-mode .nav-link.active {
    color: #04222a;

    background:
        linear-gradient(
            135deg,
            rgba(20, 184, 200, 0.24),
            rgba(16, 185, 129, 0.16)
        );

    border-color: rgba(8, 126, 164, 0.45);

    box-shadow:
        inset 0 0 16px rgba(20, 184, 200, 0.12),
        0 10px 26px rgba(8, 126, 164, 0.18);
}

body.light-mode .theme-toggle,
body.light-mode .menu-toggle {
    background: rgba(6, 53, 63, 0.06);
    border-color: rgba(6, 53, 63, 0.14);
    color: #06222b;
}

body.light-mode .btn-glass {
    color: #06222b;
    background: rgba(255, 255, 255, 0.65);
}

body.light-mode .hero-description,
body.light-mode .section-heading > p,
body.light-mode .experience-copy > p,
body.light-mode .showcase-copy > p,
body.light-mode .register-copy > p {
    color: #46666d;
}

body.light-mode .trust-inner > span {
    color: #52747c;
}

body.light-mode .trust-inner b {
    color: #315963;
}

body.light-mode .metric p {
    color: #46666d;
}

body.light-mode .program-card {
    background: #0a3039;
    color: #ffffff;
}

body.light-mode .program-card p {
    color: #c5d9dc;
}

body.light-mode .program-card h3 {
    color: #ffffff;
}

body.light-mode .feature-card p {
    color: #46666d;
}

body.light-mode .feature-card h3 {
    color: #06222b;
}

body.light-mode .journey-step p {
    color: #46666d;
}

body.light-mode .journey-step h3 {
    color: #06222b;
}

body.light-mode .showcase-card {
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(20, 184, 200, 0.14),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #dff7f8,
            #d4f1eb
        );
    color: #06222b;
}

body.light-mode .mini-pills span {
    color: #315963;
}

body.light-mode .register-points span {
    color: #46666d;
}

body.light-mode .registration-card {
    background:
        linear-gradient(
            145deg,
            #0a3943,
            #062b34
        );
    color: #ffffff;
}

body.light-mode .form-group > span {
    color: #c5d9dc;
}

body.light-mode .form-note {
    color: #91b2b8;
}

body.light-mode footer {
    background: rgba(6, 34, 43, 0.025);
}

body.light-mode .footer-brand {
    color: #06222b;
}

body.light-mode .footer-brand span,
body.light-mode .footer-legal a {
    color: #52747c;
}

/* =========================================================
   GLOBAL ELEMENTS
========================================================= */

*::selection {
    background: rgba(20, 184, 200, 0.35);
    color: #ffffff;
}

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

button,
input,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}

/* Important text visibility fix */

p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

span {
    line-height: 1.5;
}

strong,
b {
    color: var(--text-primary);
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: auto;
}

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

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

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

.ambient {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;

    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(20, 184, 200, 0.12),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(16, 185, 129, 0.1),
            transparent 30%
        );
}

.grid-glow {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(91, 227, 226, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(91, 227, 226, 0.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            #000 15%,
            #000 75%,
            transparent
        );
}

.bubble {
    position: absolute;
    border: 1px solid rgba(102, 232, 230, 0.25);

    background:
        radial-gradient(
            circle at 30% 25%,
            rgba(90, 236, 235, 0.16),
            rgba(14, 165, 180, 0.03) 55%,
            transparent 70%
        );

    border-radius: 50%;

    box-shadow:
        inset 0 0 25px rgba(255, 255, 255, 0.035),
        0 0 35px rgba(20, 184, 200, 0.06);

    animation: floatBubble linear infinite;
}

.b1 {
    width: 90px;
    height: 90px;
    left: 5%;
    bottom: -100px;
    animation-duration: 20s;
}

.b2 {
    width: 35px;
    height: 35px;
    left: 24%;
    bottom: -50px;
    animation-duration: 14s;
    animation-delay: -5s;
}

.b3 {
    width: 130px;
    height: 130px;
    left: 45%;
    bottom: -150px;
    animation-duration: 25s;
    animation-delay: -11s;
}

.b4 {
    width: 55px;
    height: 55px;
    right: 18%;
    bottom: -70px;
    animation-duration: 17s;
    animation-delay: -3s;
}

.b5 {
    width: 75px;
    height: 75px;
    right: 4%;
    bottom: -90px;
    animation-duration: 21s;
    animation-delay: -8s;
}

.b6 {
    width: 25px;
    height: 25px;
    left: 68%;
    bottom: -40px;
    animation-duration: 13s;
    animation-delay: -2s;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0.65;
    animation: orbFloat 9s ease-in-out infinite;
}

.orb1 {
    width: 360px;
    height: 360px;
    left: -190px;
    top: 35%;

    background:
        radial-gradient(
            circle,
            rgba(8, 126, 164, 0.2),
            transparent 68%
        );
}

.orb2 {
    width: 300px;
    height: 300px;
    right: -130px;
    top: 60%;

    background:
        radial-gradient(
            circle,
            rgba(16, 185, 129, 0.17),
            transparent 68%
        );
}

@keyframes floatBubble {
    to {
        transform: translate3d(20px, -125vh, 0) rotate(360deg);
    }
}

@keyframes orbFloat {
    50% {
        transform: translate(25px, -35px) scale(1.08);
    }
}

/* =========================================================
   LOADER
========================================================= */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;

    background: #03141b;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 18px;

    transition: 0.7s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.page-loader img {
    width: 180px;
    filter: brightness(0) invert(1);
}

.page-loader p {
    font-size: 12px;
    color: #91b3ba;
    letter-spacing: 1px;
}

.loader-progress {
    width: 150px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.loader-progress i {
    display: block;
    width: 40%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            var(--cyan),
            var(--green)
        );

    animation: load 1.4s ease-in-out infinite;
}

.loader-orbit {
    position: absolute;
    width: 245px;
    height: 245px;

    border: 1px solid rgba(20, 184, 200, 0.12);
    border-radius: 50%;

    animation: spin 5s linear infinite;
}

.loader-orbit span {
    position: absolute;

    width: 7px;
    height: 7px;

    border-radius: 50%;
    background: var(--cyan);

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

.loader-orbit span:nth-child(1) {
    top: 20px;
    left: 50%;
}

.loader-orbit span:nth-child(2) {
    right: 25px;
    bottom: 45px;
    background: var(--green);
}

.loader-orbit span:nth-child(3) {
    left: 20px;
    bottom: 45px;
}

@keyframes load {
    50% {
        transform: translateX(160%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    z-index: 1000;

    transition: 0.35s ease;

    background: #022335;

    border-bottom: 1px solid rgba(91, 227, 226, 0.12);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.22);
}

.navbar.scrolled {
    background: rgba(4, 21, 29, 0.92);

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    border-bottom-color: rgba(91, 227, 226, 0.18);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.35);
}

.nav-container {
    width: min(1280px, calc(100% - 40px));

    min-height: 84px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

.brand img {
    width: 142px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 13px;
    font-weight: 700;

    color: var(--text-secondary);

    position: relative;

    /* Negative margins keep the current nav spacing
       while the padding paints a high-contrast pill. */
    padding: 9px 12px;
    margin: -9px -12px;

    border: 1px solid transparent;
    border-radius: 100px;

    transition: 0.25s;
}

.nav-link:hover {
    color: var(--white);

    background: rgba(255, 255, 255, 0.06);

    border-color: rgba(255, 255, 255, 0.1);
}

/* Strong marker for the section currently in view. */

.nav-link.active {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            rgba(20, 184, 200, 0.26),
            rgba(16, 185, 129, 0.18)
        );

    border-color: rgba(91, 227, 226, 0.48);

    box-shadow:
        inset 0 0 16px rgba(20, 184, 200, 0.16),
        0 10px 26px rgba(20, 184, 200, 0.24);
}

.nav-link.active::after {
    content: "";

    position: absolute;

    left: 10px;
    right: 10px;

    bottom: 5px;

    height: 2px;

    border-radius: 100px;

    background:
        linear-gradient(
            90deg,
            var(--cyan),
            var(--green)
        );

    box-shadow:
        0 0 10px rgba(20, 184, 200, 0.75);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-toggle,
.menu-toggle {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.06);

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

    color: var(--white);

    transition: 0.25s;
}

.theme-toggle:hover {
    transform: rotate(15deg);

    border-color: rgba(20, 184, 200, 0.5);

    background: rgba(20, 184, 200, 0.08);
}

.nav-register {
    display: flex;
    align-items: center;

    gap: 9px;

    background:
        linear-gradient(
            135deg,
            var(--cyan),
            var(--teal)
        );

    padding: 12px 17px;

    border-radius: 100px;

    font-size: 12px;
    font-weight: 800;

    color: #ffffff;

    box-shadow:
        0 12px 35px rgba(20, 184, 200, 0.17);

    transition: 0.25s;
}

.nav-register:hover {
    transform: translateY(-2px);

    box-shadow:
        0 17px 45px rgba(20, 184, 200, 0.28);
}

/* Ring on the CTA while the registration section is in view. */

.nav-register.active {
    box-shadow:
        0 0 0 2px rgba(91, 227, 226, 0.5),
        0 14px 40px rgba(20, 184, 200, 0.34);
}

.menu-toggle {
    display: none;
}

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

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 140px 0 80px;

    position: relative;
}

.hero-container {
    width: min(1240px, calc(100% - 40px));

    margin: auto;

    display: grid;

    grid-template-columns: 1.03fr 0.97fr;

    gap: 50px;

    align-items: center;
}

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

.eyebrow,
.section-label {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #65e3db;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.8px;

    padding: 8px 13px;

    border: 1px solid rgba(101, 227, 219, 0.2);

    border-radius: 999px;

    background: linear-gradient(90deg, rgba(20, 184, 200, 0.12), rgba(61, 220, 151, 0.05));

    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 24px rgba(3, 24, 31, 0.12);
}

.live-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 14px var(--green);

    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    50% {
        transform: scale(1.6);
        opacity: 0.5;
    }
}

.hero h1 {
    font:
        800 clamp(48px, 6vw, 78px) / 0.98
        "Manrope",
        sans-serif;

    letter-spacing: -4px;

    margin: 23px 0;
}

.hero h1 span,
.section-heading h2 span,
.experience-copy h2 span,
.showcase-copy h2 span,
.register-copy h2 span,
.final-cta h2 span {
    background:
        linear-gradient(
            100deg,
            #45dce4,
            #31d99a
        );

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

    color: transparent;
}

.hero-description {
    max-width: 660px;

    color: var(--text-secondary);

    font-size: 17px;

    line-height: 1.8;
}

.hero-actions {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;

    margin: 32px 0;
}

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 13px;

    padding: 15px 21px;

    font-size: 12px;

    font-weight: 800;

    transition:
        transform 0.25s,
        box-shadow 0.25s;
}

.btn-primary {
    background:
        linear-gradient(
            135deg,
            var(--cyan),
            var(--teal)
        );

    color: #ffffff;

    box-shadow:
        0 16px 40px rgba(20, 184, 200, 0.2);
}

.btn-primary:hover {
    transform: translateY(-4px);

    box-shadow:
        0 23px 55px rgba(20, 184, 200, 0.3);
}

.btn-glass {
    border: 1px solid var(--line);

    background: rgba(255, 255, 255, 0.035);

    color: var(--white);
}

.btn-glass:hover {
    transform: translateY(-3px);

    background: rgba(20, 184, 200, 0.07);

    border-color: rgba(20, 184, 200, 0.35);
}

.hero-proof {
    display: flex;

    align-items: center;

    gap: 13px;
}

.avatars {
    display: flex;
}

.avatars span {
    width: 34px;
    height: 34px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    margin-left: -7px;

    border: 2px solid var(--navy);

    font-size: 9px;

    font-weight: 800;

    background:
        linear-gradient(
            135deg,
            #0a5b72,
            #13aa8b
        );
}

.avatars span:first-child {
    margin-left: 0;
}

.hero-proof strong,
.hero-proof small {
    display: block;
}

.hero-proof strong {
    font-size: 12px;
}

.hero-proof small {
    font-size: 10px;
    color: var(--text-soft);
}

.hero-visual {
    position: relative;

    min-height: 560px;

    display: grid;

    place-items: center;
}

.hero-stage {
    width: min(500px, 100%);

    aspect-ratio: 1;

    position: relative;

    transform-style: preserve-3d;

    transition: transform 0.15s ease;
}

.stage-ring {
    position: absolute;

    inset: 6%;

    border-radius: 50%;

    border: 1px solid rgba(78, 222, 220, 0.18);

    animation:
        spin 22s linear infinite;
}

.ring-b {
    inset: 17%;

    border-style: dashed;

    animation-direction: reverse;

    animation-duration: 16s;
}

.stage-core {
    position: absolute;

    inset: 18%;

    border-radius: 36px;

    background:
        linear-gradient(
            145deg,
            rgba(10, 53, 64, 0.9),
            rgba(3, 26, 34, 0.96)
        );

    border: 1px solid rgba(145, 239, 235, 0.16);

    box-shadow:
        inset 0 0 60px rgba(20, 184, 200, 0.05),
        0 35px 90px rgba(0, 0, 0, 0.45);

    padding: 22px;

    transform: translateZ(30px);

    overflow: hidden;
}

.stage-core::before {
    content: "";

    position: absolute;

    inset: -30%;

    background:
        conic-gradient(
            from 20deg,
            transparent,
            rgba(20, 184, 200, 0.13),
            transparent 30%,
            rgba(16, 185, 129, 0.1),
            transparent 60%
        );

    animation:
        spin 8s linear infinite;
}

.core-top,
.core-bottom {
    position: relative;

    z-index: 2;

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 9px;

    letter-spacing: 1.2px;

    color: #91b5bc;
}

.status {
    border: 1px solid rgba(61, 220, 151, 0.25);

    padding: 6px 8px;

    border-radius: 50px;

    color: #83e8b6;
}

.status i {
    display: inline-block;

    width: 5px;
    height: 5px;

    background: var(--green);

    border-radius: 50%;

    margin-right: 5px;
}

.core-illustration {
    height: 310px;

    position: relative;

    display: grid;

    place-items: center;
}

.cube {
    width: 112px;
    height: 112px;

    position: relative;

    transform-style: preserve-3d;

    animation:
        cubeSpin 12s linear infinite;
}

.cube-face {
    position: absolute;

    width: 112px;
    height: 112px;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            135deg,
            rgba(20, 184, 200, 0.35),
            rgba(16, 185, 129, 0.2)
        );

    border: 1px solid rgba(121, 239, 235, 0.45);

    font:
        800 22px
        "Manrope",
        sans-serif;

    backface-visibility: hidden;

    box-shadow:
        inset 0 0 25px rgba(85, 233, 231, 0.08);
}

.face-front {
    transform: translateZ(56px);
}

.face-back {
    transform: rotateY(180deg) translateZ(56px);
}

.face-right {
    transform: rotateY(90deg) translateZ(56px);
}

.face-left {
    transform: rotateY(-90deg) translateZ(56px);
}

.face-top {
    transform: rotateX(90deg) translateZ(56px);
}

.face-bottom {
    transform: rotateX(-90deg) translateZ(56px);
}

@keyframes cubeSpin {
    to {
        transform:
            rotateX(360deg)
            rotateY(360deg);
    }
}

.floating-panel,
.floating-stat {
    position: absolute;

    z-index: 4;

    background: rgba(5, 32, 40, 0.88);

    border: 1px solid rgba(126, 238, 233, 0.16);

    backdrop-filter: blur(15px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.28);

    border-radius: 16px;
}

.floating-panel {
    padding: 12px 14px;

    display: flex;

    flex-direction: column;

    gap: 2px;

    animation:
        floatCard 5s ease-in-out infinite;
}

.floating-panel small,
.floating-panel span {
    font-size: 9px;
    color: #88abb2;
    letter-spacing: 1px;
}

.floating-panel b {
    font-size: 14px;
}

.panel-code {
    left: 0;
    top: 28%;

    transform: translateZ(50px);
}

.panel-ai {
    right: 0;
    top: 15%;

    color: #74e6dd;

    animation-delay: -1.5s;
}

.panel-career {
    right: 2%;
    bottom: 12%;

    animation-delay: -3s;
}

.panel-ai i,
.panel-career i {
    font-size: 18px;

    color: var(--green);

    margin-bottom: 4px;
}

.core-bottom {
    justify-content: center;
    gap: 13px;
}

.core-bottom b {
    color: var(--green);
}

@keyframes floatCard {
    50% {
        transform:
            translateY(-12px)
            translateZ(45px);
    }
}

.floating-stat {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 14px;

    animation:
        floatCard 4s ease-in-out infinite;
}

.floating-stat i {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: rgba(20, 184, 200, 0.12);

    color: #64dfe0;
}

.floating-stat b,
.floating-stat small {
    display: block;
}

.floating-stat b {
    font-size: 10px;
}

.floating-stat small {
    font-size: 9px;
    color: var(--text-soft);
}

.stat-one {
    left: 0;
    bottom: 12%;
}

.stat-two {
    right: 0;
    top: 12%;

    animation-delay: -2s;
}

.hero-scroll {
    position: absolute;

    bottom: 25px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 10px;

    align-items: center;

    color: var(--text-faint);

    font-size: 9px;

    letter-spacing: 2px;
}

.hero-scroll i {
    color: var(--cyan);

    animation:
        scrollBounce 1.5s infinite;
}

@keyframes scrollBounce {
    50% {
        transform: translateY(5px);
    }
}

/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    background: rgba(255, 255, 255, 0.018);
}

.trust-inner {
    min-height: 72px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 22px;

    overflow: hidden;
}

.trust-inner > span {
    font-size: 10px;

    color: var(--text-faint);

    letter-spacing: 1.5px;
}

.trust-inner b {
    font:
        800 11px
        "Manrope",
        sans-serif;

    color: var(--text-secondary);

    white-space: nowrap;
}

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

.metrics-grid {
    display: grid;

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

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

    border-radius: 24px;

    background: rgba(255, 255, 255, 0.018);

    overflow: hidden;
}

.metric {
    padding: 32px;

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

    position: relative;
}

.metric:last-child {
    border: 0;
}

.metric strong {
    font:
        800 43px
        "Manrope",
        sans-serif;
}

.metric > span {
    font-size: 22px;

    color: var(--green);

    font-weight: 800;
}

.metric p {
    font-size: 12px;

    color: var(--text-secondary);

    margin-top: 8px;

    line-height: 1.55;
}

/* Animated statistics */

.stats-section .metrics-grid {
    grid-template-columns:
        repeat(4, 1fr);

    gap: 0;
}

.stats-section .metric {
    text-align: center;

    padding: 25px 20px;
}

.stats-section .metric strong {
    display: inline-block;

    font-variant-numeric: tabular-nums;

    font-size:
        clamp(52px, 5vw, 78px);

    line-height: 0.95;

    font-weight: 900;

    letter-spacing: -4px;

    background:
        linear-gradient(
            110deg,
            #3b82f6 0%,
            #20d9d2 50%,
            #55e6a5 100%
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-section .metric > span {
    font-size:
        clamp(52px, 5vw, 78px);

    font-weight: 800;

    line-height: 0.95;

    margin-left: 3px;

    background:
        linear-gradient(
            110deg,
            #3b82f6,
            #20d9d2,
            #55e6a5
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* The section-in-view highlight lives with the section dividers below. */

.stats-section .metric p {
    margin: 14px auto 0;

    max-width: 180px;

    font-size: 12px;

    line-height: 1.55;

    color: var(--text-secondary);
}

/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {
    display: grid;

    grid-template-columns: 1fr 0.7fr;

    align-items: end;

    gap: 50px;

    margin-bottom: 55px;
}

.section-heading h2,
.experience-copy h2,
.showcase-copy h2,
.register-copy h2 {
    font:
        800 clamp(38px, 5vw, 60px) / 1.04
        "Manrope",
        sans-serif;

    letter-spacing: -2.5px;

    margin-top: 15px;

    color: var(--text-primary);
}

.section-heading > p,
.experience-copy > p,
.showcase-copy > p,
.register-copy > p {
    color: var(--text-secondary);

    font-size: 15px;

    line-height: 1.8;

    max-width: 500px;
}

/* =========================================================
   PROGRAMS
========================================================= */

.programs-section {
    overflow: hidden;
}

.programs-marquee {
    width: 100%;
    max-width: none;

    overflow: hidden;

    padding: 0 0 8px;
}

.programs-row {
    display: flex;

    gap: 18px;

    width: max-content;

    padding: 0 20px 18px;

    will-change: transform;
}

.program-card {
    width: 360px;

    flex: 0 0 360px;

    min-height: 430px;

    position: relative;

    overflow: hidden;

    border-radius: 25px;

    border: 1px solid rgba(151, 239, 236, 0.13);

    background: #071f28;

    color: #ffffff;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.24);

    padding: 25px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    transform-style: preserve-3d;

    transition:
        box-shadow 0.35s,
        border-color 0.35s;
}

.programs-row.row-right {
    animation:
        programsRight 30s linear infinite;
}

.programs-row.row-left {
    animation:
        programsLeft 30s linear infinite;
}

.programs-marquee:hover .programs-row {
    animation-play-state: paused;
}

@keyframes programsRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes programsLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.program-card:hover {
    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.42);

    border-color:
        rgba(75, 227, 220, 0.4);
}

.program-image {
    position: absolute;

    inset: 0;

    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0.43;

    transition:
        transform 0.7s,
        opacity 0.5s;
}

.program-card:hover .program-image img {
    transform: scale(1.1);

    opacity: 0.55;
}

.program-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(3, 17, 22, 0.15) 15%,
            rgba(3, 19, 25, 0.25) 42%,
            #04161d 92%
        );
}

.program-tag,
.card-number,
.program-card h3,
.program-card p,
.learn-more {
    position: relative;
    z-index: 2;
}

.program-tag {
    color: #71e4db;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.7px;
}

.card-number {
    position: absolute;

    top: 20px;
    right: 20px;

    font:
        800 11px
        "Manrope",
        sans-serif;

    color: rgba(255, 255, 255, 0.65);

    z-index: 3;
}

.program-card h3 {
    font:
        800 27px / 1.05
        "Manrope",
        sans-serif;

    margin: 9px 0;

    color: #ffffff;
}

.program-card p {
    color: #c1d5d9;

    font-size: 12px;

    max-width: 300px;

    line-height: 1.65;
}

.learn-more {
    margin-top: 16px;

    align-self: flex-start;

    background: transparent;

    color: #ffffff;

    font-size: 10px;

    font-weight: 800;

    display: flex;

    gap: 8px;

    align-items: center;
}

.learn-more i {
    color: var(--green);

    transition: 0.2s;
}

.program-card:hover .learn-more i {
    transform:
        translate(4px, -3px);
}

.featured-program {
    background:
        linear-gradient(
            135deg,
            #073b45,
            #06372e
        );
}

/* =========================================================
   WHY ABS / EXPERIENCE
========================================================= */

.experience-section {
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(8, 126, 164, 0.035),
            transparent
        );
}

.experience-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;

    align-items: center;
}

.experience-copy {
    position: sticky;
    top: 130px;
}

.text-link {
    display: inline-flex;

    gap: 10px;

    align-items: center;

    margin-top: 25px;

    color: #7de4df;

    font-size: 11px;

    font-weight: 800;
}

.feature-card {
    display: grid;

    grid-template-columns: 58px 1fr;

    gap: 18px;

    padding: 25px 0;

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

.feature-card:last-child {
    border: 0;
}

.feature-icon {
    width: 50px;
    height: 50px;

    border-radius: 16px;

    display: grid;

    place-items: center;

    background:
        linear-gradient(
            145deg,
            rgba(20, 184, 200, 0.16),
            rgba(16, 185, 129, 0.09)
        );

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

    color: #62e1df;
}

.feature-card span {
    font-size: 9px;

    color: #68dcd5;

    letter-spacing: 1.5px;

    font-weight: 800;
}

.feature-card h3 {
    font:
        700 21px
        "Manrope",
        sans-serif;

    margin: 5px 0;

    color: var(--text-primary);
}

.feature-card p {
    font-size: 12px;

    color: var(--text-secondary);

    max-width: 550px;

    line-height: 1.65;
}
/* =========================================================
   ABS ACADEMY
   WHAT YOU GET + FAQ
   MATCHES THE MAIN WEBSITE THEME
========================================================= */


/* =========================================================
   SHARED SECTION BACKGROUND
========================================================= */

.what-you-get-section,
.faq-section {

    position: relative;

    padding: 120px 24px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(8, 126, 164, 0.045),
            transparent
        );

}


/* =========================================================
   KEEP CONTENT ABOVE BUBBLES
========================================================= */

.what-you-get-container,
.faq-container {

    position: relative;

    z-index: 5;

    max-width: 1200px;

    margin: 0 auto;

}

/* Pricing information below the benefit grid */
.pricing-panel {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 28px;
    border: 1px solid rgba(85, 227, 222, 0.2);
    border-radius: 26px;
    overflow: hidden;
    background: rgba(10, 29, 40, 0.88);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.pricing-content {
    max-width: 760px;
    padding: 38px;
    margin: 0 auto;
}

.pricing-section .pricing-panel {
    margin-top: 0;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
}

.pricing-panel h3 {
    margin: 17px 0 10px;
    color: var(--text-primary);
    font: 800 clamp(30px, 3.6vw, 46px) / 1.05 "Manrope", sans-serif;
    letter-spacing: -2px;
}

.pricing-panel h3 span {
    background: linear-gradient(100deg, #45dce4, #55e6a5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-intro {
    max-width: 520px;
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.price-box {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin: 26px 0 25px;
    padding: 22px;
    border-radius: 18px;
    background: rgba(3, 16, 26, 0.52);
}

.price-box strong,
.price-box span {
    display: block;
}

.price-box strong {
    color: var(--text-primary);
    font: 800 clamp(38px, 4.5vw, 54px) / 1 "Manrope", sans-serif;
    letter-spacing: -2px;
}

.price-box span {
    margin-top: 6px;
    color: var(--text-secondary);
    font-size: 12px;
}

.price-box b {
    flex: 0 0 auto;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(20, 184, 200, 0.12);
    color: #72e0db;
    font-size: 11px;
}

.pricing-panel h4 {
    margin-bottom: 14px;
    color: var(--text-primary);
    font: 700 17px "Manrope", sans-serif;
}

.pricing-benefits {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--text-primary);
    font-size: 13px;
}

.pricing-benefits li {
    display: flex;
    align-items: center;
    gap: 11px;
}

.pricing-benefits i {
    display: grid;
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    place-items: center;
    border-radius: 50%;
    background: rgba(20, 184, 200, 0.14);
    color: #72e0db;
    font-size: 10px;
}

.pricing-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 27px;
}

.pricing-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pricing-trust span {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    font-size: 10px;
    font-weight: 700;
}

.pricing-trust i {
    color: #ff647c;
}

.pricing-visual {
    position: relative;
    min-height: 530px;
    overflow: hidden;
}

.pricing-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 12, 21, 0.05), rgba(2, 12, 21, 0.58));
}

.pricing-visual > img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
}

.pricing-visual-overlay {
    position: absolute;
    z-index: 1;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(4, 21, 29, 0.76);
    backdrop-filter: blur(12px);
}

.pricing-visual-overlay > i {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 10px;
    background: rgba(20, 184, 200, 0.15);
    color: #72e0db;
}

.pricing-visual-overlay strong,
.pricing-visual-overlay small {
    display: block;
}

.pricing-visual-overlay strong {
    color: #fff;
    font-size: 12px;
}

.pricing-visual-overlay small {
    color: #b9d0d5;
    font-size: 10px;
}

/* Journey: complete desktop layout (the mobile rules are defined further below). */
.journey-section {
    overflow: hidden;
}

.journey-section .container {
    position: relative;
}

.journey-section .section-heading {
    display: block;
    max-width: 650px;
    margin: 0 auto 72px;
    text-align: center;
}

.journey-section .section-heading h2 {
    margin-top: 15px;
}

.journey-section .section-heading p {
    max-width: 510px;
    margin: 18px auto 0;
}

.journey-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.journey-line {
    position: absolute;
    left: calc(12.5% + 5px);
    right: calc(12.5% + 5px);
    height: 1px;
    margin-top: 32px;
    background: linear-gradient(90deg, transparent, rgba(85, 227, 222, 0.65), transparent);
}

.journey-step {
    position: relative;
    min-width: 0;
    padding: 62px 14px 0;
    text-align: center;
}

.step-dot {
    position: absolute;
    z-index: 1;
    top: 19px;
    left: 50%;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    transform: translateX(-50%);
    border: 1px solid rgba(85, 227, 222, 0.65);
    border-radius: 50%;
    background: var(--navy);
    box-shadow: 0 0 0 6px rgba(4, 21, 29, 0.7);
    color: var(--cyan);
    font-size: 9px;
    font-weight: 800;
}

.journey-illustration {
    height: 154px;
    margin-bottom: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--glass);
}

.journey-illustration img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.journey-step:hover .journey-illustration img {
    transform: scale(1.06);
}

.journey-step > span {
    color: var(--cyan);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.journey-step h3 {
    margin: 7px 0 9px;
    color: var(--text-primary);
    font: 700 20px / 1.25 "Manrope", sans-serif;
}

.journey-step p {
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.65;
}

body.light-mode .step-dot {
    background: #f3f9fa;
    box-shadow: 0 0 0 6px rgba(243, 249, 250, 0.9);
}


/* =========================================================
   WHAT YOU GET
========================================================= */

.what-you-get-heading {

    position: relative;

    z-index: 5;

    text-align: center;

    display: block;

    max-width: 860px;

    margin: 0 auto 58px;

}

.what-you-get-heading .section-label-featured,
.faq-heading .section-label-featured {
    padding: 8px 13px;
    border: 1px solid rgba(85, 227, 222, 0.2);
    border-radius: 999px;
    background: rgba(42, 184, 183, 0.08);
    color: #72e0db;
    font-size: 10px;
    letter-spacing: 1.45px;
}

.section-label-featured i {
    font-size: 11px;
}


/* =========================================================
   EYEBROW
========================================================= */

.what-you-get-heading .section-eyebrow,
.faq-heading .section-eyebrow {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    color: var(--cyan);

    font-size: 10px;

    letter-spacing: 1.8px;

    font-weight: 800;

}


.what-you-get-heading .eyebrow-line,
.faq-heading .eyebrow-line {

    width: 35px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #2ab8b7
        );

    opacity: 0.7;

}


.what-you-get-heading
.eyebrow-line:last-child,

.faq-heading
.eyebrow-line:last-child {

    background:
        linear-gradient(
            90deg,
            #2ab8b7,
            transparent
        );

}


/* =========================================================
   WHAT YOU GET TITLE
========================================================= */

.what-you-get-heading h2 {

    margin: 16px 0 0;

    font:
        800 clamp(38px, 5vw, 60px) / 1.04
        "Manrope",
        sans-serif;

    letter-spacing: -2.5px;

    color: var(--text-primary);

}


.what-you-get-heading h2 span {

    background:
        linear-gradient(
            90deg,
            var(--cyan),
            var(--green)
        );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

}


/* =========================================================
   WHAT YOU GET DESCRIPTION
========================================================= */

.what-you-get-heading > p {

    margin: 19px auto 0;

    max-width: 650px;

    font-size: 15px;

    line-height: 1.7;

    color: var(--text-secondary);

}


/* =========================================================
   WHAT YOU GET GRID
========================================================= */

.what-you-get-grid {

    position: relative;

    z-index: 5;

    display: grid;

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

    gap: 18px;

}

/* =========================================================
   BENEFIT CARD
========================================================= */

.benefit-card {

    position: relative;

    display: flex;

    flex-direction: column;

    min-height: 230px;

    padding: 25px;

    overflow: hidden;

    border:
        1px solid
        rgba(85, 227, 222, 0.14);

    border-radius: 20px;

    background:
        rgba(6, 34, 43, 0.48);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;

}


/* =========================================================
   CARD DECORATIVE GLOW
========================================================= */

.benefit-card::before {

    content: "";

    position: absolute;

    width: 90px;

    height: 90px;

    right: -35px;

    top: -35px;

    border-radius: 50%;

    border:
        1px solid
        rgba(85, 227, 222, 0.14);

    background:
        radial-gradient(
            circle,
            rgba(42, 184, 183, 0.08),
            transparent 70%
        );

    pointer-events: none;

}


/* =========================================================
   CARD HOVER
========================================================= */

.benefit-card:hover {

    transform:
        translateY(-4px);

    border-color:
        rgba(85, 227, 222, 0.30);

    background:
        rgba(6, 42, 52, 0.62);

}


/* =========================================================
   BENEFIT ICON
========================================================= */

.benefit-icon {

    width: 44px;

    height: 44px;

    display: grid;

    place-items: center;

    border-radius: 13px;

    background:
        rgba(42, 184, 183, 0.07);

    border:
        1px solid
        rgba(85, 227, 222, 0.22);

    color: #72e0db;

    font-size: 16px;

}


/* =========================================================
   BENEFIT CONTENT
========================================================= */

.benefit-content {

    position: relative;

    z-index: 2;

}


/* =========================================================
   BENEFIT IMAGE
========================================================= */

.benefit-image {

    position: relative;

    z-index: 2;

    width: 100%;

    height: 120px;

    margin-top: auto;

    padding-top: 18px;

    overflow: hidden;

    border-radius: 14px;

    border:
        1px solid
        rgba(85, 227, 222, 0.12);

}


.benefit-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

}


/* =========================================================
   BENEFIT TITLE
========================================================= */

.benefit-card h3 {

    margin: 15px 0 8px;

    font:
        700 19px
        "Manrope",
        sans-serif;

    line-height: 1.3;

    color: var(--text-primary);

}


/* =========================================================
   BENEFIT DESCRIPTION
========================================================= */

.benefit-card p {

    margin: 0;

    max-width: 300px;

    font-size: 12px;

    line-height: 1.65;

    color: var(--text-secondary);

}


/* =========================================================
   CARD SIZES
========================================================= */

.benefit-card-large {

    min-height: 250px;

}


.benefit-card-wide {

    grid-column:
        span 2;

}


/* =========================================================
   FAQ SECTION
========================================================= */

.faq-heading {

    position: relative;

    z-index: 5;

    text-align: center;

    display: block;

    max-width: 860px;

    margin: 0 auto 58px;

}


/* =========================================================
   FAQ TITLE
========================================================= */

.faq-heading h2 {

    margin: 16px 0 0;

    font:
        800 clamp(38px, 5vw, 60px) / 1.04
        "Manrope",
        sans-serif;

    letter-spacing: -2.5px;

    color: var(--text-primary);

}


.faq-heading h2 span {

    background:
        linear-gradient(
            90deg,
            var(--cyan),
            var(--green)
        );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

}


/* =========================================================
   FAQ DESCRIPTION
========================================================= */

.faq-heading > p {

    margin: 19px auto 0;

    max-width: 650px;

    font-size: 15px;

    line-height: 1.7;

    color: var(--text-secondary);

}


/* =========================================================
   FAQ LIST
========================================================= */

.faq-list {

    position: relative;

    z-index: 5;

    max-width: 900px;

    margin: 0 auto;

    display: grid;

    gap: 12px;

}


/* =========================================================
   FAQ ITEM
========================================================= */

.faq-item {

    position: relative;

    overflow: hidden;

    border:
        1px solid
        rgba(85, 227, 222, 0.14);

    border-radius: 16px;

    background:
        rgba(6, 34, 43, 0.48);

    transition:
        border-color 0.3s ease,
        background 0.3s ease;

}


.faq-item:hover {

    border-color:
        rgba(85, 227, 222, 0.28);

    background:
        rgba(6, 42, 52, 0.55);

}


.faq-item.active {

    border-color:
        rgba(85, 227, 222, 0.35);

    background:
        rgba(6, 42, 52, 0.62);

}


/* =========================================================
   FAQ QUESTION
========================================================= */

.faq-question {

    width: 100%;

    min-height: 62px;

    padding: 15px 18px;

    border: none;

    outline: none;

    background: transparent;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    cursor: pointer;

    text-align: left;

    font:
        700 15px
        "Manrope",
        sans-serif;

    line-height: 1.4;

    color: var(--text-primary);

}


.faq-question:hover {

    color: var(--cyan);

}


/* =========================================================
   FAQ PLUS
========================================================= */

.faq-plus {

    width: 30px;

    height: 30px;

    flex: 0 0 30px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        rgba(42, 184, 183, 0.07);

    border:
        1px solid
        rgba(85, 227, 222, 0.25);

    color: #72e0db;

    font-size: 11px;

    transition:
        transform 0.3s ease,
        background 0.3s ease;

}


.faq-item.active
.faq-plus {

    transform:
        rotate(45deg);

    background:
        rgba(42, 184, 183, 0.14);

}


/* =========================================================
   FAQ ANSWER
========================================================= */

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.28s ease;
}


.faq-item.active
.faq-answer {
    grid-template-rows: 1fr;
}


.faq-answer p {

    margin: 0;

    padding:
        0 18px;

    overflow: hidden;

    max-width: 850px;

    font-size: 12px;

    line-height: 1.7;

    color: var(--text-secondary);

}

.faq-item.active .faq-answer p {
    padding-bottom: 18px;
}


/* =========================================================
   FLOATING BUBBLES
========================================================= */

.section-bubble {

    position: absolute;

    z-index: 1;

    display: block;

    border-radius: 50%;

    pointer-events: none;

    border:
        1px solid
        rgba(85, 227, 222, 0.38);

    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(42, 184, 183, 0.18),
            rgba(42, 184, 183, 0.07) 45%,
            rgba(42, 184, 183, 0.015) 68%,
            transparent 75%
        );

    box-shadow:
        inset 0 0 18px
        rgba(42, 184, 183, 0.10),

        0 0 25px
        rgba(42, 184, 183, 0.08);

    animation:
        abs-section-bubble
        7s
        ease-in-out
        infinite;

}


/* =========================================================
   BUBBLE 1
========================================================= */

.what-you-get-section
.bubble-1 {

    width: 88px;

    height: 88px;

    left: 5%;

    top: 18%;

}


.what-you-get-section
.bubble-2 {

    width: 52px;

    height: 52px;

    right: 10%;

    top: 46%;

    animation-delay:
        -2s;

}


.what-you-get-section
.bubble-3 {

    width: 32px;

    height: 32px;

    right: 4%;

    bottom: 8%;

    animation-delay:
        -4s;

}


/* =========================================================
   FAQ BUBBLES
========================================================= */

.faq-section
.bubble-1 {

    width: 88px;

    height: 88px;

    right: 5%;

    top: 18%;

    animation-delay:
        -1s;

}


.faq-section
.bubble-2 {

    width: 52px;

    height: 52px;

    left: 6%;

    top: 50%;

    animation-delay:
        -3s;

}


.faq-section
.bubble-3 {

    width: 32px;

    height: 32px;

    right: 11%;

    bottom: 8%;

    animation-delay:
        -5s;

}


/* =========================================================
   BUBBLE HIGHLIGHT
========================================================= */

.section-bubble::after {

    content: "";

    position: absolute;

    width: 7px;

    height: 7px;

    left: 25%;

    top: 20%;

    border-radius: 50%;

    background:
        rgba(114, 224, 219, 0.45);

    box-shadow:
        0 0 12px
        rgba(114, 224, 219, 0.35);

}


/* =========================================================
   BUBBLE ANIMATION
========================================================= */

@keyframes abs-section-bubble {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-12px);

    }

}


/* =========================================================
   LIGHT MODE
   KEEP SAME VISUAL LANGUAGE
========================================================= */

body.light-mode
.what-you-get-section,

body.light-mode
.faq-section {

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(8, 126, 164, 0.06),
            transparent
        );

}


/* =========================================================
   LIGHT MODE HEADINGS
========================================================= */

body.light-mode
.what-you-get-heading h2,

body.light-mode
.faq-heading h2 {

    color:
        #17363e;

}


/* =========================================================
   LIGHT MODE DESCRIPTION
========================================================= */

body.light-mode
.what-you-get-heading > p,

body.light-mode
.faq-heading > p {

    color:
        #31535b;

    font-weight:
        600;

}

body.light-mode .pricing-panel {
    border-color: rgba(8, 126, 164, 0.2);
    background: linear-gradient(120deg, rgba(20, 184, 200, 0.12), rgba(255, 255, 255, 0.86));
}

body.light-mode .price-box {
    background: #0b2531;
}

body.light-mode .price-box strong {
    color: #fff;
}

body.light-mode .price-box span {
    color: #b9d0d5;
}


/* =========================================================
   LIGHT MODE CARD TEXT
========================================================= */

body.light-mode
.benefit-card h3,

body.light-mode
.faq-question {

    color:
        #17363e;

}


body.light-mode
.benefit-card p,

body.light-mode
.faq-answer p {

    color:
        #47666d;

    font-weight:
        500;

}


/* =========================================================
   LIGHT MODE CARDS
========================================================= */

body.light-mode
.benefit-card,

body.light-mode
.faq-item {

    background:
        rgba(255, 255, 255, 0.78);

    border-color:
        rgba(8, 126, 164, 0.18);

}


body.light-mode
.benefit-card:hover,

body.light-mode
.faq-item:hover {

    background:
        rgba(255, 255, 255, 0.94);

    border-color:
        rgba(8, 126, 164, 0.32);

}


body.light-mode
.faq-item.active {

    background:
        rgba(255, 255, 255, 0.96);

    border-color:
        rgba(8, 126, 164, 0.36);

}


/* =========================================================
   LIGHT MODE ICONS
========================================================= */

body.light-mode
.benefit-icon,

body.light-mode
.faq-plus {

    background:
        rgba(8, 126, 164, 0.07);

    border-color:
        rgba(8, 126, 164, 0.22);

    color:
        #087ea4;

}


/* =========================================================
   LIGHT MODE BUBBLES
========================================================= */

body.light-mode
.section-bubble {

    border-color:
        rgba(8, 126, 164, 0.28);

    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(20, 184, 200, 0.14),
            rgba(20, 184, 200, 0.05) 48%,
            transparent 75%
        );

    box-shadow:
        inset 0 0 15px
        rgba(8, 126, 164, 0.08),

        0 0 22px
        rgba(8, 126, 164, 0.06);

}


body.light-mode
.section-bubble::after {

    background:
        rgba(8, 126, 164, 0.38);

    box-shadow:
        0 0 10px
        rgba(8, 126, 164, 0.20);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .pricing-panel {
        grid-template-columns: 1fr;
    }

    .pricing-section .pricing-panel {
        grid-template-columns: 1fr;
    }

    .what-you-get-grid {

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

    }


    .benefit-card-wide {

        grid-column:
            span 2;

    }


    .what-you-get-heading,
    .faq-heading {

        margin-bottom:
            55px;

    }

}


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

@media (max-width: 600px) {

    .what-you-get-section,
    .faq-section {
        padding: 70px 18px;
    }

    .pricing-panel {
        margin-top: 18px;
        border-radius: 18px;
    }

    .pricing-content {
        padding: 28px 20px;
    }

    .pricing-intro {
        font-size: 13px;
    }

    .price-box {
        align-items: flex-start;
        flex-direction: column;
        margin: 22px 0;
        padding: 19px;
    }

    .pricing-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .pricing-footer .btn {
        width: 100%;
        justify-content: center;
    }


    .what-you-get-heading,
    .faq-heading {

        max-width:
            100%;

        margin-bottom:
            45px;

    }


    .what-you-get-heading h2,
    .faq-heading h2 {

        font-size:
            32px;

        letter-spacing:
            -0.6px;

    }


    .what-you-get-heading > p,
    .faq-heading > p {

        font-size:
            13px;

        line-height:
            1.7;

        padding:
            0 8px;

    }


    /* -------------------------
       Cards
    ------------------------- */

    .what-you-get-grid {

        grid-template-columns:
            1fr;

        gap:
            14px;

    }


    .benefit-card,
    .benefit-card-large {

        min-height:
            auto;

        padding:
            21px;

    }


    .benefit-card-wide {

        grid-column:
            span 1;

    }


    .benefit-card h3 {

        font-size:
            18px;

    }


    .benefit-card p {

        max-width:
            none;

        font-size:
            12px;

    }


    .benefit-image {

        height:
            130px;

    }


    /* -------------------------
       FAQ
    ------------------------- */

    .faq-list {

        gap:
            10px;

    }


    .faq-question {

        min-height:
            58px;

        padding:
            14px;

        font-size:
            13px;

        gap:
            10px;

    }


    .faq-plus {

        width:
            28px;

        height:
            28px;

        flex-basis:
            28px;

        font-size:
            10px;

    }


    .faq-answer p {

        padding:
            0 14px 16px;

        font-size:
            12px;

        line-height:
            1.65;

    }

    /* Keep mobile answers fully hidden until their question is opened. */
    .faq-answer {
        display: none;
    }

    .faq-item.active .faq-answer {
        display: block;
    }


    /* -------------------------
       Mobile bubbles
    ------------------------- */

    .what-you-get-section
    .bubble-1,

    .faq-section
    .bubble-1 {

        width:
            58px;

        height:
            58px;

    }


    .what-you-get-section
    .bubble-2,

    .faq-section
    .bubble-2 {

        width:
            40px;

        height:
            40px;

    }


    .what-you-get-section
    .bubble-3,

    .faq-section
    .bubble-3 {

        width:
            27px;

        height:
            27px;

    }


    .what-you-get-section
    .bubble-1 {

        left:
            -15px;

        top:
            20%;

    }


    .what-you-get-section
    .bubble-2 {

        right:
            4%;

        top:
            48%;

    }


    .what-you-get-section
    .bubble-3 {

        right:
            3%;

        bottom:
            7%;

    }


    .faq-section
    .bubble-1 {

        right:
            -15px;

        top:
            18%;

    }


    .faq-section
    .bubble-2 {

        left:
            3%;

        top:
            52%;

    }


    .faq-section
    .bubble-3 {

        right:
            4%;

        bottom:
            7%;

    }

}

/* =========================================================
   SHOWCASE
========================================================= */

.showcase-card {
    min-height: 560px;

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

    border-radius: 32px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(20, 184, 200, 0.12),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            rgba(8, 50, 60, 0.8),
            rgba(4, 27, 35, 0.85)
        );

    padding: 65px;

    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    align-items: center;

    gap: 55px;

    overflow: hidden;

    transform-style: preserve-3d;
}

.showcase-copy h2 {
    font-size: 48px;
}

.mini-pills {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 25px;
}

.mini-pills span {
    font-size: 10px;

    padding: 8px 10px;

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

    border-radius: 50px;

    color: var(--text-secondary);
}

.mini-pills i {
    color: var(--green);

    margin-right: 5px;
}

.dashboard-mock {
    border: 1px solid rgba(127, 239, 235, 0.18);

    border-radius: 22px;

    background: #03161d;

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.4);

    overflow: hidden;

    transform:
        rotateY(-8deg)
        rotateX(4deg)
        translateZ(30px);

    transition: 0.6s;
}

.showcase-card:hover .dashboard-mock {
    transform:
        rotateY(0)
        rotateX(0)
        translateZ(45px)
        translateY(-8px);
}

.mock-head {
    height: 48px;

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

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 16px;

    font-size: 9px;

    color: #91b5bc;

    letter-spacing: 1px;
}

.mock-head i {
    color: var(--green);
}

.mock-body {
    display: grid;

    grid-template-columns: 55px 1fr;

    min-height: 280px;
}

.mock-sidebar {
    border-right: 1px solid var(--line);

    display: flex;

    flex-direction: column;

    align-items: center;

    padding-top: 18px;

    gap: 24px;

    color: #6f9198;
}

.mock-sidebar i:first-child {
    color: #69dfda;
}

.mock-main {
    padding: 28px;
}

.mock-title {
    font:
        700 16px
        "Manrope",
        sans-serif;

    color: #ffffff;
}

.mock-title b {
    float: right;

    color: #59dfb0;
}

.progress {
    height: 6px;

    background: #0b3038;

    border-radius: 50px;

    margin: 16px 0 28px;

    overflow: hidden;
}

.progress i {
    display: block;

    width: 82%;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            var(--cyan),
            var(--green)
        );

    border-radius: 50px;
}

.mock-grid {
    display: grid;

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

    gap: 10px;
}

.mock-grid div {
    padding: 16px;

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

    border-radius: 13px;

    background: rgba(255, 255, 255, 0.025);
}

.mock-grid small,
.mock-grid span {
    display: block;

    font-size: 8px;

    color: #7899a0;
}

.mock-grid b {
    display: block;

    font-size: 11px;

    margin: 8px 0;

    color: #ffffff;
}

/* =========================================================
   REVIEWS
========================================================= */

.reviews-section {
    overflow: hidden;
}

.reviews-viewport {
    width: 100%;

    overflow: hidden;

    cursor: grab;
}

.reviews-viewport:active {
    cursor: grabbing;
}

.reviews-track {
    display: flex;

    gap: 18px;

    width: max-content;

    will-change: transform;

    padding: 5px 30px 20px;
}

.review-video-card {
    width: 300px;

    flex: 0 0 300px;

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

    border-radius: 23px;

    background: rgba(255, 255, 255, 0.025);

    overflow: hidden;

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.2);
}

.video-shell {
    height: auto;

    aspect-ratio: 9 / 16;

    position: relative;

    background: #061b22;

    overflow: hidden;
}

.video-shell blockquote {
    margin: 0 !important;

    min-width: 100% !important;
}

.review-video {
display: block;
width: 100%;
height: 100%;
border: 0;
background: #061b22;
}

/* YouTube Shorts iframe */
.video-shell iframe.review-video {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
border: 0;
display: block;
}

/* Keep Shorts in vertical 9:16 format */
.video-shell {
position: relative;
width: 100%;
aspect-ratio: 9 / 16;
overflow: hidden;
background: #061b22;
}

.review-video:focus-visible {
outline: 2px solid var(--cyan);
outline-offset: -2px;
}


.review-video:focus-visible {
    outline: 2px solid var(--cyan);

    outline-offset: -2px;
}

.video-placeholder {
    height: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background:
        radial-gradient(
            circle at 35% 25%,
            rgba(20, 184, 200, 0.2),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #062b35,
            #07372d
        );

    text-align: center;
}

.gradient-two {
    background:
        radial-gradient(
            circle at 70% 20%,
            rgba(16, 185, 129, 0.25),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #052831,
            #073e35
        );
}

.gradient-three {
    background:
        radial-gradient(
            circle at 30% 20%,
            rgba(27, 185, 222, 0.24),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #062433,
            #063c3c
        );
}

.gradient-four {
    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(61, 220, 151, 0.2),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #052d32,
            #073329
        );
}

.play-ring {
    width: 68px;
    height: 68px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    border: 1px solid rgba(139, 240, 235, 0.45);

    background: rgba(255, 255, 255, 0.07);

    box-shadow:
        0 0 0 12px rgba(20, 184, 200, 0.05);

    color: #7ce9e2;

    margin-bottom: 20px;

    transition: 0.3s;
}

.video-placeholder:hover .play-ring {
    transform: scale(1.08);

    box-shadow:
        0 0 0 20px rgba(20, 184, 200, 0.05);
}

.video-placeholder span {
    font-size: 10px;

    letter-spacing: 2px;

    color: #80ded8;

    font-weight: 800;
}

.video-placeholder small {
    font-size: 10px;

    color: #8caab0;

    margin-top: 6px;
}

.video-fallback {
    position: absolute;

    inset: 0;

    display: none;
}

.review-meta {
    padding: 18px;
}

.review-meta span {
    font-size: 9px;

    letter-spacing: 1.5px;

    color: var(--green);

    font-weight: 800;
}

.review-meta b {
    display: block;

    font:
        700 14px
        "Manrope",
        sans-serif;

    margin-top: 6px;

    color: var(--text-primary);
}

.review-meta p {
    font-size: 12px;

    color: var(--text-secondary);

    margin-top: 6px;
}

.carousel-controls {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 8px;

    color: var(--text-soft);

    font-size: 10px;

    letter-spacing: 0.5px;
}

.carousel-controls button {
    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.04);

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

    color: var(--white);

    margin-left: 6px;

    transition: 0.2s;
}

.carousel-controls button:hover {
    background: var(--cyan);

    color: #ffffff;

    transform: translateY(-2px);
}

/* =========================================================
   REGISTRATION
========================================================= */

.register-section {
    padding-top: 70px;
}

.register-wrap {
    display: grid;

    grid-template-columns:
        0.95fr 1.05fr;

    gap: 65px;

    align-items: center;
}

.register-copy h2 {
    font-size: 52px;
}

.register-points {
    display: grid;

    gap: 12px;

    margin-top: 25px;
}

.register-points span {
    font-size: 16px;

    color: var(--text-secondary);

    line-height: 1.5;
}

.register-points i {
    color: var(--green);

    margin-right: 8px;
}

.registration-card {
    border: 1px solid rgba(122, 236, 233, 0.16);

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(8, 50, 60, 0.9),
            rgba(3, 24, 31, 0.96)
        );

    padding: 32px;

    box-shadow: var(--shadow);

    position: relative;

    overflow: hidden;
}

.registration-card::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -130px;
    top: -130px;

    border-radius: 50%;

    background: rgba(20, 184, 200, 0.11);

    filter: blur(20px);
}

.form-top {
    position: relative;

    display: flex;

    justify-content: space-between;

    gap: 15px;

    margin-bottom: 25px;
}

.form-top > div:first-child > span {
    font-size: 14px;

    letter-spacing: 1.6px;

    color: #63ddd7;

    font-weight: 800;
}

.form-top h3 {
    font:
        800 27px
        "Manrope",
        sans-serif;

    margin: 3px 0;

    color: #ffffff;
}

.form-top p {
    font-size: 11px;

    color: #a8c2c7;
}

.secure {
    height: max-content;

    padding: 7px 10px;

    border-radius: 50px;

    border: 1px solid rgba(61, 220, 151, 0.2);

    color: #78deb1;

    font-size: 9px;
}

.form-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 13px;
}

.form-group {
    display: block;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group > span {
    display: block;

    font-size: 16px;

    font-weight: 800;

    color: #c2d5d9;

    margin: 0 0 6px 2px;
}

.input-box {
    position: relative;
}

.input-box i {
    position: absolute;

    left: 13px;
    top: 50%;

    transform: translateY(-50%);

    color: #76969d;

    font-size: 11px;
}

.input-box input,
.input-box select {
    width: 100%;

    height: 45px;

    border-radius: 11px;

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

    background: rgba(255, 255, 255, 0.04);

    color: #efffff;

    outline: 0;

    padding: 0 12px 0 36px;

    font-size: 16px;

    transition: 0.2s;
}

.input-box select {
    appearance: none;
}

.input-box option {
    background: #06232c;

    color: #ffffff;
}

.input-box input::placeholder {
    color: #78959b;
}

.input-box input:focus,
.input-box select:focus {
    border-color:
        rgba(72, 224, 221, 0.55);

    box-shadow:
        0 0 0 3px rgba(20, 184, 200, 0.08);
}

.submit-btn {
    width: 100%;

    margin-top: 17px;
}

.form-note {
    display: block;

    text-align: center;

    color: #78989f;

    font-size: 9px;

    margin-top: 11px;
}

.form-note i {
    color: #63cbb3;

    margin-right: 5px;
}

.registration-error,
.registration-info {
    display: none;

    border-radius: 9px;

    padding: 9px;

    font-size: 10px;

    margin-bottom: 12px;
}

.registration-error.show {
    display: block;

    color: #ffb5b5;

    background: rgba(255, 70, 70, 0.08);

    border:
        1px solid rgba(255, 70, 70, 0.18);
}

.registration-info.show {
    display: block;

    color: #91e6bf;

    background:
        rgba(61, 220, 151, 0.08);

    border:
        1px solid rgba(61, 220, 151, 0.18);
}

/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    padding: 130px 0;

    position: relative;

    text-align: center;

    overflow: hidden;
}

.cta-glow {
    position: absolute;

    width: 600px;
    height: 250px;

    left: 50%;
    top: 45%;

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

    background:
        radial-gradient(
            ellipse,
            rgba(20, 184, 200, 0.16),
            rgba(16, 185, 129, 0.08),
            transparent 70%
        );

    filter: blur(30px);
}

.final-cta-inner {
    position: relative;
}

.final-cta h2 {
    font:
        800 clamp(42px, 6vw, 70px) / 1
        "Manrope",
        sans-serif;

    letter-spacing: -3px;

    margin: 15px 0 30px;

    color: var(--text-primary);
}

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

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

    padding: 24px 0;

    background: rgba(255, 255, 255, 0.01);
}

.footer-inner {
    min-height: 58px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.footer-brand {
    font:
        700 13px
        "Manrope",
        sans-serif;

    color: var(--text-primary);

    margin: 0;

    white-space: nowrap;
}

.footer-brand span {
    font:
        400 10px
        "DM Sans",
        sans-serif;

    color: var(--text-soft);

    margin-left: 8px;
}

.footer-legal {
    display: flex;

    align-items: center;

    gap: 24px;
}

.footer-legal a {
    font-size: 10px;

    color: var(--text-soft);

    text-decoration: none;

    white-space: nowrap;
}

.footer-legal a:hover {
    color: #65dfd9;
}

/* =========================================================
   SECTION DIVIDERS + SECTION IN VIEW
========================================================= */

/* Thin line above every stacked section. */

main > section + section:not(.trust-strip)::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: min(1200px, calc(100% - 40px));
    height: 1px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--line) 14%,
            rgba(91, 227, 226, 0.4) 50%,
            var(--line) 86%,
            transparent
        );

    pointer-events: none;

    z-index: 1;

    transition: 0.35s ease;
}

/* The trust strip draws its own rules, so skip its neighbours. */

main > section.trust-strip + section::before {
    content: none;
}

/* Soft wash + lit divider mark the section currently in view. */

main section[id] {
    transition: box-shadow 0.35s ease;
}

main section[id].section-current {
    box-shadow:
        inset 0 0 0 9999px rgba(20, 184, 200, 0.05);
}

main > section[id].section-current::before {
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(91, 227, 226, 0.52) 14%,
            var(--cyan) 50%,
            rgba(91, 227, 226, 0.52) 86%,
            transparent
        );

    box-shadow:
        0 0 14px rgba(20, 184, 200, 0.5);
}

body.light-mode main section[id].section-current {
    box-shadow:
        inset 0 0 0 9999px rgba(8, 126, 164, 0.05);
}

body.light-mode main > section[id].section-current::before {
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(8, 126, 164, 0.42) 14%,
            var(--blue) 50%,
            rgba(8, 126, 164, 0.42) 86%,
            transparent
        );

    box-shadow:
        0 0 14px rgba(8, 126, 164, 0.35);
}

/* =========================================================
   MOTION PREFERENCE
========================================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .programs-row {
        animation: none !important;
    }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

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

    .hero-content {
        text-align: center;
    }

    .hero-description {
        margin: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-proof {
        justify-content: center;
    }

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

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .experience-copy {
        position: static;
    }

    .showcase-card {
        grid-template-columns: 1fr;
    }

    .register-wrap {
        grid-template-columns: 1fr;
    }

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

    .journey-line {
        display: none;
    }

    /* Tighter navigation before the mobile menu takes over. */

    .nav-links {
        gap: 26px;
    }

    .nav-link {
        font-size: 12px;

        padding: 8px 11px;
        margin: -8px -11px;
    }
}

/* =========================================================
   MOBILE — 760PX
========================================================= */

@media (max-width: 760px) {

    /* =====================================================
       GLOBAL
    ===================================================== */

    html,
    body {
        width: 100%;
        max-width: 100%;

        overflow-x: hidden;
    }

    .container {
        width: 100%;
        max-width: 100%;

        padding-left: 18px;
        padding-right: 18px;
    }

    .section {
        padding: 60px 0;
    }

    p {
        font-size: 13px;
        line-height: 1.65;
    }

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

.nav-container {
    width: 100%;
    min-height: 68px;
    padding: 0 18px;
    gap: 10px;
}

.brand img {
    width: 115px;
}

.nav-links {
    display: none;
}

/* MOBILE MENU OPEN */
.nav-links.open {
    display: flex;

    position: absolute;
    top: 68px;
    left: 18px;
    right: 18px;

    flex-direction: column;
    gap: 4px;

    padding: 12px;

    background: rgba(3, 24, 31, 0.98);

    border: 1px solid rgba(122, 236, 233, 0.16);

    border-radius: 16px;

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);

    z-index: 9999;
}

.nav-links.open a {
    display: block;
    width: 100%;

    padding: 13px 14px;

    border-radius: 10px;

    color: var(--text-primary);

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}

.nav-links.open a:hover {
    background: rgba(20, 184, 200, 0.1);
}

.nav-links.open .nav-link {
    margin: 0;

    border-radius: 10px;
}

.nav-links.open .nav-link.active::after {
    display: none;
}

main > section + section:not(.trust-strip)::before {
    width: calc(100% - 36px);
}

.nav-actions {
    gap: 7px;
}

.theme-toggle,
.menu-toggle {
    width: 38px;
    height: 38px;
}

.nav-register {
    padding: 9px 12px;
    font-size: 9px;
}

.menu-toggle {
    display: grid;
    place-items: center;
}
    /* =====================================================
       HERO
    ===================================================== */

    .hero {
        min-height: auto;

        padding: 105px 0 55px;
    }

    .hero-container {
        width: 100%;

        padding: 0 18px;

        display: flex;

        flex-direction: column;

        gap: 35px;
    }

    .hero-content {
        width: 100%;

        text-align: left;
    }

    .hero h1 {
        font-size:
            clamp(40px, 11vw, 56px);

        line-height: 0.98;

        letter-spacing: -3px;

        margin: 18px 0;
    }

    .hero-description {
        max-width: 100%;

        font-size: 14px;

        line-height: 1.7;

        color: var(--text-secondary);
    }

    .hero-actions {
        width: 100%;

        display: flex;

        flex-direction: column;

        gap: 10px;

        margin: 24px 0;
    }

    .hero-actions .btn {
        width: 100%;

        min-height: 46px;
    }

    .hero-proof {
        margin-top: 18px;

        justify-content: flex-start;
    }

    .hero-proof strong {
        font-size: 11px;
    }

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

    /* =====================================================
       HERO 3D
    ===================================================== */

    .hero-visual {
        width: 100%;

        min-height: 350px;

        display: grid;

        place-items: center;
    }

    .hero-stage {
        width: min(360px, 92vw);
    }

    .stage-core {
        padding: 15px;
    }

    .core-illustration {
        height: 220px;
    }

    .cube,
    .cube-face {
        width: 75px;
        height: 75px;
    }

    .face-front {
        transform:
            translateZ(37.5px);
    }

    .face-back {
        transform:
            rotateY(180deg)
            translateZ(37.5px);
    }

    .face-right {
        transform:
            rotateY(90deg)
            translateZ(37.5px);
    }

    .face-left {
        transform:
            rotateY(-90deg)
            translateZ(37.5px);
    }

    .face-top {
        transform:
            rotateX(90deg)
            translateZ(37.5px);
    }

    .face-bottom {
        transform:
            rotateX(-90deg)
            translateZ(37.5px);
    }

    .floating-panel,
    .floating-stat {
        transform: scale(0.82);
    }

    .panel-code,
    .stat-one {
        left: -8px;
    }

    .panel-ai,
    .stat-two {
        right: -8px;
    }

    /* =====================================================
       SECTION HEADINGS
    ===================================================== */

    .section-heading {
        display: flex;

        flex-direction: column;

        gap: 14px;

        margin-bottom: 32px;
    }

    .section-heading h2,
    .experience-copy h2,
    .showcase-copy h2,
    .register-copy h2 {
        font-size:
            clamp(32px, 9vw, 44px);

        line-height: 1;

        letter-spacing: -2px;
    }

    .section-heading > p,
    .experience-copy > p,
    .showcase-copy > p,
    .register-copy > p {
        font-size: 13px;

        line-height: 1.7;

        color: var(--text-secondary);
    }

    /* =====================================================
       TRUST
    ===================================================== */

    .trust-strip {
        overflow: hidden;
    }

    .trust-inner {
        width: 100%;

        min-height: auto;

        padding: 18px 15px;

        display: flex;

        justify-content: center;

        align-items: center;

        flex-wrap: wrap;

        gap: 10px 16px;

        overflow: hidden;

        text-align: center;
    }

    .trust-inner > span,
    .trust-inner b {
        flex: 0 0 auto;

        white-space: nowrap;

        font-size: 10px;
    }

    .trust-inner > span {
        color: var(--text-faint);
    }

    .trust-inner b {
        color: var(--text-secondary);
    }

    /* =====================================================
       STATISTICS
    ===================================================== */

    .stats-section {
        padding: 25px 0;

        overflow: hidden;
    }

    .stats-section .metrics-grid {
        display: grid;

        grid-template-columns: 1fr 1fr;

        width: 100%;

        gap: 0;

        border-radius: 18px;

        overflow: hidden;
    }

    .stats-section .metric {
        width: 100%;

        min-width: 0;

        padding: 18px 8px;

        text-align: center;

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

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

    .stats-section .metric:nth-child(2n) {
        border-right: 0;
    }

    .stats-section .metric:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .stats-section .metric strong {
        font-size: 32px;

        letter-spacing: -2px;
    }

    .stats-section .metric > span {
        font-size: 32px;
    }

    .stats-section .metric p {
        margin-top: 7px;

        font-size: 10px;

        line-height: 1.45;

        color: var(--text-secondary);
    }

    /* =====================================================
       PROGRAMS
    ===================================================== */

    .programs-section {
        width: 100%;

        max-width: 100%;

        overflow: hidden;
    }

    .programs-section .container {
        width: calc(100% - 30px);

        max-width: 100%;

        margin: 0 auto;

        padding-left: 0;
        padding-right: 0;
    }

    .programs-section .section-heading {
        display: block;

        width: 100%;

        margin: 0 auto 30px;

        text-align: center;
    }

    .programs-section .section-heading h2 {
        font-size: 32px;

        line-height: 1.15;

        text-align: center;
    }

    .programs-section .section-heading p {
        max-width: 330px;

        margin: 12px auto 0;

        font-size: 13px;

        line-height: 1.5;

        text-align: center;
    }

    .programs-marquee {
        width: 100%;

        max-width: 100%;

        overflow: hidden;
    }

    .programs-row {
        display: flex;

        width: max-content;

        gap: 14px;

        padding: 0 15px 18px;
    }

    .program-card {
        width: 270px;

        min-width: 270px;

        flex: 0 0 270px;

        min-height: 370px;
    }

    .program-card p {
        font-size: 11px;

        line-height: 1.6;
    }

    .programs-row.row-left,
    .programs-row.row-right {
        animation-duration: 24s;
    }

    /* =====================================================
       WHY ABS / FEATURES
    ===================================================== */

    .experience-grid {
        display: flex;

        flex-direction: column;

        gap: 30px;
    }

    .experience-copy {
        position: static;
    }

    .feature-card {
        grid-template-columns: 45px 1fr;

        gap: 14px;

        padding: 20px 0;
    }

    .feature-icon {
        width: 42px;
        height: 42px;

        border-radius: 13px;
    }

    .feature-card span {
        font-size: 9px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 11px;

        line-height: 1.6;

        color: var(--text-secondary);
    }

    /* =====================================================
       JOURNEY
    ===================================================== */

    .journey-section {
        padding: 55px 0;

        overflow: hidden;
    }

    .journey-section .container {
        width: calc(100% - 30px);

        margin: 0 auto;

        padding-left: 0;
        padding-right: 0;
    }

    .journey-section .section-heading {
        display: block;

        width: 100%;

        margin: 0 auto 35px;

        text-align: center;
    }

    .journey-section .section-heading h2,
    .journey-section .section-heading p,
    .journey-section .section-heading .section-label {
        text-align: center;
    }

    .journey-section .section-heading h2 {
        font-size: 34px;

        line-height: 1.12;
    }

    .journey-section .section-heading p {
        max-width: 330px;

        margin: 12px auto 0;

        font-size: 13px;

        line-height: 1.5;
    }

    .journey-grid {
        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 32px;

        width: 100%;
    }

    .journey-line {
        display: none;
    }

    .journey-step {
        position: relative;

        width: 100%;

        max-width: 330px;

        margin: 0 auto;

        padding: 0;

        text-align: center;

        display: flex;

        flex-direction: column;

        align-items: center;
    }

    .journey-step .step-dot {
        position: relative;

        left: auto;
        right: auto;
        top: auto;
        bottom: auto;

        margin: 0 auto 12px;

        flex-shrink: 0;
    }

    .journey-step span {
        display: block;

        text-align: center;

        font-size: 9px;
    }

    .journey-step h3 {
        margin: 5px 0 7px;

        font-size: 18px;

        text-align: center;
    }

    .journey-step p {
        width: 100%;

        max-width: 300px;

        margin: 0 auto;

        font-size: 11px;

        line-height: 1.55;

        text-align: center;

        color: var(--text-secondary);
    }

    /* =====================================================
       SHOWCASE
    ===================================================== */

    .showcase-card {
        min-height: auto;

        padding: 28px 20px;

        display: flex;

        flex-direction: column;

        gap: 30px;

        border-radius: 24px;
    }

    .showcase-copy h2 {
        font-size: 35px;
    }

    .mini-pills {
        gap: 6px;
    }

    .mini-pills span {
        font-size: 9px;

        padding: 7px 8px;
    }

    .dashboard-mock {
        width: 100%;

        transform: none;
    }

    .mock-main {
        padding: 18px;
    }

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

    /* =====================================================
       REVIEWS
    ===================================================== */

    .reviews-section {
        width: 100%;

        max-width: 100%;

        padding: 55px 0;

        overflow: hidden;
    }

    .reviews-section .container {
        width: 100%;

        max-width: 100%;

        margin: 0 auto;

        padding: 0;
    }

    .reviews-section .section-heading {
        display: block;

        width: calc(100% - 30px);

        margin: 0 auto 30px;

        text-align: center;
    }

    .reviews-section .section-heading .section-label {
        display: block;

        text-align: center;
    }

    .reviews-section .section-heading h2 {
        width: 100%;

        margin: 8px auto 0;

        font-size: 31px;

        line-height: 1.15;

        text-align: center;
    }

    .reviews-section .section-heading p {
        width: 100%;

        max-width: 330px;

        margin: 12px auto 0;

        font-size: 13px;

        line-height: 1.55;

        text-align: center;
    }

    .reviews-viewport {
        width: 100%;

        max-width: 100%;

        overflow-x: auto;

        overflow-y: hidden;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }

    .reviews-viewport::-webkit-scrollbar {
        display: none;
    }

    .reviews-track {
        display: flex;

        align-items: flex-start;

        gap: 16px;

        width: max-content;

        padding: 5px 20px 20px;

        margin: 0;

        transform: none !important;
    }

    .review-video-card {
        width: 260px;

        min-width: 260px;

        max-width: 260px;

        flex: 0 0 260px;

        text-align: center;
    }

    .video-shell {
        width: 100%;

        height: auto !important;

        aspect-ratio: 9 / 16;

        border-radius: 16px;

        overflow: hidden;
    }

    .review-video {
        display: block;

        width: 100%;
        height: 100%;

        object-fit: cover;
    }

    .review-meta {
        width: 100%;

        padding: 14px 8px 8px;

        text-align: center;
    }

    .review-meta strong,
    .review-meta h3,
    .review-meta b {
        display: block;

        text-align: center;

        line-height: 1.25;
    }

    .review-meta p {
        text-align: center;

        line-height: 1.45;

        margin-top: 6px;

        font-size: 11px;
    }

    .carousel-controls {
        display: flex;

        justify-content: center;

        align-items: center;

        gap: 10px;

        width: 100%;

        padding: 0;

        margin-top: 8px;
    }

    /* =====================================================
       REGISTRATION
    ===================================================== */

    .register-section {
        padding-top: 55px;
    }

    .register-wrap {
        display: flex;

        flex-direction: column;

        gap: 30px;
    }

    .register-copy h2 {
        font-size: 36px;
    }

    .register-points span {
        font-size: 11px;
    }

    .registration-card {
        width: 100%;

        padding: 22px 17px;

        border-radius: 22px;
    }

    .form-top {
        flex-direction: column;

        gap: 10px;
    }

    .form-top h3 {
        font-size: 23px;
    }

    .form-top p {
        font-size: 11px;
    }

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

        gap: 11px;
    }

    .form-group.full {
        grid-column: auto;
    }

    .input-box input,
    .input-box select {
        height: 44px;

        font-size: 11px;
    }

    /* =====================================================
       FINAL CTA
    ===================================================== */

    .final-cta {
        padding: 75px 18px;
    }

    .final-cta h2 {
        font-size:
            clamp(36px, 10vw, 48px);

        letter-spacing: -2px;
    }

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

    footer {
        padding: 22px 0;
    }

    .footer-inner {
        min-height: auto;

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 10px;

        text-align: center;
    }

    .footer-brand {
        text-align: center;

        font-size: 12px;

        white-space: normal;
    }

    .footer-brand span {
        display: block;

        margin: 3px 0 0;

        font-size: 10px;
    }

    .footer-legal {
        display: flex;

        justify-content: center;

        gap: 14px;

        flex-wrap: wrap;
    }

    .footer-legal a {
        font-size: 9px;
    }
}

/* =========================================================
   EXTRA SMALL PHONES
========================================================= */

@media (max-width: 390px) {

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-container {
        padding-left: 15px;
        padding-right: 15px;
    }

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

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

    .hero-stage {
        width: 320px;
    }

    .stats-section .metric {
        padding-left: 5px;
        padding-right: 5px;
    }

    .stats-section .metric strong {
        font-size: 29px;
    }

    .stats-section .metric > span {
        font-size: 29px;
    }

    .stats-section .metric p {
        font-size: 9px;
    }

    .program-card {
        width: 265px;

        min-width: 265px;

        flex-basis: 265px;
    }

    .review-video-card {
        width: 82vw;

        min-width: 82vw;

        flex-basis: 82vw;
    }

    .nav-register {
        padding: 8px 10px;

        font-size: 8px;
    }
}
