        :root {
            --calm-green: #67C090;
            --neon-mint: #4DFFBE;
            --bg-soft: #ECF4E8;
            --deep-black: #000000;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
            cursor: none; /* Custom cursor implementation below */
        }

        body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--bg-soft);
            color: var(--deep-black);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Custom Cursor */
        #cursor {
            width: 20px;
            height: 20px;
            background: var(--neon-mint);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            mix-blend-mode: difference;
            transition: transform 0.1s ease;
        }

        /* Glassmorphism */
        .glass {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .glass-light {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        /* Background Elements */
        #ambient-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -2;
            background: radial-gradient(circle at 50% 50%, #f7fbf8 0%, #ecf4e8 100%);
        }

        .blob {
            position: absolute;
            filter: blur(80px);
            z-index: -1;
            opacity: 0.4;
            animation: move 20s infinite alternate;
        }

        @keyframes move {
            from { transform: translate(0, 0) scale(1); }
            to { transform: translate(100px, 50px) scale(1.2); }
        }

        /* Animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1.2s cubic-bezier(0.2, 1, 0.2, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .floating-orb {
            animation: float 10s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-40px) rotate(5deg); }
        }

        /* Multi-page Transition */
        .view {
            display: none;
            animation: fadeIn 0.8s ease forwards;
        }
        .view.active-view {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: scale(0.98); }
            to { opacity: 1; transform: scale(1); }
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 4px; }
        ::-webkit-scrollbar-track { background: var(--bg-soft); }
        ::-webkit-scrollbar-thumb { background: var(--calm-green); border-radius: 10px; }

        /* Typography */
        .heading-xl {
            font-size: clamp(3.5rem, 12vw, 10rem);
            font-weight: 200;
            letter-spacing: -0.05em;
            line-height: 0.85;
        }

        .btn-futuristic {
            background: var(--neon-mint);
            color: black;
            padding: 1.2rem 3rem;
            border-radius: 100px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-size: 0.75rem;
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
            display: inline-block;
        }
        .btn-futuristic:hover {
            box-shadow: 0 0 40px rgba(77, 255, 190, 0.6);
            transform: scale(1.05);
        }

        /* Navigation Hover Effect */
        .nav-link {
            position: relative;
            padding-bottom: 4px;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--neon-mint);
            transition: width 0.4s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }
