* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-primary: #0a0e17;
            --bg-secondary: #121a2b;
            --bg-card: #1a2436;
            --accent-blue: #3b82f6;
            --accent-cyan: #06b6d4;
            --accent-gold: #f59e0b;
            --text-primary: #f8fafc;
            --text-secondary: #94a3b8;
            --text-muted: #64748b;
            --success: #10b981;
            --error: #ef4444;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            min-height: 100vh;
            line-height: 1.6;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header */
        header {
            padding: 20px 0;
            background: linear-gradient(180deg, rgba(10,14,23,0.95) 0%, transparent 100%);
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 10;
        }

      .logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 28px;
    letter-spacing: -1px;
    background: linear-gradient(90deg,
        var(--accent-cyan) 0%,
        #ffffff 40%,
        var(--accent-cyan) 60%,
        var(--accent-blue) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoSweep 3s linear infinite;
    position: relative;
}
.logo span {
    -webkit-text-fill-color: transparent;
    color: var(--accent-gold);
}
.logo::after {
    content: 'Coming Soon';
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 3px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #fff;
    background-clip: unset;
    color: #fff;
    padding: 2px 7px;
    border-radius: 20px;
    white-space: nowrap;
    animation: pillPulse 4s ease-in-out infinite;
}
@keyframes logoSweep {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}
@keyframes pillPulse {
    0%, 70%, 100% { transform: scale(1); }
    85%            { transform: scale(1.12); }
}


        /* Main Content */
        .main-content {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            padding-bottom: 60px;
            background:
                radial-gradient(ellipse at 20% 50%, rgba(59,130,246,0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(6,182,212,0.1) 0%, transparent 40%),
                var(--bg-primary);
            position: relative;
            overflow: hidden;
        }

        /* Animated grid background */
        .main-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                linear-gradient(rgba(59,130,246,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(59,130,246,0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
            pointer-events: none;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .split-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        /* Left Side - Video */
        .video-section {
            position: relative;
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            padding-top: 56.25%;
            background: var(--bg-card);
            border-radius: 20px;
            overflow: hidden;
            box-shadow:
                0 25px 50px -12px rgba(0,0,0,0.5),
                0 0 0 1px rgba(255,255,255,0.05),
                inset 0 1px 0 rgba(255,255,255,0.05);
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .video-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: url('https://myautobuilder.com/posters/free-capture-nexus2.png') center center / cover no-repeat;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .video-placeholder:hover {
    background: url('https://myautobuilder.com/posters/free-capture-nexus2.png') center center / cover no-repeat;
}

        .play-button {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 40px rgba(59,130,246,0.4);
            transition: all 0.3s ease;
            margin-bottom: 24px;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); box-shadow: 0 20px 40px rgba(59,130,246,0.4); }
            50% { transform: scale(1.05); box-shadow: 0 25px 50px rgba(59,130,246,0.6); }
        }

        .play-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    border: 2px solid rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.play-button svg {
    width: 30px;
    height: 30px;
    fill: rgba(255,255,255,0.4);
    margin-left: 5px;
}

        .video-label {
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent-cyan);
            margin-bottom: 8px;
            animation: fadeIn 0.8s ease-out 0.3s both;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .video-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            text-align: center;
            max-width: 80%;
            animation: fadeIn 0.8s ease-out 0.5s both;
        }

        .video-duration {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: rgba(0,0,0,0.7);
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
        }

        /* Bullet Points */
        .bullet-points {
            margin-top: 32px;
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }

        .bullet-point {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 18px;
            padding: 16px 20px;
            background: rgba(26,36,54,0.6);
            border-radius: 12px;
            border: 1px solid rgba(59,130,246,0.1);
            transition: all 0.3s ease;
        }

        .bullet-point:hover {
            background: rgba(26,36,54,0.9);
            border-color: rgba(59,130,246,0.3);
            transform: translateX(8px);
        }

        .bullet-icon {
            width: 28px;
            height: 28px;
            min-width: 28px;
            background: linear-gradient(135deg, var(--accent-gold) 0%, #d97706 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 2px;
        }

        .bullet-icon svg {
            width: 16px;
            height: 16px;
            fill: #000;
        }

        .bullet-text {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .bullet-text strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        /* Right Side - Form */
        .form-section {
            max-width: 480px;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .preheadline {
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--accent-gold);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: fadeIn 0.8s ease-out 0.4s both;
        }

        .preheadline::before {
            content: '';
            width: 30px;
            height: 2px;
            background: var(--accent-gold);
            animation: expandWidth 0.8s ease-out 0.8s both;
        }

        @keyframes expandWidth {
            from { width: 0; }
            to { width: 30px; }
        }

        .headline {
            font-family: 'Montserrat', sans-serif;
            font-size: 42px;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .headline .highlight {
            background: linear-gradient(135deg, var(--accent-gold) 0%, #fbbf24 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .headline .highlight::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-gold), transparent);
            animation: shimmer 2s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .subheadline {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            line-height: 1.7;
            animation: fadeIn 0.8s ease-out 0.6s both;
        }

        .subheadline strong {
            color: var(--accent-cyan);
            font-weight: 600;
        }

        /* Timing Banner */
        .timing-banner {
            background: linear-gradient(135deg, rgba(245,158,11,0.15) 0%, rgba(245,158,11,0.05) 100%);
            border: 1px solid rgba(245,158,11,0.3);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 28px;
            animation: fadeIn 0.8s ease-out 0.7s both;
        }

        .timing-banner-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .timing-banner-title svg {
            width: 18px;
            height: 18px;
            fill: var(--accent-gold);
            animation: blink 1s ease-in-out infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .timing-banner-text {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .timing-banner-text strong {
            color: var(--text-primary);
        }

        /* Form Card */
        .form-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 36px;
            box-shadow:
                0 25px 50px -12px rgba(0,0,0,0.4),
                0 0 0 1px rgba(255,255,255,0.05);
            position: relative;
            overflow: hidden;
            animation: fadeIn 0.8s ease-out 0.8s both;
        }

        .form-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue), var(--accent-gold));
            animation: borderGlow 3s ease-in-out infinite;
        }

        @keyframes borderGlow {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .form-header {
            text-align: center;
            margin-bottom: 28px;
        }

        .form-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .form-subtitle {
            font-size: 14px;
            color: var(--text-muted);
        }

        .form-subtitle .spots {
            color: var(--accent-gold);
            font-weight: 600;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }

        .form-input {
            width: 100%;
            padding: 16px 18px;
            font-size: 16px;
            font-family: 'Inter', sans-serif;
            background: var(--bg-secondary);
            border: 2px solid transparent;
            border-radius: 12px;
            color: var(--text-primary);
            transition: all 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--accent-blue);
            background: var(--bg-card);
            box-shadow: 0 0 0 4px rgba(59,130,246,0.15);
        }

        .form-input::placeholder {
            color: var(--text-muted);
        }

        .form-input.error {
            border-color: var(--error);
            animation: shake 0.5s ease-in-out;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        .error-message {
            font-size: 13px;
            color: var(--error);
            margin-top: 6px;
            display: none;
        }

        .error-message.show {
            display: block;
            animation: fadeIn 0.3s ease-out;
        }

        .cta-button {
            width: 100%;
            padding: 18px 24px;
            font-family: 'Montserrat', sans-serif;
            font-size: 18px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            background: linear-gradient(135deg, var(--accent-gold) 0%, #d97706 100%);
            border: none;
            border-radius: 12px;
            color: #000;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(245,158,11,0.3);
            margin-top: 8px;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

        .cta-button:active {
            transform: translateY(0);
        }

        .cta-button:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        .trust-badges {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .trust-badge svg {
            width: 16px;
            height: 16px;
            fill: var(--success);
        }

        /* Success State */
        .success-state {
            display: none;
            text-align: center;
            padding: 20px 0;
        }

        .success-state.show {
            display: block;
        }

        .success-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: scaleIn 0.5s ease;
        }

        @keyframes scaleIn {
            0% { transform: scale(0); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        .success-icon svg {
            width: 40px;
            height: 40px;
            fill: white;
        }

        .success-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 16px;
            background: linear-gradient(135deg, var(--success) 0%, var(--accent-cyan) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .success-message {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            line-height: 1.7;
        }

        .success-video {
            width: 100%;
            max-width: 400px;
            margin: 0 auto;
        }

        .success-video .video-wrapper {
            padding-top: 56.25%;
        }

        /* Footer */
        footer {
            background: var(--bg-secondary);
            padding: 40px 0;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 20px;
            background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-links {
            display: flex;
            gap: 30px;
        }

        .footer-link {
            font-size: 14px;
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: var(--accent-cyan);
        }

        .footer-copyright {
            width: 100%;
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.05);
            font-size: 13px;
            color: var(--text-muted);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .split-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .headline {
                font-size: 36px;
            }

            .video-section {
                max-width: 600px;
                margin: 0 auto;
            }

            .form-section {
                max-width: 500px;
                margin: 0 auto;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        @media (max-width: 640px) {
            .main-content {
                padding-top: 100px;
                padding-bottom: 40px;
            }

            .headline {
                font-size: 28px;
            }

            .subheadline {
                font-size: 16px;
            }

            .form-card {
                padding: 24px;
            }

            .form-title {
                font-size: 20px;
            }

            .cta-button {
                font-size: 16px;
                padding: 16px 20px;
            }

            .trust-badges {
                flex-direction: column;
                gap: 12px;
            }

            .bullet-point {
                padding: 14px 16px;
            }

            .bullet-text {
                font-size: 14px;
            }
        }