:root {
            /* Premium Black & Lime Palette */
            --lime: #A3FF12;
            --accent: #A3FF12;
            --bg-dark: #000000; /* Pure black */
            --bg-light: #0a0a0a; /* Extremely dark grey for subtle depth */
            --surface: rgba(255, 255, 255, 0.03); /* Frosted glass */
            --border: rgba(255, 255, 255, 0.1);
            --border-hover: rgba(255, 255, 255, 0.3);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        body {
            background-color: var(--bg-dark);
            color: #ffffff;
            font-family: 'Montserrat', sans-serif;
            overflow-x: hidden;
            overflow-y: auto;
            cursor: none;
            /* Deep Space Gradient */
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-light) 100%);
            background-size: 200% 200%;
            animation: gradientShift 15s ease infinite alternate;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }

        a { text-decoration: none !important; color: inherit; cursor: none !important; }
        button { cursor: none !important; }

        @media (pointer: coarse) {
            body, a, button, .glass-card { cursor: auto !important; }
            .cursor-dot, .cursor-outline, .cursor-glow { display: none !important; }
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
        }

        /* --- BACKGROUND EFFECTS --- */
        #particle-canvas {
            position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
            z-index: 1; pointer-events: none;
        }

        .noise-overlay {
            position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
            pointer-events: none; z-index: 2; 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.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }

        /* --- HEADER --- */
        header {
            position: fixed; top: 0; left: 0; width: 100%; height: 100px; padding: 0 5%;
            z-index: 100; pointer-events: none;
            display: flex; justify-content: space-between; align-items: center;
        }

        .logo-wrapper {
            position: relative; display: flex; align-items: center;
            height: 60px; width: 250px; pointer-events: auto;
        }

        .logo-img {
            position: absolute; top: 50%; left: 0;
            transform: translateY(-50%);
            height: clamp(175px, 25vw, 350px);
            width: auto; transform-origin: left center;
            filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.6));
            transition: all 0.3s ease;
        }
        .logo-wrapper:hover .logo-img { transform: translateY(-50%) scale(1.05); filter: drop-shadow(0 0 20px var(--accent)); }

        .header-menu { display: flex; gap: 2.5rem; pointer-events: auto; align-items: center; }
        .header-menu a {
            color: #fff; font-size: 0.85rem; font-weight: 600;
            letter-spacing: 2px; text-transform: uppercase; opacity: 0.8; transition: 0.3s;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .header-menu a:hover { opacity: 1; color: var(--accent); text-shadow: 0 0 15px var(--accent); }

        /* --- LAYOUT --- */
        .content-wrapper { position: relative; z-index: 10; width: 100%; }
        section { padding: 120px 5%; position: relative; }
        .container { max-width: 1400px; margin: 0 auto; }

        .section-header { margin-bottom: 4rem; text-align: left; }
        .section-title { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; margin-bottom: 1rem; position: relative; display: inline-block; text-shadow: 0 4px 10px rgba(0,0,0,0.5); }
        .section-subtitle { color: #aaa; font-size: 1.1rem; max-width: 700px; line-height: 1.6; text-shadow: 0 2px 5px rgba(0,0,0,0.8); }

        .lime-text { color: var(--lime); text-shadow: 0 0 15px rgba(163, 255, 18, 0.5); }
        .accent-text { color: var(--accent); text-shadow: 0 0 15px rgba(163, 255, 18, 0.5); }

        /* --- HERO --- */
        #hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding-top: 15vh; }
        .hero-title { font-size: clamp(3.5rem, 8vw, 7.5rem); line-height: 0.95; margin-bottom: 2rem; font-weight: 900; letter-spacing: -2px; text-shadow: 0 10px 30px rgba(0,0,0,0.8); }
        .hero-subtitle { font-size: clamp(1.1rem, 1.5vw, 1.4rem); font-weight: 400; color: rgba(255,255,255,0.9); margin-bottom: 2.5rem; max-width: 700px; line-height: 1.6; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }

        .social-glass-icon {
            position: absolute; width: 65px; height: 65px; display: flex; align-items: center; justify-content: center;
            border-radius: 16px; font-size: 30px; background: rgba(255,255,255,0.03); backdrop-filter: blur(15px);
            border: 1px solid var(--border); box-shadow: 0 10px 25px rgba(0,0,0,0.6); z-index: 1; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .icon-lime { color: var(--lime); }
        .icon-accent { color: var(--accent); }

        .pos-1 { top: -60px; left: -140px; animation: float-1 8s infinite ease-in-out alternate; }
        .pos-2 { bottom: 10px; left: -110px; animation: float-2 9s infinite ease-in-out alternate-reverse; }
        .pos-3 { top: -60px; right: -140px; animation: float-3 10s infinite ease-in-out alternate; }
        .pos-4 { bottom: 10px; right: -110px; animation: float-4 7s infinite ease-in-out alternate-reverse; }
        @keyframes float-1 { 0% { transform: translateY(0); } 100% { transform: translateY(-15px); } }
        @keyframes float-2 { 0% { transform: translateY(0); } 100% { transform: translateY(15px); } }
        @keyframes float-3 { 0% { transform: translateY(0); } 100% { transform: translateY(-15px); } }
        @keyframes float-4 { 0% { transform: translateY(0); } 100% { transform: translateY(15px); } }

        /* --- BUTTONS --- */
        .glass-btn {
            position: relative; display: inline-flex; align-items: center; justify-content: center;
            padding: 1.2rem 3rem; color: #ffffff !important; font-family: 'Orbitron', sans-serif;
            font-size: 0.9rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
            background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(15px); border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.2); 
            transition: 0.4s; box-shadow: 0 15px 35px rgba(0,0,0,0.6); overflow: hidden; transform-style: preserve-3d;
        }
        .glass-btn:hover {
            transform: translateY(-5px) scale(1.05); border-color: var(--accent); background: var(--accent); color: #000 !important;
            box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 25px var(--accent);
        }

        .cta-btn-large {
            font-size: 1.1rem !important;
            padding: 1.6rem 2rem !important;
            border: 1px solid rgba(163, 255, 18, 0.7) !important;
            border-radius: 12px;
            background: #050505 !important;
            box-shadow: 0 10px 30px rgba(0,0,0,0.8), 
                        0 0 25px rgba(163, 255, 18, 0.4), 
                        inset 0 0 20px rgba(163, 255, 18, 0.1) !important;
            text-shadow: 0 2px 5px rgba(0,0,0,1) !important;
            width: 100%;
            max-width: 550px;
            font-weight: 900 !important;
            letter-spacing: 1px !important;
            position: relative;
            overflow: hidden;
            z-index: 1;
            color: #fff !important;
        }

        .cta-btn-large::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(
                90deg, 
                transparent 0%, 
                rgba(163, 255, 18, 0.1) 35%, 
                rgba(163, 255, 18, 0.8) 50%,
                rgba(163, 255, 18, 0.1) 65%, 
                transparent 100%
            );
            background-size: 200% 100%;
            animation: limeFluidSweep 2s linear infinite;
            z-index: -1;
            pointer-events: none;
        }

        .cta-btn-large::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            box-shadow: inset 0 0 15px rgba(163, 255, 18, 0.3);
            pointer-events: none;
            z-index: -1;
        }

        .cta-btn-large:hover {
            box-shadow: 0 20px 40px rgba(0,0,0,0.9), 
                        0 0 50px rgba(163, 255, 18, 0.6), 
                        inset 0 0 30px rgba(163, 255, 18, 0.4) !important;
            transform: translateY(-5px) scale(1.05);
            color: #fff !important;
            border-color: var(--lime) !important;
        }

        @keyframes limeFluidSweep {
            0% { background-position: 200% 0; }
            100% { background-position: 0% 0; }
        }

        /* --- MASCOT PUSH SECTION --- */
        #mascot-push { padding: 40px 5%; overflow: hidden; position: relative; }
        .mascot-track-wrapper { display: flex; align-items: center; max-width: 1400px; margin: 0 auto; position: relative; }
        .mascot-character {
            font-size: 3.5rem; color: var(--lime); z-index: 5; text-shadow: 0 0 25px rgba(163, 255, 18, 0.8);
            animation: mascotPush 0.6s infinite alternate cubic-bezier(0.25, 0.46, 0.45, 0.94); margin-right: 1.5rem; position: relative; display: flex; align-items: center; justify-content: center;
        }
        .mascot-character::after {
            content: ''; position: absolute; right: -25px; top: 50%; transform: translateY(-50%); width: 25px; height: 4px; background: var(--lime); border-radius: 5px; box-shadow: 0 0 15px var(--lime);
            animation: energyWave 0.6s infinite alternate cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .push-track {
            flex: 1; overflow: hidden; padding: 1rem 0;
            mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
        }
        .push-items { display: flex; width: max-content; animation: slideItemsRight 15s linear infinite; }
        .push-items:hover { animation-play-state: paused; }
        .push-group { display: flex; gap: 2rem; padding-right: 2rem; }
        .push-pill {
            display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--border);
            padding: 1rem 2.5rem; border-radius: 50px; font-family: 'Orbitron'; font-size: 1rem; color: #fff;
            backdrop-filter: blur(15px); white-space: nowrap; box-shadow: 0 10px 25px rgba(0,0,0,0.6); transition: 0.3s;
        }
        .push-pill:hover { border-color: var(--accent); transform: scale(1.05); box-shadow: 0 0 20px rgba(163, 255, 18, 0.4); }
        .push-pill i { font-size: 1.2rem; }

        @keyframes mascotPush { 0% { transform: translateX(0) rotate(0deg) scale(1); } 100% { transform: translateX(12px) rotate(12deg) scale(1.05); } }
        @keyframes energyWave { 0% { width: 10px; opacity: 0.2; right: -10px; } 100% { width: 35px; opacity: 1; right: -35px; } }
        @keyframes slideItemsRight { 0% { transform: translate3d(-50%, 0, 0); } 100% { transform: translate3d(0%, 0, 0); } }

        /* --- HYPER-GLASSMORPHISM CARDS --- */
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 3rem; perspective: 1500px; }

        .glass-card {
            background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
            backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
            border: 1px solid rgba(255, 255, 255, 0.08); 
            border-top: 1px solid rgba(255,255,255,0.25);
            border-left: 1px solid rgba(255,255,255,0.15);
            border-radius: 24px; padding: 2.5rem; transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative; overflow: hidden; display: flex; flex-direction: column;
            transform-style: preserve-3d;
            box-shadow: 0 25px 50px rgba(0,0,0,0.8), inset 0 0 30px rgba(255, 255, 255, 0.02);
            will-change: transform;
        }

        .card-glare {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none;
            background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
            opacity: 0; transition: opacity 0.4s; mix-blend-mode: overlay; z-index: 2;
        }
        .card-mouse-glow {
            position: absolute; width: 400px; height: 400px; border-radius: 50%; top: 0; left: 0;
            background: radial-gradient(circle, rgba(163, 255, 18, 0.15) 0%, transparent 70%);
            transform: translate(-50%, -50%); pointer-events: none; opacity: 0; transition: opacity 0.4s; z-index: 1;
        }
        .glass-card:hover .card-mouse-glow, .glass-card:hover .card-glare { opacity: 1; }
        .glass-card:hover { border-color: rgba(255, 255, 255, 0.2); box-shadow: 0 35px 70px rgba(0,0,0,1), inset 0 0 30px rgba(255,255,255,0.05); z-index: 20; }

        .glass-card-inner {
            transform: translateZ(60px);
            transition: transform 0.5s; position: relative; z-index: 10;
            display: flex; flex-direction: column; height: 100%;
        }

        .glass-card h3 { font-size: 1.4rem; margin-bottom: 1.5rem; letter-spacing: 1px; color: #fff; text-shadow: 0 2px 5px rgba(0,0,0,0.8); }
        .service-list { list-style: none; margin-top: auto; color: #aaa; font-size: 0.95rem; }
        .service-list li { margin-bottom: 0.8rem; display: flex; align-items: start; gap: 10px; transition: 0.3s; font-weight: 500;}
        .service-list li:hover { color: #fff; transform: translateX(8px); text-shadow: 0 0 10px rgba(255,255,255,0.3); }
        .service-list li::before { content: '►'; font-size: 0.6rem; margin-top: 5px; color: var(--accent); opacity: 0.9; text-shadow: 0 0 10px var(--accent); }

        .icon-orbit-wrapper { position: relative; width: 80px; height: 80px; margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; }
        .orbit-ring { position: absolute; width: 100%; height: 100%; border-radius: 50%; border: 1px dashed rgba(255, 255, 255, 0.2); animation: spin 10s linear infinite; }
        .orbit-ring::after { content: ''; position: absolute; top: -4px; left: 50%; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 15px var(--accent); transform: translateX(-50%); }
        .glass-icon-core { position: relative; width: 50px; height: 50px; background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #fff; text-shadow: 0 0 15px var(--accent); box-shadow: inset 0 0 15px rgba(163, 255, 18, 0.2); }

        /* PORTFOLIO CARD SPECIFICS */
        .portfolio-card { padding: 0 !important; }
        .portfolio-banner {
            width: 100%; height: 180px;
            background: linear-gradient(135deg, rgba(163, 255, 18, 0.15) 0%, rgba(0,0,0,0.8) 100%);
            border-bottom: 1px solid rgba(255,255,255,0.1);
            display: flex; align-items: center; justify-content: center;
            position: relative; overflow: hidden;
        }
        .portfolio-banner::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%); opacity: 0.5; pointer-events: none;
        }
        .portfolio-logo-container {
            width: 110px; height: 110px; border-radius: 50%; background: #ffffff; padding: 4px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 25px rgba(163, 255, 18, 0.4);
            z-index: 2; position: relative; overflow: hidden;
        }
        .portfolio-logo-container img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
        .portfolio-content { padding: 2.5rem; display: flex; flex-direction: column; flex: 1; align-items: center; text-align: center; }
        .portfolio-tags { display: flex; gap: 8px; margin-bottom: 1.5rem; justify-content: center; flex-wrap: wrap; }
        .portfolio-tag {
            font-size: 0.7rem; font-family: 'Orbitron'; padding: 5px 14px;
            background: rgba(163, 255, 18, 0.08); border: 1px solid rgba(163, 255, 18, 0.3);
            border-radius: 20px; color: var(--lime); letter-spacing: 1px; text-shadow: 0 0 8px rgba(163, 255, 18, 0.5);
        }

        @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

        /* --- THE REALITY RIFT --- */
        #usp-core {
            position: relative; height: 100vh; min-height: 800px;
            background: #000000; overflow: hidden; display: flex;
            align-items: center; justify-content: center;
            border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
        }

        .usp-layer {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
        }

        .usp-base { z-index: 1; background: radial-gradient(circle at center, #111 0%, #000 100%); }
        .usp-base-title {
            font-size: clamp(3rem, 8vw, 7rem); font-family: 'Orbitron', sans-serif; font-weight: 900;
            line-height: 1; text-align: center; color: transparent;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
            perspective: 1000px; z-index: 2;
        }
        .mag-letter {
            display: inline-block; transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s, text-shadow 0.3s;
            will-change: transform; cursor: default;
        }
        .usp-base-sub {
            margin-top: 2rem; font-size: 1rem; color: #666; letter-spacing: 5px;
            text-transform: uppercase; font-weight: 600;
        }

        .usp-overlay {
            z-index: 5; 
            background-color: #A3FF12;
            clip-path: circle(0px at 50% 50%); 
            -webkit-clip-path: circle(0px at 50% 50%);
            pointer-events: none; 
            overflow: hidden;
            will-change: clip-path, -webkit-clip-path;
        }

        .usp-overlay-inner {
            width: 100%; height: 100%; display: flex; flex-direction: column;
            align-items: center; justify-content: center; transform-style: preserve-3d;
            will-change: transform;
        }

        .usp-overlay-title {
            font-size: clamp(3rem, 8vw, 7rem); font-family: 'Orbitron', sans-serif; font-weight: 900;
            line-height: 1; text-align: center; color: #000;
            text-shadow: 20px 20px 0px rgba(0,0,0,0.1);
            transform: translateZ(80px);
        }
        .usp-overlay-title span { color: #fff; }
        .usp-overlay-sub {
            margin-top: 2rem; font-size: 1rem; color: #000; letter-spacing: 5px;
            text-transform: uppercase; font-weight: 900; transform: translateZ(40px);
        }

        .rift-marquee {
            position: absolute; top: 50%; left: 0; width: 200%;
            transform: translateY(-50%) rotate(-5deg); z-index: -1;
            display: flex; white-space: nowrap; pointer-events: none;
        }
        .rift-marquee span {
            font-size: 20vw; font-family: 'Orbitron', sans-serif; font-weight: 900;
            color: transparent; -webkit-text-stroke: 2px rgba(0, 0, 0, 0.1);
            animation: marqueeScroll 20s linear infinite;
        }
        @keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .rift-cube {
            position: absolute; width: 100px; height: 100px; background: rgba(0,0,0,0.05);
            border: 2px solid rgba(0,0,0,0.2); backdrop-filter: blur(5px);
            transform: translateZ(120px) rotate45deg;
        }
        .cube-1 { top: 20%; left: 20%; width: 60px; height: 60px; animation: floatCube 6s infinite alternate; }
        .cube-2 { bottom: 20%; right: 20%; width: 120px; height: 120px; animation: floatCube 8s infinite alternate-reverse; }
        @keyframes floatCube { 0% { transform: translateZ(120px) rotate(0deg) translateY(0); } 100% { transform: translateZ(120px) rotate(90deg) translateY(-30px); } }

        body.hide-cursors .cursor-dot, body.hide-cursors .cursor-outline, body.hide-cursors .cursor-glow { opacity: 0 !important; }

        /* --- INDUSTRIES --- */
        .industries-grid { display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: center; }
        .industry-pill {
            background: var(--surface); border: 1px solid var(--border); border-radius: 50px;
            padding: 1rem 2.5rem; font-family: 'Orbitron'; font-size: 0.9rem; color: #fff;
            transition: 0.3s; backdrop-filter: blur(10px); box-shadow: 0 10px 25px rgba(0,0,0,0.6);
        }
        .industry-pill:hover { border-color: var(--accent); box-shadow: 0 0 25px rgba(163, 255, 18, 0.4); transform: scale(1.05); }

        /* --- WHY CHOOSE US --- */
        .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; perspective: 1500px; }
        .why-grid .glass-card { text-align: center; align-items: center; justify-content: center; padding: 2rem; }
        .why-grid h4 { font-size: 1.1rem; color: #fff; margin-bottom: 0.5rem; }

        /* --- PROCESS --- */
        #process { background: rgba(255, 255, 255, 0.01); border-top: 1px solid var(--border); }
        .timeline { position: relative; max-width: 800px; margin: 0 auto; padding: 2rem 0; }

        .timeline-line-base { position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: rgba(255, 255, 255, 0.1); z-index: 0; }
        .timeline-line-glow { 
            position: absolute; left: 24px; top: 0; width: 2px; height: 0%; 
            background: var(--lime); 
            box-shadow: 0 0 15px var(--lime), 0 0 30px var(--lime); 
            z-index: 1; transition: height 0.15s ease-out; 
        }

        .timeline-step { position: relative; padding-left: 90px; margin-bottom: 4rem; opacity: 0; transform: translateY(20px); transition: 1s ease; }
        .reveal.active .timeline-step { opacity: 1; transform: translateY(0); }

        .step-number { position: absolute; left: 0; top: 0; width: 50px; height: 50px; background: #050505; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Orbitron'; font-weight: 900; color: #888; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); z-index: 2; box-shadow: 0 5px 15px rgba(0,0,0,0.8); }

        .timeline-step::before {
            content: ''; position: absolute; left: 50px; top: 24px; width: 0; height: 2px;
            background: linear-gradient(to right, var(--lime), transparent);
            z-index: 0; transition: width 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .timeline-step:nth-child(even)::before { background: linear-gradient(to right, var(--accent), transparent); }

        .timeline-step.converged::before { width: 30px; }
        .timeline-step.converged .step-number { border-color: var(--lime); color: #000; background: var(--lime); box-shadow: 0 0 25px var(--lime); transform: scale(1.15); }
        .timeline-step:nth-child(even).converged .step-number { border-color: var(--accent); color: #000; background: var(--accent); box-shadow: 0 0 25px var(--accent); }

        .timeline-step h3 { display: inline-block; position: relative; padding-bottom: 8px; margin-bottom: 0.5rem; color: #fff; text-shadow: 0 2px 5px rgba(0,0,0,0.8); }
        .timeline-step h3::after {
            content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
            background: var(--lime); box-shadow: 0 0 10px var(--lime); transition: width 0.6s ease 0.2s;
        }
        .timeline-step:nth-child(even) h3::after { background: var(--accent); box-shadow: 0 0 10px var(--accent); }
        .timeline-step.converged h3::after { width: 100%; }

        /* --- FOOTER --- */
        footer { border-top: 1px solid var(--border); padding: 5rem 5% 2rem; background: #030303; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
        .footer-logo { font-family: 'Orbitron'; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 900; letter-spacing: 2px; color: #fff; line-height: 1; margin-bottom: 1.5rem; }
        .footer-logo span { color: var(--accent); text-shadow: 0 0 15px rgba(163, 255, 18, 0.4); }
        .footer-col h4 { font-size: 1rem; margin-bottom: 2rem; color: #fff; letter-spacing: 2px; }
        .footer-col p, .footer-col a { color: #888; font-size: 0.9rem; margin-bottom: 1rem; display: block; transition: 0.3s; }
        .footer-col a:hover { color: var(--accent); transform: translateX(3px); text-shadow: 0 0 10px rgba(163, 255, 18, 0.5); }
        .footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; font-size: 0.8rem; color: #555; }

        /* --- UTILS --- */
        .reveal { opacity: 0; transform: translateY(40px); transition: 1.2s cubic-bezier(0.2, 1, 0.3, 1); }
        .reveal.active { opacity: 1; transform: translateY(0); }

        .glass-input {
            width: 100%; padding: 1rem; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 8px; color: #fff; font-family: 'Montserrat', sans-serif; outline: none; transition: 0.3s; margin-bottom: 1rem;
        }
        .glass-input:focus { border-color: var(--accent); box-shadow: 0 0 15px rgba(163, 255, 18, 0.2); background: rgba(255,255,255,0.08); }
        .glass-input::placeholder { color: #888; }

        /* --- FOUNDER --- */
        .founder-grid {
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 4rem;
            align-items: center;
        }
        .founder-grid-reverse {
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 4rem;
            align-items: center;
        }
        .founder-grid-reverse .founder-content { text-align: right; }

        .founder-img-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 3 / 4;
            height: auto;
            border-radius: 24px;
            padding: 4px;
            background: linear-gradient(135deg, var(--lime) 0%, rgba(0,0,0,0) 100%);
            box-shadow: 0 15px 35px rgba(0,0,0,0.8), 0 0 30px rgba(163, 255, 18, 0.2);
            z-index: 2;
        }
        .founder-img-inner {
            width: 100%;
            height: 100%;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
        }
        .founder-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 25%;
            filter: grayscale(10%) contrast(110%);
            transform: scale(1.35);
        }
        .founder-content h2 { font-size: 2.5rem; margin-bottom: 1.5rem; line-height: 1.1; }
        .founder-content p { color: #ccc; font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.5rem; }
        .founder-signature { font-family: 'Orbitron', sans-serif; color: var(--lime); font-weight: 700; letter-spacing: 2px; font-size: 1.2rem; text-transform: uppercase; }
        .founder-title { font-size: 0.85rem; color: #888; text-transform: uppercase; letter-spacing: 3px; margin-top: 5px; font-weight: 600; }

        .founder-stats { display: flex; gap: 2.5rem; justify-content: flex-end; margin-bottom: 2rem; }
        .founder-stats-block { text-align: right; }
        .founder-stats-val { font-family: 'Orbitron', sans-serif; font-size: 1.8rem; color: #fff; font-weight: 700; line-height: 1; margin-bottom: 5px; text-shadow: 0 0 15px rgba(255,255,255,0.3); }
        .founder-stats-lbl { font-size: 0.75rem; color: #666; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }

        /* --- MODAL --- */
        .modal-overlay {
            position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
            background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
            z-index: 2000; display: flex; justify-content: center; align-items: center;
            opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
        }
        .modal-overlay.active { opacity: 1; pointer-events: auto; }
        .modal-content {
            transform: translateY(30px) scale(0.95); transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0; pointer-events: none; width: 90%; max-width: 500px;
            max-height: 90vh;
            overflow-y: auto;
        }
        
        .modal-content::-webkit-scrollbar { width: 6px; }
        .modal-content::-webkit-scrollbar-track { background: rgba(0,0,0,0.2); border-radius: 8px; }
        .modal-content::-webkit-scrollbar-thumb { background: var(--lime); border-radius: 8px; }

        .modal-overlay.active .modal-content {
            transform: translateY(0) scale(1); opacity: 1; pointer-events: auto;
        }
        .close-modal {
            position: absolute; top: 20px; right: 20px; background: none; border: none;
            color: #fff; font-size: 1.5rem; z-index: 50; transition: 0.3s;
        }
        .close-modal:hover { color: var(--accent); transform: scale(1.1) rotate(90deg); }

        /* --- MOBILE MENU --- */
        .hamburger {
            display: none; background: none; border: none; color: #fff; font-size: 2rem;
            cursor: pointer !important; pointer-events: auto; z-index: 1001; transition: 0.3s;
        }
        .hamburger:hover { color: var(--lime); text-shadow: 0 0 15px var(--lime); }
        .mobile-menu {
            position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
            background: rgba(5, 5, 5, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
            z-index: 99; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 2rem;
            opacity: 0; pointer-events: none; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .mobile-menu.active { opacity: 1; pointer-events: auto; }
        .mobile-menu a, .mobile-menu button {
            font-family: 'Orbitron', sans-serif; color: #fff; font-size: 1.5rem; text-transform: uppercase;
            letter-spacing: 2px; transition: 0.3s; background: none; border: none; cursor: pointer !important;
        }
        .mobile-menu a:hover, .mobile-menu button:hover { color: var(--lime); text-shadow: 0 0 15px var(--lime); transform: scale(1.1); }

        /* --- PROMO BANNER --- */
        #promo-banner {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1500;
            width: 90%;
            max-width: 850px;
            padding: 12px 25px;
            border-radius: 100px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(5, 5, 5, 0.75);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border: 1px solid rgba(163, 255, 18, 0.3);
            box-shadow: 0 15px 40px rgba(0,0,0,0.9), 0 0 20px rgba(163, 255, 18, 0.15);
            animation: slideUpPromo 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
            animation-delay: 1s;
            opacity: 0;
            transform: translate(-50%, 100px);
        }
        
        .promo-content { display: flex; align-items: center; gap: 20px; }
        .promo-text { font-family: 'Orbitron', sans-serif; font-size: 1.05rem; font-weight: 700; color: #fff; letter-spacing: 1px; }
        .promo-timer { display: flex; gap: 8px; }
        .timer-block { 
            background: rgba(255,255,255,0.05); padding: 6px 10px; 
            border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); 
            text-align: center; min-width: 55px;
        }
        .timer-val { font-family: 'Orbitron', sans-serif; font-size: 1.1rem; font-weight: 900; color: var(--lime); line-height: 1; text-shadow: 0 0 10px rgba(163, 255, 18, 0.5); }
        .timer-lbl { font-family: 'Montserrat', sans-serif; font-size: 0.55rem; color: #aaa; text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; font-weight: 600;}
        .promo-btn { padding: 0.8rem 2rem !important; font-size: 0.85rem !important; border-radius: 50px !important; }

        @keyframes slideUpPromo {
            to { opacity: 1; transform: translate(-50%, 0); }
        }

        body.hide-banner #promo-banner {
            opacity: 0 !important;
            pointer-events: none !important;
            transform: translate(-50%, 100px) !important;
        }

        /* --- WHATSAPP FLOAT --- */
        .whatsapp-float {
            position: fixed;
            bottom: 110px;
            right: 30px;
            width: 65px;
            height: 65px;
            background-color: #25d366;
            color: #fff;
            border-radius: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 38px;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            pointer-events: auto;
        }
        .whatsapp-float:hover {
            transform: scale(1.15) translateY(-5px);
            box-shadow: 0 15px 35px rgba(37, 211, 102, 0.7);
            color: #fff;
        }
        
        body.hide-banner .whatsapp-float {
            opacity: 0 !important;
            pointer-events: none !important;
            transform: scale(0.5) !important;
        }

        /* --- CALL FLOAT --- */
        .call-float {
            position: fixed;
            bottom: 190px;
            right: 30px;
            width: 65px;
            height: 65px;
            background-color: var(--lime);
            color: #000;
            border-radius: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 30px;
            box-shadow: 0 10px 25px rgba(163, 255, 18, 0.4);
            z-index: 1000;
            transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            pointer-events: auto;
        }
        .call-float:hover {
            transform: scale(1.15) translateY(-5px);
            box-shadow: 0 15px 35px rgba(163, 255, 18, 0.7);
        }
        
        body.hide-banner .call-float {
            opacity: 0 !important;
            pointer-events: none !important;
            transform: scale(0.5) !important;
        }

        .cursor-glow { position: fixed; transform: translate(-50%, -50%); width: 300px; height: 300px; background: radial-gradient(circle, rgba(163, 255, 18, 0.15) 0%, transparent 60%); border-radius: 50%; z-index: 9997; pointer-events: none; transition: width 0.3s, height 0.3s; }
        .cursor-dot { position: fixed; transform: translate(-50%, -50%); width: 6px; height: 6px; background-color: var(--accent); box-shadow: 0 0 15px var(--accent); border-radius: 50%; z-index: 9999; pointer-events: none; }
        .cursor-outline { position: fixed; transform: translate(-50%, -50%); width: 45px; height: 45px; border: 1px solid rgba(163, 255, 18, 0.6); border-radius: 50%; z-index: 9998; pointer-events: none; transition: width 0.2s, height 0.2s, border-color 0.2s, background 0.2s; }
        .cursor-outline.hover { width: 70px; height: 70px; background: rgba(163, 255, 18, 0.1); border-color: transparent; }

        @media (max-width: 1024px) { 
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .founder-grid { grid-template-columns: 280px 1fr; gap: 2.5rem; }
            .founder-grid-reverse { grid-template-columns: 1fr 280px; gap: 2.5rem; }
        }
        @media (max-width: 768px) {
            #promo-banner { flex-direction: column; gap: 15px; border-radius: 24px; padding: 20px; bottom: 15px; width: 95%; }
            .promo-content { flex-direction: column; gap: 12px; text-align: center; }
            .promo-btn { width: 100%; }

            .whatsapp-float { bottom: 185px; right: 20px; width: 55px; height: 55px; font-size: 32px; }
            .call-float { bottom: 255px; right: 20px; width: 55px; height: 55px; font-size: 26px; }

            section { padding: 80px 5%; }
            #hero { padding-top: 20vh; }
            header { height: 80px; padding: 0 5%; }
            .logo-wrapper { height: 50px; width: 220px; }
            .logo-img { height: 260px; }
            .hero-title { font-size: clamp(2.8rem, 10vw, 4rem); }
            .social-glass-icon { width: 40px; height: 40px; font-size: 18px; }
            .pos-1 { top: -60px; left: 0%; } .pos-2 { top: -60px; left: 33%; } .pos-3 { top: -60px; right: 33%; } .pos-4 { top: -60px; right: 0%; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
            .header-menu { display: none; }
            .hamburger { display: block; }
            .mascot-character { font-size: 2.5rem; margin-right: 1rem; }
            .push-pill { padding: 0.8rem 1.5rem; font-size: 0.85rem; }

            .modal-content { padding: 1.5rem !important; width: 95%; max-height: 85vh; }
            .modal-content h3 { font-size: 1.4rem !important; margin-bottom: 1.2rem !important; }
            .glass-input { padding: 0.8rem !important; margin-bottom: 0.8rem !important; }
            #contactModal textarea { height: 80px; }

            .founder-grid, .founder-grid-reverse { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
            .founder-grid-reverse .founder-content { text-align: center; }
            .founder-grid-reverse .founder-img-wrapper { order: -1; }
            .founder-img-wrapper { margin: 0 auto; width: 260px; }
            .founder-content h2 { font-size: 1.8rem; }
            
            .founder-stats { justify-content: center; gap: 2rem; }
            .founder-stats-block { text-align: center; }
        }