*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #050505;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    /* Allow growth if needed */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    background: radial-gradient(circle at top center, #111e25 0%, #000000 80%);
    padding: 20px;
    position: relative;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    z-index: 10;
    text-align: center;
}

/* Eyebrow Badge */
.eyebrow {
    font-size: 0.75rem;
    color: #00ff88;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.1);
}

/* Headline */
.headline {
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: -1px;
    color: #fff;
}

.headline .highlight {
    background: linear-gradient(90deg, #00ff88 0%, #00b0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.2));
}

/* Subheadline */
.subheadline {
    font-size: 1rem;
    color: #a0a0a0;
    margin-bottom: 25px;
    line-height: 1.5;
    font-weight: 400;
    width: 90%;
}

/* Image Container */
.image-container {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
}

/* CTA Button */
.cta-button {
    background: #25D366;
    color: #000;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    padding: 16px 0;
    width: 100%;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: #20bd5a;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Footer */
.footer {
    margin-top: 30px;
    font-size: 0.65rem;
    color: #444;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Social Proof Popup */
.viewer-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 100;
    animation: fadeSlideUp 0.8s ease-out;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.viewer-popup p {
    font-size: 0.8rem;
    color: #eee;
    margin: 0;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 5px #00ff88;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness - SCROLLABLE & SPACED */
@media (max-width: 480px) {
    body {
        justify-content: flex-start;
        /* Fill from top */
        padding: 20px 15px 100px 15px;
        /* Huge bottom padding for popup clearance */
        height: auto;
        /* Allow scroll */
        overflow-y: auto;
        /* Enable vertical scroll */
    }

    .main-container {
        padding-top: 20px;
    }

    .eyebrow {
        font-size: 0.65rem;
        margin-bottom: 10px;
    }

    .headline {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .subheadline {
        font-size: 0.9rem;
        margin-bottom: 20px;
        width: 100%;
    }

    .image-container {
        width: 100%;
        margin-bottom: 20px;
    }

    .cta-button {
        font-size: 1rem;
        padding: 16px 0;
        margin-bottom: 10px;
    }

    .viewer-popup {
        left: 50%;
        transform: translateX(-50%);
        bottom: 15px;
        width: 90%;
        justify-content: center;
        background: rgba(10, 10, 10, 0.98);
    }

    .footer {
        display: block;
        /* Show footer now that we have scroll */
        opacity: 0.5;
        font-size: 0.6rem;
    }

    /* Mobile Animation Override */
    @keyframes fadeSlideUp {
        from {
            opacity: 0;
            transform: translate(-50%, 20px);
        }

        to {
            opacity: 1;
            transform: translate(-50%, 0);
        }
    }
}