/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: #0a0a0a; color: #e8e8e8;
    overflow-x: hidden; line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
    font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 3px;
    color: #4ade80; text-transform: uppercase; margin-bottom: 16px; display: block;
}
.section-label.light { color: #4ade80; }
.section-title {
    font-family: 'Bowlby One', Impact, sans-serif; font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 400; line-height: 1.1; margin-bottom: 20px; text-transform: uppercase;
}
.green-italic { color: #4ade80; font-style: italic; }
.orange-accent { color: #ff6b35; font-style: italic; }
.orange-accent-dark { color: #ff6b35; font-style: italic; }

/* ========== ANIMATED COCKROACH CURSOR ========== */
.cockroach-cursor {
    position: fixed; font-size: 28px; pointer-events: none; z-index: 9999;
    transition: transform 0.1s; filter: drop-shadow(0 0 8px rgba(74,222,128,0.5));
    display: none;
}
@media (hover: hover) { .cockroach-cursor { display: block; } }

.floating-cockroaches { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.float-roach {
    position: absolute; font-size: 20px; opacity: 0.08;
    animation: floatRoach 20s linear infinite;
}
@keyframes floatRoach {
    0% { transform: translateY(110vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.08; }
    90% { opacity: 0.08; }
    100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10,10,10,0.85); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s;
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { font-size: 28px; animation: roachWiggle 2s ease-in-out infinite; }
@keyframes roachWiggle {
    0%,100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-family: 'Bowlby One', Impact, sans-serif; font-size: 14px; font-weight: 400; letter-spacing: 2px; }
.brand-subtitle { font-size: 10px; color: #888; letter-spacing: 1px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
    font-size: 13px; font-weight: 500; letter-spacing: 0.5px; color: #aaa;
    transition: color 0.3s; position: relative;
}
.nav-links a:hover { color: #fff; }
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: #4ade80; transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    font-size: 13px; font-weight: 600; padding: 10px 24px;
    background: #4ade80; color: #0a0a0a; border-radius: 6px;
    transition: all 0.3s; letter-spacing: 0.5px;
}
.nav-cta:hover { background: #22c55e; transform: translateY(-1px); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span {
    display: block; width: 24px; height: 2px; background: #fff;
    margin: 5px 0; transition: all 0.3s;
}

/* ========== HERO ========== */
.hero { padding-top: 72px; position: relative; overflow: hidden; }
.ticker {
    background: #4ade80; color: #0a0a0a; padding: 10px 0;
    overflow: hidden; white-space: nowrap;
}
.ticker-content {
    display: inline-flex; gap: 48px;
    animation: tickerScroll 30s linear infinite;
    font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
}
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.hero-container {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    padding: 80px 24px; max-width: 1200px; margin: 0 auto; align-items: center;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    color: #4ade80; letter-spacing: 2px; margin-bottom: 24px;
    background: rgba(74,222,128,0.08); padding: 8px 16px; border-radius: 4px;
    border: 1px solid rgba(74,222,128,0.15);
}
.badge-dot { animation: blink 1.5s ease-in-out infinite; font-size: 8px; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title {
    font-family: 'Bowlby One', Impact, sans-serif; font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400; line-height: 1.05; margin-bottom: 24px; text-transform: uppercase;
}
.title-line { display: block; color: #fff; }
.title-accent {
    display: inline; color: #4ade80; font-style: italic;
    text-decoration: underline; text-decoration-color: rgba(74,222,128,0.3);
    text-underline-offset: 6px;
}
.title-italic { display: block; color: #ff6b35; font-style: italic; }
.hero-desc { font-size: 17px; color: #999; max-width: 500px; margin-bottom: 32px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-bottom: 48px; }

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; border: none; cursor: pointer;
    transition: all 0.3s; font-family: 'Inter', sans-serif;
}
.btn-primary {
    background: #4ade80; color: #0a0a0a; padding: 14px 28px; border-radius: 8px;
}
.btn-primary:hover { background: #22c55e; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(74,222,128,0.25); }
.btn-link { color: #aaa; font-size: 14px; font-weight: 500; border-bottom: 1px solid #555; padding-bottom: 2px; }
.btn-link:hover { color: #fff; border-color: #fff; }
.btn-full { width: 100%; justify-content: center; }
.arrow { font-size: 18px; transition: transform 0.3s; }
.btn:hover .arrow { transform: translateX(4px); }

.hero-stats {
    display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
    padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-number {
    font-family: 'Bowlby One', Impact, sans-serif; font-size: 28px; font-weight: 400;
    color: #fff; display: block;
}
.stat-label {
    font-family: 'JetBrains Mono', monospace; font-size: 10px;
    color: #666; letter-spacing: 1.5px;
}
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* Hero Poster */
.hero-poster { display: flex; justify-content: center; }
.poster-card {
    background: #151515; border: 1px solid rgba(255,255,255,0.08); border-radius: 16px;
    overflow: hidden; max-width: 400px; width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5); position: relative;
}
.poster-image {
    height: 300px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    position: relative; overflow: hidden;
}
.poster-cockroach { font-size: 100px; animation: roachWiggle 3s ease-in-out infinite; position: relative; z-index: 2; }
.poster-crowd {
    position: absolute; bottom: 20px; display: flex; gap: 4px; font-size: 24px;
    opacity: 0.6; animation: crowdWave 4s ease-in-out infinite;
}
@keyframes crowdWave {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.poster-quote {
    padding: 24px; font-size: 16px; font-style: italic; color: #ccc;
    text-align: center; border-top: 1px solid rgba(255,255,255,0.08);
    line-height: 1.6;
}

/* Marquee */
.marquee {
    background: #111; border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 16px 0; overflow: hidden;
}
.marquee-content {
    display: inline-flex; white-space: nowrap;
    animation: tickerScroll 25s linear infinite;
    font-family: 'Bowlby One', Impact, sans-serif; font-size: 20px; color: #333;
    text-transform: uppercase; letter-spacing: 4px;
}

/* ========== VISION ========== */
.vision { padding: 100px 0; position: relative; }
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.vision-text { font-size: 17px; color: #999; line-height: 1.8; margin-bottom: 32px; }
.mission-card {
    background: rgba(74,222,128,0.05); border: 1px solid rgba(74,222,128,0.15);
    border-radius: 12px; padding: 28px;
}
.mission-card h3 {
    font-family: 'Bowlby One', Impact, sans-serif; font-size: 18px; color: #4ade80;
    margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px;
}
.mission-card p { font-size: 15px; color: #aaa; line-height: 1.7; }

.vision-poster { display: flex; justify-content: center; }
.poster-frame {
    background: #151515; border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; overflow: hidden; width: 100%; max-width: 420px;
}
.rally-scene {
    height: 280px; display: flex; flex-direction: column; align-items: center;
    justify-content: center; background: linear-gradient(135deg, #1a1a1a, #222);
    position: relative;
}
.podium-cockroach { font-size: 60px; animation: roachWiggle 2s ease-in-out infinite; }
.rally-crowd { font-size: 20px; margin-top: 16px; letter-spacing: 4px; opacity: 0.5; }
.rally-signs { display: flex; gap: 20px; font-size: 24px; margin-top: 12px; }
.poster-date {
    padding: 16px; text-align: center; font-family: 'JetBrains Mono', monospace;
    font-size: 12px; color: #555; letter-spacing: 3px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* ========== MANIFESTO ========== */
.manifesto { padding: 100px 0; background: #111; }
.manifesto-subtitle { font-size: 17px; color: #888; margin-bottom: 48px; max-width: 500px; }
.demands-list { display: flex; flex-direction: column; gap: 2px; }
.demand-item {
    display: flex; align-items: flex-start; gap: 32px; padding: 32px;
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px; transition: all 0.4s; cursor: default;
}
.demand-item:hover {
    background: rgba(255,107,53,0.05); border-color: rgba(255,107,53,0.2);
    transform: translateX(8px);
}
.demand-number {
    font-family: 'Bowlby One', Impact, sans-serif; font-size: 36px; font-weight: 400;
    color: #ff6b35; min-width: 60px; line-height: 1;
}
.demand-text { font-size: 16px; color: #bbb; line-height: 1.7; }

/* ========== ELIGIBILITY ========== */
.eligibility { padding: 100px 0; }
.eligibility-subtitle { font-size: 17px; color: #888; margin-bottom: 48px; }
.requirements-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 48px; }
.req-card {
    background: #151515; border: 1px solid rgba(255,255,255,0.06); border-radius: 12px;
    padding: 28px; transition: all 0.4s;
}
.req-card:hover { border-color: rgba(74,222,128,0.3); transform: translateY(-4px); }
.req-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.req-number {
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    color: #555; letter-spacing: 2px;
}
.req-check {
    width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
    background: rgba(74,222,128,0.1); color: #4ade80; border-radius: 50%;
    font-size: 14px; font-weight: 700;
}
.req-title {
    font-family: 'Bowlby One', Impact, sans-serif; font-size: 22px; font-weight: 400;
    margin-bottom: 8px; text-transform: uppercase;
}
.req-desc { font-size: 14px; color: #888; line-height: 1.6; }
.join-cta { text-align: center; }
.join-note { font-size: 13px; color: #666; margin-top: 16px; max-width: 500px; margin-inline: auto; }

/* ========== SWARM MAP ========== */
.swarm-map { padding: 100px 0; background: #111; }
.map-subtitle { font-size: 17px; color: #888; margin-bottom: 32px; max-width: 550px; }
.map-stats-bar {
    display: flex; gap: 48px; margin-bottom: 32px; padding: 24px;
    background: rgba(255,107,53,0.05); border: 1px solid rgba(255,107,53,0.15);
    border-radius: 12px;
}
.map-stat-number {
    font-family: 'Bowlby One', Impact, sans-serif; font-size: 32px; font-weight: 400;
    color: #ff6b35; display: block;
}
.map-stat-label {
    font-family: 'JetBrains Mono', monospace; font-size: 10px;
    color: #666; letter-spacing: 1.5px;
}
.map-wrapper { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.the-map { height: 500px; width: 100%; background: #0a0a0a; }
.map-overlay-badge {
    position: absolute; top: 16px; right: 16px; z-index: 999;
    background: rgba(10,10,10,0.9); backdrop-filter: blur(10px);
    padding: 8px 16px; border-radius: 8px; font-size: 12px;
    font-family: 'JetBrains Mono', monospace; color: #4ade80;
    border: 1px solid rgba(74,222,128,0.2);
    display: flex; align-items: center; gap: 8px;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.7; } }
.map-disclaimer {
    font-size: 12px; color: #555; margin-top: 16px; text-align: center;
    font-family: 'JetBrains Mono', monospace; letter-spacing: 0.5px;
}

/* ========== CONTACT ========== */
.contact { padding: 0 0 100px; }
.contact-banner {
    background: #ff6b35; padding: 14px 0; overflow: hidden; margin-bottom: 80px;
}
.banner-content {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    font-family: 'Bowlby One', Impact, sans-serif; font-size: 18px; font-weight: 400;
    color: #0a0a0a; text-transform: uppercase; letter-spacing: 4px;
}
.banner-cockroach { font-size: 24px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-desc { font-size: 16px; color: #888; margin-bottom: 32px; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; flex-direction: column; gap: 4px; }
.detail-label {
    font-family: 'JetBrains Mono', monospace; font-size: 11px;
    color: #555; letter-spacing: 2px; text-transform: uppercase;
}
.contact-detail a, .contact-detail span { font-size: 15px; color: #ccc; }
.contact-detail a:hover { color: #4ade80; }

.contact-form {
    background: #151515; border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px; padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 12px; font-weight: 600; color: #888;
    margin-bottom: 8px; letter-spacing: 0.5px; text-transform: uppercase;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; background: #0a0a0a; border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px; color: #fff; font-size: 14px; font-family: 'Inter', sans-serif;
    transition: border-color 0.3s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #4ade80;
}
.form-group select { cursor: pointer; appearance: none; }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ========== FOOTER ========== */
.footer { background: #080808; padding: 60px 0 32px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; margin-bottom: 48px; }
.footer-logo { font-size: 40px; margin-bottom: 16px; }
.footer-tagline { font-size: 14px; color: #666; line-height: 1.6; max-width: 300px; }
.footer-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 {
    font-family: 'Bowlby One', Impact, sans-serif; font-size: 14px; font-weight: 400;
    color: #888; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.footer-col a {
    display: block; font-size: 14px; color: #555; margin-bottom: 10px;
    transition: color 0.3s;
}
.footer-col a:hover { color: #4ade80; }
.footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05);
    flex-wrap: wrap; gap: 16px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12px; color: #444; transition: color 0.3s; }
.footer-bottom-links a:hover { color: #fff; }
.footer-satire-badge {
    background: rgba(255,107,53,0.1); border: 1px solid rgba(255,107,53,0.2);
    padding: 4px 12px; border-radius: 4px;
}
.footer-satire-badge span {
    font-family: 'JetBrains Mono', monospace; font-size: 10px;
    color: #ff6b35; letter-spacing: 1px;
}
.footer-copyright { font-size: 12px; color: #333; width: 100%; text-align: center; margin-top: 8px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: block; }
    .nav-links.active {
        display: flex; flex-direction: column; position: absolute;
        top: 72px; left: 0; right: 0; background: rgba(10,10,10,0.98);
        padding: 24px; gap: 16px; border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .hero-container { grid-template-columns: 1fr; padding: 40px 24px; }
    .hero-poster { order: -1; }
    .poster-card { max-width: 100%; }
    .poster-image { height: 200px; }
    .poster-cockroach { font-size: 60px; }
    .hero-stats { gap: 16px; }
    .stat-divider { display: none; }
    .vision-grid { grid-template-columns: 1fr; }
    .requirements-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
    .map-stats-bar { flex-direction: column; gap: 20px; }
    .the-map { height: 350px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; }
}

/* Leaflet custom dark theme overrides */
.leaflet-container { background: #0a0a0a !important; }
.leaflet-control-zoom a { background: #1a1a1a !important; color: #fff !important; border-color: #333 !important; }
.leaflet-popup-content-wrapper { background: #1a1a1a !important; color: #e8e8e8 !important; border-radius: 12px !important; }
.leaflet-popup-tip { background: #1a1a1a !important; }
.leaflet-popup-close-button { color: #888 !important; }
