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

        body {
            background: #09090b;
            color: white;
            overflow-x: hidden;
        }

        body::before {
            content: "";
            position: fixed;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, #7c3aed55, transparent 70%);
            left: -200px;
            top: -200px;
            z-index: -2;
        }

        body::after {
            content: "";
            position: fixed;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, #2563eb33, transparent 70%);
            right: -250px;
            bottom: -250px;
            z-index: -2;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 22px 8%;
            position: sticky;
            top: 0;
            background: #09090bee;
            backdrop-filter: blur(20px);
            z-index: 999;
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            color: #8b5cf6;
        }

        nav ul {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        nav a {
            text-decoration: none;
            color: white;
            transition: .25s;
        }

        nav a:hover {
            color: #8b5cf6;
        }

        .hero {
            padding: 140px 8%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
        }

        .hero-text {
            flex: 1;
            min-width: 300px;
        }

        .hero h1 {
            font-size: 72px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
        }

        .hero h1 span {
            color: #8b5cf6;
        }

        .hero p {
            font-size: 20px;
            opacity: .8;
            line-height: 1.7;
            max-width: 650px;
        }

        .buttons {
            margin-top: 40px;
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: .25s;
        }

        .primary {
            background: #8b5cf6;
            color: white;
        }

        .primary:hover {
            background: #7c3aed;
        }

        .secondary {
            border: 1px solid #444;
            color: white;
        }

        .secondary:hover {
            background: #18181b;
        }

        .hero-card {
            width: 430px;
            background: #18181b;
            border: 1px solid #333;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
        }

        .hero-card h3 {
            margin-bottom: 20px;
        }

        .hero-card ul {
            list-style: none;
            display: grid;
            gap: 14px;
        }

        .hero-card li {
            padding: 12px;
            background: #27272a;
            border-radius: 10px;
        }

        section {
            padding: 90px 8%;
        }

        .section-title {
            font-size: 42px;
            margin-bottom: 20px;
        }

        .section-sub {
            opacity: .7;
            margin-bottom: 50px;
            max-width: 700px;
            line-height: 1.8;
        }

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

        .card {
            background: #18181b;
            border: 1px solid #2f2f2f;
            padding: 28px;
            border-radius: 18px;
            transition: .25s;
        }

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

        .card h3 {
            margin-bottom: 18px;
            font-size: 22px;
        }

        .card ul {
            padding-left: 20px;
            line-height: 2;
            opacity: .9;
        }

        .dashboard {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .dashboard-box {
            background: #18181b;
            padding: 40px;
            border-radius: 18px;
            border: 1px solid #333;
        }

        .dashboard-box h2 {
            margin-bottom: 18px;
        }

        .dashboard-box p {
            opacity: .8;
            line-height: 1.8;
        }

        .badges {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }

        .badge {
            background: #27272a;
            padding: 10px 18px;
            border-radius: 999px;
        }

        .faq {
            display: grid;
            gap: 20px;
        }

        details {
            background: #18181b;
            padding: 20px;
            border-radius: 12px;

            p {
                margin-top: 1rem;
            }
        }

        summary {
            cursor: pointer;
            font-weight: 600;
        }

        footer {
            padding: 40px;
            text-align: center;
            opacity: .6;
            border-top: 1px solid #222;
            margin-top: 80px;
        }

        @media(max-width:900px) {

            .hero h1 {
                font-size: 48px;
            }

            .dashboard {
                grid-template-columns: 1fr;
            }

            .hero {
                text-align: center;
            }

            .buttons {
                justify-content: center;
            }

            .hero-card {
                width: 100%;
            }

        }