         :root {
            --bg: #0e0e0e;
            --text: #f0f0f0;
            --accent: #ff3300; /* International Orange */
            --gray: #2a2a2a;
        }

        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: 'Archivo', sans-serif;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
            cursor: none;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Clash Display', sans-serif;
        }

        .span-title, .pp2 {
            font-family: 'Clash Display', sans-serif;
        }

        /* Noise Overlay */
        .noise {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            pointer-events: none;
            z-index: 9000;
            opacity: 0.04;
            background: url('https://grainy-gradients.vercel.app/noise.svg');
            mix-blend-mode: overlay;
        }

        /* Custom Cursor */
        .cursor {
            position: fixed;
            top: 0;
            left: 0;
            width: 20px;
            height: 20px;
            background-color: var(--accent);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            mix-blend-mode: difference;
            transition: width 0.3s, height 0.3s, background-color 0.3s;
        }

        .cursor.hovered {
            width: 80px;
            height: 80px;
            background-color: white;
            mix-blend-mode: exclusion;
        }
        
        .cursor.view-cursor {
            width: 100px;
            height: 100px;
            background-color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            color: black;
            font-weight: bold;
            font-family: 'Clash Display', sans-serif;
            mix-blend-mode: normal;
        }
        
        .cursor.view-cursor::after {
            content: 'VIEW';
            font-size: 14px;
        }

        /* Typography Utilities */
        .outline-text {
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
            color: transparent;
            transition: all 0.5s ease;
        }
        
        .char {
            display: inline-block;
        }
        
        .line {
            overflow: hidden;
        }

        /* Marquee */
        .marquee-container {
            overflow: hidden;
            white-space: nowrap;
            display: flex;
        }
        .marquee-content {
            display: flex;
            flex-shrink: 0;
            animation: scroll 20s linear infinite;
        }
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

        /* Work List Item */
        .work-item {
            border-top: 1px solid var(--gray);
            transition: background-color 0.3s ease, padding 0.3s ease;
            position: relative;
        }
        .work-item:last-child {
            border-bottom: 1px solid var(--gray);
        }
        .work-item:hover {
            background-color: var(--text);
            color: var(--bg);
            padding-left: 2rem;
            padding-right: 2rem;
        }
        .work-item:hover .work-cat {
            color: var(--bg);
        }
        .work-item:hover .outline-text {
             -webkit-text-stroke: 1px var(--bg);
        }
        
        /* Floating Image Reveal */
        .reveal-img {
            position: fixed;
            width: 350px;
            height: 450px;
            object-fit: cover;
            pointer-events: none;
            z-index: 50;
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.8) rotate(-5deg);
            transition: opacity 0.3s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            border-radius: 4px;
        }

        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg);
            z-index: 10000;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        .loader-bar {
            width: 200px;
            height: 2px;
            background: #222;
            margin-top: 20px;
            position: relative;
            overflow: hidden;
        }

        .loader-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0%;
            background: var(--accent);
        }

        /* Grid Background */
        .grid-bg {
            background-size: 60px 60px;
            background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                              linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
        }

        /* Menu Overlay */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--accent);
            z-index: 9950;
            transform: translateY(-100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
        }
        .menu-overlay.active {
            transform: translateY(0);
        }
        
        .menu-link {
            font-family: 'Clash Display', sans-serif;
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 700;
            color: var(--bg);
            text-transform: uppercase;
            overflow: hidden;
            position: relative;
            line-height: 1.1;
        }
        
        .menu-link span {
            display: block;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }
        
        .menu-overlay.active .menu-link span {
            transform: translateY(0);
            transition-delay: 0.3s;
        }

        /* Horizontal Scroll Section */
        .horizontal-section {
            width: 400%; /* 4 panels */
            height: 100%;
            display: flex;
            flex-wrap: nowrap;
        }
        
        .horizontal-panel {
            width: 100vw;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
            border-right: 1px solid var(--gray);
        }

        /* Testimonial Slide */
        .testimonial-slide {
            display: none;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        .testimonial-slide.active {
            display: block;
            opacity: 1;
        }

        /* Magnetic Button */
        .btn-magnet {
            display: inline-block;
            transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

