:root {
    --bg-main: #060913;    /* Very dark navy */
    --bg-card: #0E1324;    /* Slightly lighter navy for bento boxes */
    --accent-orange: #FF6600; /* High Contrast Orange */
    --accent-glow: rgba(255, 102, 0, 0.4);
    --text-primary: #FFFFFF;
    --text-sec: #9BA3B5;
    --border-color: rgba(255,255,255,0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    overflow-x: hidden;
}

h1, h2, h3, .logo, .elite-badge, .btn-giant {
    font-family: 'Montserrat', sans-serif;
}

/* Background Effects */
.bg-blur {
    position: absolute;
    width: 500px;
    height: 500px;
    filter: blur(120px);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.25;
}
.blur-blue { top: -100px; left: -100px; background: #0044FF; }
.blur-red { bottom: 20%; right: -200px; background: #FF0055; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight-orange { color: var(--accent-orange); }

/* Urgency Bar */
.urgency-bar {
    background: #FF1744;
    color: #FFF;
    text-align: center;
    padding: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    z-index: 100;
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 23, 68, 0.4);
}
#countdown {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.1rem;
    background: rgba(0,0,0,0.3);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
}

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 4px;
    background: var(--accent-orange);
    width: 0%;
    z-index: 9999;
    box-shadow: 0 0 10px var(--accent-orange);
    transition: width 0.1s;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 20px;
}
.logo {
    font-size: 1.6rem;
    font-weight: 900;
    color: #FFF;
}
.header-trust {
    font-size: 0.9rem;
    color: var(--text-sec);
    background: rgba(255,255,255,0.05);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

/* Ticker Tape */
.custom-ticker-wrapper {
    width: 100%;
    overflow: hidden;
    background: #02040A;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    white-space: nowrap;
}
.custom-ticker-track {
    display: inline-block;
    white-space: nowrap;
    animation: scrollTicker 35s linear infinite;
}
@keyframes scrollTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 30px;
    border-right: 1px solid var(--border-color);
    font-size: 0.95rem;
}
.ticker-symbol { font-weight: 700; }
.ticker-price { color: var(--text-sec); }
.ticker-change.positive { color: #00E676; font-weight: 600; }
.ticker-change.negative { color: #FF1744; font-weight: 600; }

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    padding: 60px 20px 80px;
}

.elite-badge {
    display: inline-block;
    background: linear-gradient(90deg, #FFD700 0%, #FF8C00 100%);
    color: #000;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 4px;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.6rem;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-sub {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-sec);
    margin-bottom: 35px;
}
.hero-sub strong { color: #FFF; }

.cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-giant {
    background: linear-gradient(135deg, #FF8C00, #FF3D00);
    color: #FFF;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 900;
    padding: 22px 30px;
    border-radius: 8px; /* Sharper edges */
    text-align: center;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border-bottom: 5px solid #CC3300;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.btn-giant:hover {
    transform: translateY(2px);
    border-bottom: 3px solid #CC3300;
}
.pulse-orange {
    animation: pulseOrange 2s infinite;
}
@keyframes pulseOrange {
    0% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.6); }
    70% { box-shadow: 0 0 0 25px rgba(255, 102, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0); }
}

.trust-icons {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-sec);
    justify-content: center;
}
.trust-icons i { color: #00E676; }

/* Bento Box & Gated Content */
.bento-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.gated-header {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFF;
}
.live-dot {
    width: 10px;
    height: 10px;
    background: #FF1744;
    border-radius: 50%;
    animation: blink 1s infinite alternate;
}
@keyframes blink { 0% { opacity: 0.3; } 100% { opacity: 1; } }

.stock-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    margin-bottom: 15px;
}
.stock-info { display: flex; flex-direction: column; gap: 5px; }

.blur-name {
    font-weight: 800;
    font-size: 1.2rem;
    color: #FFF;
    filter: blur(4px);
    user-select: none;
}
.stock-desc {
    font-size: 0.85rem;
    color: #00E676;
}
.blur-text {
    font-weight: 900;
    font-size: 1.4rem;
    color: #00E676;
    filter: blur(4px);
    user-select: none;
}

.gated-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(14, 19, 36, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFF;
    padding: 20px;
}
.gated-overlay i { color: var(--accent-orange); margin-bottom: 15px; }
.gated-overlay h3 { font-size: 1.4rem; margin-bottom: 10px; }
.gated-overlay p { font-size: 0.95rem; color: #CCC; }

/* Benefits Bento Grid */
.benefits {
    padding: 60px 20px 100px;
}
.benefits-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 35px 25px;
    border-radius: 16px;
    transition: transform 0.3s;
}
.bento-card:hover { transform: translateY(-5px); }
.bento-icon {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
}
.bento-card h3 { font-size: 1.3rem; margin-bottom: 15px; }
.bento-card p { color: var(--text-sec); line-height: 1.6; font-size: 0.95rem; }

.highlight-card {
    background: linear-gradient(145deg, rgba(255, 102, 0, 0.1), rgba(0,0,0,0));
    border: 1px solid rgba(255, 102, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
}
.btn-secondary {
    background: #FFF;
    color: #000;
    text-decoration: none;
    font-weight: 800;
    padding: 12px 25px;
    border-radius: 5px;
    text-transform: uppercase;
    display: inline-block;
    width: 100%;
}

/* Social Proof Toasts */
.toast-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.toast {
    background: #FFF;
    color: #000;
    padding: 12px 18px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Inter', sans-serif;
    transform: translateX(-150%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.toast.show {
    transform: translateX(0);
    opacity: 1;
}
.toast-icon {
    background: #00E676;
    color: #FFF;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
}
.toast-body h4 { font-size: 0.95rem; margin-bottom: 2px; }
.toast-body p { font-size: 0.8rem; color: #555; }
.toast-time { font-size: 0.75rem; color: #999; margin-top: 3px; }

/* Popup Overlay */
.popup-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex; justify-content: center; align-items: center;
    z-index: 2000; opacity: 0; visibility: hidden; transition: 0.4s;
}
.popup-overlay.show { opacity: 1; visibility: visible; }

.popup-content {
    background: var(--bg-card);
    border: 2px solid var(--accent-orange);
    border-radius: 12px;
    padding: 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.8);
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 0 50px rgba(255, 102, 0, 0.4);
}
.popup-overlay.show .popup-content { transform: scale(1); }

.close-btn { position: absolute; top: 15px; right: 20px; background: none; border: none; color: #FFF; font-size: 1.5rem; cursor: pointer; }
.popup-title { font-size: 2rem; margin: 15px 0; }
.popup-desc { color: #CCC; margin-bottom: 25px; font-size: 1.05rem; line-height: 1.5; }

.badge {
    display: inline-block; background: #FF1744; color: #FFF; padding: 5px 12px;
    border-radius: 4px; font-weight: 800; font-size: 0.85rem;
}

/* V3 Additions (Live Viewer, Progress Bar, Bouncing Arrow) */
.live-viewers {
    background: rgba(255, 23, 68, 0.15);
    border: 1px solid rgba(255, 23, 68, 0.4);
    color: #FFF;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
}

.bouncing-arrow {
    text-align: center;
    font-weight: 800;
    color: #FF6600;
    font-size: 1rem;
    margin-bottom: -5px;
    animation: bounceUpDown 1s infinite;
}
@keyframes bounceUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.progress-container {
    width: 100%;
}
.progress-text {
    font-size: 0.85rem;
    color: #FFF;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
}
.progress-text strong {
    color: #FF1744;
}
.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: #FF1744;
    border-radius: 4px;
    box-shadow: 0 0 10px #FF1744;
    animation: progressPulse 1.5s infinite alternate;
}
@keyframes progressPulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Exit Intent Blur Enhancement */
.popup-overlay {
    background: rgba(0, 0, 0, 0.92) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    color: #FFF;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    font-family: 'Inter', sans-serif;
}
.faq-question:hover { background: rgba(255,255,255,0.02); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: rgba(0,0,0,0.2);
}
.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-sec);
    line-height: 1.6;
}
.faq-question i { transition: transform 0.4s ease; color: var(--accent-orange); }
.faq-question.active i { transform: rotate(180deg); }

/* Floating CTA Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #FF8C00, #FF3D00);
    color: #FFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.5);
    z-index: 1000;
    transition: transform 0.3s;
}
.floating-btn:hover { transform: scale(1.1); }

/* Footer */
footer {
    padding: 40px 20px;
    background: #020308;
    text-align: center;
    border-top: 1px solid var(--border-color);
}
.disclaimer { font-size: 0.85rem; color: #555; max-width: 800px; margin: 15px auto 0; }

/* Mobile */
@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; text-align: center; padding-top: 30px; }
    .hero-title { font-size: 2.8rem; }
    .trust-icons { flex-direction: column; gap: 10px; }
    .bento-grid { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
    .hero-title { font-size: 2.2rem; }
    .popup-content { padding: 30px 20px; }
    .btn-giant { font-size: 1.1rem; padding: 18px 20px; }
    .toast-container { left: 10px; right: 10px; bottom: 10px; }
    .toast { width: 100%; border-radius: 8px; }
    .floating-btn { bottom: 85px; right: 15px; width: 55px; height: 55px; font-size: 1.6rem; }
}
