        :root {
            --bg: #0f172a;
            --panel: #1e293b;
            --p: #a78bfa;
            --text: #f8fafc;
            --accent: #f43f5e;
            --success: #10b981;
        }

        body {
            font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            background: var(--bg);
            color: var(--text);
            margin: 0;
            padding: 0;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navbar */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            background: rgba(15, 23, 42, 0.9);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            box-sizing: border-box;
            z-index: 100;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .logo {
            font-weight: 900;
            font-size: 24px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn {
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: bold;
            text-decoration: none;
            transition: all 0.2s;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--p);
            color: white;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
        }

        .btn-primary:hover {
            background: #7c3aed;
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--p);
            color: var(--text);
        }

        .btn-outline:hover {
            background: rgba(139, 92, 246, 0.1);
        }

        /* Hero Section */
        .hero {
            padding: 100px 5% 60px;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.1;
            /* The magical purple-to-pink gradient */
            background: linear-gradient(to right, var(--p), var(--accent));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.2rem;
            color: #94a3b8;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .warning-badge {
            display: inline-block;
            background: rgba(244, 63, 94, 0.1);
            color: var(--accent);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            margin-bottom: 20px;
            border: 1px solid rgba(244, 63, 94, 0.3);
        }

        /* Feature Grid */
        .features {
            padding: 50px 5%;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: var(--panel);
            padding: 30px;
            border-radius: 16px;
            border: 1px solid rgba(139, 92, 246, 0.4);
            /* Solidified the border here */
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: rgba(139, 92, 246, 0.8);
        }

        .feature-icon {
            margin-bottom: 15px;
        }

        .feature-title {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 10px;
            color: var(--p);
        }

        .feature-desc {
            color: #94a3b8;
            font-size: 0.95rem;
        }

        /* Pricing Section */
        .pricing {
            padding: 60px 5%;
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .pricing-card {
            background: var(--panel);
            padding: 25px 20px;
            /* Removed extra empty space */
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
        }

        .pricing-card.pro {
            border-color: var(--p);
            box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
            transform: scale(1.02);
        }

        .pro-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--p);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            letter-spacing: 1px;
        }

        .price {
            font-size: 3rem;
            font-weight: 900;
            margin: 10px 0;
            /* Tightened up space */
            color: white;
        }

        .price span {
            font-size: 1rem;
            color: #94a3b8;
            font-weight: normal;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 15px 0;
            /* Tightened up space */
            text-align: left;
        }

        .feature-list li {
            padding: 8px 0;
            /* Tightened up space */
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            color: #cbd5e0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .check {
            color: var(--success);
            font-weight: bold;
        }

        .x-mark {
            color: var(--accent);
            font-weight: bold;
            opacity: 0.5;
        }

        /* Comparison Section */
        .comparison {
            background: linear-gradient(to bottom, var(--bg), #000);
            /* Reduced bottom padding from 80px to 20px */
            padding: 80px 5% 20px;
            text-align: center;
        }

        .comparison h2 {
            font-size: 2.5rem;
            margin-bottom: 40px;
        }

        .cta-bottom {
            /* Reduced top padding from 100px to 40px */
            padding: 20px 5% 100px;
            text-align: center;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero {
                padding-top: 120px;
            }
        }