        :root {
            --neon: #16FF00;
            --cream: #FFFBCA;
            --black: #000000;
            --glass: rgba(0, 0, 0, 0.7);
        }

        * { cursor: crosshair; }

        body {
            background-color: var(--cream);
            color: var(--black);
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        .baumans-regular { font-family: "Baumans", system-ui; }

        /* 1. Floating Header */
        #main-nav {
            position: fixed;
            top: 25px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(22, 255, 0, 0.3);
            border-radius: 100px;
            padding: 12px 35px;
            z-index: 1000;
            transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
            width: fit-content;
            white-space: nowrap;
        }
        #main-nav.scrolled {
            top: 10px;
            transform: translateX(-50%) scale(0.85);
            background: rgba(0,0,0,0.95);
        }

        .nav-link {
            position: relative;
            padding: 5px 0;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--neon);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        .nav-link:hover::after { width: 100%; }

        /* 2. Hero Glitch */
        .glitch {
            position: relative;
            animation: glitch-anim 5s infinite linear alternate-reverse;
        }
        @keyframes glitch-anim {
            0% { transform: skew(0deg); text-shadow: 2px 0 var(--neon), -2px 0 #ff00c1; }
            1% { transform: skew(2deg); }
            2% { transform: skew(-1deg); }
            4% { transform: skew(0deg); text-shadow: none; }
            100% { text-shadow: none; }
        }

        /* 3. Diagonal Grid */
        .diagonal-row {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            align-items: center;
        }
        .reveal-diag {
            opacity: 0;
            transform: translate(-30px, 30px);
            transition: all 1s ease-out;
        }
        .reveal-diag.visible {
            opacity: 1;
            transform: translate(0, 0);
        }

        /* 4. Sliding Panels */
        .panel-container {
            overflow: hidden;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }
        .panel-content {
            transform: translateX(-100%);
            transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
        }
        .panel-container.active .panel-content {
            transform: translateX(0);
        }

        /* 5. Flow Diagram */
        .glow-circle {
            box-shadow: 0 0 0px var(--neon);
            transition: all 0.5s ease;
        }
        .glow-circle:hover {
            box-shadow: 0 0 30px var(--neon);
            transform: scale(1.1);
        }

        /* 8. Testimonials Scroll */
        .testimonial-track {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            animation: verticalScroll 20s linear infinite;
        }
        @keyframes verticalScroll {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .testimonial-track:hover { animation-play-state: paused; }

        /* General Utilities */
        .neon-border { border: 1px solid var(--neon); box-shadow: 0 0 15px rgba(22, 255, 0, 0.2); }
        .page-view { display: none; }
        .page-view.active { display: block; animation: fadeIn 0.8s ease; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        /* Mobile Hamburger */
        #hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
        }
        @media (max-width: 768px) {
            #hamburger { display: flex; }
            #nav-links-desktop { display: none; }
        }
