
        :root {
            /* Theme Variables - Synchronized with Landing Page */
            --mj-bg: #050505;
            --mj-bg-main: #000000;
            --mj-text: #ffffff;
            --mj-text-muted: rgba(255, 255, 255, 0.6);
            --mj-border: rgba(255, 255, 255, 0.1);
            --mj-card: rgba(255, 255, 255, 0.02);
            --mj-card-bg: rgba(255, 255, 255, 0.03);
            --mj-red: #E31B23;
            --mj-cyan: #00D9FF;
            --mj-green: #00FF88;
            --mj-glow-red: rgba(227, 27, 35, 0.5);
            --mj-glow-cyan: rgba(0, 217, 255, 0.5);
            
            /* Soft Backgrounds */
            --mj-soft-red: rgba(227, 27, 35, 0.1);
            --mj-soft-cyan: rgba(0, 217, 255, 0.1);
            --mj-soft-green: rgba(0, 255, 136, 0.1);
            --mj-soft-gold: rgba(255, 215, 0, 0.1);
            --mj-soft-purple: rgba(138, 43, 226, 0.1);

            --font-primary: 'Cairo', sans-serif;
            --font-accent: 'Outfit', sans-serif;
        }

        /* Light Theme Override */
        html.light {
            --mj-bg: #f8fafc;
            --mj-bg-main: #ffffff;
            --mj-text: #0f172a;
            --mj-text-muted: #475569;
            --mj-border: rgba(15, 23, 42, 0.1);
            --mj-card: #ffffff;
            --mj-card-bg: #ffffff;
            --mj-glow-red: rgba(227, 27, 35, 0.2);
            --mj-glow-cyan: rgba(0, 217, 255, 0.2);
            
            --mj-soft-red: rgba(227, 27, 35, 0.05);
            --mj-soft-cyan: rgba(0, 217, 255, 0.05);
            --mj-soft-green: rgba(0, 255, 136, 0.05);
            --mj-soft-gold: rgba(255, 215, 0, 0.05);
            --mj-soft-purple: rgba(138, 43, 226, 0.05);
        }

        body {
            background-color: var(--mj-bg);
            color: var(--mj-text);
            font-family: var(--font-primary);
            overflow-x: hidden;
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }

        /* --- Utility & Theme Classes --- */
        .fw-black { font-weight: 900 !important; }
        .x-small { font-size: 0.75rem !important; }
        .letter-spacing-5 { letter-spacing: 5px; }
        
        .bg-soft-red { background-color: var(--mj-soft-red) !important; }
        .bg-soft-cyan { background-color: var(--mj-soft-cyan) !important; }
        .bg-soft-green { background-color: var(--mj-soft-green) !important; }
        .bg-soft-gold { background-color: var(--mj-soft-gold) !important; }
        .bg-soft-purple { background-color: var(--mj-soft-purple) !important; }
        .bg-white-5 { background-color: var(--mj-card-bg) !important; }
        
        .text-muted-theme { color: var(--mj-text-muted) !important; }
        .border-theme { border-color: var(--mj-border) !important; }

        /* ── Missing utility classes from design_showcase.html ── */
        .text-red  { color: var(--mj-red)  !important; }
        .text-cyan { color: var(--mj-cyan) !important; }
        .text-green{ color: var(--mj-green)!important; }
        .text-gold { color: #FFD700        !important; }

        .border-red  { border-color: var(--mj-red)  !important; }
        .border-cyan { border-color: var(--mj-cyan) !important; }

        .btn-red {
            background: var(--mj-red);
            color: #fff !important;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px var(--mj-glow-red);
        }
        .btn-red:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 30px var(--mj-glow-red);
            color: #fff !important;
        }

        .maj-icon { color: var(--mj-cyan) !important; }
        .maj-text { color: var(--mj-cyan) !important; }
        .maj-card { border-color: var(--mj-cyan) !important; }

        .border-hover-cyan { transition: border-color 0.3s; }
        .border-hover-cyan:hover { border-color: var(--mj-cyan) !important; }

        .font-monospace { font-family: monospace !important; }
        .text-gold { color: #FFD700 !important; }
        .bg-soft-gold { background-color: var(--mj-soft-gold) !important; }

        .text-glow-red {
            text-shadow: 0 0 15px var(--mj-glow-red);
            color: var(--mj-red);
        }

        .text-glow-cyan {
            text-shadow: 0 0 15px var(--mj-glow-cyan);
            color: var(--mj-cyan);
        }

        .glass-card {
            background: var(--mj-card);
            backdrop-filter: blur(20px);
            border: 1px solid var(--mj-border);
            border-radius: 24px;
            padding: 40px;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        html.light .glass-card {
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
        }

        .glass-card:hover {
            border-color: var(--mj-red);
            transform: translateY(-5px);
            background: var(--mj-card);
        }

        .section-premium {
            padding: 120px 0;
            position: relative;
            border-bottom: 1px solid var(--mj-border);
        }

        .badge-premium {
            display: inline-flex;
            align-items: center;
            padding: 8px 20px;
            background: var(--mj-soft-red);
            border: 1px solid var(--mj-soft-red);
            border-radius: 50px;
            color: var(--mj-red);
            font-weight: 800;
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 25px;
            font-family: var(--font-accent);
        }

        /* --- Theme Toggle --- */
        .theme-toggle {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 2000;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--mj-red);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 0 20px var(--mj-glow-red);
            border: none;
        }

        /* --- Navigation --- */
        .showcase-nav {
            position: fixed;
            left: 30px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .nav-link-dot {
            width: 10px;
            height: 10px;
            border: 1px solid var(--mj-border);
            border-radius: 50%;
            background: transparent;
            transition: 0.3s;
        }

        .nav-link-dot:hover,
        .nav-link-dot.active {
            background: var(--mj-red);
            border-color: var(--mj-red);
            box-shadow: 0 0 10px var(--mj-red);
            transform: scale(1.4);
        }

        /* --- Section Header --- */
        .showcase-intro {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: var(--mj-bg-main);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .animate-float {
            animation: float 4s infinite ease-in-out;
        }
    


                .blink {
                    animation: blinker 1s linear infinite;
                }

                @keyframes blinker {
                    50% {
                        opacity: 0;
                    }
                }

                @keyframes sweepShimmer {
                    0% {
                        left: -100%;
                    }

                    100% {
                        left: 200%;
                    }
                }

                .fade-out {
                    opacity: 0 !important;
                }
            


                    #comparison {
                        position: relative;
                        overflow: visible;
                    }

                    /* Dark Theme Default */
                    :root {
                        --comp-maj-color: #00e5ff;
                        --comp-maj-bg: rgba(0, 229, 255, 0.05);
                        --comp-maj-border: rgba(0, 229, 255, 0.3);
                        --comp-maj-hover: rgba(0, 229, 255, 0.1);
                        --comp-trad-color: #ff4d4d;
                        --comp-trad-bg: rgba(227, 27, 35, 0.03);
                        --comp-trad-border: rgba(227, 27, 35, 0.2);
                        --comp-trad-hover: rgba(227, 27, 35, 0.08);
                        --comp-vs-bg: #111;
                    }

                    /* Light Theme */
                    html.light {
                        --comp-maj-color: #0077b6;
                        --comp-maj-bg: rgba(0, 119, 182, 0.05);
                        --comp-maj-border: rgba(0, 119, 182, 0.3);
                        --comp-maj-hover: rgba(0, 119, 182, 0.1);
                        --comp-trad-color: #d90429;
                        --comp-trad-bg: rgba(217, 4, 41, 0.03);
                        --comp-trad-border: rgba(217, 4, 41, 0.2);
                        --comp-trad-hover: rgba(217, 4, 41, 0.08);
                        --comp-vs-bg: #f8f9fa;
                    }

                    /* --- Danger / Traditional Card Effects --- */
                    .trad-card {
                        background: var(--mj-card) !important;
                        border: 1px solid var(--comp-trad-border) !important;
                        opacity: 0.9;
                        transition: all 0.4s ease;
                        position: relative;
                        overflow: hidden;
                        animation: alarmFlash 4s infinite;
                    }

                    .trad-card::before {
                        content: '';
                        position: absolute;
                        inset: 0;
                        background: var(--comp-trad-bg);
                        pointer-events: none;
                        border-radius: inherit;
                        z-index: 0;
                    }

                    .danger-stripes {
                        position: absolute;
                        inset: 0;
                        background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(227, 27, 35, 0.03) 10px, rgba(227, 27, 35, 0.03) 20px);
                        z-index: 0;
                        pointer-events: none;
                    }

                    html.light .danger-stripes {
                        background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(217, 4, 41, 0.03) 10px, rgba(217, 4, 41, 0.03) 20px);
                    }

                    .trad-card:hover {
                        opacity: 1;
                        transform: translateY(-5px);
                        box-shadow: 0 10px 30px rgba(227, 27, 35, 0.15);
                        animation: unstableShake 0.4s ease-in-out;
                    }

                    @keyframes alarmFlash {

                        0%,
                        100% {
                            box-shadow: 0 0 0 transparent;
                        }

                        50% {
                            box-shadow: inset 0 0 20px rgba(227, 27, 35, 0.1);
                        }
                    }

                    @keyframes unstableShake {
                        0% {
                            transform: translateY(-5px) translateX(0);
                        }

                        20% {
                            transform: translateY(-5px) translateX(-2px) rotate(-1deg);
                        }

                        40% {
                            transform: translateY(-5px) translateX(2px) rotate(1deg);
                        }

                        60% {
                            transform: translateY(-5px) translateX(-2px) rotate(-1deg);
                        }

                        80% {
                            transform: translateY(-5px) translateX(2px) rotate(1deg);
                        }

                        100% {
                            transform: translateY(-5px) translateX(0);
                        }
                    }

                    /* --- Safety / Majaarh Card Effects --- */
                    .maj-card {
                        background: var(--mj-card) !important;
                        border: 2px solid var(--comp-maj-border) !important;
                        transform: scale(1.05);
                        z-index: 2;
                        transition: all 0.4s ease;
                        position: relative;
                        overflow: hidden;
                        animation: shieldBreathe 4s infinite ease-in-out;
                    }

                    .maj-card::before {
                        content: '';
                        position: absolute;
                        inset: 0;
                        background: var(--comp-maj-bg);
                        pointer-events: none;
                        border-radius: inherit;
                        z-index: 0;
                    }

                    .mesh-grid {
                        position: absolute;
                        inset: 0;
                        background-image: linear-gradient(var(--comp-maj-border) 1px, transparent 1px), linear-gradient(90deg, var(--comp-maj-border) 1px, transparent 1px);
                        background-size: 20px 20px;
                        opacity: 0.1;
                        z-index: 0;
                        pointer-events: none;
                    }

                    .card-shimmer {
                        position: absolute;
                        top: 0;
                        left: -100%;
                        width: 50%;
                        height: 100%;
                        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
                        transform: skewX(-20deg);
                        transition: all 0.7s ease;
                        z-index: 1;
                        pointer-events: none;
                    }

                    html.light .card-shimmer {
                        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
                    }

                    .maj-card:hover {
                        transform: scale(1.07);
                    }

                    .maj-card:hover .card-shimmer {
                        left: 200%;
                    }

                    @keyframes shieldBreathe {

                        0%,
                        100% {
                            box-shadow: 0 15px 40px rgba(0, 229, 255, 0.1), inset 0 0 10px rgba(0, 229, 255, 0.05);
                        }

                        50% {
                            box-shadow: 0 15px 50px rgba(0, 229, 255, 0.2), inset 0 0 20px rgba(0, 229, 255, 0.1);
                        }
                    }

                    html.light .maj-card {
                        animation: shieldBreatheLight 4s infinite ease-in-out;
                    }

                    @keyframes shieldBreatheLight {

                        0%,
                        100% {
                            box-shadow: 0 15px 40px rgba(0, 119, 182, 0.1), inset 0 0 10px rgba(0, 119, 182, 0.05);
                        }

                        50% {
                            box-shadow: 0 15px 50px rgba(0, 119, 182, 0.2), inset 0 0 20px rgba(0, 119, 182, 0.1);
                        }
                    }

                    /* Common UI elements */
                    .vs-circle {
                        width: 60px;
                        height: 60px;
                        background: var(--comp-vs-bg);
                        border: 2px solid var(--mj-border);
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        font-weight: 900;
                        font-size: 1.2rem;
                        margin: 0 auto;
                        color: var(--mj-text-muted);
                        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
                        position: relative;
                        z-index: 5;
                    }

                    .trad-icon,
                    .trad-text {
                        color: var(--comp-trad-color) !important;
                    }

                    .maj-icon,
                    .maj-text {
                        color: var(--comp-maj-color) !important;
                    }

                    /* Custom List styling */
                    .comp-list li {
                        padding: 1.2rem;
                        border-radius: 12px;
                        margin-bottom: 0.8rem;
                        transition: all 0.3s ease;
                        border: 1px solid transparent;
                        position: relative;
                        z-index: 2;
                    }

                    .trad-card .comp-list li {
                        background: var(--comp-trad-bg);
                    }

                    .trad-card .comp-list li:hover {
                        background: var(--comp-trad-hover);
                        border-color: var(--comp-trad-border);
                    }

                    .maj-card .comp-list li {
                        background: var(--comp-maj-bg);
                    }

                    .maj-card .comp-list li:hover {
                        background: var(--comp-maj-hover);
                        border-color: var(--comp-maj-border);
                        transform: translateX(-5px);
                    }

                    .danger-pulse {
                        animation: dangerPulse 2s infinite;
                    }

                    @keyframes dangerPulse {
                        0% {
                            opacity: 1;
                        }

                        50% {
                            opacity: 0.5;
                            filter: drop-shadow(0 0 5px var(--comp-trad-color));
                        }

                        100% {
                            opacity: 1;
                        }
                    }

                    @media (max-width: 991px) {
                        .maj-card {
                            transform: scale(1);
                            margin-top: 2rem;
                        }

                        .maj-card:hover {
                            transform: translateY(-5px);
                        }
                    }
                


                .expert-sovereign-hud {
                    position: relative;
                    padding: 140px 0;
                    background: #02060a;
                    overflow: hidden;
                    width: 100%;
                    direction: rtl;
                    /* Ensure RTL */
                }

                .hud-background-overlay {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: url('assets/images/hero/mt4-platform.png') center/cover no-repeat;
                    opacity: 0.15;
                    filter: grayscale(100%) brightness(0.2);
                    background-attachment: fixed;
                }

                .expert-sovereign-hud::after {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: radial-gradient(circle at 50% 50%, transparent, #02060a 90%);
                    z-index: 1;
                }

                .hud-card {
                    background: rgba(255, 255, 255, 0.02);
                    backdrop-filter: blur(30px);
                    border: 1px solid rgba(255, 255, 255, 0.05);
                    border-radius: 20px;
                    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
                    transition: 0.4s;
                    position: relative;
                    z-index: 10;
                    text-align: right;
                }

                .hud-card:hover {
                    border-color: rgba(0, 255, 136, 0.3);
                    transform: translateY(-10px);
                    background: rgba(255, 255, 255, 0.04);
                }

                .tech-line {
                    width: 50px;
                    height: 1px;
                    background: rgba(0, 255, 136, 0.3);
                }

                .progress-mini {
                    height: 2px;
                    background: rgba(255, 255, 255, 0.05);
                    border-radius: 5px;
                    overflow: hidden;
                    margin-top: 8px;
                }

                .progress-inner {
                    height: 100%;
                    background: var(--mj-green);
                    box-shadow: 0 0 10px var(--mj-green);
                }

                .status-indicator {
                    font-size: 10px;
                    font-weight: 800;
                    padding: 4px 10px;
                    border-radius: 4px;
                }

                .status-indicator.active {
                    background: rgba(0, 255, 136, 0.1);
                    color: var(--mj-green);
                    border: 1px solid rgba(0, 255, 136, 0.3);
                }

                /* Square Core Styling */
                .engine-core-wrap {
                    position: relative;
                    height: 400px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    z-index: 5;
                }

                .square-core {
                    width: 180px;
                    height: 180px;
                    background: rgba(0, 255, 136, 0.05);
                    border: 2px solid var(--mj-green);
                    border-radius: 15px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    box-shadow: 0 0 50px rgba(0, 255, 136, 0.2), inset 0 0 30px rgba(0, 255, 136, 0.1);
                    z-index: 10;
                    position: relative;
                    overflow: hidden;
                    animation: squarePulse 4s ease-in-out infinite;
                }

                .mt5-logo-square {
                    width: 100px;
                    height: 100px;
                    filter: drop-shadow(0 0 15px var(--mj-green));
                    position: relative;
                    z-index: 5;
                }

                .core-scanning-line {
                    position: absolute;
                    top: -100%;
                    left: 0;
                    width: 100%;
                    height: 2px;
                    background: linear-gradient(90deg, transparent, var(--mj-green), transparent);
                    box-shadow: 0 0 15px var(--mj-green);
                    animation: scanMove 3s linear infinite;
                    z-index: 6;
                }

                .square-ring {
                    position: absolute;
                    border: 1px solid rgba(0, 255, 136, 0.1);
                    border-radius: 20px;
                    transition: 0.3s;
                }

                .sr-1 {
                    width: 240px;
                    height: 240px;
                    transform: rotate(45deg);
                    border-style: dashed;
                    opacity: 0.6;
                    animation: rotateSquare 20s linear infinite;
                }

                .sr-2 {
                    width: 320px;
                    height: 320px;
                    border-width: 1px;
                    opacity: 0.3;
                    animation: rotateSquare 40s linear reverse infinite;
                }

                .sr-3 {
                    width: 400px;
                    height: 400px;
                    border-style: dotted;
                    opacity: 0.15;
                    animation: rotateSquare 60s linear infinite;
                }

                .tech-tag {
                    position: absolute;
                    font-size: 10px;
                    font-weight: 900;
                    color: var(--mj-green);
                    background: rgba(0, 0, 0, 0.85);
                    padding: 6px 15px;
                    border: 1px solid rgba(0, 255, 136, 0.3);
                    border-radius: 4px;
                    letter-spacing: 1px;
                    font-family: 'Cairo', sans-serif;
                    z-index: 15;
                }

                .t-top {
                    top: 15%;
                    animation: floatY 4s ease-in-out infinite;
                }

                .t-bottom {
                    bottom: 15%;
                    animation: floatY 4s ease-in-out reverse infinite;
                }

                /* Module Tags */
                .module-stack {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 10px;
                    justify-content: flex-end;
                }

                .module-tag {
                    background: rgba(255, 255, 255, 0.03);
                    border: 1px solid rgba(255, 255, 255, 0.08);
                    padding: 8px 14px;
                    border-radius: 10px;
                    display: flex;
                    align-items: center;
                    font-size: 11px;
                    color: rgba(255, 255, 255, 0.7);
                    transition: 0.3s;
                    direction: rtl;
                }

                .module-tag:hover {
                    border-color: #fff;
                    color: #fff;
                    background: rgba(255, 255, 255, 0.08);
                }

                .module-tag .dot {
                    width: 6px;
                    height: 6px;
                    border-radius: 50%;
                    margin-left: 10px;
                }

                .dot.green {
                    background: var(--mj-green);
                    box-shadow: 0 0 5px var(--mj-green);
                }

                .dot.blue {
                    background: #00d2ff;
                    box-shadow: 0 0 5px #00d2ff;
                }

                .dot.yellow {
                    background: #ffcc00;
                    box-shadow: 0 0 5px #ffcc00;
                }

                .dot.purple {
                    background: #bd00ff;
                    box-shadow: 0 0 5px #bd00ff;
                }

                /* Buttons */
                .btn-hud-primary {
                    display: inline-block;
                    background: var(--mj-green);
                    color: #000 !important;
                    border: none;
                    padding: 15px 35px;
                    border-radius: 12px;
                    font-weight: 900;
                    text-transform: uppercase;
                    transition: 0.4s;
                    box-shadow: 0 5px 25px rgba(0, 255, 136, 0.3);
                }

                .btn-hud-primary:hover {
                    transform: scale(1.05);
                    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.5);
                }

                .btn-hud-secondary {
                    display: inline-block;
                    background: transparent;
                    color: #fff !important;
                    border: 1px solid rgba(255, 255, 255, 0.2);
                    padding: 15px 35px;
                    border-radius: 12px;
                    font-weight: 800;
                    text-transform: uppercase;
                    transition: 0.3s;
                }

                .btn-hud-secondary:hover {
                    background: rgba(255, 255, 255, 0.05);
                    border-color: #fff;
                }

                @keyframes squarePulse {

                    0%,
                    100% {
                        transform: scale(1);
                        box-shadow: 0 0 50px rgba(0, 255, 136, 0.2);
                    }

                    50% {
                        transform: scale(1.05);
                        box-shadow: 0 0 70px rgba(0, 255, 136, 0.4);
                    }
                }

                @keyframes scanMove {
                    0% {
                        top: -10%;
                    }

                    100% {
                        top: 110%;
                    }
                }

                @keyframes rotateSquare {
                    from {
                        transform: rotate(0deg);
                    }

                    to {
                        transform: rotate(360deg);
                    }
                }

                @keyframes floatY {

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

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

                /* Light Mode */
                html.light .expert-sovereign-hud {
                    background: #f8f9fa;
                }

                html.light .hud-background-overlay {
                    opacity: 0.05;
                    filter: grayscale(100%) invert(1);
                }

                html.light .hud-card {
                    background: #fff;
                    border-color: #dee2e6;
                    color: #000;
                    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
                }

                html.light .text-white {
                    color: #000 !important;
                }

                html.light .text-white-50 {
                    color: #555 !important;
                }

                html.light .module-tag {
                    background: #f1f3f5;
                    border-color: #e9ecef;
                    color: #444;
                }

                html.light .btn-hud-secondary {
                    color: #000 !important;
                    border-color: #ddd;
                }

                html.light .square-core {
                    background: #fff;
                    border-color: #ddd;
                }

                html.light .tech-tag {
                    background: #fff;
                    color: #333;
                    border-color: #ddd;
                }
            


                .orbital-system {
                    position: relative;
                    width: 500px;
                    height: 500px;
                    margin: auto;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                .orbit {
                    position: absolute;
                    border: 1px dashed rgba(227, 27, 35, 0.15);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    transition: all 0.5s ease;
                }

                .orbit-1 {
                    width: 450px;
                    height: 450px;
                    animation: rotate 25s linear infinite;
                }

                .orbit-2 {
                    width: 320px;
                    height: 320px;
                    animation: rotate 15s linear reverse infinite;
                }

                .orbit-3 {
                    width: 180px;
                    height: 180px;
                    animation: rotate 10s linear infinite;
                }

                .orbit-node {
                    position: absolute;
                    width: 45px;
                    height: 45px;
                    background: var(--mj-card);
                    border: 1px solid var(--mj-border);
                    border-radius: 12px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: var(--mj-text);
                    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
                    transition: 0.3s;
                    backdrop-filter: blur(5px);
                }

                .orbit-node:hover {
                    border-color: var(--mj-red);
                    color: var(--mj-red);
                    box-shadow: 0 0 20px var(--mj-glow-red);
                }

                .node-1 {
                    top: -22px;
                    left: 50%;
                    transform: translateX(-50%);
                }

                .node-2 {
                    right: -22px;
                    top: 50%;
                    transform: translateY(-50%);
                }

                .node-3 {
                    bottom: -22px;
                    left: 50%;
                    transform: translateX(-50%);
                }

                .node-4 {
                    left: -22px;
                    top: 50%;
                    transform: translateY(-50%);
                }

                .quantum-core {
                    width: 120px;
                    height: 120px;
                    background: transparent;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    z-index: 10;
                    position: relative;
                    animation: pulse-red-logo 3s infinite;
                }

                /* Laser Radar Scan */
                .radar-scan {
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    border-radius: 50%;
                    background: conic-gradient(from 0deg, transparent 70%, var(--mj-glow-red) 100%);
                    opacity: 0.15;
                    animation: rotate 4s linear infinite;
                    pointer-events: none;
                    z-index: 2;
                }

                /* Data Particles */
                .data-particle {
                    position: absolute;
                    width: 4px;
                    height: 4px;
                    background: var(--mj-red);
                    border-radius: 50%;
                    box-shadow: 0 0 10px var(--mj-red);
                    offset-path: border-box;
                    pointer-events: none;
                }

                .p1 { animation: dataFlow 5s infinite linear; }
                .p2 { animation: dataFlow 7s infinite linear reverse; }
                .p3 { animation: dataFlow 4s infinite linear; }

                @keyframes dataFlow {
                    0% { offset-distance: 0%; opacity: 0; }
                    10% { opacity: 1; }
                    90% { opacity: 1; }
                    100% { offset-distance: 100%; opacity: 0; }
                }

                /* Scanning Line on Logo */
                .logo-scanner {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 2px;
                    background: linear-gradient(to right, transparent, var(--mj-red), transparent);
                    box-shadow: 0 0 15px var(--mj-red);
                    animation: scanVertical 2.5s ease-in-out infinite;
                    z-index: 5;
                }

                @keyframes scanVertical {
                    0%, 100% { top: 0%; opacity: 0; }
                    50% { top: 100%; opacity: 1; }
                }

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

                @keyframes pulse-red-logo {
                    0%, 100% {
                        filter: drop-shadow(0 0 10px var(--mj-glow-red));
                        transform: scale(1);
                    }
                    50% {
                        filter: drop-shadow(0 0 25px var(--mj-red));
                        transform: scale(1.1);
                    }
                }

                @keyframes pulse-red {

                    0%,
                    100% {
                        transform: scale(1);
                        box-shadow: 0 0 30px var(--mj-glow-red);
                    }

                    50% {
                        transform: scale(1.05);
                        box-shadow: 0 0 60px var(--mj-glow-red);
                    }
                }
            


            .ascension-path {
                position: relative;
                height: 80px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }

            .ascension-line {
                width: 2px;
                height: 100%;
                background: linear-gradient(to bottom, var(--mj-red), var(--mj-glow-red), gold);
                position: relative;
                overflow: hidden;
            }

            .ascension-particle {
                position: absolute;
                top: -20px;
                left: 50%;
                transform: translateX(-50%);
                width: 10px;
                height: 10px;
                background: white;
                border-radius: 50%;
                box-shadow: 0 0 20px #fff, 0 0 40px var(--mj-red);
                animation: flowDown 3s infinite linear;
            }

            @keyframes flowDown {
                0% {
                    top: -10%;
                    opacity: 0;
                }

                20% {
                    opacity: 1;
                }

                80% {
                    opacity: 1;
                }

                100% {
                    top: 110%;
                    opacity: 0;
                }
            }

            .trader-icon-ascend {
                position: absolute;
                background: var(--mj-bg);
                border: 1px solid var(--mj-border);
                padding: 10px;
                border-radius: 50%;
                z-index: 5;
                animation: pulseGlow 2s infinite ease-in-out;
            }

            @keyframes pulseGlow {

                0%,
                100% {
                    box-shadow: 0 0 5px var(--mj-glow-red);
                    transform: scale(1);
                }

                50% {
                    box-shadow: 0 0 20px var(--mj-glow-red);
                    transform: scale(1.1);
                }
            }

            /* Phase 01 Mastery Journey (Astronaut RTL) */
            .foundation-journey-track {
                position: relative;
                height: 40px;
                width: 100%;
                background: var(--mj-card-bg);
                border-radius: 20px;
                border: 1px solid var(--mj-border);
                margin-bottom: 50px;
                /* Spacing from cards */
                overflow: visible;
                direction: rtl;
            }

            .foundation-journey-progress {
                position: absolute;
                height: 100%;
                right: 0;
                width: 0;
                background: linear-gradient(-90deg, var(--mj-red), var(--mj-cyan));
                animation: progressFillPhase1 9s infinite linear;
                opacity: 0.2;
                border-radius: 20px;
            }

            .foundation-astronaut-traveler {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                z-index: 10;
                animation: astronautJourneyPhase1 9s infinite linear;
                color: var(--mj-red);
                filter: drop-shadow(0 0 8px var(--mj-glow-red));
                background: var(--mj-bg);
                padding: 8px;
                border: 1px solid var(--mj-border);
                border-radius: 50%;
            }

            @keyframes progressFillPhase1 {
                0% {
                    width: 0%;
                }

                100% {
                    width: 100%;
                }
            }

            @keyframes astronautJourneyPhase1 {
                0% {
                    right: -15px;
                }

                33% {
                    right: 33%;
                }

                66% {
                    right: 66%;
                    color: var(--mj-cyan);
                }

                100% {
                    right: calc(100% - 15px);
                    color: var(--mj-red);
                }
            }

            /* Phase 01 Card Reactions */
            @keyframes cardGlowMarketCode {

                0%,
                33% {
                    border-color: var(--mj-green) !important;
                    box-shadow: 0 0 20px rgba(0, 255, 127, 0.2);
                    transform: scale(1.02);
                    filter: grayscale(0);
                    opacity: 1;
                }

                34%,
                100% {
                    border-color: var(--mj-border);
                    transform: scale(1);
                    filter: grayscale(0.5);
                    opacity: 0.7;
                }
            }

            @keyframes cardGlowATS {

                34%,
                66% {
                    border-color: var(--mj-red) !important;
                    box-shadow: 0 0 20px var(--mj-glow-red);
                    transform: scale(1.02);
                    filter: grayscale(0);
                    opacity: 1;
                }

                0%,
                33%,
                67%,
                100% {
                    border-color: var(--mj-border);
                    transform: scale(1);
                    filter: grayscale(0.5);
                    opacity: 0.7;
                }
            }

            @keyframes cardGlowPsych {

                67%,
                100% {
                    border-color: var(--mj-cyan) !important;
                    box-shadow: 0 0 20px var(--mj-glow-cyan);
                    transform: scale(1.02);
                    filter: grayscale(0);
                    opacity: 1;
                }

                0%,
                66% {
                    border-color: var(--mj-border);
                    transform: scale(1);
                    filter: grayscale(0.5);
                    opacity: 0.7;
                }
            }

            .card-market-active {
                animation: cardGlowMarketCode 9s infinite;
            }

            .card-ats-active {
                animation: cardGlowATS 9s infinite;
            }

            .card-psych-active {
                animation: cardGlowPsych 9s infinite;
            }

            /* Elite Mastery Journey Animation (Corrected RTL) */
            .mastery-journey-track {
                position: relative;
                height: 50px;
                width: 100%;
                background: var(--mj-card-bg);
                border-radius: 25px;
                border: 1px solid var(--mj-border);
                margin-bottom: 60px;
                /* Professional spacing from cards */
                overflow: visible;
                direction: rtl;
            }

            .mastery-journey-progress {
                position: absolute;
                height: 100%;
                right: 0;
                width: 0;
                background: linear-gradient(-90deg, var(--mj-red), gold);
                animation: progressFillRTL 12s infinite linear;
                opacity: 0.3;
                border-radius: 25px;
            }

            .mastery-logo-traveler {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                width: 45px;
                height: 45px;
                z-index: 10;
                animation: logoJourneyRTL 12s infinite linear;
                display: flex;
                align-items: center;
                justify-content: center;
                background: var(--mj-bg);
                border: 1px solid var(--mj-border);
                border-radius: 50%;
                padding: 5px;
            }

            .mastery-logo-traveler img {
                width: 80%;
                height: auto;
                filter: drop-shadow(0 0 5px var(--mj-glow-red));
            }

            @keyframes progressFillRTL {
                0% {
                    width: 0%;
                }

                100% {
                    width: 100%;
                }
            }

            @keyframes logoJourneyRTL {
                0% {
                    right: -22px;
                    filter: none;
                }

                20% {
                    right: 25%;
                }

                45% {
                    right: 50%;
                    filter: drop-shadow(0 0 10px var(--mj-glow-cyan));
                }

                70% {
                    right: 75%;
                }

                90% {
                    right: 90%;
                    filter: sepia(1) saturate(10) hue-rotate(5deg) drop-shadow(0 0 20px gold);
                    transform: translateY(-50%) scale(1.1);
                }

                100% {
                    right: calc(100% - 22px);
                    filter: sepia(1) saturate(10) hue-rotate(5deg) drop-shadow(0 0 30px gold);
                    transform: translateY(-50%) scale(1.2);
                }
            }

            /* --- Sovereign Core: Neural Mesh & Intelligence Hubs (Adjusted) --- */
            .orbital-container {
                position: relative;
                width: 100%;
                min-height: 550px;
                /* slightly reduced for better fit on smaller screens */
                display: flex;
                align-items: center;
                justify-content: center;
                perspective: 1000px;
                padding: 2rem 0;
                /* spacing from surrounding sections */
                box-sizing: border-box;
            }

            /* Ensure the neural mesh covers full container */
            .neural-mesh-bg {
                position: absolute;
                inset: 0;
                background-image:
                    radial-gradient(circle at 50% 50%, var(--mj-soft-red) 0%, transparent 70%),
                    linear-gradient(var(--mj-border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--mj-border) 1px, transparent 1px);
                background-size: 100% 100%, 30px 30px, 30px 30px;
                opacity: 0.6;
                z-index: 1;
            }

            .singularity-orbit-wrap {
                position: relative;
                width: 300px;
                height: 300px;
                z-index: 5;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            /* Data Rings – increase contrast on dark mode */
            .data-ring {
                position: absolute;
                border: 1px solid var(--mj-border);
                border-radius: 50%;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                background: rgba(0, 0, 0, 0.1);
            }

            .ring-1 {
                width: 320px;
                height: 320px;
                animation: rotate3D 10s linear infinite;
                border-top-color: var(--mj-red);
            }

            .ring-2 {
                width: 380px;
                height: 380px;
                animation: rotate3D 15s linear infinite reverse;
                border-right-color: var(--mj-cyan);
                border-width: 2px;
                border-style: dashed;
            }

            .ring-3 {
                width: 450px;
                height: 450px;
                animation: rotate3D 20s linear infinite;
                opacity: 0.4;
            }

            @keyframes rotate3D {
                0% {
                    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(0deg);
                }

                100% {
                    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(360deg);
                }
            }

            /* Orbital Radar & Flux */
            .orbital-radar {
                position: absolute;
                inset: 0;
                background: conic-gradient(from 0deg, transparent 80%, rgba(0, 217, 255, 0.1) 100%);
                animation: rotate 6s linear infinite;
                pointer-events: none;
                z-index: 2;
                border-radius: 50%;
            }

            .singularity-core {
                position: relative;
                overflow: hidden;
            }

            .singularity-core .core-scanner {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 3px;
                background: linear-gradient(to right, transparent, var(--mj-cyan), transparent);
                box-shadow: 0 0 20px var(--mj-cyan);
                animation: scanVerticalCore 3s ease-in-out infinite;
                z-index: 5;
            }

            @keyframes scanVerticalCore {
                0%, 100% { top: 0%; opacity: 0; }
                50% { top: 100%; opacity: 1; }
            }

            .data-particle-orbital {
                position: absolute;
                width: 5px;
                height: 5px;
                background: var(--mj-cyan);
                border-radius: 50%;
                box-shadow: 0 0 10px var(--mj-cyan);
                offset-path: border-box;
                pointer-events: none;
            }

            .op1 { animation: dataFlow 8s infinite linear; }
            .op2 { animation: dataFlow 12s infinite linear reverse; }
            .op3 { animation: dataFlow 15s infinite linear; }

            /* Intelligence Nodes – responsive positioning */
            .intel-node {
                position: absolute;
                width: 110px;
                height: 110px;
                background: var(--mj-card);
                backdrop-filter: blur(10px);
                border: 1px solid var(--mj-border);
                border-radius: 15px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                z-index: 10;
                transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                cursor: pointer;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }

            .intel-node:hover {
                transform: translateY(-10px) scale(1.1);
                border-color: var(--mj-red);
                box-shadow: 0 20px 40px rgba(227, 27, 35, 0.2);
            }

            .intel-node i {
                font-size: 1.5rem;
                margin-bottom: 8px;
            }

            .intel-node span {
                font-size: 9px;
                font-weight: 900;
                letter-spacing: 1px;
                color: var(--mj-text-muted);
            }

            /* ── GLOBAL INTELLIGENCE: clean layout ── */
            .orbital-container {
                position: relative;
                width: 100%;
                min-height: 800px; /* Increased from 600px */
                display: flex;
                align-items: center;
                justify-content: center;
                perspective: 1000px;
                padding: 100px 0 200px; /* Increased padding */
                box-sizing: border-box;
            }

            /* Node Positions – relative to .orbital-container */
            .node-world {
                top: 60px;
                left: 50%;
                transform: translateX(-50%);
            }

            .node-finance {
                bottom: 260px;
                left: 15%;
            }

            .node-tech {
                bottom: 260px;
                right: 15%;
            }

            .node-liquidity {
                top: 220px;
                left: 15%;
            }

            .node-neural {
                top: 220px;
                right: 15%;
            }

            .node-ny4 {
                bottom: 110px;
                left: 50%;
                transform: translateX(-50%);
            }

            /* Hide old div-based lines */
            .intel-line {
                display: none;
            }

            /* SVG connector overlay */
            .intel-svg-lines {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                pointer-events: none;
                z-index: 3;
                overflow: visible;
            }

            /* Metrics Overlay - Minimalist HUD Bar */
            .core-metrics {
                position: absolute;
                bottom: 0px; /* Moved to the very bottom */
                left: 0;
                width: 100%;
                display: flex;
                justify-content: center;
                gap: 60px;
                z-index: 20;
                padding: 10px 0;
                background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
            }

            .metric-item {
                text-align: center;
                transition: all 0.3s ease;
            }

            .metric-item:hover {
                transform: translateY(-3px);
            }

            .metric-value {
                font-size: 1.6rem;
                font-weight: 900;
                color: #fff;
                margin-bottom: 2px;
                font-family: var(--font-accent);
                text-shadow: 0 0 10px var(--mj-glow-red);
                display: block;
            }

            .metric-label {
                font-size: 9px;
                color: var(--mj-text-muted);
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 2px;
                display: block;
            }

            @media (max-width: 768px) {
                .core-metrics {
                    gap: 20px;
                    bottom: 10px;
                }
                .metric-value {
                    font-size: 1.2rem;
                }
                .metric-label {
                    font-size: 8px;
                }
            }

            /* Card Activation Sequence (RTL Synchronized & Intensified) */
            .elite-card-hover {
                transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
                filter: grayscale(0.5);
                opacity: 0.8;
            }

            /* Active State Animations */
            @keyframes cardGlowBMSRTL {

                0%,
                20% {
                    border-color: gold !important;
                    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
                    transform: scale(1.02);
                    filter: grayscale(0);
                    opacity: 1;
                    background: rgba(255, 215, 0, 0.05);
                }

                25%,
                100% {
                    border-color: var(--mj-border);
                    transform: scale(1);
                    filter: grayscale(0.5);
                    opacity: 0.8;
                }
            }

            @keyframes cardGlowVGRAPRTL {

                25%,
                45% {
                    border-color: var(--mj-cyan) !important;
                    box-shadow: 0 0 30px var(--mj-glow-cyan);
                    transform: scale(1.02);
                    filter: grayscale(0);
                    opacity: 1;
                    background: rgba(0, 217, 255, 0.05);
                }

                0%,
                24%,
                50%,
                100% {
                    border-color: var(--mj-border);
                    transform: scale(1);
                    filter: grayscale(0.5);
                    opacity: 0.8;
                }
            }

            @keyframes cardGlowFMFRTL {

                50%,
                70% {
                    border-color: var(--mj-red) !important;
                    box-shadow: 0 0 30px var(--mj-glow-red);
                    transform: scale(1.02);
                    filter: grayscale(0);
                    opacity: 1;
                    background: rgba(255, 50, 50, 0.05);
                }

                0%,
                49%,
                75%,
                100% {
                    border-color: var(--mj-border);
                    transform: scale(1);
                    filter: grayscale(0.5);
                    opacity: 0.8;
                }
            }

            @keyframes cardGlowTMSRTL {

                75%,
                100% {
                    border-color: #8A2BE2 !important;
                    box-shadow: 0 0 50px rgba(138, 43, 226, 0.5);
                    transform: scale(1.05);
                    filter: grayscale(0);
                    opacity: 1;
                    background: linear-gradient(145deg, rgba(138, 43, 226, 0.1), rgba(0, 0, 0, 0.2));
                }

                0%,
                74% {
                    border-color: var(--mj-border);
                    transform: scale(1);
                    filter: grayscale(0.5);
                    opacity: 0.8;
                }
            }

            .card-bms-active {
                animation: cardGlowBMSRTL 12s infinite;
            }

            .card-vgrap-active {
                animation: cardGlowVGRAPRTL 12s infinite;
            }

            .card-fmf-active {
                animation: cardGlowFMFRTL 12s infinite;
            }

            .card-tms-active {
                animation: cardGlowTMSRTL 12s infinite;
            }

            .pulse-icon {
                animation: iconPulse 3s infinite;
            }

            @keyframes iconPulse {

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

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




/* ══════════════════════════════════════════════════════════════
   ACADEMY SECTION — CSS من القالب الأصلي
   ══════════════════════════════════════════════════════════════ */

/* Ascension Path */
.ascension-path {
    position: relative;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.ascension-line {
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--mj-red), var(--mj-glow-red), gold);
    position: relative;
    overflow: hidden;
}
.ascension-particle {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 20px #fff, 0 0 40px var(--mj-red);
    animation: flowDown 3s infinite linear;
}
@keyframes flowDown {
    0%   { top: -10%; opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { top: 110%; opacity: 0; }
}
.trader-icon-ascend {
    position: absolute;
    background: var(--mj-bg);
    border: 1px solid var(--mj-border);
    padding: 10px;
    border-radius: 50%;
    z-index: 5;
    animation: pulseGlow 2s infinite ease-in-out;
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 5px var(--mj-glow-red);  transform: scale(1);   }
    50%       { box-shadow: 0 0 20px var(--mj-glow-red); transform: scale(1.1); }
}

/* Foundation Journey Track (Phase 01) */
.foundation-journey-track {
    position: relative;
    height: 40px;
    width: 100%;
    background: var(--mj-card-bg);
    border-radius: 20px;
    border: 1px solid var(--mj-border);
    margin-bottom: 50px;
    overflow: visible;
    direction: rtl;
}
.foundation-journey-progress {
    position: absolute;
    height: 100%;
    right: 0;
    width: 0;
    background: linear-gradient(-90deg, var(--mj-red), var(--mj-cyan));
    animation: progressFillPhase1 9s infinite linear;
    opacity: 0.2;
    border-radius: 20px;
}
.foundation-astronaut-traveler {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    animation: astronautJourneyPhase1 9s infinite linear;
    color: var(--mj-red);
    filter: drop-shadow(0 0 8px var(--mj-glow-red));
    background: var(--mj-bg);
    padding: 8px;
    border: 1px solid var(--mj-border);
    border-radius: 50%;
}
@keyframes progressFillPhase1 {
    0%   { width: 0%; }
    100% { width: 100%; }
}
@keyframes astronautJourneyPhase1 {
    0%   { right: -15px; }
    33%  { right: 33%; }
    66%  { right: 66%; color: var(--mj-cyan); }
    100% { right: calc(100% - 15px); color: var(--mj-red); }
}

/* Phase 01 Card Reactions */
@keyframes cardGlowMarketCode {
    0%, 33% {
        border-color: var(--mj-green) !important;
        box-shadow: 0 0 20px rgba(0,255,127,0.2);
        transform: scale(1.02); filter: grayscale(0); opacity: 1;
    }
    34%, 100% {
        border-color: var(--mj-border);
        transform: scale(1); filter: grayscale(0.5); opacity: 0.7;
    }
}
@keyframes cardGlowATS {
    34%, 66% {
        border-color: var(--mj-red) !important;
        box-shadow: 0 0 20px var(--mj-glow-red);
        transform: scale(1.02); filter: grayscale(0); opacity: 1;
    }
    0%, 33%, 67%, 100% {
        border-color: var(--mj-border);
        transform: scale(1); filter: grayscale(0.5); opacity: 0.7;
    }
}
@keyframes cardGlowPsych {
    67%, 100% {
        border-color: var(--mj-cyan) !important;
        box-shadow: 0 0 20px var(--mj-glow-cyan);
        transform: scale(1.02); filter: grayscale(0); opacity: 1;
    }
    0%, 66% {
        border-color: var(--mj-border);
        transform: scale(1); filter: grayscale(0.5); opacity: 0.7;
    }
}
.card-market-active { animation: cardGlowMarketCode 9s infinite; }
.card-ats-active    { animation: cardGlowATS 9s infinite; }
.card-psych-active  { animation: cardGlowPsych 9s infinite; }

/* Mastery Journey Track (Phase 02) */
.mastery-journey-track {
    position: relative;
    height: 50px;
    width: 100%;
    background: var(--mj-card-bg);
    border-radius: 25px;
    border: 1px solid var(--mj-border);
    margin-bottom: 60px;
    overflow: visible;
    direction: rtl;
}
.mastery-journey-progress {
    position: absolute;
    height: 100%;
    right: 0;
    width: 0;
    background: linear-gradient(-90deg, var(--mj-red), gold);
    animation: progressFillRTL 12s infinite linear;
    opacity: 0.3;
    border-radius: 25px;
}
.mastery-logo-traveler {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    z-index: 10;
    animation: logoJourneyRTL 12s infinite linear;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mj-bg);
    border: 1px solid var(--mj-border);
    border-radius: 50%;
    padding: 5px;
}
.mastery-logo-traveler img {
    width: 80%;
    height: auto;
    filter: drop-shadow(0 0 5px var(--mj-glow-red));
}
@keyframes progressFillRTL {
    0%   { width: 0%; }
    100% { width: 100%; }
}
@keyframes logoJourneyRTL {
    0%   { right: -22px; filter: none; }
    20%  { right: 25%; }
    45%  { right: 50%; filter: drop-shadow(0 0 10px var(--mj-glow-cyan)); }
    70%  { right: 75%; }
    90%  { right: 90%; filter: sepia(1) saturate(10) hue-rotate(5deg) drop-shadow(0 0 20px gold); transform: translateY(-50%) scale(1.1); }
    100% { right: calc(100% - 22px); filter: sepia(1) saturate(10) hue-rotate(5deg) drop-shadow(0 0 30px gold); transform: translateY(-50%) scale(1.2); }
}

/* Elite Card Hover Animations (Phase 02) */
.elite-card-hover {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(0.5);
    opacity: 0.8;
}
@keyframes cardGlowBMSRTL {
    0%, 20% {
        border-color: gold !important;
        box-shadow: 0 0 30px rgba(255,215,0,0.3);
        transform: scale(1.02); filter: grayscale(0); opacity: 1;
        background: rgba(255,215,0,0.05);
    }
    25%, 100% {
        border-color: var(--mj-border);
        transform: scale(1); filter: grayscale(0.5); opacity: 0.8;
    }
}
@keyframes cardGlowVGRAPRTL {
    25%, 45% {
        border-color: var(--mj-cyan) !important;
        box-shadow: 0 0 30px var(--mj-glow-cyan);
        transform: scale(1.02); filter: grayscale(0); opacity: 1;
        background: rgba(0,217,255,0.05);
    }
    0%, 24%, 50%, 100% {
        border-color: var(--mj-border);
        transform: scale(1); filter: grayscale(0.5); opacity: 0.8;
    }
}
@keyframes cardGlowFMFRTL {
    50%, 70% {
        border-color: var(--mj-red) !important;
        box-shadow: 0 0 30px var(--mj-glow-red);
        transform: scale(1.02); filter: grayscale(0); opacity: 1;
        background: rgba(255,50,50,0.05);
    }
    0%, 49%, 75%, 100% {
        border-color: var(--mj-border);
        transform: scale(1); filter: grayscale(0.5); opacity: 0.8;
    }
}
@keyframes cardGlowTMSRTL {
    75%, 100% {
        border-color: #8A2BE2 !important;
        box-shadow: 0 0 50px rgba(138,43,226,0.5);
        transform: scale(1.05); filter: grayscale(0); opacity: 1;
        background: linear-gradient(145deg, rgba(138,43,226,0.1), rgba(0,0,0,0.2));
    }
    0%, 74% {
        border-color: var(--mj-border);
        transform: scale(1); filter: grayscale(0.5); opacity: 0.8;
    }
}
.card-bms-active   { animation: cardGlowBMSRTL   12s infinite; }
.card-vgrap-active { animation: cardGlowVGRAPRTL  12s infinite; }
.card-fmf-active   { animation: cardGlowFMFRTL    12s infinite; }
.card-tms-active   { animation: cardGlowTMSRTL    12s infinite; }

.pulse-icon {
    animation: iconPulse 3s infinite;
}
@keyframes iconPulse {
    0%, 100% { transform: scale(1);   opacity: 0.8; }
    50%       { transform: scale(1.1); opacity: 1;   }
}

/* Light mode overrides */
html.light .foundation-journey-track,
html.light .mastery-journey-track,
[data-bs-theme="light"] .foundation-journey-track,
[data-bs-theme="light"] .mastery-journey-track {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.08);
}
html.light .foundation-astronaut-traveler,
html.light .mastery-logo-traveler,
[data-bs-theme="light"] .foundation-astronaut-traveler,
[data-bs-theme="light"] .mastery-logo-traveler {
    background: #ffffff;
    border-color: rgba(0,0,0,0.1);
}


/* ══════════════════════════════════════════════════════════════
   NEURAL SECTION — orbital-system CSS من القالب الأصلي
   ══════════════════════════════════════════════════════════════ */

.orbital-system {
    position: relative;
    width: 500px;
    height: 500px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit {
    position: absolute;
    border: 1px dashed rgba(227, 27, 35, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.orbit-node {
    position: absolute;
    width: 45px;
    height: 45px;
    background: var(--mj-card);
    border: 1px solid var(--mj-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mj-text);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.orbit-node:hover {
    border-color: var(--mj-red);
    color: var(--mj-red);
    box-shadow: 0 0 20px var(--mj-glow-red);
}

.quantum-core {
    width: 120px;
    height: 120px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: relative;
    animation: pulse-red-logo 3s infinite;
}

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

/* Responsive */
@media (max-width: 768px) {
    .orbital-system {
        width: 300px;
        height: 300px;
    }
}


/* ══════════════════════════════════════════════════════════════
   COMMAND CENTER / COMPARISON — CSS variables من القالب
   ══════════════════════════════════════════════════════════════ */

/* comp-maj variables — Dark default */
:root {
    --comp-maj-color:  #00e5ff;
    --comp-maj-bg:     rgba(0, 229, 255, 0.05);
    --comp-maj-border: rgba(0, 229, 255, 0.3);
    --comp-maj-hover:  rgba(0, 229, 255, 0.1);
    --comp-trad-color: #ff4d4d;
    --comp-trad-bg:    rgba(227, 27, 35, 0.03);
    --comp-trad-border:rgba(227, 27, 35, 0.2);
    --comp-trad-hover: rgba(227, 27, 35, 0.08);
    --comp-vs-bg:      #111;
}

html.light,
[data-bs-theme="light"] {
    --comp-maj-color:  #0077b6;
    --comp-maj-bg:     rgba(0, 119, 182, 0.05);
    --comp-maj-border: rgba(0, 119, 182, 0.3);
    --comp-maj-hover:  rgba(0, 119, 182, 0.1);
    --comp-trad-color: #d90429;
    --comp-trad-bg:    rgba(217, 4, 41, 0.03);
    --comp-trad-border:rgba(217, 4, 41, 0.2);
    --comp-trad-hover: rgba(217, 4, 41, 0.08);
    --comp-vs-bg:      #f8f9fa;
}

/* z-index utility */
.z-index-1  { z-index: 1  !important; }
.z-index-2  { z-index: 2  !important; }
.z-index-5  { z-index: 5  !important; }
.z-index-10 { z-index: 10 !important; }

/* sweepShimmer animation */
@keyframes sweepShimmer {
    0%   { left: -100%; }
    100% { left: 200%;  }
}

/* card-shimmer */
.card-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-20deg);
    z-index: 0;
    pointer-events: none;
    animation: sweepShimmer 4s infinite;
}

html.light .card-shimmer,
[data-bs-theme="light"] .card-shimmer {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

/* Modular grid cards */
.border-hover-cyan:hover {
    border-color: var(--mj-cyan) !important;
}


/* ══════════════════════════════════════════════════════════════
   EXPERT HUD — CSS مفقود من القالب
   ══════════════════════════════════════════════════════════════ */

.text-gradient-mj {
    background: linear-gradient(90deg, var(--mj-red), var(--mj-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-green { color: var(--mj-green) !important; }

.hud-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bg-white-5 { background: rgba(255,255,255,0.05) !important; }
.bg-white-10 { background: rgba(255,255,255,0.1) !important; }
.border-white-10 { border-color: rgba(255,255,255,0.1) !important; }

.text-white-50 { color: rgba(255,255,255,0.5) !important; }

/* Light mode overrides for expert section */
html.light .text-white,
[data-bs-theme="light"] .text-white { color: #0f172a !important; }
html.light .text-white-50,
[data-bs-theme="light"] .text-white-50 { color: rgba(15,23,42,0.5) !important; }


/* ══════════════════════════════════════════════════════════════
   ORBITAL / GLOBAL INTELLIGENCE — CSS من القالب الأصلي
   ══════════════════════════════════════════════════════════════ */

.neural-mesh-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 50% 50%, var(--mj-soft-red) 0%, transparent 70%),
        linear-gradient(var(--mj-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--mj-border) 1px, transparent 1px);
    background-size: 100% 100%, 30px 30px, 30px 30px;
    opacity: 0.6;
    z-index: 1;
}

.orbital-container {
    position: relative;
    width: 100%;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    padding: 100px 0 200px;
    box-sizing: border-box;
}

/* Intelligence Nodes */
.intel-node {
    position: absolute;
    width: 110px;
    height: 110px;
    background: var(--mj-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--mj-border);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.intel-node:hover {
    transform: translateY(-10px) scale(1.1);
    border-color: var(--mj-red);
    box-shadow: 0 20px 40px rgba(227,27,35,0.2);
}
.intel-node i    { font-size: 1.5rem; margin-bottom: 8px; }
.intel-node span { font-size: 9px; font-weight: 900; letter-spacing: 1px; color: var(--mj-text-muted); }

/* Node Positions */
.node-world     { top: 60px;    left: 50%; transform: translateX(-50%); }
.node-finance   { bottom: 260px; left: 15%; }
.node-tech      { bottom: 260px; right: 15%; }
.node-liquidity { top: 220px;   left: 15%; }
.node-neural    { top: 220px;   right: 15%; }
.node-ny4       { bottom: 110px; left: 50%; transform: translateX(-50%); }

.intel-line { display: none; }

.intel-svg-lines {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 3;
    overflow: visible;
}

/* Singularity */
.singularity-orbit-wrap {
    position: relative;
    width: 300px;
    height: 300px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbital-radar {
    position: absolute;
    inset: 0;
    background: conic-gradient(from 0deg, transparent 80%, rgba(0,217,255,0.1) 100%);
    animation: rotate 6s linear infinite;
    pointer-events: none;
    z-index: 2;
    border-radius: 50%;
}

.data-ring {
    position: absolute;
    border: 1px solid var(--mj-border);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.1);
}
.ring-1 { width: 320px; height: 320px; animation: rotate3D 10s linear infinite;         border-top-color: var(--mj-red); }
.ring-2 { width: 380px; height: 380px; animation: rotate3D 15s linear infinite reverse; border-right-color: var(--mj-cyan); border-width: 2px; border-style: dashed; }
.ring-3 { width: 450px; height: 450px; animation: rotate3D 20s linear infinite;         opacity: 0.4; }

@keyframes rotate3D {
    0%   { transform: translate(-50%, -50%) rotateX(60deg) rotateZ(0deg); }
    100% { transform: translate(-50%, -50%) rotateX(60deg) rotateZ(360deg); }
}

.singularity-core {
    position: relative;
    overflow: hidden;
}
.singularity-core .core-scanner {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(to right, transparent, var(--mj-cyan), transparent);
    box-shadow: 0 0 20px var(--mj-cyan);
    animation: scanVerticalCore 3s ease-in-out infinite;
    z-index: 5;
}
@keyframes scanVerticalCore {
    0%, 100% { top: 0%;   opacity: 0; }
    50%       { top: 100%; opacity: 1; }
}

.data-particle-orbital {
    position: absolute;
    width: 5px; height: 5px;
    background: var(--mj-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--mj-cyan);
    pointer-events: none;
}
.op1 { animation: dataFlow 8s  infinite linear; }
.op2 { animation: dataFlow 12s infinite linear reverse; }
.op3 { animation: dataFlow 15s infinite linear; }

/* Core Metrics */
.core-metrics {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 60px;
    z-index: 20;
    padding: 10px 0;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}
.metric-item { text-align: center; transition: all 0.3s ease; }
.metric-item:hover { transform: translateY(-3px); }
.metric-value {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 2px;
    font-family: var(--font-accent, 'Outfit', sans-serif);
    text-shadow: 0 0 10px var(--mj-glow-red);
    display: block;
}
.metric-label {
    font-size: 9px;
    color: var(--mj-text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
}

@media (max-width: 768px) {
    .orbital-container { min-height: 500px; padding: 60px 0 120px; }
    .intel-node { width: 80px; height: 80px; }
    .intel-node i { font-size: 1.2rem; }
    .core-metrics { gap: 20px; }
    .metric-value { font-size: 1.2rem; }
    .metric-label { font-size: 8px; }
    .ring-1 { width: 200px; height: 200px; }
    .ring-2 { width: 250px; height: 250px; }
    .ring-3 { width: 300px; height: 300px; }
    .singularity-orbit-wrap { width: 200px; height: 200px; }
}

/* Light mode */
html.light .intel-node,
[data-bs-theme="light"] .intel-node {
    background: #ffffff;
    border-color: rgba(0,0,0,0.08);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
html.light .metric-value,
[data-bs-theme="light"] .metric-value { color: #0f172a; text-shadow: none; }


/* ═══════════════════════════════════════════════════════════════
   BOOTSTRAP GRID FIX v2 — High-specificity col-* override
   
   ROOT CAUSE: theme.css has `.row > * { width: 100% }` which has
   higher specificity than plain `.col-lg-5 { width: 41% }`.
   
   FIX: Use `.row > .col-*` selector to match or beat theme.css
   specificity, AND add !important as final guarantee.
   ═══════════════════════════════════════════════════════════════ */

/* Ensure .row is always a flex container */
.row {
    display: flex !important;
    flex-wrap: wrap !important;
}

/* ── Base (all sizes) ── */
.row > .col-1  { flex: 0 0 auto !important; width: 8.33333333%  !important; max-width: 8.33333333%  !important; }
.row > .col-2  { flex: 0 0 auto !important; width: 16.66666667% !important; max-width: 16.66666667% !important; }
.row > .col-3  { flex: 0 0 auto !important; width: 25%          !important; max-width: 25%          !important; }
.row > .col-4  { flex: 0 0 auto !important; width: 33.33333333% !important; max-width: 33.33333333% !important; }
.row > .col-5  { flex: 0 0 auto !important; width: 41.66666667% !important; max-width: 41.66666667% !important; }
.row > .col-6  { flex: 0 0 auto !important; width: 50%          !important; max-width: 50%          !important; }
.row > .col-7  { flex: 0 0 auto !important; width: 58.33333333% !important; max-width: 58.33333333% !important; }
.row > .col-8  { flex: 0 0 auto !important; width: 66.66666667% !important; max-width: 66.66666667% !important; }
.row > .col-9  { flex: 0 0 auto !important; width: 75%          !important; max-width: 75%          !important; }
.row > .col-10 { flex: 0 0 auto !important; width: 83.33333333% !important; max-width: 83.33333333% !important; }
.row > .col-11 { flex: 0 0 auto !important; width: 91.66666667% !important; max-width: 91.66666667% !important; }
.row > .col-12 { flex: 0 0 auto !important; width: 100%         !important; max-width: 100%         !important; }
.row > .col    { flex: 1 0 0%   !important; width: auto         !important; max-width: 100%         !important; }

/* ── sm (≥576px) ── */
@media (min-width: 576px) {
    .row > .col-sm-1  { flex: 0 0 auto !important; width: 8.33333333%  !important; max-width: 8.33333333%  !important; }
    .row > .col-sm-2  { flex: 0 0 auto !important; width: 16.66666667% !important; max-width: 16.66666667% !important; }
    .row > .col-sm-3  { flex: 0 0 auto !important; width: 25%          !important; max-width: 25%          !important; }
    .row > .col-sm-4  { flex: 0 0 auto !important; width: 33.33333333% !important; max-width: 33.33333333% !important; }
    .row > .col-sm-5  { flex: 0 0 auto !important; width: 41.66666667% !important; max-width: 41.66666667% !important; }
    .row > .col-sm-6  { flex: 0 0 auto !important; width: 50%          !important; max-width: 50%          !important; }
    .row > .col-sm-7  { flex: 0 0 auto !important; width: 58.33333333% !important; max-width: 58.33333333% !important; }
    .row > .col-sm-8  { flex: 0 0 auto !important; width: 66.66666667% !important; max-width: 66.66666667% !important; }
    .row > .col-sm-9  { flex: 0 0 auto !important; width: 75%          !important; max-width: 75%          !important; }
    .row > .col-sm-10 { flex: 0 0 auto !important; width: 83.33333333% !important; max-width: 83.33333333% !important; }
    .row > .col-sm-11 { flex: 0 0 auto !important; width: 91.66666667% !important; max-width: 91.66666667% !important; }
    .row > .col-sm-12 { flex: 0 0 auto !important; width: 100%         !important; max-width: 100%         !important; }
}

/* ── md (≥768px) ── */
@media (min-width: 768px) {
    .row > .col-md-1  { flex: 0 0 auto !important; width: 8.33333333%  !important; max-width: 8.33333333%  !important; }
    .row > .col-md-2  { flex: 0 0 auto !important; width: 16.66666667% !important; max-width: 16.66666667% !important; }
    .row > .col-md-3  { flex: 0 0 auto !important; width: 25%          !important; max-width: 25%          !important; }
    .row > .col-md-4  { flex: 0 0 auto !important; width: 33.33333333% !important; max-width: 33.33333333% !important; }
    .row > .col-md-5  { flex: 0 0 auto !important; width: 41.66666667% !important; max-width: 41.66666667% !important; }
    .row > .col-md-6  { flex: 0 0 auto !important; width: 50%          !important; max-width: 50%          !important; }
    .row > .col-md-7  { flex: 0 0 auto !important; width: 58.33333333% !important; max-width: 58.33333333% !important; }
    .row > .col-md-8  { flex: 0 0 auto !important; width: 66.66666667% !important; max-width: 66.66666667% !important; }
    .row > .col-md-9  { flex: 0 0 auto !important; width: 75%          !important; max-width: 75%          !important; }
    .row > .col-md-10 { flex: 0 0 auto !important; width: 83.33333333% !important; max-width: 83.33333333% !important; }
    .row > .col-md-11 { flex: 0 0 auto !important; width: 91.66666667% !important; max-width: 91.66666667% !important; }
    .row > .col-md-12 { flex: 0 0 auto !important; width: 100%         !important; max-width: 100%         !important; }
}

/* ── lg (≥992px) ── */
@media (min-width: 992px) {
    .row > .col-lg-1  { flex: 0 0 auto !important; width: 8.33333333%  !important; max-width: 8.33333333%  !important; }
    .row > .col-lg-2  { flex: 0 0 auto !important; width: 16.66666667% !important; max-width: 16.66666667% !important; }
    .row > .col-lg-3  { flex: 0 0 auto !important; width: 25%          !important; max-width: 25%          !important; }
    .row > .col-lg-4  { flex: 0 0 auto !important; width: 33.33333333% !important; max-width: 33.33333333% !important; }
    .row > .col-lg-5  { flex: 0 0 auto !important; width: 41.66666667% !important; max-width: 41.66666667% !important; }
    .row > .col-lg-6  { flex: 0 0 auto !important; width: 50%          !important; max-width: 50%          !important; }
    .row > .col-lg-7  { flex: 0 0 auto !important; width: 58.33333333% !important; max-width: 58.33333333% !important; }
    .row > .col-lg-8  { flex: 0 0 auto !important; width: 66.66666667% !important; max-width: 66.66666667% !important; }
    .row > .col-lg-9  { flex: 0 0 auto !important; width: 75%          !important; max-width: 75%          !important; }
    .row > .col-lg-10 { flex: 0 0 auto !important; width: 83.33333333% !important; max-width: 83.33333333% !important; }
    .row > .col-lg-11 { flex: 0 0 auto !important; width: 91.66666667% !important; max-width: 91.66666667% !important; }
    .row > .col-lg-12 { flex: 0 0 auto !important; width: 100%         !important; max-width: 100%         !important; }
    .d-lg-flex { display: flex !important; }
    .d-none.d-lg-flex { display: flex !important; }
}

/* ── xl (≥1200px) ── */
@media (min-width: 1200px) {
    .row > .col-xl-1  { flex: 0 0 auto !important; width: 8.33333333%  !important; max-width: 8.33333333%  !important; }
    .row > .col-xl-2  { flex: 0 0 auto !important; width: 16.66666667% !important; max-width: 16.66666667% !important; }
    .row > .col-xl-3  { flex: 0 0 auto !important; width: 25%          !important; max-width: 25%          !important; }
    .row > .col-xl-4  { flex: 0 0 auto !important; width: 33.33333333% !important; max-width: 33.33333333% !important; }
    .row > .col-xl-5  { flex: 0 0 auto !important; width: 41.66666667% !important; max-width: 41.66666667% !important; }
    .row > .col-xl-6  { flex: 0 0 auto !important; width: 50%          !important; max-width: 50%          !important; }
    .row > .col-xl-7  { flex: 0 0 auto !important; width: 58.33333333% !important; max-width: 58.33333333% !important; }
    .row > .col-xl-8  { flex: 0 0 auto !important; width: 66.66666667% !important; max-width: 66.66666667% !important; }
    .row > .col-xl-9  { flex: 0 0 auto !important; width: 75%          !important; max-width: 75%          !important; }
    .row > .col-xl-10 { flex: 0 0 auto !important; width: 83.33333333% !important; max-width: 83.33333333% !important; }
    .row > .col-xl-11 { flex: 0 0 auto !important; width: 91.66666667% !important; max-width: 91.66666667% !important; }
    .row > .col-xl-12 { flex: 0 0 auto !important; width: 100%         !important; max-width: 100%         !important; }
}

/* ── xxl (≥1400px) ── */
@media (min-width: 1400px) {
    .row > .col-xxl-1  { flex: 0 0 auto !important; width: 8.33333333%  !important; max-width: 8.33333333%  !important; }
    .row > .col-xxl-2  { flex: 0 0 auto !important; width: 16.66666667% !important; max-width: 16.66666667% !important; }
    .row > .col-xxl-3  { flex: 0 0 auto !important; width: 25%          !important; max-width: 25%          !important; }
    .row > .col-xxl-4  { flex: 0 0 auto !important; width: 33.33333333% !important; max-width: 33.33333333% !important; }
    .row > .col-xxl-5  { flex: 0 0 auto !important; width: 41.66666667% !important; max-width: 41.66666667% !important; }
    .row > .col-xxl-6  { flex: 0 0 auto !important; width: 50%          !important; max-width: 50%          !important; }
    .row > .col-xxl-7  { flex: 0 0 auto !important; width: 58.33333333% !important; max-width: 58.33333333% !important; }
    .row > .col-xxl-8  { flex: 0 0 auto !important; width: 66.66666667% !important; max-width: 66.66666667% !important; }
    .row > .col-xxl-9  { flex: 0 0 auto !important; width: 75%          !important; max-width: 75%          !important; }
    .row > .col-xxl-10 { flex: 0 0 auto !important; width: 83.33333333% !important; max-width: 83.33333333% !important; }
    .row > .col-xxl-11 { flex: 0 0 auto !important; width: 91.66666667% !important; max-width: 91.66666667% !important; }
    .row > .col-xxl-12 { flex: 0 0 auto !important; width: 100%         !important; max-width: 100%         !important; }
}
