/* ============================================
   AI REPLACED MY EMPLOYEES — MAIN STYLES
   Dark Neon Cyberpunk Design
   ============================================ */

:root {
    --bg: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a28;
    --surface: #16161f;
    --border: #1e1e2e;
    --border-glow: #2a2a3e;

    --text: #e4e4ef;
    --text-dim: #8888a0;
    --text-muted: #55556a;

    --cyan: #00f0ff;
    --purple: #a855f7;
    --pink: #ec4899;
    --green: #22c55e;
    --red: #ef4444;
    --orange: #f97316;
    --yellow: #eab308;
    --blue: #3b82f6;

    --neon-glow: 0 0 20px rgba(0, 240, 255, 0.3);
    --purple-glow: 0 0 20px rgba(168, 85, 247, 0.3);
    --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--cyan); text-decoration: none; transition: color 0.2s; }
a:hover { color: #66f7ff; }

img { max-width: 100%; display: block; }

/* SCANLINES */
.scanlines {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
}

/* GRID BG */
.grid-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* NEWS TICKER */
.ticker-bar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: linear-gradient(90deg, var(--bg), #0f0f1a, var(--bg));
    border-bottom: 1px solid var(--border);
    height: 36px;
    display: flex; align-items: center;
    overflow: hidden;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-dim);
}

.ticker-content {
    display: flex; gap: 60px;
    white-space: nowrap;
    animation: tickerScroll 40s linear infinite;
}

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

.ticker-dot {
    width: 6px; height: 6px; border-radius: 50%; display: inline-block;
}
.ticker-dot.red { background: var(--red); box-shadow: 0 0 6px var(--red); }
.ticker-dot.cyan { background: var(--cyan); box-shadow: 0 0 6px var(--cyan); }
.ticker-dot.purple { background: var(--purple); box-shadow: 0 0 6px var(--purple); }
.ticker-dot.green { background: var(--green); box-shadow: 0 0 6px var(--green); }

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* NAV */
.nav {
    position: fixed; top: 36px; left: 0; right: 0; z-index: 999;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    height: 56px;
}

.nav-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 20px; height: 100%;
    display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--font-display);
    font-weight: 700; font-size: 18px;
    color: var(--text); text-decoration: none;
}

.logo-icon { font-size: 20px; }

.logo-text {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 500; }
.nav-links a { color: var(--text-dim); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

.nav-cta {
    background: linear-gradient(135deg, var(--cyan), var(--purple)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 600 !important;
}

.mobile-menu-btn {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.mobile-menu-btn span {
    width: 22px; height: 2px; background: var(--text-dim);
    border-radius: 2px; transition: all 0.3s;
}

.mobile-menu {
    display: none; position: fixed; top: 92px; left: 0; right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column; padding: 16px 20px; gap: 12px;
    z-index: 998;
}
.mobile-menu a {
    color: var(--text-dim); font-size: 16px; font-weight: 500;
    padding: 8px 0;
}
.mobile-menu.open { display: flex; }

@media (max-width: 640px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh; min-height: 100dvh;
    display: flex; align-items: center; justify-content: center;
    padding: 120px 20px 60px;
    overflow: hidden;
}

.hero-canvas {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0; pointer-events: none;
}

.hero-content {
    position: relative; z-index: 1;
    max-width: 900px; text-align: center;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 12px;
    color: var(--cyan); letter-spacing: 2px;
    padding: 6px 16px;
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 100px;
    margin-bottom: 24px;
    animation: badgePulse 3s ease-in-out infinite;
}

.pulse-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--red);
    animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; box-shadow: 0 0 4px var(--red); }
    50% { opacity: 0.4; box-shadow: 0 0 8px var(--red); }
}

@keyframes badgePulse {
    0%, 100% { border-color: rgba(0, 240, 255, 0.3); }
    50% { border-color: rgba(0, 240, 255, 0.6); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 700; line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--cyan), var(--purple), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-sub {
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-dim);
    max-width: 600px; margin: 0 auto 40px;
    line-height: 1.5;
}

