        :root {
            --burnt-rose: #B9375D;
            --warm-cream: #f4bc72;
            --deep-olive: #57564F;
            --neon-green: #08CB00;
        }

        * {
            cursor: none !important;
            scrollbar-width: thin;
            scrollbar-color: var(--burnt-rose) var(--warm-cream);
        }

        body {
            font-family: 'Inconsolata', monospace;
            background-color: var(--warm-cream);
            color: var(--deep-olive);
            overflow-x: hidden;
            margin: 0;
        }

        /* Grain Texture */
        .grain::after {
            content: "";
            position: fixed;
            top: -100%; left: -100%;
            width: 300%; height: 300%;
            background: url("https://grainy-gradients.vercel.app/noise.svg");
            opacity: 0.05;
            pointer-events: none;
            z-index: 9999;
            animation: noise 8s steps(10) infinite;
        }

        @keyframes noise {
            0%, 100% { transform:translate(0,0) }
            10% { transform:translate(-5%,-10%) }
            30% { transform:translate(-10%,5%) }
            50% { transform:translate(5%,10%) }
            70% { transform:translate(10%,-5%) }
            90% { transform:translate(-10%,10%) }
        }

        /* Experimental Typography */
        .mask-reveal {
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            transform: translateY(40px);
            transition: clip-path 1.2s cubic-bezier(0.19, 1, 0.22, 1), transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .mask-reveal.active {
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            transform: translateY(0);
        }

        /* Custom Cursor */
        #cursor-dot {
            width: 8px; height: 8px;
            background-color: var(--neon-green);
            position: fixed;
            pointer-events: none;
            z-index: 10000;
            border-radius: 50%;
            transition: transform 0.1s ease;
        }

        #cursor-outline {
            width: 40px; height: 40px;
            border: 1px solid var(--deep-olive);
            position: fixed;
            pointer-events: none;
            z-index: 10000;
            border-radius: 50%;
            transition: transform 0.15s ease-out;
        }

        /* Grid Background */
        .grid-bg {
            background-size: 100px 100px;
            background-image: linear-gradient(to right, rgba(87, 86, 79, 0.03) 1px, transparent 1px),
                              linear-gradient(to bottom, rgba(87, 86, 79, 0.03) 1px, transparent 1px);
        }

        /* Navigation Animation */
        .nav-item {
            transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
            letter-spacing: 0.1em;
        }
        .nav-item:hover {
            letter-spacing: 0.4em;
            color: var(--neon-green);
        }

        /* Ticker */
        .ticker-wrap {
            width: 100%;
            overflow: hidden;
            white-space: nowrap;
        }
        .ticker {
            display: inline-block;
            animation: ticker 40s linear infinite;
        }
        @keyframes ticker {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* Section Pinning / Parallax */
        .parallax-img {
            transition: transform 0.1s ease-out;
            will-change: transform;
        }

        /* Smooth View Switching */
        .view-content {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
            display: none;
        }
        .view-content.active {
            opacity: 1;
            transform: translateY(0);
            display: block;
        }

        /* Hamburger */
        .burger {
            width: 30px;
            height: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .burger span {
            width: 100%;
            height: 2px;
            background-color: var(--deep-olive);
            transition: 0.3s;
        }
        .burger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
        .burger.open span:nth-child(2) { opacity: 0; }
        .burger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

        .terminal-overlay {
            clip-path: circle(0% at 90% 5%);
            transition: clip-path 0.8s cubic-bezier(0.19, 1, 0.22, 1);
        }
        .terminal-overlay.active {
            clip-path: circle(150% at 90% 5%);
        }
    