  /* Base Variables & Typography */
        :root {
            --bg-base: #000000;
            --card-start: #0a0a0a;
            --card-end: #141414;
            --card-border: #262626;
            --btn-start: #111043;
            --btn-end: #6D67F2;
            
            /* Text Colors */
            --text-main: #ffffff;
            --text-muted: #a3a3a3;
            --text-darker: #737373;
        }

        body {
            background-color: var(--bg-base);
            font-family: 'Inter', sans-serif;
            color: var(--text-main);
        }

        h1, h2, h3, h4, .font-display {
            font-family: 'Space Grotesk', sans-serif;
        }

        /* Custom Gradients - Flat and Clean */
        .bg-card-grad {
            background: linear-gradient(to right, var(--card-start), var(--card-end));
            border: 1px solid var(--card-border);
        }
        
        .bg-btn-primary {
            background: linear-gradient(135deg, var(--btn-start) 0%, var(--btn-end) 100%);
            transition: all 0.3s ease;
        }
        .bg-btn-primary:hover {
            transform: translateY(-2px);
            filter: brightness(1.1);
        }

        /* Smooth Blue to Black Hero Fade */
        .hero-top-fade {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100vh;
            background: radial-gradient(100% 100% at 50% 0%, rgba(17, 16, 67, 0.7) 0%, rgba(0, 0, 0, 1) 100%);
            pointer-events: none;
            z-index: 0;
        }

        /* Smooth fading grid */
        .hero-grid {
            position: absolute;
            inset: 0;
            background-size: 80px 80px;
            background-image: 
                linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
            mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
            -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
            pointer-events: none;
            z-index: 0;
        }

        /* White Glitch Effect */
        .glitch-text {
            position: relative;
            display: inline-block;
        }

        .glitch-text::before,
        .glitch-text::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: transparent;
            pointer-events: none;
            opacity: 1;
            color: #ffffff;
        }

        .glitch-text::before {
            text-shadow: -3px 0 #ffffff;
            animation: glitch-anim-white-1 1.8s infinite linear alternate-reverse;
        }

        .glitch-text::after {
            text-shadow: 3px 0 rgba(255, 255, 255, 0.9);
            animation: glitch-anim-white-2 2.2s infinite linear alternate-reverse;
        }

        @keyframes glitch-anim-white-1 {
            0%, 5% { clip-path: inset(0 0 100% 0); transform: translate(0, 0); }
            6%, 10% { clip-path: inset(20% 0 60% 0); transform: translate(-4px, 2px); }
            11%, 15% { clip-path: inset(0 0 100% 0); transform: translate(0, 0); }
            50%, 55% { clip-path: inset(60% 0 10% 0); transform: translate(4px, -2px); }
            56%, 100% { clip-path: inset(0 0 100% 0); transform: translate(0, 0); }
        }

        @keyframes glitch-anim-white-2 {
            0%, 25% { clip-path: inset(0 0 100% 0); transform: translate(0, 0); }
            26%, 30% { clip-path: inset(40% 0 40% 0); transform: translate(-3px, -1px); }
            31%, 100% { clip-path: inset(0 0 100% 0); transform: translate(0, 0); }
        }

        /* Scroll Reveal Animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Interactive Utilities */
        .bento-card {
            transition: border-color 0.3s ease, transform 0.3s ease;
        }
        .bento-card:hover {
            border-color: #6D67F2;
            transform: translateY(-2px);
        }
        
        /* Down arrow bounce */
        .bounce-subtle {
            animation: bounce-subtle 2s infinite ease-in-out;
        }
        @keyframes bounce-subtle {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(10px); }
        }

        .text-muted {
            color: var(--text-muted);
        }


 /* Histogram Bar Animation */
    .histo-bar {
        height: 10%;
        transform-origin: bottom;
        animation: histo-bounce 2s ease-in-out infinite alternate;
    }
    @keyframes histo-bounce {
        0% { height: 10%; }
        100% { height: var(--h); }
    }

    /* SVG Line Dash Animation */
    .dash-anim {
        stroke-dasharray: 200;
        stroke-dashoffset: 200;
        animation: dash-flow 4s linear infinite;
    }
    @keyframes dash-flow {
        0% { stroke-dashoffset: 200; opacity: 0; }
        10% { opacity: 1; }
        90% { opacity: 1; }
        100% { stroke-dashoffset: 0; opacity: 0; }
    }

    /* Radial Gauge Load Animation */
    .radial-anim {
        stroke-dasharray: 0, 100;
        animation: gauge-fill 2s ease-out forwards;
        animation-fill-mode: both;
    }
    @keyframes gauge-fill {
        from { stroke-dasharray: 0, 100; }
        to { stroke-dasharray: 99.9, 100; }
    }


    .chart-line-anim {
        stroke-dasharray: 2000;
        stroke-dashoffset: 2000;
        animation: chart-draw 3s ease-out forwards;
    }
    .group:hover .chart-line-anim {
        animation: chart-draw 1.5s ease-out forwards;
    }
    @keyframes chart-draw {
        to {
            stroke-dashoffset: 0;
        }
    }


 /* Hide scrollbar for Chrome, Safari and Opera */
    .no-scrollbar::-webkit-scrollbar {
        display: none;
    }
    /* Hide scrollbar for IE, Edge and Firefox */
    .no-scrollbar {
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }

    /* Custom subtle scrollbar for the content area */
    .custom-scrollbar::-webkit-scrollbar {
        width: 6px;
    }
    .custom-scrollbar::-webkit-scrollbar-track {
        background: transparent;
    }
    .custom-scrollbar::-webkit-scrollbar-thumb {
        background-color: #262626;
        border-radius: 10px;
    }
    .custom-scrollbar::-webkit-scrollbar-thumb:hover {
        background-color: #6D67F2;
    }