.desktop-br { display: none; }
@media (min-width: 640px) { .desktop-br { display: inline; } }

/* STAT CARDS */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 36px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card.money .stat-number { color: var(--green); text-shadow: 0 0 20px rgba(34, 197, 94, 0.3); }
.stat-card.money .stat-prefix {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--green);
    opacity: 0.7;
    margin-right: 2px;
}

.lb-stat-value.green { color: var(--green); }

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 24px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    flex: 1 1 160px;
    min-width: 140px;
    max-width: 220px;
}

.stat-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-card:hover { border-color: var(--border-glow); transform: translateY(-2px); }
.stat-card:hover::before { opacity: 1; }

.stat-card.accent .stat-number { color: var(--purple); }
.stat-card.fire .stat-number { color: var(--orange); font-size: 16px; }

.stat-number {
    font-family: var(--font-mono);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 4px;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    white-space: nowrap;
}

.stat-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
}

.stat-trend {
    font-family: var(--font-mono);
    font-size: 10px;
    margin-top: 2px;
}
.stat-trend.up { color: var(--red); }
.stat-trend.down { color: var(--green); }

@media (max-width: 640px) {
    .stats-grid {
        gap: 8px;
    }
    .stat-card {
        flex: 1 1 calc(50% - 8px);
        max-width: calc(50% - 4px);
        min-width: 0;
        padding: 12px 12px;
    }
    .stat-card.fire { flex: 1 1 100%; max-width: 100%; }
}

/* HERO BUTTONS */
.hero-cta-row {
    display: flex; gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: var(--bg); font-weight: 600; font-size: 15px;
    border-radius: var(--radius);
    border: none; cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-family: var(--font-main);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 240, 255, 0.3);
    color: var(--bg);
}

.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--text-dim); font-weight: 500; font-size: 15px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    cursor: pointer; transition: all 0.3s;
    text-decoration: none;
    font-family: var(--font-main);
}

.btn-ghost:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 13px; }

.btn-arrow { font-size: 18px; }

/* SECTIONS */
.section {
    padding: 80px 20px;
    position: relative;
}

.section-inner {
    max-width: 1000px; margin: 0 auto;
}

.section-header {
    text-align: center; margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-mono); font-size: 11px;
    color: var(--purple); letter-spacing: 3px;
    padding: 4px 12px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 700; line-height: 1.15;
    margin-bottom: 12px;
}

.section-sub {
    font-size: 16px;
    color: var(--text-dim);
    max-width: 560px; margin: 0 auto;
}

/* MONTH SELECTOR */
.month-selector {
    display: flex; gap: 8px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.month-btn {
    padding: 8px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text-dim);
    font-family: var(--font-mono);
    font-size: 13px; font-weight: 500;
    cursor: pointer; transition: all 0.3s;
}

.month-btn:hover { border-color: var(--cyan); color: var(--text); }
.month-btn.active {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(0, 240, 255, 0.08);
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.1);
}

/* LEADERBOARD CARDS */
.leaderboard {
    display: flex; flex-direction: column; gap: 16px;
}

.leaderboard-loading {
    text-align: center; padding: 60px 20px;
    color: var(--text-dim);
}

.loader {
    width: 32px; height: 32px;
    border: 2px solid var(--border);
    border-top-color: var(--cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin { to { transform: rotate(360deg); } }

.lb-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    animation: cardSlideIn 0.5s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes cardSlideIn {
    to { opacity: 1; transform: translateY(0); }
}

.lb-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-2px);
    box-shadow: var(--card-shadow);
}

.lb-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--purple), var(--pink));
    opacity: 0.6;
}

.lb-card.rank-1::before { opacity: 1; height: 4px; }
.lb-card.rank-1 { border-color: rgba(0, 240, 255, 0.2); }

