        :root {
            --blue: #001BB7;
            --orange: #FFB22C;
            --white: #FFFFFF;
        }

        body {
            font-family: 'Michroma', sans-serif;
            background-color: var(--white);
            color: #050505;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* TYPOGRAPHY SYSTEM */
        h1, h2, h3, h4, .nav-item {
            text-transform: uppercase;
            letter-spacing: 0.15em;
        }

        p, li { line-height: 1.8; letter-spacing: 0.05em; font-family: sans-serif; font-weight: 300; }
        .tech-font { font-family: 'Michroma', sans-serif; }

        /* PERFORMANCE NAV STRIP */
        .nav-strip {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: saturate(180%) blur(20px);
            transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
            border-bottom: 1px solid rgba(0, 27, 183, 0.05);
        }

        .nav-strip.scrolled {
            height: 70px;
            background: rgba(255, 255, 255, 0.98);
            border-bottom: 3px solid var(--blue);
        }

        .nav-link {
            font-size: 11px;
            position: relative;
            transition: color 0.3s ease;
            background: transparent;
            border: none;
            cursor: pointer;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--orange);
            transition: width 0.3s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .nav-link:hover { color: var(--orange); }
        .nav-link:hover::after { width: 100%; }

        /* HERO ANIMATIONS */
        .hero-bg {
            animation: slow-zoom 30s infinite alternate linear;
        }

        @keyframes slow-zoom {
            0% { transform: scale(1); }
            100% { transform: scale(1.15); }
        }

        /* ASYMMETRIC GRID */
        .module-card {
            transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
            border: 1px solid #f0f0f0;
            overflow: hidden;
        }
        .module-card:hover {
            transform: translateY(-10px) scale(1.01);
            border-color: var(--blue);
            box-shadow: 0 40px 80px -20px rgba(0, 27, 183, 0.15);
        }

        /* DATA UI */
        .v-bar-fill {
            transition: height 1.5s cubic-bezier(0.19, 1, 0.22, 1);
        }

        /* SEARCH OVERLAY */
        #search-overlay {
            display: none;
            backdrop-filter: blur(25px);
            background: rgba(255,255,255,0.95);
        }

        /* SCROLL PROGRESS */
        #progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: var(--orange);
            z-index: 1000;
            width: 0%;
        }

        /* INTENSITY ZONES */
        .zone-bar { height: 100%; width: 0; transition: width 1s ease-in-out; }

        /* CUSTOM CURSOR (Tech vibe) */
        .cursor-dot { width: 8px; height: 8px; background: var(--blue); position: fixed; pointer-events: none; border-radius: 50%; z-index: 9999; transform: translate(-50%, -50%); display: none; }

        @media (min-width: 1024px) { .cursor-dot { display: block; } }
