        :root {
            --primary: #6c47ff;
            --primary-dark: #5a38e0;
            --primary-glow: rgba(108, 71, 255, 0.15);
            --text: #1a1a2e;
            --text-muted: #6b7280;
            --bg: #fafafa;
            --card-bg: #ffffff;
            --border: #e5e7eb;
            --input-bg: #f3f4f6;
            --success: #10b981;
        }

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

        body {
            min-height: 100vh;
            min-height: 100dvh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg);
            font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
            -webkit-font-smoothing: antialiased;
            position: relative;
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: fixed;
            top: -40%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
            pointer-events: none;
        }

        body::after {
            content: '';
            position: fixed;
            bottom: -30%;
            left: -15%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(80, 200, 255, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .page {
            width: 100%;
            max-width: 680px;
            padding: 2rem 1.5rem;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .fade-in {
            animation: fadeUp 0.9s ease-out both;
        }

        .fade-in-delay-1 { animation-delay: 0.1s; }
        .fade-in-delay-2 { animation-delay: 0.25s; }
        .fade-in-delay-3 { animation-delay: 0.4s; }
        .fade-in-delay-4 { animation-delay: 0.55s; }

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

        /* Lottie */
        .lottie-wrapper {
            width: 100%;
            max-width: 420px;
            margin: 0 auto 1.5rem;
        }

        dotlottie-player {
            width: 100%;
            height: auto;
        }

        /* Heading */
        .heading {
            margin-bottom: 0.5rem;
        }

        .heading h1 {
            font-size: clamp(2rem, 6vw, 3rem);
            font-weight: 800;
            color: var(--text);
            letter-spacing: -0.04em;
            line-height: 1.1;
        }

        .heading h1 span {
            background: linear-gradient(135deg, var(--primary), #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .subtitle {
            color: var(--text-muted);
            font-size: clamp(0.95rem, 2.5vw, 1.1rem);
            line-height: 1.65;
            font-weight: 400;
            max-width: 480px;
            margin: 0 auto 2.5rem;
        }

        /* Countdown */
        .countdown {
            display: flex;
            justify-content: center;
            align-items: stretch;
            gap: 0.5rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }

        .countdown-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-width: clamp(72px, 18vw, 100px);
            padding: 1rem 0.75rem;
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid var(--border);
            border-radius: 14px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            backdrop-filter: blur(8px);
        }

        .countdown-value {
            font-size: clamp(1.75rem, 5.5vw, 2.75rem);
            font-weight: 700;
            color: var(--text);
            line-height: 1;
            letter-spacing: -0.03em;
            font-variant-numeric: tabular-nums;
        }

        .countdown-label {
            font-size: clamp(0.6rem, 1.4vw, 0.75rem);
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-top: 0.5rem;
        }

        .countdown-separator {
            font-size: clamp(1.25rem, 4vw, 2rem);
            font-weight: 200;
            color: var(--text-muted);
            opacity: 0.4;
            align-self: center;
            padding: 0 0.15rem;
        }

        /* Email form */
        .email-form {
            display: flex;
            gap: 0.5rem;
            max-width: 440px;
            margin: 0 auto 1.5rem;
        }

        .email-input {
            flex: 1;
            padding: 0.85rem 1.15rem;
            border: 2px solid var(--border);
            border-radius: 12px;
            font-family: 'Outfit', sans-serif;
            font-size: 0.9rem;
            font-weight: 400;
            color: var(--text);
            background: var(--card-bg);
            outline: none;
            transition: border-color 0.25s, box-shadow 0.25s;
        }

        .email-input::placeholder {
            color: #9ca3af;
        }

        .email-input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px var(--primary-glow);
        }

        .submit-btn {
            padding: 0.85rem 1.5rem;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-family: 'Outfit', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
            box-shadow: 0 2px 12px rgba(108, 71, 255, 0.25);
        }

        .submit-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 20px rgba(108, 71, 255, 0.35);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Success message */
        .success-msg {
            display: none;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1.25rem;
            background: #ecfdf5;
            border: 1px solid #a7f3d0;
            border-radius: 10px;
            color: #065f46;
            font-size: 0.9rem;
            font-weight: 500;
            max-width: 440px;
            margin: 0 auto 1.5rem;
            animation: fadeUp 0.4s ease-out;
        }

        .success-msg.show {
            display: flex;
        }

        .success-msg svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

        /* Social links */
        .socials {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 10px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            color: var(--text-muted);
            text-decoration: none;
            transition: all 0.25s;
        }

        .social-link:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px var(--primary-glow);
        }

        .social-link svg {
            width: 18px;
            height: 18px;
        }

        /* Tablet */
        @media (max-width: 768px) {
            .lottie-wrapper {
                max-width: 340px;
            }
        }

        /* Mobile */
        @media (max-width: 480px) {
            .page {
                padding: 1.5rem 1.25rem;
            }

            .lottie-wrapper {
                max-width: 280px;
                margin-bottom: 1.25rem;
            }

            .subtitle {
                margin-bottom: 2rem;
            }

            .countdown {
                gap: 0.35rem;
                margin-bottom: 2rem;
            }

            .countdown-item {
                min-width: 0;
                flex: 1;
            }

            .countdown-value {
                font-size: 2rem;
            }

            .countdown-separator {
                font-size: 1.25rem;
            }

            .countdown-label {
                font-size: 0.6rem;
                letter-spacing: 0.06em;
            }

            .email-form {
                flex-direction: column;
            }

            .submit-btn {
                width: 100%;
            }
        }

        /* Small mobile */
        @media (max-width: 360px) {
            .lottie-wrapper {
                max-width: 220px;
            }

            .countdown-item {
                min-width: 64px;
                padding: 0.75rem 0.5rem;
            }

            .countdown-value {
                font-size: 1.5rem;
            }

            .countdown-separator {
                font-size: 1rem;
            }
        }

        /* Loading state */
        .submit-btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none !important;
        }

        .submit-btn .spinner {
            display: none;
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255,255,255,0.3);
            border-top-color: #fff;
            border-radius: 50%;
            animation: spin 0.6s linear infinite;
        }

        .submit-btn.loading .spinner {
            display: inline-block;
        }

        .submit-btn.loading .btn-label {
            display: none;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Error message */
        .error-msg {
            display: none;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1.25rem;
            background: #fef2f2;
            border: 1px solid #fecaca;
            border-radius: 10px;
            color: #991b1b;
            font-size: 0.9rem;
            font-weight: 500;
            max-width: 440px;
            margin: -0.75rem auto 1.5rem;
            animation: fadeUp 0.4s ease-out;
        }

        .error-msg.show {
            display: flex;
        }

        .error-msg svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

        /* RTL */
        [dir="rtl"] .email-form {
            direction: rtl;
        }

        [dir="rtl"] .socials {
            direction: rtl;
        }

        /* Page footer */
        .page-footer {
            margin-top: 2.5rem;
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .page-footer a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }

        .page-footer a:hover {
            text-decoration: underline;
        }

        .page-footer .heart {
            color: #f87171;
        }

