/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pink: #FF007F;
    --pink-light: #FF6EC7;
    --pink-glow: rgba(255, 0, 127, 0.35);
    --white: #ffffff;
    --white-dim: rgba(255, 255, 255, 0.75);
    --white-subtle: rgba(255, 255, 255, 0.08);
    --bg-dark: #0a0010;
    --bg-mid: #120025;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.12);
    --radius-lg: 20px;
    --radius-xl: 32px;
    --font: 'Outfit', sans-serif;
}

html, body {
    min-height: 100%;
    width: 100%;
    font-family: var(--font);
    background-color: var(--bg-dark);
    color: var(--white);
    overflow-x: hidden;
}

/* ===========================
   BACKGROUND
=========================== */
body {
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255,0,127,0.22) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(160,0,255,0.15) 0%, transparent 60%),
        linear-gradient(160deg, #0a0010 0%, #120025 50%, #0d0018 100%);
    background-attachment: fixed;
}

/* Background glow orb */
.bg-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 0, 127, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

/* ===========================
   PARTICLES
=========================== */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--pink);
    opacity: 0;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ===========================
   MAIN CONTAINER
=========================== */
.main-container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px 40px;
    text-align: center;
    gap: 28px;
    max-width: 680px;
    margin: 0 auto;
}

/* ===========================
   URGENCY BADGE
=========================== */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 127, 0.15);
    border: 1px solid rgba(255, 0, 127, 0.4);
    color: var(--pink-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 18px;
    border-radius: 100px;
    animation: badge-pulse 2s ease-in-out infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #FF007F;
    border-radius: 50%;
    box-shadow: 0 0 8px #FF007F;
    animation: dot-blink 1.2s ease-in-out infinite;
}

@keyframes dot-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 0, 127, 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(255, 0, 127, 0); }
}

/* ===========================
   LOGO ICON
=========================== */
.logo-icon {
    width: 72px;
    height: 72px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    animation: icon-float 3s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 0, 127, 0.2);
}

.logo-icon svg {
    width: 38px;
    height: 38px;
    filter: drop-shadow(0 0 8px rgba(255, 0, 127, 0.6));
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

/* ===========================
   HEADLINE
=========================== */
.headline {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    text-shadow: 0 0 40px rgba(255, 0, 127, 0.3);
    max-width: 580px;
}

.highlight {
    background: linear-gradient(135deg, #FF007F 0%, #FF6EC7 50%, #FF007F 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-text 3s linear infinite;
}

@keyframes shimmer-text {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ===========================
   SUBHEADLINE
=========================== */
.subheadline {
    font-size: clamp(15px, 2.5vw, 19px);
    font-weight: 300;
    color: var(--white-dim);
    line-height: 1.7;
    max-width: 520px;
}

.subheadline strong {
    color: var(--white);
    font-weight: 600;
}

/* ===========================
   BENEFITS ROW
=========================== */
.benefits-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--white-dim);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 0, 127, 0.1);
    border-color: rgba(255, 0, 127, 0.3);
    color: var(--white);
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 15px;
}

/* ===========================
   TIMER
=========================== */
.timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--glass);
    border: 1px solid rgba(255, 0, 127, 0.25);
    border-radius: var(--radius-lg);
    padding: 18px 36px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.1), inset 0 1px 0 rgba(255,255,255,0.06);
}

.timer-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.timer-display {
    display: flex;
    align-items: center;
    gap: 8px;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.timer-num {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #FF007F, #FF6EC7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-width: 60px;
    text-align: center;
}

.timer-label-unit {
    font-size: 11px;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.timer-sep {
    font-size: 38px;
    font-weight: 800;
    color: rgba(255, 0, 127, 0.6);
    margin-bottom: 16px;
}

/* ===========================
   CTA BUTTON
=========================== */
.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
    max-width: 480px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px 36px;
    background: linear-gradient(135deg, #FF007F 0%, #FF3D9A 50%, #FF007F 100%);
    background-size: 200% auto;
    color: var(--white);
    font-family: var(--font);
    font-size: clamp(17px, 2.5vw, 21px);
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 0 0 0 rgba(255, 0, 127, 0.5),
        0 8px 32px rgba(255, 0, 127, 0.4),
        0 2px 8px rgba(0,0,0,0.3);
    animation: cta-pulse 2.5s ease-in-out infinite, shimmer-btn 3s linear infinite;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255,255,255,0.15), transparent);
    border-radius: inherit;
    pointer-events: none;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 0 0 0 rgba(255, 0, 127, 0),
        0 16px 48px rgba(255, 0, 127, 0.6),
        0 4px 16px rgba(0,0,0,0.4);
    animation: shimmer-btn 3s linear infinite;
}

.cta-button:active {
    transform: translateY(0px) scale(0.99);
}

@keyframes cta-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 0, 127, 0.5), 0 8px 32px rgba(255, 0, 127, 0.4), 0 2px 8px rgba(0,0,0,0.3); }
    50% { box-shadow: 0 0 0 12px rgba(255, 0, 127, 0), 0 12px 40px rgba(255, 0, 127, 0.5), 0 2px 8px rgba(0,0,0,0.3); }
}

@keyframes shimmer-btn {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.whatsapp-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.cta-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
}

/* ===========================
   SOCIAL PROOF
=========================== */
.social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--glass);
    border: 2px solid var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-left: -8px;
    box-shadow: 0 0 10px rgba(255,0,127,0.2);
}

.avatar:first-child {
    margin-left: 0;
}

.proof-text {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.proof-text strong {
    color: var(--pink-light);
    font-weight: 600;
}

/* ===========================
   FOOTER
=========================== */
.footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.2);
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 480px) {
    .main-container {
        padding: 40px 20px 30px;
        gap: 22px;
    }

    .timer-box {
        padding: 14px 24px;
    }

    .timer-num {
        font-size: 36px;
        min-width: 50px;
    }

    .benefits-row {
        gap: 8px;
    }

    .benefit-item {
        font-size: 12px;
        padding: 6px 12px;
    }

    .cta-button {
        padding: 18px 24px;
    }
}
