/* =====================================================
   HAGZTECH GLOBAL STYLE
===================================================== */

:root {

    --bg: #f7f7f8;
    --bg2: #ffffff;

    --surface: #ffffff;
    --surface2: #f0f0f3;

    --text: #08080a;
    --text2: #62636b;
    --muted: #92939a;

    --accent: #684cff;
    --accent2: #967fff;

    --button: #08080a;
    --button-text: #ffffff;

    --border: rgba(0,0,0,.09);
    --border-strong: rgba(0,0,0,.16);

    --grid: rgba(0,0,0,.035);

    --glow: rgba(104,76,255,.16);

    --nav: rgba(247,247,248,.82);
}


/* =====================================================
   CLASSIC
===================================================== */

[data-theme="classic"] {

    --bg: #f7f7f8;
    --bg2: #ffffff;

    --surface: #ffffff;
    --surface2: #f0f0f3;

    --text: #08080a;
    --text2: #62636b;
    --muted: #92939a;

    --accent: #684cff;
    --accent2: #967fff;

    --button: #08080a;
    --button-text: #ffffff;

    --border: rgba(0,0,0,.09);
    --border-strong: rgba(0,0,0,.16);

    --grid: rgba(0,0,0,.035);

    --glow: rgba(104,76,255,.16);

    --nav: rgba(247,247,248,.82);
}


/* =====================================================
   DARK
===================================================== */

[data-theme="dark"] {

    --bg: #050507;
    --bg2: #09090c;

    --surface: #111116;
    --surface2: #19191f;

    --text: #ffffff;
    --text2: #9999a3;
    --muted: #696970;

    --accent: #8067ff;
    --accent2: #a797ff;

    --button: #ffffff;
    --button-text: #050507;

    --border: rgba(255,255,255,.08);
    --border-strong: rgba(255,255,255,.16);

    --grid: rgba(255,255,255,.025);

    --glow: rgba(128,103,255,.18);

    --nav: rgba(5,5,7,.82);
}


/* =====================================================
   PREMIUM
===================================================== */

[data-theme="premium"] {

    --bg: #eee9df;
    --bg2: #f7f3eb;

    --surface: #f8f4ec;
    --surface2: #e7e0d3;

    --text: #171512;
    --text2: #696259;
    --muted: #958d82;

    --accent: #a47b35;
    --accent2: #d2ac67;

    --button: #171512;
    --button-text: #f8f3e9;

    --border: rgba(35,28,17,.12);
    --border-strong: rgba(35,28,17,.22);

    --grid: rgba(40,30,15,.035);

    --glow: rgba(180,135,55,.14);

    --nav: rgba(238,233,223,.85);
}


/* =====================================================
   RETRO
===================================================== */

[data-theme="retro"] {

    --bg: #f1e5cb;
    --bg2: #f8efd9;

    --surface: #fff4d8;
    --surface2: #e5d2ac;

    --text: #171717;
    --text2: #514c40;
    --muted: #817766;

    --accent: #ff5b25;
    --accent2: #165dff;

    --button: #171717;
    --button-text: #fff4d8;

    --border: #171717;
    --border-strong: #171717;

    --grid: rgba(23,23,23,.08);

    --glow: rgba(255,91,37,.16);

    --nav: rgba(241,229,203,.92);
}


/* =====================================================
   FUTURE
===================================================== */

[data-theme="future"] {

    --bg: #eef8fc;
    --bg2: #ffffff;

    --surface: rgba(255,255,255,.76);
    --surface2: #e1f2f8;

    --text: #07151c;
    --text2: #526873;
    --muted: #8398a2;

    --accent: #00a8d6;
    --accent2: #426dff;

    --button: #07151c;
    --button-text: #ffffff;

    --border: rgba(0,110,145,.13);
    --border-strong: rgba(0,110,145,.25);

    --grid: rgba(0,120,160,.045);

    --glow: rgba(0,190,225,.15);

    --nav: rgba(238,248,252,.84);
}


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

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

html {
    scroll-behavior: smooth;
}

body {

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

    background: var(--bg);
    color: var(--text);

    overflow-x: hidden;

    transition:
        background .3s ease,
        color .3s ease;
}

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

