:root {
            --primary: #6366f1;
            --primary-hover: #4f46e5;
            --bg: #0f172a;
            --card-bg: rgba(30, 41, 59, 0.7);
            --text: #f8fafc;
            --text-dim: #94a3b8;
            --border: rgba(255, 255, 255, 0.1);
            --success: #22c55e;
            --error: #ef4444;
            --glass: rgba(255, 255, 255, 0.05);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            background-color: var(--bg);
            color: var(--text);
            min-height: 100vh;
            overflow-x: hidden;
            line-height: 1.6;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 8%;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 100;
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            background: linear-gradient(to right, #6366f1, #a855f7);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }

        .btn-launch {
            background: var(--primary);
            color: white;
            padding: 10px 24px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
        }

        .btn-launch:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
        }

        header {
            padding: 180px 8% 100px;
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
        }

        h1 {
            font-size: clamp(40px, 8vw, 72px);
            font-weight: 800;
            letter-spacing: -0.04em;
            margin-bottom: 24px;
            line-height: 1.1;
        }

        .hero-gradient {
            background: linear-gradient(to right, #f8fafc, #94a3b8);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .subheading {
            font-size: clamp(18px, 3vw, 22px);
            color: var(--text-dim);
            margin-bottom: 48px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .section {
            padding: 80px 8%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-title h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .card {
            background: var(--card-bg);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 40px;
            transition: transform 0.3s ease;
        }

        .card:hover {
            transform: translateY(-8px);
            border-color: var(--primary);
        }

        .card h3 {
            font-size: 20px;
            margin-bottom: 16px;
            color: var(--primary);
        }

        .card p {
            color: var(--text-dim);
            font-size: 15px;
        }

        /* Comparison Table Style */
        .comparison-container {
            margin-top: 48px;
            overflow-x: auto;
        }

        .comparison-grid {
            background: var(--card-bg);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border);
            border-radius: 32px;
            min-width: 800px;
        }

        .comp-row {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            padding: 24px;
            border-bottom: 1px solid var(--border);
            align-items: center;
        }

        .comp-header {
            background: rgba(255, 255, 255, 0.03);
            font-weight: 700;
            color: var(--text);
        }

        .comp-label {
            font-weight: 600;
            color: var(--text-dim);
        }

        .comp-value {
            text-align: center;
            font-weight: 500;
            font-size: 14px;
        }

        .highlight {
            color: var(--success);
            font-weight: 700;
        }

        .negative {
            color: var(--error);
        }

        footer {
            padding: 64px 8%;
            text-align: center;
            border-top: 1px solid var(--border);
            color: var(--text-dim);
            font-size: 14px;
        }

        @media (max-width: 768px) {
            header {
                padding-top: 140px;
            }

            h1 {
                font-size: 48px;
            }
        }

