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

        :root {
            --accent: #6c63ff;
            --accent2: #00d4aa;
        }

        body {
            min-height: 100vh;
            background: #0a0a0f;
            color: #fff;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        /* Animated background blobs */
        .bg {
            position: fixed;
            inset: 0;
            z-index: 0;
        }

        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.18;
            animation: drift 14s ease-in-out infinite alternate;
        }

        .blob-1 {
            width: 600px; height: 600px;
            background: var(--accent);
            top: -200px; left: -150px;
            animation-duration: 16s;
        }

        .blob-2 {
            width: 500px; height: 500px;
            background: var(--accent2);
            bottom: -180px; right: -120px;
            animation-duration: 12s;
            animation-delay: -4s;
        }

        .blob-3 {
            width: 300px; height: 300px;
            background: #ff6584;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            animation-duration: 20s;
            animation-delay: -8s;
        }

        @keyframes drift {
            0%   { transform: translate(0, 0) scale(1); }
            100% { transform: translate(40px, 30px) scale(1.08); }
        }

        /* Grid lines */
        .grid {
            position: fixed;
            inset: 0;
            z-index: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        /* Content */
        .container {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 48px 24px;
            max-width: 680px;
        }

        .badge {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent2);
            border: 1px solid rgba(0,212,170,0.35);
            padding: 6px 18px;
            border-radius: 100px;
            margin-bottom: 36px;
            background: rgba(0,212,170,0.06);
        }

        .logo {
            font-size: clamp(42px, 8vw, 72px);
            font-weight: 800;
            letter-spacing: -2px;
            line-height: 1.05;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #fff 30%, rgba(255,255,255,0.5));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo span {
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .tagline {
            font-size: clamp(15px, 2.5vw, 18px);
            color: rgba(255,255,255,0.45);
            line-height: 1.7;
            margin-bottom: 56px;
            max-width: 480px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Divider */
        .divider {
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--accent2));
            border-radius: 2px;
            margin: 0 auto 56px;
        }

        /* Status dots */
        .status-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
            max-width: 380px;
            margin: 0 auto 56px;
            text-align: left;
        }

        .status-item {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 14px;
            color: rgba(255,255,255,0.6);
        }

        .dot {
            width: 8px; height: 8px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .dot.done  { background: var(--accent2); box-shadow: 0 0 8px var(--accent2); }
        .dot.active {
            background: var(--accent);
            box-shadow: 0 0 8px var(--accent);
            animation: pulse 1.4s ease-in-out infinite;
        }
        .dot.pending { background: rgba(255,255,255,0.15); }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50%       { opacity: 0.5; transform: scale(0.85); }
        }

        /* Contact */
        .contact {
            font-size: 13px;
            color: rgba(255,255,255,0.3);
        }

        .contact a {
            color: var(--accent2);
            text-decoration: none;
            transition: opacity 0.2s;
        }

        .contact a:hover { opacity: 0.75; }