﻿        /* â”€â”€ VSL GATE STYLES â”€â”€ */
        .vsl-section {
            padding: 100px 0 0;
            position: relative;
        }

        .vsl-pre-headline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(168, 85, 247, 0.12);
            border: 1px solid rgba(168, 85, 247, 0.3);
            border-radius: 100px;
            padding: 8px 18px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #c084fc;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 16px;
        }

        .vsl-pre-headline .live-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #a855f7;
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        .vsl-headline {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(2.4rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
        }

        .vsl-subheadline {
            font-size: 1.15rem;
            color: #a1a1aa;
            max-width: 600px;
            margin: 0 auto 32px;
            line-height: 1.7;
        }

        .vsl-center {
            text-align: center;
        }

        /* Video wrapper */
        .vsl-video-wrap {
            position: relative;
            width: 100%;
            max-width: 820px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(168, 85, 247, 0.25);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(168, 85, 247, 0.1);
        }

        /* Locked state: 16:9 placeholder */
        .vsl-locked-panel {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #09090b;
        }

        .vsl-thumb {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: blur(14px) brightness(0.3);
            transform: scale(1.08);
        }

        .vsl-gate-card {
            position: relative;
            z-index: 3;
            text-align: center;
            padding: 40px 32px;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(24px);
            border: 1px solid rgba(168, 85, 247, 0.3);
            border-radius: 20px;
            max-width: 420px;
        }

        .vsl-lock-emoji {
            font-size: 3rem;
            display: block;
            margin-bottom: 16px;
            animation: pulse-orb 2.5s ease-in-out infinite;
        }

        .vsl-gate-card h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
        }

        .vsl-gate-card p {
            font-size: 0.9rem;
            color: #a1a1aa;
            margin-bottom: 24px;
            line-height: 1.6;
        }

        /* Unlocked state */
        .vsl-unlocked-panel {
            display: none;
        }

        .vsl-unlocked-panel.visible {
            display: block;
        }

        .video-embed {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            background: #000;
        }

        .video-embed iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Arrow between video and form */
        .vsl-arrow {
            text-align: center;
            margin: 28px 0 -10px;
            font-size: 2rem;
            color: #a855f7;
            animation: bounce-arrow 1.5s ease-in-out infinite;
        }

        @keyframes bounce-arrow {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(8px);
            }
        }

        /* VSL Form block */
        .vsl-form-block {
            max-width: 820px;
            margin: 32px auto 0;
            padding-bottom: 80px;
        }

        .vsl-form-header {
            text-align: center;
            margin-bottom: 28px;
        }

        .vsl-form-header h2 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 700;
            margin-bottom: 10px;
        }

        .vsl-form-header p {
            color: #a1a1aa;
            font-size: 0.95rem;
        }

        .vsl-success-banner {
            display: none;
            text-align: center;
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid rgba(34, 197, 94, 0.3);
            border-radius: 16px;
            padding: 28px 24px;
            margin-top: 24px;
        }

        .vsl-success-banner h3 {
            color: #22c55e;
            margin-bottom: 8px;
        }

        .vsl-success-banner p {
            color: #a1a1aa;
            font-size: 0.9rem;
        }

        /* Social proof mini-row */
        .vsl-proof-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 28px;
            flex-wrap: wrap;
            margin: 24px auto 0;
            padding: 12px 32px;
            max-width: 820px;
            border-top: 1px solid rgba(168, 85, 247, 0.12);
            border-bottom: 1px solid rgba(168, 85, 247, 0.12);
        }

        .vsl-proof-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.82rem;
            font-weight: 600;
            color: #71717a;
        }

        .vsl-proof-item .proof-emoji {
            font-size: 1rem;
        }

        /* Benefit pills below form */
        .vsl-benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            max-width: 820px;
            margin: 24px auto 0;
            padding-bottom: 0;
        }

        .vsl-benefit-card {
            background: rgba(168, 85, 247, 0.06);
            border: 1px solid rgba(168, 85, 247, 0.12);
            border-radius: 16px;
            padding: 24px 20px;
        }

        .vsl-benefit-icon {
            font-size: 1.6rem;
            margin-bottom: 10px;
        }

        .vsl-benefit-card h4 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: #e4e4e7;
            margin-bottom: 6px;
        }

        .vsl-benefit-card p {
            font-size: 0.82rem;
            color: #71717a;
            line-height: 1.55;
        }

        /* Testimonial mini strip */
        .vsl-testimonial-strip {
            max-width: 820px;
            margin: 24px auto 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
        }

        .vsl-testi {
            background: rgba(168, 85, 247, 0.05);
            border: 1px solid rgba(168, 85, 247, 0.1);
            border-radius: 16px;
            padding: 24px 20px;
        }

        .vsl-testi .stars {
            color: #f59e0b;
            font-size: 0.85rem;
            margin-bottom: 10px;
        }

        .vsl-testi blockquote {
            font-size: 0.88rem;
            color: #a1a1aa;
            line-height: 1.6;
            font-style: italic;
            margin-bottom: 14px;
        }

        .vsl-testi .author {
            font-size: 0.8rem;
            font-weight: 600;
            color: #c084fc;
        }

        /* Footer CTA */
        .vsl-footer-cta {
            text-align: center;
            padding: 40px 0 60px;
            border-top: 1px solid rgba(168, 85, 247, 0.08);
            margin-top: 40px;
        }

        .vsl-footer-cta p {
            color: #71717a;
            font-size: 0.9rem;
            margin-top: 16px;
        }

        @media (max-width: 768px) {
            .vsl-section {
                padding: 80px 0 0;
            }

            .vsl-testimonial-strip,
            .vsl-benefits-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .vsl-form-block {
                padding: 0 16px 60px;
            }
        }

        @media (max-width: 640px) {
            .vsl-gate-card {
                padding: 24px 16px;
                max-width: 95%;
            }

            .vsl-headline {
                font-size: 1.85rem;
                line-height: 1.2;
            }

            .vsl-subheadline {
                font-size: 1rem;
                padding: 0 10px;
            }

            .vsl-proof-row {
                gap: 12px;
                padding: 12px 16px;
            }

            .vsl-proof-item {
                font-size: 0.75rem;
            }
        }