button {
    font-family: inherit;
}

::selection {

    background: var(--accent);
    color: white;
}


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

.navbar {

    height: 80px;

    background: var(--nav);

    backdrop-filter: blur(20px);

    border-bottom:
        1px solid transparent;

    z-index: 1000;

    transition: .3s;
}

.navbar.scrolled {

    border-color:
        var(--border);
}

.navbar-brand {

    color: var(--text);

    font-size: 27px;

    font-weight: 900;

    letter-spacing: -2px;
}

.navbar-brand span,
.footer-logo span {

    color: var(--accent);
}

.navbar-nav {

    gap: 30px;
}

.nav-link {

    color: var(--text2) !important;

    font-size: 13px;

    font-weight: 600;

    transition: .2s;
}

.nav-link:hover {

    color: var(--text) !important;
}

.navbar-toggler {

    border: 0;

    color: var(--text);

    font-size: 25px;
}

.navbar-toggler:focus {

    box-shadow: none;
}


/* =====================================================
   THEME
===================================================== */

.theme-wrapper {

    position: relative;

    margin-right: 12px;
}

.theme-button {

    height: 42px;

    display: flex;
    align-items: center;

    gap: 8px;

    padding:
        0 14px;

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

    border-radius: 100px;

    background: var(--surface);

    color: var(--text);

    cursor: pointer;

    font-size: 11px;

    font-weight: 700;
}

.theme-button i:first-child {

    color: var(--accent);

    font-size: 15px;
}

.theme-button i:last-child {

    font-size: 8px;
}

.theme-menu {

    position: absolute;

    right: 0;
    top: calc(100% + 11px);

    width: 245px;

    padding: 8px;

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

    border-radius: 17px;

    background: var(--surface);

    backdrop-filter: blur(25px);

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

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(-8px)
        scale(.97);

    transition: .2s;
}

.theme-menu.open {

    opacity: 1;
    visibility: visible;

    transform:
        translateY(0)
        scale(1);
}

.theme-option {

    width: 100%;

    display: flex;
    align-items: center;

    gap: 11px;

    padding: 10px;

    border: 0;

    border-radius: 11px;

    background: transparent;

    color: var(--text);

    text-align: left;

    cursor: pointer;
}

.theme-option:hover {

    background: var(--surface2);
}

.theme-info {

    flex: 1;
}

.theme-info strong {

    display: block;

    font-size: 12px;
}

.theme-info small {

    display: block;

    margin-top: 2px;

    color: var(--muted);

    font-size: 9px;
}

.theme-option > i {

    color: var(--accent);

    opacity: 0;
}

.theme-option.active > i {

    opacity: 1;
}

.theme-preview {

    width: 32px;
    height: 32px;

    flex-shrink: 0;

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

    border-radius: 8px;
}

.classic-preview {

    background:
        linear-gradient(
            135deg,
            #fff 50%,
            #684cff 50%
        );
}

.dark-preview {

    background:
        linear-gradient(
            135deg,
            #050507 50%,
            #8067ff 50%
        );
}

.premium-preview {

    background:
        linear-gradient(
            135deg,
            #eee9df 50%,
            #a47b35 50%
        );
}

.retro-preview {

    background:
        linear-gradient(
            135deg,
            #f1e5cb 50%,
            #ff5b25 50%
        );
}

.future-preview {

    background:
        linear-gradient(
            135deg,
            #eef8fc 50%,
            #00a8d6 50%
        );
}


/* =====================================================
   BUTTONS
===================================================== */

.nav-button {

    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding:
        12px 19px;

    border-radius: 100px;

    background: var(--button);

    color: var(--button-text);

    font-size: 12px;

    font-weight: 800;

    transition: .3s;
}

.nav-button:hover {

    color: var(--button-text);

    transform:
        translateY(-2px);
}

.primary-btn,
.secondary-btn {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding:
        15px 22px;

    border-radius: 100px;

    font-size: 13px;

    font-weight: 800;

    transition: .3s;
}

