        :root {
            --primary: #08CB00;
            --secondary: #00FFDE;
            --deep: #000957;
            --bg: #FFFFFF;
        }

        body {
            font-family: "Montserrat", sans-serif;
            background-color: var(--bg);
            color: var(--deep);
            scroll-behavior: smooth;
        }

        .elms-sans-regular { font-family: "Montserrat", sans-serif; }

        /* Floating Nav Logic */
        header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
        }

        /* Hero Animation */
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        .hero-bg {
            background: linear-gradient(-45deg, #000957, #001f3f, #004080, #00FFDE);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
        }

        /* Glassmorphism */
        .glass-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px 0 rgba(0, 9, 87, 0.2);
        }

        /* Horizontal Step Tracker Animation */
        .step-line {
            height: 4px;
            background: #e2e8f0;
            position: absolute;
            top: 24px;
            left: 0;
            width: 100%;
            z-index: 0;
        }
        .step-fill {
            height: 100%;
            background: var(--primary);
            width: 0%;
            transition: width 2s ease-in-out;
        }

        /* Parallax */
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        /* Stacked Feature Cards */
        .feature-card {
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            margin-top: -20px;
        }
        .feature-card:hover {
            transform: translateY(-20px) scale(1.02);
            z-index: 10;
        }

        /* Custom Page Views */
        .view-node { display: none; }
        .view-node.active { display: block; animation: fadeIn 0.5s ease-in-out; }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive Hamburger */
        #mobile-menu {
            transition: transform 0.3s ease-in-out;
            transform: translateX(100%);
        }
        #mobile-menu.open { transform: translateX(0); }
