/* =========================================
           1. GLOBAL RESET & VARIABLES
        ========================================= */
        :root {
            /* Colors */
            --accent-color: #9f6bf5;
            --text-white: #ffffff;
            
            /* Glass Settings */
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
            --glass-highlight: rgba(255, 255, 255, 0.15);
            --glass-blur: 12px;
            
            /* Animation Physics */
            --fluid-shape: 1.2s cubic-bezier(0.25, 1, 0.5, 1);
            --fluid-move: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
        }

        html, body {
            width: 100%;
            min-height: 100%;
            margin: 0 !important;
            padding: 0 !important;
            overflow-x: hidden !important; 
            background-color: #050210;
            font-family: 'Inter', sans-serif;
            box-sizing: border-box;
            color: #fff;
        }
        
        * { box-sizing: border-box; }

        /* =========================================
           2. HEADER STYLES (Refractive Glass)
        ========================================= */
        #apex-style-header {
            position: fixed;
            top: 0; left: 0; width: 100%;
            z-index: 99999;
            
            /* FLEX LAYOUT FIXES */
            display: flex;
            justify-content: center;
            align-items: flex-start; /* Forces content to top edge */
            
            pointer-events: none;
            will-change: transform; 
        }

        .glass-pill-nav {
            pointer-events: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            
            /* INITIAL STATE: SQUARED (TOP) */
            width: 100%; max-width: 100%;
            margin-top: 0; padding: 20px 40px; border-radius: 0px;
            transform: translateY(0) translateZ(0); 
            
            /* Initial Visuals */
            background: rgba(5, 2, 15, 0.01);
            backdrop-filter: blur(0px); -webkit-backdrop-filter: blur(0px);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            border-top: 0px solid transparent;
            border-left: 0px solid transparent;
            border-right: 0px solid transparent;
            
            /* SYNCHRONIZED TRANSITIONS */
            transition: 
                width var(--fluid-shape),
                border-radius var(--fluid-shape),
                padding var(--fluid-shape), 
                margin-top var(--fluid-shape),
                transform var(--fluid-move), 
                background 1s ease,
                backdrop-filter 1s ease,
                border 1s ease,
                box-shadow 1s ease;
        }

        /* SCROLLED STATE: PILL (The Crystal Effect) */
        .glass-pill-nav.scrolled-mode {
            /* Shape */
            width: 90%; max-width: 1200px;
            border-radius: 50px;
            padding: 10px 20px 10px 30px;
            
            /* Move Down */
            transform: translateY(20px) translateZ(0);
            
            /* --- CRYSTAL GLASS EFFECT --- */
            /* Low opacity background for clarity */
            background: rgba(20, 20, 30, 0.25); 
            
            /* High blur + Saturation = Optical Distortion */
            backdrop-filter: blur(16px) saturate(120%); 
            -webkit-backdrop-filter: blur(16px) saturate(120%);
            
            /* Borders */
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-top: 1px solid rgba(255, 255, 255, 0.25); /* Light catcher */
            border-left: 1px solid rgba(255, 255, 255, 0.15);
            
            box-shadow: 0 20px 50px -10px rgba(0,0,0,0.5);
        }

        /* Inner Elements */
        .pill-logo img { height: 40px; width: auto; display: block; transition: height var(--fluid-shape); }
        .pill-menu ul { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
        .pill-menu a { color: var(--text-white); text-decoration: none; font-weight: 500; font-size: 15px; transition: 0.3s; opacity: 0.8; }
        .pill-menu a:hover { color: var(--accent-color); opacity: 1; text-shadow: 0 0 10px rgba(159, 107, 245, 0.6); }

        .header-btn {
            position: relative; display: inline-flex; align-items: center; justify-content: center;
            padding: 12px 30px; text-decoration: none; overflow: hidden; border-radius: 30px;
            background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255,255,255,0.1);
            transition: padding var(--fluid-shape), background 0.4s ease, border 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
        }
        .btn-text { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 1px; z-index: 2; }
        .liquid-shine { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 150%; height: 150%; background: radial-gradient(circle, rgba(159, 107, 245, 0.6) 0%, transparent 60%); opacity: 0; transition: opacity 0.5s ease; z-index: 1; pointer-events: none; }
        .header-btn:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.15); border-color: rgba(255,255,255,0.3); box-shadow: 0 0 20px rgba(159, 107, 245, 0.4); }
        .header-btn:hover .liquid-shine { opacity: 1; }


        /* =========================================
           3. INTRO TEXT HERO (UPDATED: PRECISION TECH)
        ========================================= */
        .intro-hero {
            position: relative; text-align: center;
            padding: 220px 20px 60px 20px; 
            background: radial-gradient(circle at center bottom, #210160 0%, #000000 60%);
            z-index: 5; 
            overflow: hidden; 
        }
        .intro-hero::after { content: ""; position: absolute; bottom: 0; left: 0; width: 100%; height: 150px; background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000000 100%); pointer-events: none; }

        /* THE "PRECISION LOCK" ANIMATION */
        @keyframes techFocus {
            0% {
                opacity: 0;
                transform: translateY(20px) scale(0.98); /* Start lower and slightly small */
                filter: blur(12px);         /* Heavy blur start */
                letter-spacing: 0.1em;      /* Slightly expanded (searching) */
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1); /* Lock to position */
                filter: blur(0);            /* Sharp focus */
                letter-spacing: normal;     /* Lock to normal spacing */
            }
        }

        /* Specific animation for the label to keep its spacing */
        @keyframes techFocusLabel {
            0% { opacity: 0; transform: translateY(10px); filter: blur(8px); letter-spacing: 4px; }
            100% { opacity: 1; transform: translateY(0); filter: blur(0); letter-spacing: 2px; } /* Ends at 2px */
        }

        /* ANIMATION ASSIGNMENTS */
        .intro-label, .intro-h1, .intro-sub {
            will-change: opacity, transform, filter, letter-spacing;
            text-align: center;
            opacity: 0; /* Hidden by default */
        }

        .intro-label { 
            color: #bfa5ff; font-size: 14px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; display: inline-block; border: 1px solid rgba(191, 165, 255, 0.3); padding: 8px 16px; border-radius: 20px; backdrop-filter: blur(10px);
            
            /* Fast, sharp entry for the UI element */
            animation: techFocusLabel 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
            animation-delay: 0.2s;
        }

        .intro-h1 { 
            font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 800; line-height: 1.1; margin: 0 auto; max-width: 900px; background: linear-gradient(180deg, #e0e0e0 0%, #777777 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -1px; 
            
            /* Slower, heavier feel for the main title */
            animation: techFocus 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            animation-delay: 0.4s;
        }

        .intro-sub { 
            font-size: clamp(1.1rem, 2vw, 1.5rem); color: #888; max-width: 600px; margin: 30px auto 0 auto; line-height: 1.5; position: relative; z-index: 2; 
            
            /* Standard speed for secondary text */
            animation: techFocus 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            animation-delay: 0.6s;
        }

        /* =========================================
           4. MAIN STAGE (3D Dashboard) - FIXED
        ========================================= */
        .hero-wrapper-v4 {
            position: relative; 
            width: 100%; 
            height: 100vh;
            display: flex; 
            justify-content: center; 
            align-items: center;
            /* Gradient matches the Intro bottom to create seamless flow */
            background: radial-gradient(circle at 50% 50%, #1a0530 0%, #000000 70%);
            overflow: hidden; 
            perspective: 1500px; 
            
            /* FIX: Removed negative margin that was hiding the top under the text */
            margin-top: 0; 
            padding-top: 20px; 
        }

        /* Top Fade Mask - Made softer and shorter to avoid "cutting" the card */
        .hero-wrapper-v4::before { 
            content: ""; 
            position: absolute; 
            left: 0; 
            top: 0; 
            width: 100%; 
            height: 150px; /* Reduced from 250px */
            z-index: 2; 
            /* Softer gradient opacity */
            background: linear-gradient(to bottom, #000000 0%, rgba(0,0,0,0) 100%); 
            pointer-events: none; 
        }

        /* Bottom Fade Mask */
        .hero-wrapper-v4::after { 
            content: ""; 
            position: absolute; 
            left: 0; 
            bottom: 0; 
            width: 100%; 
            height: 250px; 
            z-index: 2; 
            background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000000 100%); 
            pointer-events: none; 
        }

        /* UI Panels (Side Menus) */
        .ui-panel { 
            position: absolute; top: 50%; height: 65vh; width: 240px; 
            background: rgba(15, 15, 25, 0.4); 
            backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); 
            border: 1px solid rgba(255, 255, 255, 0.08); 
            z-index: 50; 
            display: flex; flex-direction: column; padding: 30px; box-sizing: border-box; 
            transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 1s ease; 
            opacity: 0; 
        }
        
        .ui-left { left: 0; border-radius: 0 24px 24px 0; border-left: none; transform: translate(-100%, -50%); align-items: flex-start; justify-content: center; }
        .ui-right { right: 0; border-radius: 24px 0 0 24px; border-right: none; transform: translate(100%, -50%); align-items: flex-start; justify-content: center; }
        
        .hero-wrapper-v4.ui-active .ui-left { transform: translate(0, -50%); opacity: 1; }
        .hero-wrapper-v4.ui-active .ui-right { transform: translate(0, -50%); opacity: 1; }

        /* Panel Internal Elements */
        .panel-header { font-size: 10px; color: #666; font-weight: 700; letter-spacing: 1.5px; margin-bottom: 25px; text-transform: uppercase; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
        .menu-item { display: flex; align-items: center; gap: 15px; width: 100%; color: #aaa; padding: 12px 0; cursor: pointer; transition: 0.3s; font-size: 14px; font-weight: 500; }
        .menu-item:hover { color: #fff; transform: translateX(5px); }
        .menu-icon { width: 20px; text-align: center; font-size: 16px; }
        .badge { margin-left: auto; background: rgba(255,255,255,0.1); padding: 2px 8px; border-radius: 10px; font-size: 10px; color: #fff; }
        
        .stat-row { width: 100%; margin-bottom: 20px; }
        .stat-label { display: flex; justify-content: space-between; color: #bbb; font-size: 12px; margin-bottom: 8px; }
        .stat-val { color: #fff; font-weight: 600; }
        .progress-track { width: 100%; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
        .progress-fill { height: 100%; background: #4f46e5; border-radius: 2px; width: 0%; transition: width 1.5s ease-out; }
        .hero-wrapper-v4.ui-active .progress-fill { width: var(--w); }

        /* 3D Rig - Adjusted Position */
        .scroll-entry-rig { 
            transform-style: preserve-3d; 
            opacity: 0; 
            /* Start slightly lower so it rises UP into view rather than dropping down */
            transform: translateY(80px) rotateX(-15deg) scale(0.95); 
            transition: opacity 1.8s ease, transform 1.8s cubic-bezier(0.16, 1, 0.3, 1); 
            will-change: transform, opacity; 
            z-index: 10; 
        }
        .scroll-entry-rig.is-visible { opacity: 1; transform: translateY(0) rotateX(0deg) scale(1); }
        .mouse-tilt-rig { position: relative; width: 1000px; height: 600px; transform-style: preserve-3d; z-index: 10; }

        /* Glass Cards (Same as before) */
        .glass-card { position: absolute; background: linear-gradient(145deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.01) 100%); backdrop-filter: blur(40px) saturate(130%); -webkit-backdrop-filter: blur(40px) saturate(130%); border: 1px solid rgba(255, 255, 255, 0.08); border-top: 1px solid rgba(255, 255, 255, 0.2); border-radius: 24px; box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255,255,255,0.03); transform-style: preserve-3d; transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
        .glass-card:hover { background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%); border-color: rgba(255, 255, 255, 0.3); box-shadow: 0 50px 120px rgba(33, 1, 96, 0.3); transform: translateZ(30px) !important; cursor: default; }

        .panel-base { width: 100%; height: 100%; transform: translateZ(0); display: grid; grid-template-columns: 240px 1fr; overflow: hidden; }
        .sidebar { border-right: 1px solid rgba(255,255,255,0.05); padding: 30px; display: flex; flex-direction: column; gap: 12px; }
        .nav-pill { padding: 10px 15px; border-radius: 10px; color: #888; font-size: 14px; font-weight: 500; transition: 0.3s; cursor: pointer; display: flex; align-items: center; gap: 10px; }
        .nav-pill:hover, .nav-pill.active { background: rgba(255,255,255,0.05); color: #fff; }
        .nav-pill.active { background: rgba(33, 1, 96, 0.5); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
        .content-zone { padding: 40px; display: flex; flex-direction: column; position: relative; }
        .chart-area { margin-top: auto; display: flex; align-items: flex-end; gap: 18px; height: 180px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
        .bar-col { flex: 1; height: 100%; display: flex; align-items: flex-end; }
        .bar { width: 100%; background: linear-gradient(to top, #210160, #9f6bf5); border-radius: 6px 6px 0 0; opacity: 0.8; height: 0%; transition: height 1.2s cubic-bezier(0.2, 0.8, 0.2, 1); will-change: height; }

        .card-rev { top: -20px; right: 40px; width: 250px; height: 140px; transform: translateZ(40px); background: rgba(13, 5, 30, 0.6); padding: 25px; display: flex; flex-direction: column; justify-content: center; }
        .card-user { bottom: 40px; right: -40px; width: 290px; height: 210px; transform: translateZ(60px); padding: 20px; }
        .user-list-item { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: 10px; margin-bottom: 6px; transition: 0.2s; }
        .user-list-item:hover { background: rgba(255,255,255,0.08); }
        h2 { font-size: 2.2rem; margin: 0; color: #fff; font-weight: 700; letter-spacing: -1px; }
        .lbl { text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1px; color: #9f6bf5; font-weight: 700; margin-bottom: 6px; }
        .mobile-status-bar { display: none; }

        /* =========================================
           5. CONTENT SECTION (Services & Trust)
        ========================================= */
        .content-wrapper { background: #000; padding: 60px 20px 200px 20px; position: relative; z-index: 5; margin-bottom: 0 !important; }
        .max-width { max-width: 1100px; margin: 0 auto; }

        .bento-card { background: linear-gradient(145deg, rgba(20, 20, 25, 0.6) 0%, rgba(20, 20, 25, 0.3) 100%); border: 1px solid rgba(255, 255, 255, 0.08); border-top: 1px solid rgba(255, 255, 255, 0.15); border-radius: 24px; padding: 40px; transition: transform 0.3s ease, box-shadow 0.3s ease; overflow: hidden; position: relative; }
        .bento-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(33, 1, 96, 0.2); border-color: rgba(255, 255, 255, 0.2); }

        .bento-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; margin-bottom: 80px; }
        .bento-icon { width: 50px; height: 50px; background: rgba(33, 1, 96, 0.5); border-radius: 12px; display: flex; justify-content: center; align-items: center; margin-bottom: 24px; font-size: 24px; border: 1px solid rgba(255,255,255,0.2); }
        .bento-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; color: #fff; }
        .bento-desc { color: #aaa; line-height: 1.6; font-size: 1rem; }

        .trust-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding-bottom: 0; }
        .trust-text h2 { font-size: 3rem; font-weight: 800; margin-bottom: 24px; background: linear-gradient(to bottom, #fff, #999); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .trust-text p { font-size: 1.1rem; color: #bbb; margin-bottom: 30px; line-height: 1.7; }

        .trust-image { height: 500px; width: 100%; position: relative; border-radius: 24px; overflow: hidden; background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(20, 1, 60, 0.4) 100%); backdrop-filter: blur(30px) saturate(120%); -webkit-backdrop-filter: blur(30px) saturate(120%); border: 1px solid rgba(255, 255, 255, 0.1); border-top: 1px solid rgba(255, 255, 255, 0.25); box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(255,255,255,0.02); display: flex; flex-direction: column; justify-content: center; padding: 40px; }

        /* Abstract UI List */
        .ui-list-container { width: 100%; display: flex; flex-direction: column; gap: 0; }
        .ui-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
        .ui-title { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; color: #9f6bf5; font-weight: 700; }
        .ui-status { font-size: 0.8rem; color: #00ff9d; display: flex; align-items: center; gap: 6px; }
        .pulse-dot { width: 6px; height: 6px; background: #00ff9d; border-radius: 50%; box-shadow: 0 0 8px #00ff9d; animation: pulse 2s infinite; }
        
        .ui-row { display: flex; align-items: center; gap: 15px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.05); transition: transform 0.3s ease; }
        .ui-row:hover { transform: translateX(5px); background: linear-gradient(90deg, rgba(255,255,255,0.03), transparent); padding-left: 10px; border-radius: 8px; border-bottom: 1px solid transparent; }
        .ui-row:last-child { border-bottom: none; }
        .ui-icon-box { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 16px; }
        .ui-content { flex: 1; }
        .ui-main-text { font-size: 0.95rem; font-weight: 600; color: #fff; margin-bottom: 2px; }
        .ui-sub-text { font-size: 0.8rem; color: #888; }
        .ui-meta { font-size: 0.8rem; color: #666; font-family: monospace; }
        .ui-total { margin-top: 25px; background: rgba(159, 107, 245, 0.1); border: 1px solid rgba(159, 107, 245, 0.3); padding: 15px 20px; border-radius: 12px; display: flex; justify-content: space-between; align-items: center; }
        
        @keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.4; } 100% { opacity: 1; } }
        .tag-list { display: flex; gap: 10px; flex-wrap: wrap; }
        .tag { padding: 8px 16px; border-radius: 20px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; color: #ddd; }


        /* =========================================
           6. FOOTER STYLES
        ========================================= */
        .smart-footer {
            width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; margin-bottom: 0 !important; margin-top: 0; padding: 60px 20px 40px 20px; z-index: 10; background: #050210; border-top: 1px solid rgba(255, 255, 255, 0.1); font-family: 'Inter', sans-serif; color: #fff; box-sizing: border-box;
        }
        .smart-footer::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 60%; height: 1px; background: linear-gradient(90deg, transparent, #9f6bf5, transparent); opacity: 0.5; }
        .footer-container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; }
        .brand-link { display: inline-block; transition: transform 0.3s ease, opacity 0.3s ease; }
        .brand-link:hover { transform: translateY(-2px); opacity: 0.9; }
        .footer-desc { color: #888; font-size: 0.95rem; line-height: 1.6; max-width: 300px; margin-top: 20px; }
        .footer-heading { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: #5d5d6d; font-weight: 700; margin-bottom: 25px; }
        .footer-links { display: flex; flex-direction: column; gap: 15px; }
        .footer-link { color: #ccc; text-decoration: none; font-size: 1rem; transition: 0.3s; width: fit-content; }
        .footer-link:hover { color: #fff; transform: translateX(5px); text-shadow: 0 0 20px rgba(159, 107, 245, 0.6); }
        .footer-socials { display: flex; gap: 15px; margin-top: 5px; }
        .fs-icon { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: #fff; transition: all 0.3s ease; cursor: pointer; text-decoration: none; }
        .fs-icon:hover { background: #9f6bf5; border-color: #9f6bf5; transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 20px -5px rgba(159, 107, 245, 0.5); }
        .fs-icon:active { transform: translateY(0px) scale(0.9); box-shadow: none; transition: 0.05s; }
        .footer-bottom { margin-top: 80px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 20px; }
        .copyright { color: #555; font-size: 0.9rem; text-align: center; }


        /* =========================================
           7. MOBILE RESPONSIVENESS (ALL)
        ========================================= */
        @media (max-width: 950px) {
            .footer-container { grid-template-columns: 1fr; gap: 40px; }
            .footer-brand, .footer-col, .footer-bottom { text-align: center; justify-content: center; }
            .footer-desc { margin: 0 auto; }
            .footer-links { align-items: center; }
            .footer-socials { justify-content: center; }
        }

        @media (max-width: 900px) {
            /* Header */
            .glass-pill-nav { padding: 10px 20px; flex-direction: row; justify-content: space-between; }
            .glass-pill-nav.scrolled-mode { width: 92%; padding: 10px 20px; }
            .pill-menu { display: none; }
            .header-btn { padding: 8px 20px; }
            .pill-logo img { height: 35px; }

            /* Intro */
            .intro-hero { padding: 160px 20px 40px 20px; }

            /* Hero 3D */
            .hero-wrapper-v4 { overflow: visible; height: auto; min-height: auto; display: block; padding-top: 20px; padding-bottom: 40px; margin-top: 0; }
            .hero-wrapper-v4::before { display: none !important; }
            .ui-panel { display: none !important; }
            .mouse-tilt-rig { width: 90vw; height: 640px; transform: scale(1) !important; margin: 0 auto; }
            
            /* Cards Mobile */
            .card-rev { width: 100%; height: 110px; top: 0; left: 0; right: 0; transform: none !important; border-radius: 20px; z-index: 100 !important; background: #1a0b2e !important; border: 1px solid rgba(255, 255, 255, 0.25) !important; box-shadow: 0 10px 40px rgba(0,0,0,0.8) !important; }
            .mobile-status-bar { display: flex; position: absolute; top: 125px; left: 0; width: 100%; height: 40px; gap: 15px; overflow-x: auto; z-index: 6; -ms-overflow-style: none; scrollbar-width: none; }
            .mobile-status-bar::-webkit-scrollbar { display: none; }
            .mob-stat-pill { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); border-radius: 30px; padding: 0 15px; display: flex; align-items: center; gap: 8px; white-space: nowrap; font-size: 11px; color: #ddd; backdrop-filter: blur(10px); }
            .dot { width: 6px; height: 6px; border-radius: 50%; }
            .panel-base { width: 100%; height: 280px; top: 175px; bottom: auto; transform: none !important; grid-template-columns: 1fr; border-radius: 20px; z-index: 4; }
            .sidebar { display: none; }
            .content-zone { padding: 20px; }
            .chart-area { height: 160px; gap: 10px; padding-bottom: 5px; }
            .card-user { display: flex; flex-direction: column; justify-content: center; width: 100%; height: auto; top: 470px; bottom: auto; right: 0; left: 0; transform: none !important; padding: 20px; z-index: 3; background: rgba(20, 20, 30, 0.6); }
            .glass-card:hover { transform: none !important; }
            .scroll-entry-rig { opacity: 1 !important; transform: none !important; transition: none !important; }

            /* Content Mobile */
            .trust-section { grid-template-columns: 1fr; padding-bottom: 0; }
            .trust-image { height: auto; min-height: 400px; order: 2; padding: 30px; }
            .trust-text h2 { font-size: 2.2rem; }
        }