.primary-btn {

    background: var(--button);

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

.primary-btn:hover {

    color: var(--button-text);

    transform:
        translateY(-3px);

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

.secondary-btn {

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

    background: var(--surface);

    color: var(--text2);
}

.secondary-btn:hover {

    color: var(--text);

    border-color:
        var(--accent);

    transform:
        translateY(-2px);
}


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

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding:
        120px
        0
        70px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 45%,
            var(--glow),
            transparent 33%
        ),
        var(--bg);
}

.hero-grid {

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            var(--grid) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            var(--grid) 1px,
            transparent 1px
        );

    background-size:
        70px
        70px;
}

.hero-orb {

    position: absolute;

    border-radius: 50%;

    filter: blur(100px);
}

.hero-orb-one {

    width: 330px;
    height: 330px;

    right: 7%;
    top: 18%;

    background: var(--glow);
}

.hero-orb-two {

    width: 200px;
    height: 200px;

    right: 40%;
    bottom: 0;

    background: var(--glow);
}

.hero-container {

    position: relative;

    z-index: 2;
}


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

.eyebrow {

    display: flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 27px;

    color: var(--muted);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;
}

.status-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--accent);

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

.hero h1 {

    max-width: 700px;

    color: var(--text);

    font-size:
        clamp(
            70px,
            8vw,
            125px
        );

    line-height: .86;

    font-weight: 900;

    letter-spacing: -7px;
}

.hero h1 span {

    display: block;

    background:
        linear-gradient(
            120deg,
            var(--text),
            var(--accent),
            var(--accent2)
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}

.hero-description {

    max-width: 560px;

    margin-top: 35px;

    color: var(--text2);

    font-size: 17px;

    line-height: 1.7;
}

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 35px;
}

.hero-proof {

    display: flex;
    align-items: center;

    gap: 13px;

    margin-top: 48px;
}

.proof-icons {

    display: flex;
}

.proof-icons span {

    width: 32px;
    height: 32px;

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

    margin-left: -6px;

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

    border-radius: 50%;

    background: var(--surface2);

    color: var(--text);

    font-size: 9px;

    font-weight: 900;
}

.proof-icons span:first-child {

    margin-left: 0;

    background: var(--accent);

    color: white;
}

.hero-proof strong {

    display: block;

    font-size: 11px;
}

.hero-proof small {

    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size: 9px;
}


/* =====================================================
   3D SCENE
===================================================== */

.scene {

    height: 620px;

    position: relative;

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

    perspective: 1200px;
}

.scene-glow {

    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            var(--glow),
            transparent 65%
        );

    filter: blur(15px);
}

.scene-ring {

    position: absolute;

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

    border-radius: 50%;

    transform:
        rotateX(70deg)
        rotateZ(20deg);
}

.ring-one {

    width: 430px;
    height: 430px;
}

.ring-two {

    width: 330px;
    height: 330px;

    opacity: .6;
}


/* =====================================================
   CUBE
===================================================== */

.cube-wrapper {

    width: 240px;
    height: 240px;

    position: relative;

    transform-style: preserve-3d;

    animation:
        cubeFloat
        6s
        ease-in-out
        infinite;
}

.cube {

    width: 100%;
    height: 100%;

    position: relative;

    transform-style: preserve-3d;

    transform:
        rotateX(-18deg)
        rotateY(-35deg)
        rotateZ(5deg);

    transition:
        transform .2s ease-out;
}

.cube-face {

    position: absolute;

    width: 240px;
    height: 240px;

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

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

    background: var(--surface);

    box-shadow:
        inset 0 0 60px
        var(--glow),

        0 0 80px
        var(--glow);
}

.cube-face span {

    color: var(--text);

    font-size: 55px;

    font-weight: 900;

    letter-spacing: -5px;
}

.front {
    transform:
        translateZ(120px);
}

.back {
    transform:
        rotateY(180deg)
        translateZ(120px);
}

.right {
    transform:
        rotateY(90deg)
        translateZ(120px);
}

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

.top {
    transform:
        rotateX(90deg)
        translateZ(120px);
}

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

@keyframes cubeFloat {

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

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


/* =====================================================
   FLOATING CARDS
===================================================== */

.floating-card {

    position: absolute;

    display: flex;
    align-items: center;

    gap: 10px;

    padding:
        12px 15px;

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

    border-radius: 14px;

    background: var(--surface);

    backdrop-filter: blur(20px);

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.12);

    z-index: 10;
}

