        /* --- CSS VARIABLES & RESET --- */
        :root {
            --bg-dark: #000001;
            --primary-accent: #65f7fc;
            --secondary-accent: #ff0055; /* Glitch Red */
            --text-main: #D0D0D0;
            --text-white: #ffffff;
            
            --bg-panel: rgba(10, 10, 10, 0.6);
            --glass-border: 1px solid rgba(101, 247, 252, 0.15);
            
            --font-primary: 'Poppins', sans-serif;
            --font-secondary: 'Heebo', sans-serif;
            --nav-height: 90px;
        }

        html {
            scroll-behavior: smooth;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            cursor: none; /* Custom cursor */
        }

        /* Strict List Reset */
        ul, ol, li {
            list-style: none !important;
            padding: 0;
            margin: 0;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            font-family: var(--font-primary);
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4, h5, h6 {
            color: var(--text-white);
            font-family: var(--font-primary);
            font-weight: 700;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: -0.02em;
        }

        /* --- ADVANCED GLITCH EFFECT --- */
        @keyframes glitch-skew {
            0% { transform: skew(0deg); }
            20% { transform: skew(-10deg); }
            40% { transform: skew(10deg); }
            60% { transform: skew(-5deg); }
            80% { transform: skew(5deg); }
            100% { transform: skew(0deg); }
        }

        @keyframes glitch-anim {
            0% { clip-path: inset(80% 0 0 0); transform: translate(-2px, 2px); }
            20% { clip-path: inset(10% 0 60% 0); transform: translate(2px, -2px); }
            40% { clip-path: inset(50% 0 30% 0); transform: translate(-2px, 2px); }
            60% { clip-path: inset(20% 0 70% 0); transform: translate(2px, -2px); }
            80% { clip-path: inset(70% 0 10% 0); transform: translate(-2px, 2px); }
            100% { clip-path: inset(0 0 0 0); transform: translate(0); }
        }

        .glitch-hover:hover {
            position: relative;
            animation: glitch-skew 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
            color: var(--primary-accent);
        }

        .glitch-hover:hover::before,
        .glitch-hover:hover::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-dark);
        }

        .glitch-hover:hover::before {
            left: 2px;
            text-shadow: -1px 0 var(--secondary-accent);
            animation: glitch-anim 2s infinite linear alternate-reverse;
        }

        .glitch-hover:hover::after {
            left: -2px;
            text-shadow: -1px 0 var(--primary-accent);
            animation: glitch-anim 2s infinite linear alternate;
        }

        /* --- NOISE OVERLAY --- */
        .noise-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            pointer-events: none;
            z-index: 9990;
            opacity: 0.04;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
        }

        /* --- CUSTOM CURSOR --- */
        .cursor-dot {
            width: 6px; height: 6px; background-color: var(--primary-accent);
            position: fixed; top: 0; left: 0; border-radius: 50%; z-index: 9999;
            pointer-events: none; transform: translate(-50%, -50%);
            box-shadow: 0 0 10px var(--primary-accent);
        }

        .cursor-outline {
            width: 40px; height: 40px; border: 1px solid rgba(101, 247, 252, 0.5);
            position: fixed; top: 0; left: 0; border-radius: 50%; z-index: 9998;
            pointer-events: none; transform: translate(-50%, -50%);
            transition: width 0.2s, height 0.2s, background-color 0.2s;
        }

        body.hovering .cursor-outline {
            width: 60px; height: 60px;
            background-color: rgba(101, 247, 252, 0.1);
            border-color: var(--primary-accent);
            mix-blend-mode: screen;
            border-radius: 4px; /* Tech-square look on hover */
        }

        /* --- CANVAS BACKGROUND --- */
        #canvas-bg {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: -1;
            opacity: 0.3;
        }

        /* --- NAVIGATION --- */
        .navbar {
            position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-height);
            display: flex; justify-content: space-between; align-items: center;
            padding: 0 5%; z-index: 1000;
            background: rgba(5, 5, 5, 0.85);
            backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(101, 247, 252, 0.1);
        }

        .logo-container { width: 60px; height: auto; }
        .logo-container img { width: 100%; display: block; }
        
        .nav-links { display: flex; gap: 3rem; }
        .nav-links a {
            font-size: 0.9rem; font-weight: 600; text-transform: uppercase;
            letter-spacing: 0.1em; color: var(--text-main); position: relative;
            transition: color 0.3s;
            text-decoration: none;
        }
        
        .nav-links a::before {
            content: '['; margin-right: 5px; opacity: 0; transform: translateX(10px); transition: 0.3s; color: var(--primary-accent);
        }
        .nav-links a::after {
            content: ']'; margin-left: 5px; opacity: 0; transform: translateX(-10px); transition: 0.3s; color: var(--primary-accent);
        }
        .nav-links a:hover, .nav-links a.active { color: var(--primary-accent); text-shadow: 0 0 8px rgba(101, 247, 252, 0.6); }
        .nav-links a:hover::before, .nav-links a.active::before { opacity: 1; transform: translateX(0); }
        .nav-links a:hover::after, .nav-links a.active::after { opacity: 1; transform: translateX(0); }

        .menu-toggle { display: none; font-size: 1.5rem; color: var(--text-white); }

        /* --- HERO SECTION --- */
        .hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr; /* Split Layout */
            align-items: center;
            padding: 0 10%;
            padding-top: var(--nav-height);
            position: relative;
            gap: 40px;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 650px;
        }

        .hero h1 {
            font-size: clamp(3.5rem, 6vw, 6rem);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: -0.03em;
            text-shadow: 0 0 20px rgba(0,0,0,0.8);
        }

        .hero p {
            font-size: 1.15rem; color: #eee; max-width: 550px;
            margin-bottom: 3rem; font-family: var(--font-secondary);
            text-shadow: 0 2px 4px rgba(0,0,0,0.8);
            border-left: 3px solid var(--primary-accent);
            padding-left: 20px;
        }

        .hero-image-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1;
        }

        .hero-image {
            max-width: 100%;
            height: auto;
            max-height: 80vh;
            border-radius: 4px;
            /* Optional: Add a subtle tech border or shadow */
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            /* Ensure no opacity reduction on the image itself */
            opacity: 1; 
        }

        /* Engineered Tech Button */
        .cta-btn {
            display: inline-flex; align-items: center; justify-content: center;
            padding: 1rem 2.5rem; font-size: 0.9rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.15em;
            color: var(--primary-accent); 
            background: rgba(0, 20, 20, 0.6);
            border: 1px solid var(--primary-accent);
            position: relative; overflow: hidden;
            transition: all 0.3s ease;
            /* Angled Corners */
            clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
        }
        
        .cta-btn::before {
            content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, var(--primary-accent), transparent);
            transition: 0.5s; opacity: 0.3;
        }
        
        .cta-btn:hover {
            background: var(--primary-accent);
            color: #000;
            box-shadow: 0 0 30px rgba(101, 247, 252, 0.4);
        }
        .cta-btn:hover::before { left: 100%; }

        /* --- BRANDS SECTION --- */
        .brands-section {
            padding: 60px 10%;
            text-align: center;
            background: linear-gradient(to bottom, #000, #050505);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .brands-title {
            font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.2em;
            color: var(--text-main); margin-bottom: 30px; opacity: 0.6;
        }
        .brands-img {
            max-width: 100%; height: auto;
            opacity: 0.5; transition: opacity 0.3s;
            filter: grayscale(100%);
        }
        .brands-img:hover { opacity: 1; filter: grayscale(0%); }

        /* --- PROJECTS SECTION --- */
        #projects { padding: 120px 10%; background: radial-gradient(circle at top right, rgba(20,20,30,0.5), transparent 40%); }
        
        .project-row {
            display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
            margin-bottom: 150px; align-items: center; position: relative;
        }
        
        /* Connecting Line */
        .project-row::after {
            content: ''; position: absolute; bottom: -75px; left: 50%; width: 1px; height: 150px;
            background: linear-gradient(to bottom, var(--primary-accent), transparent);
            opacity: 0.2;
        }
        .project-row:last-child::after { display: none; }

        .project-row.reverse .project-visual { order: 2; }
        .project-row.reverse .project-content { order: 1; }

        .project-visual {
            position: relative; border-radius: 4px; overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
            transition: transform 0.4s ease;
        }
        .project-visual::after {
            /* Scanline Overlay */
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(transparent 50%, rgba(0,0,0,0.3) 50%);
            background-size: 100% 4px;
            pointer-events: none; opacity: 0; transition: 0.3s;
        }
        .project-visual:hover { transform: scale(1.02); border-color: var(--primary-accent); }
        .project-visual:hover::after { opacity: 1; }

        .project-visual img { width: 100%; height: auto; display: block; filter: saturate(0.8) contrast(1.1); transition: 0.5s; }
        .project-visual:hover img { filter: saturate(1.2) contrast(1.2); }

        .project-content h2 {
            font-size: 2.5rem; margin-bottom: 25px;
            text-transform: uppercase; letter-spacing: -1px;
        }
        
        .project-content p {
            margin-bottom: 35px; font-size: 1.1rem; color: var(--text-main);
            border-left: 1px solid rgba(255,255,255,0.1); padding-left: 20px;
        }

        /* --- ABOUT CAPABILITIES --- */
        #about { padding: 100px 10%; background: #050506; position: relative; }
        .grid-container {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
            margin-top: 60px;
        }
        .grid-card {
            background: rgba(255,255,255,0.02); padding: 50px;
            border: 1px solid rgba(255,255,255,0.05);
            transition: 0.3s; position: relative; overflow: hidden;
        }
        .grid-card::before {
            content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 0;
            background: var(--primary-accent); transition: 0.5s;
        }
        .grid-card:hover { background: rgba(255,255,255,0.04); transform: translateY(-5px); }
        .grid-card:hover::before { height: 100%; }
        
        .card-icon { font-size: 2rem; color: var(--primary-accent); margin-bottom: 20px; text-shadow: 0 0 15px var(--primary-accent); }

        /* --- MODAL --- */
        .modal-overlay {
            position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 10000;
            display: flex; align-items: center; justify-content: center;
            opacity: 0; pointer-events: none; transition: 0.3s; backdrop-filter: blur(10px);
        }
        .modal-overlay.open { opacity: 1; pointer-events: all; }

        .modal-content {
            width: 90%; max-width: 700px; background: #080808; 
            border: 1px solid var(--primary-accent);
            padding: 60px; position: relative; transform: scale(0.95) translateY(30px);
            transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
            max-height: 90vh; overflow-y: auto;
            box-shadow: 0 0 50px rgba(101, 247, 252, 0.1);
            clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
        }
        .modal-overlay.open .modal-content { transform: scale(1) translateY(0); }

        .close-modal {
            position: absolute; top: 20px; right: 20px; color: var(--primary-accent);
            background: none; border: 1px solid var(--primary-accent); padding: 5px 15px;
            cursor: pointer; font-family: monospace; font-size: 1.2rem;
            transition: 0.2s;
        }
        .close-modal:hover { background: var(--primary-accent); color: #000; }

        .ai-btn {
            background: transparent; border: 1px solid var(--primary-accent); color: var(--primary-accent);
            padding: 10px 20px; font-weight: 600; text-transform: uppercase;
            font-size: 0.8rem; margin-top: 20px; display: flex; align-items: center; gap: 8px;
            cursor: pointer; transition: 0.3s;
        }
        .ai-btn:hover { background: var(--primary-accent); color: #000; box-shadow: 0 0 15px var(--primary-accent); }
        .ai-result { margin-top: 20px; border-left: 2px solid var(--primary-accent); padding-left: 20px; color: #fff; font-family: monospace; }

        /* --- FOOTER --- */
        footer {
            padding: 100px 10%; background: #020202; border-top: 1px solid rgba(255,255,255,0.05);
        }
        .footer-top { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; margin-bottom: 60px; }
        .footer-logo { width: 60px; margin-bottom: 30px; filter: drop-shadow(0 0 5px rgba(101, 247, 252, 0.5)); }
        .footer-bio-text { margin-bottom: 40px; max-width: 500px; opacity: 0.8; }
        .footer-divider { width: 100%; height: 1px; background: linear-gradient(90deg, var(--primary-accent), transparent); opacity: 0.3; }
        
        .footer-nav-item {
            display: flex; justify-content: space-between; padding-bottom: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.1); color: #fff; text-decoration: none;
            margin-bottom: 15px; transition: 0.3s; font-family: monospace;
        }
        .footer-nav-item:hover { color: var(--primary-accent); padding-left: 10px; border-bottom-color: var(--primary-accent); }
        
        .contact-ai-box {
            background: rgba(255,255,255,0.02); padding: 30px; border: 1px solid rgba(255,255,255,0.05);
            position: relative; overflow: hidden;
        }
        .contact-ai-box::before {
            content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--primary-accent);
        }

        .footer-bottom { display: flex; justify-content: space-between; padding-top: 30px; color: #666; font-size: 0.85rem; }
        .social-icon {
            width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.05);
            display: flex; align-items: center; justify-content: center; color: #fff; margin-left: 10px;
            transition: 0.3s; text-decoration: none; border: 1px solid transparent;
        }
        .social-icon:hover { 
            background: transparent; border-color: var(--primary-accent); 
            color: var(--primary-accent); box-shadow: 0 0 15px rgba(101, 247, 252, 0.3);
        }
        
        .contact-input {
            width: 100%; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1);
            padding: 15px; color: #fff; margin-bottom: 15px; font-family: var(--font-primary);
        }
        .contact-input:focus { outline: none; border-color: var(--primary-accent); }

        /* --- ANIMATIONS --- */
        .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }

        @media (max-width: 900px) {
            .hero { grid-template-columns: 1fr; background-position: center; }
            .project-row { grid-template-columns: 1fr; gap: 40px; }
            .project-row.reverse .project-visual { order: -1; }
            .project-row.reverse .project-content { order: 1; }
            .nav-links { display: none; }
            .menu-toggle { display: block; }
            .footer-top { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
            .footer-socials { justify-content: center; }
            .cursor-dot, .cursor-outline { display: none; }
            * { cursor: auto; }
        }