.lb-header {
    display: flex; align-items: flex-start; gap: 16px;
    margin-bottom: 16px;
}

.lb-rank {
    font-family: var(--font-mono);
    font-size: 32px; font-weight: 700;
    color: var(--text-muted);
    line-height: 1;
    min-width: 48px;
    flex-shrink: 0;
}

.lb-card.rank-1 .lb-rank { color: var(--cyan); text-shadow: 0 0 20px rgba(0, 240, 255, 0.5); }
.lb-card.rank-2 .lb-rank { color: var(--purple); }
.lb-card.rank-3 .lb-rank { color: var(--pink); }

.lb-company-info { flex: 1; min-width: 0; }

.lb-company-name {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 700;
    margin-bottom: 4px;
    display: flex; align-items: center; gap: 8px;
    flex-wrap: wrap;
}

.lb-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px; font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.badge-savage { background: rgba(239, 68, 68, 0.15); color: var(--red); border: 1px solid rgba(239, 68, 68, 0.3); }
.badge-margin { background: rgba(249, 115, 22, 0.15); color: var(--orange); border: 1px solid rgba(249, 115, 22, 0.3); }
.badge-massacre { background: rgba(168, 85, 247, 0.15); color: var(--purple); border: 1px solid rgba(168, 85, 247, 0.3); }
.badge-bloodbath { background: rgba(236, 72, 153, 0.15); color: var(--pink); border: 1px solid rgba(236, 72, 153, 0.3); }
.badge-theater { background: rgba(234, 179, 8, 0.15); color: var(--yellow); border: 1px solid rgba(234, 179, 8, 0.3); }
.badge-betrayal { background: rgba(0, 240, 255, 0.15); color: var(--cyan); border: 1px solid rgba(0, 240, 255, 0.3); }

.lb-headline {
    font-size: 14px; color: var(--text-dim);
    margin-bottom: 8px;
    line-height: 1.4;
}

.lb-ceo {
    font-family: var(--font-mono);
    font-size: 12px; color: var(--text-muted);
}

.lb-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-sm);
}

.lb-stat { text-align: center; }

.lb-stat-value {
    font-family: var(--font-mono);
    font-size: 20px; font-weight: 700;
    color: var(--cyan);
}

.lb-stat-value.red { color: var(--red); }
.lb-stat-value.orange { color: var(--orange); }

.lb-stat-label {
    font-size: 10px; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.5px;
    margin-top: 2px;
}

.lb-stat-note {
    font-family: var(--font-mono);
    font-size: 9px; color: var(--text-muted);
    opacity: 0.7;
}

.lb-commentary {
    font-size: 15px;
    color: var(--text);
    font-style: italic;
    padding: 12px 16px;
    border-left: 3px solid var(--purple);
    background: rgba(168, 85, 247, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 12px;
    line-height: 1.5;
}

.lb-footer {
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 8px;
}

.lb-source {
    font-family: var(--font-mono);
    font-size: 12px; color: var(--text-muted);
}

.lb-source a { color: var(--cyan); font-size: 12px; }
.lb-source a:hover { text-decoration: underline; }

.lb-date {
    font-family: var(--font-mono);
    font-size: 12px; color: var(--text-muted);
}

.lb-emojis { font-size: 18px; letter-spacing: 4px; }

/* LOAD MORE */
.load-more-wrap { text-align: center; margin-top: 24px; }

/* MID CTA */
.mid-cta {
    padding: 0 20px;
}

.mid-cta-inner {
    max-width: 900px; margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(168, 85, 247, 0.08));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    display: flex; align-items: center;
    justify-content: space-between;
    gap: 20px; flex-wrap: wrap;
}

.mid-cta-text {
    font-size: 16px; font-weight: 500;
    display: flex; align-items: center; gap: 8px;
}

.mid-cta-emoji { font-size: 24px; }

/* QUIZ */
.quiz-container {
    max-width: 600px; margin: 0 auto;
}

