        :root {
            --color-brand: #a855f7;
            --color-brand-hover: #9333ea;
            --color-background: #030712;
            --color-surface: rgba(255, 255, 255, 0.05);
            --color-surface-hover: rgba(255, 255, 255, 0.1);
            --color-border: rgba(255, 255, 255, 0.1);
            --color-foreground: #e2e8f0;
            --color-muted: #94a3b8;
            --font-family: 'Inter', system-ui, -apple-system, sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-family);
            background-color: var(--color-background);
            color: var(--color-foreground);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Mesh Gradients */
        .mesh-gradient-1 {
            position: fixed;
            top: -10%;
            left: -10%;
            width: 40vw;
            height: 40vw;
            background: rgba(168, 85, 247, 0.15);
            filter: blur(120px);
            border-radius: 50%;
            pointer-events: none;
            z-index: -1;
        }

        .mesh-gradient-2 {
            position: fixed;
            bottom: -10%;
            right: -10%;
            width: 40vw;
            height: 40vw;
            background: rgba(79, 70, 229, 0.15);
            filter: blur(120px);
            border-radius: 50%;
            pointer-events: none;
            z-index: -1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header */
        header {
            padding: 1.5rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--color-border);
            background: rgba(3, 7, 18, 0.4);
            backdrop-filter: blur(16px);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            color: var(--color-brand);
            font-weight: 800;
            font-size: 1.5rem;
            letter-spacing: -0.025em;
        }

        .logo img {
            width: 28px;
            height: auto;
        }

        .logo span {
            color: var(--color-foreground);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 0.875rem;
            text-decoration: none;
            transition: all 0.2s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background-color: var(--color-brand);
            color: white;
            box-shadow: 0 4px 14px 0 rgba(168, 85, 247, 0.39);
        }

        .btn-primary:hover {
            background-color: var(--color-brand-hover);
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(168, 85, 247, 0.23);
        }

        .btn-outline {
            background: var(--color-surface);
            color: var(--color-foreground);
            border: 1px solid var(--color-border);
        }

        .btn-outline:hover {
            background: var(--color-surface-hover);
            border-color: rgba(255, 255, 255, 0.2);
        }

        /* Hero */
        .hero {
            padding: 6rem 0 4rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.025em;
            max-width: 800px;
        }

        .hero h1 span {
            background: linear-gradient(135deg, #a855f7, #6366f1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.125rem;
            color: var(--color-muted);
            max-width: 600px;
            margin-bottom: 2.5rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        /* Features */
        .features {
            padding: 4rem 0 6rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: var(--color-surface);
            backdrop-filter: blur(12px);
            border: 1px solid var(--color-border);
            border-radius: 1.5rem;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            background: var(--color-surface-hover);
            transform: translateY(-5px);
            border-color: rgba(168, 85, 247, 0.5);
            box-shadow: 0 10px 30px -10px rgba(168, 85, 247, 0.2);
        }

        .feature-icon {
            width: 3rem;
            height: 3rem;
            border-radius: 1rem;
            background: rgba(168, 85, 247, 0.1);
            color: var(--color-brand);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .feature-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--color-foreground);
        }

        .feature-card p {
            color: var(--color-muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            border-top: 1px solid var(--color-border);
            padding: 3rem 0;
            text-align: center;
            color: var(--color-muted);
        }

        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-weight: 700;
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: var(--color-foreground);
        }

        .footer-logo img {
            width: 24px;
            height: auto;
            opacity: 0.8;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            padding: 0.25rem 0.75rem;
            background: rgba(168, 85, 247, 0.1);
            color: var(--color-brand);
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(168, 85, 247, 0.2);
        }

        @media (max-width: 640px) {
            .hero-buttons {
                flex-direction: column;
            }

            .container {
                padding: 0 1.5rem;
            }
        }