.floating-card strong {

    display: block;

    font-size: 11px;
}

.floating-card small {

    display: block;

    margin-top: 3px;

    color: var(--muted);

    font-size: 9px;
}

.floating-icon {

    width: 34px;
    height: 34px;

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

    border-radius: 10px;

    background:
        color-mix(
            in srgb,
            var(--accent) 12%,
            transparent
        );

    color: var(--accent);
}

.card-one {

    top: 15%;
    left: 2%;

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

.card-two {

    top: 42%;
    right: 0;

    animation:
        floatTwo
        6s
        ease-in-out
        infinite;
}

.card-three {

    bottom: 14%;
    left: 8%;

    animation:
        floatThree
        7s
        ease-in-out
        infinite;
}

@keyframes floatOne {

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

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

@keyframes floatTwo {

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

    50% {
        transform: translateY(14px);
    }
}

@keyframes floatThree {

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

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


/* =====================================================
   MARQUEE
===================================================== */

.marquee-section {

    overflow: hidden;

    padding:
        22px
        0;

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

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

    background: var(--bg2);
}

.marquee {

    width: max-content;

    display: flex;
    align-items: center;

    gap: 40px;

    animation:
        marquee
        30s
        linear
        infinite;
}

.marquee span {

    color: var(--muted);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;
}

.marquee b {

    color: var(--accent);
}

@keyframes marquee {

    from {
        transform: translateX(0);
    }

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


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

.section {

    padding:
        140px
        0;
}

.section-label {

    display: block;

    margin-bottom: 20px;

    color: var(--accent);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 3px;
}

.section-heading {

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

    gap: 50px;

    margin-bottom: 60px;
}

.section-heading h2,
.about-section h2,
.section-heading-center h2 {

    color: var(--text);

    font-size:
        clamp(
            43px,
            5vw,
            70px
        );

    line-height: .95;

    font-weight: 900;

    letter-spacing: -4px;
}

.section-heading h2 span,
.about-section h2 span,
.section-heading-center h2 span {

    color: var(--muted);
}

.section-heading > p {

    max-width: 360px;

    color: var(--text2);

    font-size: 14px;

    line-height: 1.7;
}


/* =====================================================
   PROGRAM CARDS
===================================================== */

.program-card {

    min-height: 380px;

    position: relative;

    padding: 32px;

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

    border-radius: 24px;

    background: var(--surface);

    overflow: hidden;

    transition: .4s;
}

.program-card:hover {

    transform:
        translateY(-8px);

    border-color:
        var(--accent);

    box-shadow:
        0 25px 60px
        var(--glow);
}

.program-number {

    color: var(--muted);

    font-size: 11px;

    font-weight: 800;
}

.program-icon {

    width: 55px;
    height: 55px;

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

    margin-top: 75px;

    border-radius: 15px;

    background:
        color-mix(
            in srgb,
            var(--accent) 12%,
            transparent
        );

    color: var(--accent);

    font-size: 22px;
}

.program-card h3 {

    margin-top: 25px;

    font-size: 23px;

    letter-spacing: -1px;
}

.program-card p {

    max-width: 300px;

    color: var(--text2);

    font-size: 13px;

    line-height: 1.7;
}

.program-card a {

    position: absolute;

    bottom: 30px;

    display: flex;
    align-items: center;

    gap: 8px;

    font-size: 12px;

    font-weight: 800;
}


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

.stats-section {

    padding:
        75px
        0;

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

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

    background: var(--bg2);
}

.stat {

    padding: 20px;

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

.stat:last-child {

    border-right: 0;
}

.stat strong {

    font-size: 54px;

    font-weight: 900;

    letter-spacing: -3px;
}

.stat > span {

    color: var(--accent);

    font-size: 27px;
}

.stat p {

    margin-top: 5px;

    color: var(--muted);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =====================================================
   ABOUT
===================================================== */

.about-text {

    max-width: 510px;

    margin:
        32px
        0;

    color: var(--text2);

    font-size: 16px;

    line-height: 1.8;
}

.about-visual {

    height: 500px;

    position: relative;

    overflow: hidden;

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

    border-radius: 30px;

    background:
        radial-gradient(
            circle at center,
            var(--glow),
            transparent 55%
        ),
        var(--surface);
}

.about-grid {

    position: absolute;

    inset: 0;

    background-image:

        linear-gradient(
            var(--grid) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            var(--grid) 1px,
            transparent 1px
        );

    background-size:
        50px
        50px;
}

.about-orbit {

    position: absolute;

    left: 50%;
    top: 50%;

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

    border-radius: 50%;

    opacity: .35;
}

.orbit-one {

    width: 330px;
    height: 330px;

    transform:
        translate(-50%,-50%)
        rotateX(70deg)
        rotateZ(20deg);
}

.orbit-two {

    width: 270px;
    height: 270px;

    transform:
        translate(-50%,-50%)
        rotateY(70deg)
        rotateZ(-20deg);
}

.orbit-three {

    width: 200px;
    height: 200px;

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

.about-center {

    position: absolute;

    left: 50%;
    top: 50%;

    width: 115px;
    height: 115px;

    display: flex;
    flex-direction: column;

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

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

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

    border-radius: 50%;

    background: var(--surface);

    box-shadow:
        0 0 80px
        var(--glow);
}

.about-center span {

    color: var(--accent);

    font-size: 42px;

    font-weight: 900;
}

.about-center small {

    color: var(--muted);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* =====================================================
   SERVICES
===================================================== */

.services-section {

    background: var(--bg2);
}

.section-heading-center {

    max-width: 700px;

    margin:
        0 auto
        60px;

    text-align: center;
}

.section-heading-center p {

    margin-top: 22px;

    color: var(--text2);

    font-size: 14px;
}

.services-list {

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

.service-item {

    display: grid;

    grid-template-columns:
        80px
        1fr
        50px;

    align-items: center;

    padding:
        28px
        10px;

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

    transition: .3s;
}

.service-item:hover {

    padding-left: 25px;

    background:
        color-mix(
            in srgb,
            var(--accent) 5%,
            transparent
        );
}

.service-item > span {

    color: var(--muted);

    font-size: 11px;

    font-weight: 800;
}

.service-item h3 {

    margin: 0;

    font-size:
        clamp(
            25px,
            4vw,
            45px
        );

    font-weight: 800;

    letter-spacing: -2px;
}

.service-item i {

    color: var(--accent);

    font-size: 22px;
}


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

.cta-section {

    padding:
        120px
        0;
}

.cta-box {

    position: relative;

    overflow: hidden;

    padding:
        100px
        30px;

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

    border-radius: 35px;

    background:
        radial-gradient(
            circle at center,
            var(--glow),
            transparent 55%
        ),
        var(--surface);

    text-align: center;
}

.cta-glow {

    position: absolute;

    width: 300px;
    height: 300px;

    left: 50%;
    top: 50%;

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

    border-radius: 50%;

    background: var(--accent);

    filter: blur(150px);

    opacity: .08;
}

.cta-box > * {

    position: relative;

    z-index: 2;
}

.cta-box h2 {

    font-size:
        clamp(
            48px,
            7vw,
            90px
        );

    line-height: .95;

    font-weight: 900;

    letter-spacing: -5px;
}

.cta-box h2 span {

    color: var(--accent);
}

.cta-box p {

    max-width: 500px;

    margin:
        28px
        auto
        30px;

    color: var(--text2);

    font-size: 14px;

    line-height: 1.7;
}


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

footer {

    padding:
        60px
        0
        30px;

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

.footer-top {

    display: flex;

    justify-content: space-between;

    padding-bottom: 50px;
}

.footer-logo {

    font-size: 26px;

    font-weight: 900;

    letter-spacing: -2px;
}

.footer-top p {

    margin-top: 7px;

    color: var(--muted);

    font-size: 11px;
}

.socials {

    display: flex;

    gap: 9px;
}

.socials a {

    width: 40px;
    height: 40px;

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

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

    border-radius: 50%;

    color: var(--text2);

    transition: .3s;
}

.socials a:hover {

    color: white;

    background: var(--accent);

    border-color: var(--accent);
}

.footer-bottom {

    display: flex;

    justify-content: space-between;

    padding-top: 25px;

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

    color: var(--muted);

    font-size: 10px;
}


/* =====================================================
   RETRO
===================================================== */

[data-theme="retro"] .program-card,
[data-theme="retro"] .about-visual,
[data-theme="retro"] .cta-box {

    border-width: 2px;

    border-radius: 8px;

    box-shadow:
        7px 7px 0
        var(--text);
}

[data-theme="retro"] .primary-btn,
[data-theme="retro"] .nav-button {

    border-radius: 5px;

    box-shadow:
        4px 4px 0
        var(--accent);
}


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

.reveal {

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.active {

    opacity: 1;

    transform:
        translateY(0);
}


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

@media (max-width: 991px) {

    .navbar {

        height: 70px;
    }

    .navbar-collapse {

        margin-top: 8px;

        padding: 15px;

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

        border-radius: 18px;

        background: var(--surface);

        box-shadow:
            0 20px 50px
            rgba(0,0,0,.1);
    }

    .navbar-nav {

        gap: 2px;
    }

    .theme-wrapper {

        margin:
            10px
            0
            8px;
    }

    .theme-button {

        width: 100%;

        justify-content: center;
    }

    .theme-menu {

        position: relative;

        top: auto;
        right: auto;

        width: 100%;

        margin-top: 8px;

        display: none;
    }

    .theme-menu.open {

        display: block;
    }

    .nav-button {

        width: 100%;

        justify-content: center;
    }

    .hero {

        min-height: auto;

        padding-top: 120px;
    }

    .hero-content {

        text-align: center;
    }

    .eyebrow {

        justify-content: center;
    }

    .hero-description {

        margin:
            25px
            auto
            0;
    }

    .hero-buttons {

        justify-content: center;
    }

    .hero-proof {

        justify-content: center;
    }

    .scene {

        height: 500px;

        margin-top: 20px;
    }

    .section-heading {

        display: block;
    }

    .section-heading > p {

        margin-top: 25px;
    }

    .stat {

        border-right: 0;
    }

}


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

@media (max-width: 576px) {

    .navbar {

        height: 64px;

        padding:
            0
            14px;
    }

    .navbar .container {

        padding: 0;
    }

    .navbar-brand {

        font-size: 22px;

        letter-spacing: -1.5px;
    }

    .navbar-toggler {

        font-size: 23px;
    }


    /* HERO */

    .hero {

        min-height: auto;

        padding:
            92px
            0
            0;

        background:
            radial-gradient(
                circle at 50% 28%,
                var(--glow),
                transparent 47%
            ),
            var(--bg);
    }

    .hero-grid {

        background-size:
            42px
            42px;
    }

    .hero-content {

        text-align: left;
    }

    .eyebrow {

        justify-content: flex-start;

        gap: 7px;

        margin-bottom: 18px;

        font-size: 7px;

        letter-spacing: 1.2px;

        white-space: nowrap;
    }

    .status-dot {

        width: 5px;
        height: 5px;
    }

    .hero h1 {

        font-size:
            clamp(
                55px,
                21vw,
                82px
            );

        line-height: .83;

        letter-spacing: -4px;
    }

    .hero-description {

        margin-top: 25px;

        font-size: 13px;

        line-height: 1.6;
    }

    .hero-buttons {

        flex-direction: column;

        margin-top: 25px;
    }

    .primary-btn,
    .secondary-btn {

        width: 100%;

        min-height: 48px;

        font-size: 11px;
    }

    .hero-proof {

        justify-content: flex-start;

        margin-top: 25px;
    }


    /* 3D */

    .scene {

        height: 350px;

        margin-top: 5px;
    }

    .scene-glow {

        width: 240px;
        height: 240px;
    }

    .ring-one {

        width: 255px;
        height: 255px;
    }

    .ring-two {

        width: 190px;
        height: 190px;
    }

    .cube-wrapper {

        width: 145px;
        height: 145px;
    }

    .cube-face {

        width: 145px;
        height: 145px;
    }

    .front {
        transform:
            translateZ(72.5px);
    }

    .back {
        transform:
            rotateY(180deg)
            translateZ(72.5px);
    }

    .right {
        transform:
            rotateY(90deg)
            translateZ(72.5px);
    }

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

    .top {
        transform:
            rotateX(90deg)
            translateZ(72.5px);
    }

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

    .cube-face span {

        font-size: 35px;
    }


    /* FLOATING */

    .floating-card {

        padding:
            7px
            9px;

        gap: 7px;

        border-radius: 10px;
    }

    .floating-card strong {

        font-size: 7px;
    }

    .floating-card small {

        font-size: 6px;
    }

    .floating-icon {

        width: 24px;
        height: 24px;

        font-size: 9px;
    }

    .card-one {

        left: 0;
        top: 8%;
    }

    .card-two {

        right: 0;
        top: 40%;
    }

    .card-three {

        left: 2%;
        bottom: 8%;
    }


    /* SECTIONS */

    .section {

        padding:
            75px
            0;
    }

    .section-heading {

        margin-bottom: 35px;
    }

    .section-heading h2,
    .about-section h2,
    .section-heading-center h2 {

        font-size: 43px;

        line-height: .94;

        letter-spacing: -3px;
    }

    .section-heading > p {

        font-size: 12px;
    }


    /* CARDS */

    .program-card {

        min-height: 320px;

        padding: 23px;

        border-radius: 18px;
    }

    .program-icon {

        margin-top: 55px;
    }


    /* STATS */

    .stats-section {

        padding:
            40px
            0;
    }

    .stat {

        padding:
            20px
            10px;
    }

    .stat strong {

        font-size: 34px;
    }

    .stat p {

        font-size: 7px;
    }


    /* ABOUT */

    .about-text {

        font-size: 13px;

        line-height: 1.7;
    }

    .about-visual {

        height: 320px;

        border-radius: 20px;
    }

    .orbit-one {

        width: 230px;
        height: 230px;
    }

    .orbit-two {

        width: 185px;
        height: 185px;
    }

    .orbit-three {

        width: 135px;
        height: 135px;
    }

    .about-center {

        width: 85px;
        height: 85px;
    }

    .about-center span {

        font-size: 32px;
    }


    /* SERVICES */

    .service-item {

        grid-template-columns:
            30px
            1fr
            25px;

        padding:
            21px
            3px;
    }

    .service-item h3 {

        font-size: 19px;

        letter-spacing: -1px;
    }


    /* CTA */

    .cta-section {

        padding:
            65px
            0;
    }

    .cta-box {

        padding:
            65px
            18px;

        border-radius: 22px;
    }

    .cta-box h2 {

        font-size: 46px;

        letter-spacing: -3px;
    }

    .cta-box p {

        font-size: 12px;
    }


    /* FOOTER */

    footer {

        padding:
            45px
            0
            25px;
    }

    .footer-bottom {

        flex-direction: column;

        gap: 8px;
    }

}


/* =====================================================
   VERY SMALL PHONES
===================================================== */

@media (max-width: 300px) {

    .navbar {

        height: 60px;

        padding:
            0
            10px;
    }

    .navbar-brand {

        font-size: 20px;
    }

    .hero {

        padding-top: 82px;
    }

    .eyebrow {

        font-size: 6px;

        letter-spacing: .8px;
    }

    .hero h1 {

        font-size: 55px;

        letter-spacing: -4px;
    }

    .hero-description {

        font-size: 12px;
    }

    .scene {

        height: 300px;
    }

    .cube-wrapper {

        width: 120px;
        height: 120px;
    }

    .cube-face {

        width: 120px;
        height: 120px;
    }

    .front {
        transform:
            translateZ(60px);
    }

    .back {
        transform:
            rotateY(180deg)
            translateZ(60px);
    }

    .right {
        transform:
            rotateY(90deg)
            translateZ(60px);
    }

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

    .top {
        transform:
            rotateX(90deg)
            translateZ(60px);
    }

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

    .cube-face span {

        font-size: 29px;
    }

    .ring-one {

        width: 210px;
        height: 210px;
    }

    .ring-two {

        width: 155px;
        height: 155px;
    }

    .section-heading h2,
    .about-section h2,
    .section-heading-center h2 {

        font-size: 38px;
    }

}