.quiz-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quiz-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--pink), var(--cyan));
}

.quiz-card.hidden { display: none; }

.quiz-icon { font-size: 48px; margin-bottom: 16px; }

.quiz-card h3 {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.quiz-card > p {
    color: var(--text-dim);
    margin-bottom: 24px;
}

.quiz-progress {
    height: 4px;
    background: var(--surface);
    border-radius: 100px;
    margin-bottom: 24px;
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    border-radius: 100px;
    transition: width 0.4s ease;
    width: 0%;
}

.quiz-q-number {
    font-family: var(--font-mono);
    font-size: 12px; color: var(--purple);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.quiz-options {
    display: flex; flex-direction: column; gap: 10px;
    margin-top: 20px;
}

.quiz-option {
    padding: 14px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    font-family: var(--font-main);
}

.quiz-option:hover {
    border-color: var(--cyan);
    background: rgba(0, 240, 255, 0.05);
    transform: translateX(4px);
}

/* QUIZ RESULT */
.quiz-result-icon { font-size: 64px; margin-bottom: 12px; }

.quiz-result-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px; font-weight: 600;
    padding: 4px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.quiz-result-meter {
    margin: 24px 0;
    text-align: left;
}

.meter-label {
    font-family: var(--font-mono);
    font-size: 11px; color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.meter-bar {
    height: 12px;
    background: var(--surface);
    border-radius: 100px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    border-radius: 100px;
    transition: width 1s ease-out;
    width: 0%;
}

.meter-value {
    font-family: var(--font-mono);
    font-size: 13px; font-weight: 600;
    margin-top: 6px;
    text-align: right;
}

.quiz-result-actions {
    display: flex; gap: 12px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

/* SUBSCRIBE */
.subscribe-section { padding-bottom: 40px; }

.subscribe-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 60px 32px;
    text-align: center;
    overflow: hidden;
}

.subscribe-glow {
    position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15), transparent 70%);
    pointer-events: none;
}

.subscribe-form {
    max-width: 480px; margin: 32px auto 0;
    position: relative;
}

.form-row {
    display: flex; gap: 8px;
}

.form-input {
    flex: 1;
    padding: 14px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 15px;
    font-family: var(--font-main);
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus { border-color: var(--cyan); }
.form-input::placeholder { color: var(--text-muted); }

.btn-submit { white-space: nowrap; flex-shrink: 0; }

.form-note {
    font-size: 12px; color: var(--text-muted);
    margin-top: 10px;
}

.form-success {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius);
    color: var(--green);
    font-size: 14px;
}

.form-success.hidden { display: none; }

.subscribe-extras {
    display: flex; gap: 24px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.extra-item {
    font-size: 13px;
    color: var(--text-dim);
}

/* BOTTOM CTA */
.bottom-cta { padding: 0 20px 80px; }

.bottom-cta-card {
    max-width: 700px; margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
}

.bottom-cta-card h3 {
    font-family: var(--font-display);
    font-size: 24px; font-weight: 700;
    margin-bottom: 12px;
}

.bottom-cta-card p {
    color: var(--text-dim);
    margin-bottom: 24px;
}

/* AGENCY LEAD GEN */
.agency-section { padding-bottom: 40px; }

.agency-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 60px 32px;
    text-align: center;
    overflow: hidden;
}

.agency-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--cyan), var(--purple));
}

.agency-glow {
    position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1), transparent 70%);
    pointer-events: none;
}

.agency-badge { color: var(--green) !important; border-color: rgba(34, 197, 94, 0.3) !important; }

.agency-sub { max-width: 620px !important; }

.agency-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px; margin: 32px auto;
    max-width: 500px;
}

.agency-stat { text-align: center; }

