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

        body {
            font-family: "Geist",-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #000000;
            color: #fff;
            overflow-x: hidden;
            position: relative;
        }

        /* Grid Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            background-image: 
                linear-gradient(rgba(30, 58, 138, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(30, 58, 138, 0.08) 1px, transparent 1px);
            background-size: 60px 60px;
            background-position: center center;
        }

        .bg-animation::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 30%, rgba(29, 78, 216, 0.1) 0%, transparent 60%);
            pointer-events: none;
        }

        /* Navigation */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 5%;
            position: relative;
            z-index: 100;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.625rem;
            font-size: 1.25rem;
            font-weight: 600;
            letter-spacing: -0.5px;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, #1e3a8a, #1e40af);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s;
            font-weight: 500;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #fff;
        }

        .btn-primary {
            background: linear-gradient(135deg, #1e40af, #2563eb);
            color: #fff;
            padding: 0.625rem 1.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: transform 0.2s, box-shadow 0.2s;
            border: none;
            cursor: pointer;
            white-space: nowrap;
        }

        .btn-primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 20px rgba(29, 78, 216, 0.4);
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 101;
        }

        .hamburger span {
            width: 25px;
            height: 2px;
            background: #fff;
            transition: all 0.3s;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: rgba(10, 10, 15, 0.98);
            backdrop-filter: blur(20px);
            padding: 6rem 2rem 2rem;
            transition: right 0.3s;
            z-index: 99;
            border-left: 1px solid rgba(30, 64, 175, 0.2);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .mobile-menu a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 1.1rem;
            transition: color 0.2s;
            font-weight: 500;
        }

        .mobile-menu a:hover,
        .mobile-menu a.active {
            color: #fff;
        }

        .mobile-menu .btn-primary {
            display: block;
            text-align: center;
            margin-top: 2rem;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 85vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 3rem 5% 4rem;
            z-index: 1;
            max-width: 1400px;
            margin: 0 auto;
        }

        .hero-content {
            max-width: 800px;
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            line-height: 1.1;
            margin-bottom: 1.25rem;
            font-weight: 700;
            letter-spacing: -2px;
        }

        .gradient-text {
            background: linear-gradient(135deg, #1e40af, #2563eb, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s ease infinite;
            background-size: 200% 200%;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero p {
            font-size: clamp(1rem, 2.5vw, 1.15rem);
            color: #94a3b8;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .btn-secondary {
            background: rgba(15, 15, 20, 0.8);
            backdrop-filter: blur(10px);
            color: #fff;
            padding: 0.625rem 1.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            border: 1px solid rgba(30, 64, 175, 0.3);
            transition: all 0.2s;
            white-space: nowrap;
        }

        .btn-secondary:hover {
            background: rgba(20, 20, 30, 0.9);
            border-color: rgba(30, 64, 175, 0.5);
            transform: translateY(-1px);
        }

        /* Features Preview */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
            margin-top: 4rem;
            max-width: 1000px;
            width: 100%;
        }

        .feature-card {
            background: rgba(15, 15, 20, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(30, 64, 175, 0.2);
            border-radius: 12px;
            padding: 1.75rem;
            transition: transform 0.2s, border-color 0.2s;
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
        }

        .feature-card:nth-child(1) { animation-delay: 0.1s; }
        .feature-card:nth-child(2) { animation-delay: 0.2s; }
        .feature-card:nth-child(3) { animation-delay: 0.3s; }

        .feature-card:hover {
            transform: translateY(-3px);
            border-color: rgba(30, 64, 175, 0.5);
        }

        .feature-icon {
            font-size: 2rem;
            margin-bottom: 0.75rem;
            display: inline-block;
        }

        .feature-card h3 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: #fff;
            font-weight: 600;
        }

        .feature-card p {
            font-size: 0.9rem;
            color: #94a3b8;
            line-height: 1.5;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            nav {
                padding: 1rem 5%;
            }

            .nav-links {
                display: none;
            }

            .nav-links .btn-primary {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero {
                min-height: 80vh;
                padding: 2rem 5% 3rem;
            }

            .hero h1 {
                margin-bottom: 1rem;
            }

            .hero p {
                margin-bottom: 2rem;
            }

            .cta-buttons {
                gap: 0.75rem;
            }

            .btn-primary,
            .btn-secondary {
                padding: 0.75rem 1.75rem;
                font-size: 0.95rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
                margin-top: 3rem;
            }

            .feature-card {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            nav {
                padding: 1rem 4%;
            }

            .hero {
                padding: 1.5rem 4% 2.5rem;
            }

            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
            }
        }
    
    
.features-section {
    position: relative;
    z-index: 1;
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-header p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    animation: fadeInUp 0.8s ease-out;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse > * {
    direction: ltr;
}

.feature-content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.feature-content p {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: #94a3b8;
    line-height: 1.7;
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 16/10;
    background: rgba(15, 15, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(30, 64, 175, 0.3);
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.visual-card:hover {
    transform: translateY(-5px);
    border-color: rgba(30, 64, 175, 0.5);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.2);
}

.visual-card svg {
    width: 100%;
    height: 100%;
    max-width: 200px;
    max-height: 200px;
}

.visual-card.moderation {
    background: radial-gradient(circle at center, rgba(30, 64, 175, 0.1) 0%, rgba(15, 15, 20, 0.6) 70%);
}

.visual-card.lightning {
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.1) 0%, rgba(15, 15, 20, 0.6) 70%);
}

.visual-card.customize {
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, rgba(15, 15, 20, 0.6) 70%);
}

/* Responsive Design */
@media (max-width: 968px) {
    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 4rem;
        direction: ltr;
    }

    .features-section {
        padding: 3rem 5%;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .visual-card {
        max-width: 350px;
    }
}

@media (max-width: 640px) {
    .features-section {
        padding: 2.5rem 4%;
    }

    .feature-row {
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .visual-card {
        padding: 2rem;
        max-width: 100%;
    }
}


            /* CTA Section */
            .cta-section {
                position: relative;
                padding: 6rem 5%;
                background: linear-gradient(
                    135deg,
                    #1e3a8a 0%,
                    #1e40af 50%,
                    #2563eb 100%
                );
                overflow: hidden;
            }

            .cta-section::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-image: linear-gradient(
                        rgba(255, 255, 255, 0.03) 1px,
                        transparent 1px
                    ),
                    linear-gradient(
                        90deg,
                        rgba(255, 255, 255, 0.03) 1px,
                        transparent 1px
                    );
                background-size: 50px 50px;
                pointer-events: none;
            }

            .cta-container {
                position: relative;
                max-width: 1400px;
                margin: 0 auto;
                z-index: 1;
            }

            .cta-content {
                text-align: center;
                max-width: 700px;
                margin: 0 auto;
            }

            .cta-content h2 {
                font-size: clamp(2rem, 5vw, 3rem);
                font-weight: 700;
                margin-bottom: 1rem;
                letter-spacing: -1px;
                color: #fff;
            }

            .cta-content p {
                font-size: clamp(1rem, 2vw, 1.15rem);
                color: rgba(255, 255, 255, 0.9);
                margin-bottom: 2.5rem;
                line-height: 1.6;
            }

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

            .btn-cta-primary {
                background: #fff;
                color: #1e40af;
                padding: 0.875rem 2rem;
                border-radius: 6px;
                text-decoration: none;
                font-weight: 600;
                font-size: 0.95rem;
                transition:
                    transform 0.2s,
                    box-shadow 0.2s;
                white-space: nowrap;
            }

            .btn-cta-primary:hover {
                transform: translateY(-2px);
                box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
            }

            .btn-cta-secondary {
                background: rgba(255, 255, 255, 0.15);
                backdrop-filter: blur(10px);
                color: #fff;
                padding: 0.875rem 2rem;
                border-radius: 6px;
                text-decoration: none;
                font-weight: 600;
                font-size: 0.95rem;
                border: 1px solid rgba(255, 255, 255, 0.3);
                transition: all 0.2s;
                white-space: nowrap;
            }

            .btn-cta-secondary:hover {
                background: rgba(255, 255, 255, 0.25);
                border-color: rgba(255, 255, 255, 0.5);
                transform: translateY(-2px);
            }

            /* Footer */
            .footer {
                background: #0a0a0f;
                padding: 4rem 5% 2rem;
                border-top: 1px solid rgba(30, 64, 175, 0.2);
            }

            .footer-container {
                max-width: 1400px;
                margin: 0 auto;
            }

            .footer-grid {
                display: grid;
                grid-template-columns: 2fr 1fr 1fr 1fr;
                gap: 3rem;
                margin-bottom: 3rem;
            }

            .footer-brand {
                max-width: 350px;
            }

            .footer-logo {
                display: flex;
                align-items: center;
                gap: 0.625rem;
                font-size: 1.25rem;
                font-weight: 600;
                margin-bottom: 1rem;
            }

            .footer-logo .logo-icon {
                width: 36px;
                height: 36px;
                background: linear-gradient(135deg, #1e3a8a, #1e40af);
                border-radius: 8px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.25rem;
            }

            .footer-brand p {
                color: #64748b;
                font-size: 0.9rem;
                line-height: 1.6;
                margin-bottom: 1.5rem;
            }

            .footer-socials {
                display: flex;
                gap: 1rem;
            }

            .footer-socials a {
                width: 40px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: rgba(30, 64, 175, 0.1);
                border: 1px solid rgba(30, 64, 175, 0.2);
                border-radius: 8px;
                color: #94a3b8;
                transition: all 0.2s;
            }

            .footer-socials a:hover {
                background: rgba(30, 64, 175, 0.2);
                border-color: rgba(30, 64, 175, 0.4);
                color: #fff;
                transform: translateY(-2px);
            }

            .footer-links h4 {
                font-size: 0.95rem;
                font-weight: 600;
                margin-bottom: 1.25rem;
                color: #fff;
            }

            .footer-links ul {
                list-style: none;
            }

            .footer-links ul li {
                margin-bottom: 0.75rem;
            }

            .footer-links a {
                color: #64748b;
                text-decoration: none;
                font-size: 0.9rem;
                transition: color 0.2s;
            }

            .footer-links a:hover {
                color: #fff;
            }

            .footer-bottom {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding-top: 2rem;
                border-top: 1px solid rgba(30, 64, 175, 0.15);
                flex-wrap: wrap;
                gap: 1rem;
            }

            .footer-bottom p {
                color: #64748b;
                font-size: 0.875rem;
            }

            .footer-bottom-links {
                display: flex;
                gap: 2rem;
            }

            .footer-bottom-links a {
                color: #64748b;
                text-decoration: none;
                font-size: 0.875rem;
                transition: color 0.2s;
            }

            .footer-bottom-links a:hover {
                color: #fff;
            }

            /* Responsive Design */
            @media (max-width: 968px) {
                .footer-grid {
                    grid-template-columns: 1fr 1fr;
                    gap: 2.5rem;
                }

                .footer-brand {
                    max-width: 100%;
                    grid-column: 1 / -1;
                }

                .cta-section {
                    padding: 4rem 5%;
                }
            }

            @media (max-width: 640px) {
                .footer-grid {
                    grid-template-columns: 1fr;
                    gap: 2rem;
                }

                .footer {
                    padding: 3rem 4% 1.5rem;
                }

                .footer-bottom {
                    flex-direction: column;
                    text-align: center;
                    gap: 1.5rem;
                }

                .footer-bottom-links {
                    gap: 1.5rem;
                }

                .cta-section {
                    padding: 3rem 4%;
                }

                .cta-buttons {
                    flex-direction: column;
                    width: 100%;
                }

                .btn-cta-primary,
                .btn-cta-secondary {
                    width: 100%;
                }
            }
        