/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    /* Atmospheric lighting background */
    background: radial-gradient(circle at 50% 0%, #FFFFFF 0%, #F2F2F4 100%);
    color: #1A1A1A;
    /* Soft Black */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

/* Layout Utilities - Mobile First */
.vsl-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    /* "Breathing Room" side padding */
}

.content-wrapper {
    width: 100%;
    max-width: 680px;
    /* Optically pleasing max-width for reading */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 
   Premium Alert Badge 
   Minimal pill shape, transparent background
*/
.alert-badge {
    margin-bottom: 32px;
    /* Increased spacing */
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(200, 30, 30, 0.08);
    /* Subtle wash */
    padding: 8px 20px;
    border-radius: 100px;
    /* Pill shape */
}

.alert-text {
    color: #B81818;
    /* Matte, premium red */
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* Elegant wide tracking */
    background-color: transparent;
    border: none;
    padding: 0;
}

/* 
   Main Headline 
   Dominant, tight tracking, luxury scale
*/
.main-headline {
    font-size: 2.125rem;
    /* ~34px Mobile */
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -1.5px;
    /* Tighter for display font feel */
}

/* Subheadline */
.sub-headline {
    font-size: 1.125rem;
    /* ~18px */
    font-weight: 400;
    color: #555555;
    /* Elegant Gray */
    margin-bottom: 32px;
    max-width: 95%;
    line-height: 1.5;
}

/* Scarcity Warning */
.scarcity-warning {
    margin-bottom: 48px;
    /* High vertical rhythm before video */
}

.scarcity-warning p {
    color: #B81818;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: transparent;
}

/* 
   Video Container 
   Premium floating effect
*/
.video-container {
    width: 100%;
    position: relative;
    /* Aspect ratio implicitly handled by Wistia, but we ensure container flows */
    background-color: transparent;
    border-radius: 12px;
    overflow: hidden;
    /* Deep diffused shadow for depth */
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.2);
    margin-bottom: 48px;
    /* Clean separation */
    transform: translateZ(0);
    /* Hardware accel for shadow rendering */
}

/* CTA Container & Button */
.cta-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
}

.pulse-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 480px;
    /* Constrain on tablet/desktop */
    background-color: #B81818;
    /* Premium Matte Red */
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    padding: 22px 32px;
    border-radius: 12px;
    /* Soft modern rect */
    letter-spacing: 0.5px;
    /* Colored glow instead of black shadow - "Bloom" effect */
    box-shadow: 0 10px 40px rgba(184, 24, 24, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    animation: premium-pulse 3s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.pulse-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(184, 24, 24, 0.5);
    background-color: #a81212;
}

.pulse-button:active {
    transform: translateY(1px);
}

/* Premium smooth pulse - Subtle throb of shadow and scale */
@keyframes premium-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(184, 24, 24, 0.4);
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 10px 40px rgba(184, 24, 24, 0.5);
        /* Bloom expands */
    }

    70% {
        box-shadow: 0 0 0 12px rgba(184, 24, 24, 0);
        /* Ripple dissipates */
    }

    100% {
        box-shadow: 0 0 0 0 rgba(184, 24, 24, 0);
        transform: scale(1);
    }
}

/* Desktop Enhancements */
@media (min-width: 768px) {
    .vsl-container {
        padding: 60px 24px;
        justify-content: flex-start;
    }

    .main-headline {
        font-size: 3.5rem;
        /* ~56px Desktop */
        line-height: 1.1;
        letter-spacing: -2px;
        margin-bottom: 32px;
    }

    .sub-headline {
        font-size: 1.25rem;
        max-width: 80%;
    }

    .alert-text {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .video-container {
        margin-bottom: 60px;
    }
}