.agency-stat-number {
    font-family: var(--font-mono);
    font-size: 28px; font-weight: 700;
    color: var(--green);
    text-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.agency-stat-label {
    font-size: 12px; color: var(--text-muted);
    margin-top: 4px;
}

.agency-services {
    display: flex; flex-wrap: wrap;
    gap: 8px; justify-content: center;
    margin: 24px 0 32px;
}

.agency-service {
    padding: 6px 14px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 100px;
    font-size: 13px; color: var(--text-dim);
    font-family: var(--font-mono);
}

.agency-form { max-width: 560px; margin: 0 auto; }

.form-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 10px; margin-bottom: 12px;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2388889f' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-select option { background: var(--bg-card); color: var(--text); }

.btn-agency-submit {
    width: 100%;
    justify-content: center;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--green), var(--cyan));
}

.business-cta {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(0, 240, 255, 0.08));
}

@media (max-width: 640px) {
    .agency-card { padding: 40px 20px; }
    .form-grid { grid-template-columns: 1fr; }
    .agency-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .agency-stat-number { font-size: 22px; }
}

/* FOOTER */
.footer {
    border-top: 1px solid var(--border);
    padding: 40px 20px;
}

.footer-inner { max-width: 1000px; margin: 0 auto; }

.footer-top {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--font-display);
    font-weight: 600; font-size: 14px;
}

.footer-tagline {
    font-size: 13px; color: var(--text-muted);
}

.footer-bottom { margin-top: 16px; }

.footer-copy {
    font-size: 12px; color: var(--text-muted);
    margin-bottom: 6px;
}

.footer-disclaimer {
    font-size: 11px; color: var(--text-muted);
    opacity: 0.7;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .hero { padding: 100px 16px 40px; }
    .hero-title { letter-spacing: -1px; }
    .stat-number { font-size: 22px; }
    .lb-card { padding: 20px 16px; }
    .lb-header { gap: 12px; }
    .lb-rank { font-size: 26px; min-width: 36px; }
    .lb-company-name { font-size: 18px; }
    .lb-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 12px; }
    .lb-stat-value { font-size: 16px; }
    .lb-commentary { font-size: 14px; padding: 10px 12px; }
    .section { padding: 60px 16px; }
    .section-title { font-size: 28px; }
    .quiz-card { padding: 32px 20px; }
    .subscribe-card { padding: 40px 20px; }
    .form-row { flex-direction: column; }
    .subscribe-extras { flex-direction: column; gap: 8px; align-items: center; }
    .mid-cta-inner { flex-direction: column; text-align: center; padding: 20px; }
    .bottom-cta-card { padding: 32px 20px; }
    .footer-top { flex-direction: column; align-items: flex-start; }
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeIn 0.6s ease-out forwards; }
.slide-up { animation: slideUp 0.6s ease-out forwards; }

/* SCROLL-TRIGGERED ANIMATIONS */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger stat cards */
.stat-card.scroll-animate { transition-delay: 0s; }
.stat-card.scroll-animate:nth-child(2) { transition-delay: 0.1s; }
.stat-card.scroll-animate:nth-child(3) { transition-delay: 0.2s; }
.stat-card.scroll-animate:nth-child(4) { transition-delay: 0.3s; }

/* GLOW EFFECTS for rank 1 card */
.lb-card.rank-1 {
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.08), inset 0 0 30px rgba(0, 240, 255, 0.02);
}

.lb-card.rank-1:hover {
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.15), inset 0 0 30px rgba(0, 240, 255, 0.03);
}

/* CARD EXPAND ANIMATION */
.lb-card {
    cursor: default;
}

.lb-commentary {
    position: relative;
    overflow: hidden;
}

/* PULSING LIVE DOT */
@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}

.pulse-dot {
    animation: pulseDot 1.5s ease-in-out infinite, livePulse 2s ease-in-out infinite;
}

/* HERO GRADIENT BG */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(0, 240, 255, 0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(168, 85, 247, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-glow); }

/* SELECTION */
::selection { background: rgba(0, 240, 255, 0.25); color: var(--text); }
