        :root {
            --bg-dark: #050507;
            --bg-card: rgba(255, 255, 255, 0.03);
            --border-color: rgba(255, 255, 255, 0.08);
            --text-main: #ffffff;
            --text-muted: #a1a1aa;
            /* Changed Accent to Electric Violet */
            --accent-primary: #8b5cf6; 
            --accent-glow: rgba(139, 92, 246, 0.4);
            --gradient-text: linear-gradient(135deg, #fff 0%, #c4b5fd 100%);
            --font-head: 'Space Grotesk', sans-serif;
            --font-body: 'Inter', sans-serif;
            --container: 1200px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            font-family: var(--font-body);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Ambient Glow with New Color */
        .ambient-glow {
            position: fixed; top: -20%; left: 50%; transform: translateX(-50%);
            width: 80vw; height: 60vh;
            background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
            opacity: 0.3; z-index: -1; pointer-events: none; filter: blur(80px);
        }

        .container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
        
        .btn {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 14px 32px; border-radius: 8px; font-weight: 600;
            text-decoration: none; transition: all 0.3s ease;
            font-size: 0.95rem; cursor: pointer; border: none;
        }
        .btn-primary {
            background: var(--accent-primary); color: white;
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
        }
        .btn-primary:hover { 
            background: #7c3aed; 
            box-shadow: 0 0 30px rgba(139, 92, 246, 0.5); 
            transform: translateY(-2px);
        }
        .btn-secondary {
            background: var(--bg-card); color: var(--text-main);
            border: 1px solid var(--border-color); backdrop-filter: blur(10px);
        }
        .btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }

        /* Navigation */
        nav {
            position: fixed; top: 0; width: 100%; z-index: 100;
            padding: 20px 0; transition: all 0.4s ease;
        }
        nav.scrolled {
            padding: 15px 0; background: rgba(5, 5, 7, 0.8);
            backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-color);
        }
        .nav-inner { display: flex; justify-content: space-between; align-items: center; }
        .logo { 
            font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; 
            letter-spacing: -0.5px; display: flex; align-items: center; gap: 10px;
        }
        .logo-mark {
            width: 28px; height: 28px; background: var(--accent-primary);
            border-radius: 6px; position: relative;
        }
        .logo-mark::after {
            content: ''; position: absolute; inset: 4px;
            border: 2px solid rgba(255,255,255,0.3); border-radius: 3px;
        }
        
        .nav-links { display: flex; gap: 40px; list-style: none; }
        .nav-links a { 
            color: var(--text-muted); text-decoration: none; font-size: 0.9rem; 
            transition: color 0.3s; font-weight: 500; 
        }
        .nav-links a:hover { color: var(--text-main); }

        /* Hero Section */
        .hero { padding: 180px 0 120px; text-align: center; position: relative; }
        .badge {
            display: inline-block; padding: 6px 16px; border-radius: 100px;
            background: rgba(139, 92, 246, 0.1); border: 1px solid rgba(139, 92, 246, 0.3);
            color: #c4b5fd; font-size: 0.8rem; font-weight: 600; margin-bottom: 30px;
            letter-spacing: 0.5px; text-transform: uppercase;
        }
        .hero h1 {
            font-family: var(--font-head); font-size: clamp(3rem, 6vw, 5rem);
            line-height: 1.05; letter-spacing: -2px; margin-bottom: 24px;
            background: var(--gradient-text); -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; max-width: 900px; margin-inline: auto;
        }
        .hero p {
            font-size: 1.2rem; color: var(--text-muted); max-width: 600px;
            margin: 0 auto 40px; line-height: 1.7;
        }
        .hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

        /* Features Grid */
        .features { padding: 100px 0; }
        .section-header { margin-bottom: 60px; }
        .section-header h2 { font-family: var(--font-head); font-size: 2.5rem; letter-spacing: -1px; margin-bottom: 16px; }
        .section-header p { color: var(--text-muted); font-size: 1.1rem; }
        
        .bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
        .card {
            background: var(--bg-card); border: 1px solid var(--border-color);
            border-radius: 16px; padding: 40px; position: relative; overflow: hidden;
            transition: all 0.4s ease;
        }
        .card:hover { border-color: rgba(139, 92, 246, 0.4); transform: translateY(-4px); }
        .card.span-2 { grid-column: span 2; }
        .card-icon {
            width: 50px; height: 50px; border-radius: 12px;
            background: rgba(139, 92, 246, 0.1); display: flex; align-items: center;
            justify-content: center; margin-bottom: 24px; font-size: 1.5rem; color: #c4b5fd;
        }
        .card h3 { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 12px; }
        .card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

        /* Footer */
        footer { padding: 80px 0 40px; border-top: 1px solid var(--border-color); }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
        .footer-brand p { color: var(--text-muted); margin-top: 16px; max-width: 300px; font-size: 0.9rem; }
        .footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 20px; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 12px; }
        .footer-col a { color: var(--text-main); text-decoration: none; font-size: 0.9rem; opacity: 0.7; transition: opacity 0.3s; }
        .footer-col a:hover { opacity: 1; color: var(--accent-primary); }
        .copyright { text-align: center; color: var(--text-muted); font-size: 0.8rem; padding-top: 40px; border-top: 1px solid var(--border-color); }

        .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
        .reveal.active { opacity: 1; transform: translateY(0); }

        @media (max-width: 900px) {
            .bento-grid { grid-template-columns: 1fr; }
            .card.span-2 { grid-column: span 1; }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
            .nav-links { display: none; }
        }