/* ========================================
   CSS Variables - Corporate Edition
======================================== */
:root {
    --purple: #9945FF;
    --purple-dark: #7B35D9;
    --green: #14F195;
    --green-dark: #0BC47A;
    --red: #FF4757;
    --black: #000000;
    --dark: #0a0a0a;
    --darker: #050505;
    --white: #FFFFFF;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-800: #1F2937;
    --gray-900: #111827;

    --gradient: linear-gradient(135deg, var(--purple), var(--green));

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --transition: 0.2s ease;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 40px -10px rgba(0,0,0,0.3);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    background-color: var(--darker);
    color: var(--white);
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* ========================================
   Navbar
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', var(--font-main);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.01em;
}

.logo-icon {
    font-size: 24px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-badge {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 4px 8px;
    background: rgba(153, 69, 255, 0.2);
    border: 1px solid rgba(153, 69, 255, 0.3);
    border-radius: 4px;
    color: var(--purple);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-400);
    letter-spacing: 0.02em;
}

.nav-links a:hover {
    color: var(--white);
}

/* ========================================
   Hero - Solana Branded with Animation
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background */
.hero-bg-animation {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.wave-svg {
    position: absolute;
    width: 150%;
    height: 100%;
    left: -25%;
    top: 0;
}

.wave {
    stroke-linecap: round;
    filter: blur(1px);
}

.wave-1 {
    animation: waveFlow1 12s ease-in-out infinite;
}

.wave-2 {
    animation: waveFlow2 15s ease-in-out infinite;
}

.wave-3 {
    animation: waveFlow3 18s ease-in-out infinite;
}

.wave-4 {
    animation: waveFlow4 10s ease-in-out infinite;
}

@keyframes waveFlow1 {
    0%, 100% {
        d: path("M1500,100 Q1200,150 900,120 T300,180 T-100,140");
        opacity: 0.6;
    }
    50% {
        d: path("M1500,140 Q1200,90 900,160 T300,100 T-100,180");
        opacity: 0.8;
    }
}

@keyframes waveFlow2 {
    0%, 100% {
        d: path("M-100,400 Q200,350 500,400 T1100,360 T1500,420");
        opacity: 0.5;
    }
    50% {
        d: path("M-100,360 Q200,420 500,350 T1100,420 T1500,380");
        opacity: 0.7;
    }
}

@keyframes waveFlow3 {
    0%, 100% {
        d: path("M1500,650 Q1100,600 700,680 T100,620 T-100,700");
        opacity: 0.6;
    }
    50% {
        d: path("M1500,700 Q1100,680 700,620 T100,700 T-100,650");
        opacity: 0.9;
    }
}

@keyframes waveFlow4 {
    0%, 100% {
        d: path("M-100,250 Q300,200 600,280 T1200,220 T1500,300");
        opacity: 0.4;
    }
    50% {
        d: path("M-100,280 Q300,300 600,200 T1200,280 T1500,220");
        opacity: 0.6;
    }
}

/* Glow Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-purple {
    width: 500px;
    height: 500px;
    background: rgba(153, 69, 255, 0.25);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-green {
    width: 400px;
    height: 400px;
    background: rgba(20, 241, 149, 0.2);
    bottom: -100px;
    left: -100px;
    animation-delay: -10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.1); }
    50% { transform: translate(-30px, 50px) scale(0.9); }
    75% { transform: translate(30px, 30px) scale(1.05); }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

/* Logo at top */
.hero-logo {
    margin-bottom: 0;
}

.hero-logo img {
    width: 84px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(153, 69, 255, 0.3));
}

/* Center content */
.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--black);
    background: var(--gradient);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.title-main {
    font-family: 'Space Grotesk', var(--font-main);
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 8px;
}

/* Multiplier Hero */
.multiplier-hero {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 4px;
}

.multiplier-hero .mult-number {
    font-size: 72px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'SF Mono', 'Fira Code', monospace;
    line-height: 1;
    letter-spacing: -0.02em;
    filter: drop-shadow(0 0 30px rgba(20, 241, 149, 0.4));
}

.multiplier-hero .mult-x {
    font-size: 40px;
    font-weight: 600;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sol-equal {
    font-size: 15px;
    color: var(--gray-400);
    margin-bottom: 0;
    line-height: 1.5;
}

.sol-equal strong {
    color: var(--green);
    font-weight: 600;
}

/* Stats and Chart Row - Side by Side */
.stats-chart-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 8px;
}

/* Stats - Compact Cards */
.stats-mini {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-mini {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 140px;
    transition: all 0.3s ease;
}

.stat-mini:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.stat-val {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.stat-lbl {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
}

.stat-mini.highlight {
    background: linear-gradient(135deg, rgba(153, 69, 255, 0.1) 0%, rgba(20, 241, 149, 0.1) 100%);
    border-color: rgba(20, 241, 149, 0.3);
}

.stat-mini.highlight .stat-val {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-mini.highlight .stat-lbl {
    color: var(--green);
}

.stat-arrow {
    display: none;
}

/* Price Chart Container */
.price-chart-container {
    width: 420px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    position: relative;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.chart-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.chart-legend {
    display: flex;
    gap: 16px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--gray-400);
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.legend-sol .legend-dot {
    background: transparent;
    border: 2px dashed var(--purple);
}

.legend-csol .legend-dot {
    background: var(--green);
}

#priceChart {
    width: 100% !important;
    height: 180px !important;
}

.chart-tooltip {
    display: none;
    position: absolute;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    pointer-events: none;
    z-index: 100;
    min-width: 180px;
}

.chart-tooltip.active {
    display: block;
}

.tooltip-date {
    font-size: 11px;
    color: var(--gray-400);
    margin-bottom: 8px;
    font-weight: 500;
}

.tooltip-prices {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tooltip-prices span {
    font-size: 12px;
    color: var(--gray-300);
}

.tooltip-prices .sol-price {
    color: var(--purple);
}

.tooltip-prices .csol-price {
    color: var(--green);
}

.tooltip-multiplier {
    font-size: 14px;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero CTA - Transparent with gradient border */
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    background: transparent;
    padding: 16px 40px;
    border-radius: 12px;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--black), var(--black)), var(--gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.3s ease;
}

.hero-cta svg {
    animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

.hero-cta:hover {
    background-image: var(--gradient), var(--gradient);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(153, 69, 255, 0.3);
}

.hero-cta:hover svg {
    animation: none;
}

/* Hero Logo */

/* ========================================
   Sections Common
======================================== */
section {
    padding: 100px 0;
}

.section-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 48px;
}

.section-number {
    font-size: 12px;
    font-weight: 600;
    color: var(--purple);
    letter-spacing: 0.1em;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Hero Responsive */
@media (max-width: 768px) {
    .stats-chart-row {
        flex-direction: column;
        gap: 24px;
    }

    .stats-mini {
        flex-direction: row;
    }

    .price-chart-container {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 60px 20px 40px;
    }

    .title-main {
        font-size: 28px;
    }

    .multiplier-hero .mult-number {
        font-size: 44px;
    }

    .multiplier-hero .mult-x {
        font-size: 24px;
    }

    .sol-equal {
        font-size: 12px;
    }

    .price-chart-container {
        width: 100%;
        max-width: 340px;
        padding: 16px;
    }

    .chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .stats-mini {
        flex-direction: column;
        gap: 12px;
    }

    .stat-mini {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .hero {
        padding: 80px 20px 50px;
    }

    .title-main {
        font-size: 26px;
    }

    .multiplier-hero .mult-number {
        font-size: 36px;
    }

    .floating-tweet {
        max-width: 300px;
    }

    .stats-mini {
        flex-direction: column;
        gap: 12px;
    }

    .stat-mini {
        width: 100%;
    }

    .hero-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   Mission Section
======================================== */
.mission {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.mission-statement .lead-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.6;
}

.mission-statement p {
    color: var(--gray-400);
    line-height: 1.8;
}

.mission-statement strong {
    color: var(--green);
}

.key-findings h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.key-findings ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.key-findings li {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    transition: var(--transition);
}

.key-findings li:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(153, 69, 255, 0.2);
}

.finding-icon {
    font-size: 24px;
    line-height: 1;
}

.key-findings strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.key-findings li p {
    font-size: 13px;
    color: var(--gray-400);
    margin: 0;
}

/* ========================================
   Evidence Section
======================================== */
.evidence {
    background: var(--darker);
}

.incident-report {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 48px;
}

.report-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.report-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    background: var(--red);
    color: var(--white);
    border-radius: 4px;
}

.report-date {
    font-size: 12px;
    font-family: monospace;
    color: var(--gray-500);
}

.report-content {
    padding: 32px;
}

.report-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
}

.meta-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

.incident-quote {
    background: rgba(153, 69, 255, 0.05);
    border-left: 3px solid var(--purple);
    padding: 24px 28px;
    margin: 0 0 24px 0;
    border-radius: 0 8px 8px 0;
}

.incident-quote p {
    font-size: 20px;
    font-style: italic;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.5;
}

.incident-quote footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.incident-quote cite {
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    color: var(--gray-400);
}

.quote-annotation {
    font-size: 12px;
    color: var(--gray-500);
    font-style: italic;
}

.community-response {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(20, 241, 149, 0.05);
    border-radius: 8px;
}

.response-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
}

.response-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--green);
}

.response-note {
    font-size: 12px;
    font-style: italic;
    color: var(--gray-500);
}

/* Tweet Screenshot */
.tweet-screenshot {
    margin: 24px 0;
    text-align: center;
}

.tweet-screenshot a {
    display: inline-block;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tweet-screenshot a:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(153, 69, 255, 0.2);
}

.tweet-screenshot img {
    display: block;
    max-width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.screenshot-caption {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    font-style: italic;
    color: var(--gray-500);
}

.evidence-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--purple);
    padding: 10px 16px;
    background: rgba(153, 69, 255, 0.1);
    border-radius: 6px;
}

.evidence-link:hover {
    background: rgba(153, 69, 255, 0.2);
}

/* Impact Assessment */
.impact-assessment h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.impact-grid {
    display: grid;
    gap: 16px;
}

.impact-card {
    padding: 20px;
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
}

.impact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
}

.impact-header.negative { color: var(--gray-400); }
.impact-header.positive { color: var(--gray-400); }

.impact-change {
    font-weight: 700;
    font-family: monospace;
}

.impact-header.negative .impact-change { color: var(--red); }
.impact-header.positive .impact-change { color: var(--green); }

.impact-bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.impact-fill {
    height: 100%;
    width: 0;
    border-radius: 3px;
    animation: fillBar 1.5s ease-out forwards;
}

.impact-fill.negative { background: var(--red); }
.impact-fill.positive { background: var(--gradient); }

@keyframes fillBar {
    to { width: var(--fill-width); }
}

/* ========================================
   Participate Section
======================================== */
.participate {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.contract-section {
    max-width: 600px;
    margin: 0 auto;
}

.contract-card {
    background: var(--darker);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}

.contract-header {
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contract-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contract-header p {
    font-size: 13px;
    color: var(--gray-500);
}

.contract-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.02);
    cursor: pointer;
    transition: var(--transition);
}

.contract-box:hover {
    background: rgba(255,255,255,0.04);
}

.contract-address {
    flex: 1;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 13px;
    color: var(--white);
    word-break: break-all;
}

.copy-btn {
    padding: 8px 16px;
    background: var(--gradient);
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.copy-btn:hover {
    transform: scale(1.02);
}

.copy-btn .copied-text {
    display: none;
}

.copy-btn.copied .copy-text {
    display: none;
}

.copy-btn.copied .copied-text {
    display: inline;
}

.copy-btn.copied {
    background: var(--green);
}

.contract-footer {
    padding: 16px 24px;
}

.verification-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.v-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-400);
    padding: 6px 10px;
    background: rgba(255,255,255,0.03);
    border-radius: 4px;
}

.v-badge svg {
    color: var(--green);
}

.disclaimer-box {
    padding: 16px 20px;
    background: rgba(255, 71, 87, 0.05);
    border: 1px solid rgba(255, 71, 87, 0.1);
    border-radius: 8px;
    font-size: 11px;
    color: var(--gray-400);
    line-height: 1.6;
}

.disclaimer-box strong {
    color: var(--gray-200);
}

/* ========================================
   Closing Statement
======================================== */
.closing-statement {
    padding: 80px 0;
    background: var(--darker);
    text-align: center;
}

.final-quote {
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
    border: none;
}

.final-quote p {
    font-size: 24px;
    font-weight: 500;
    font-style: italic;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.5;
}

.final-quote footer {
    font-size: 14px;
    color: var(--gray-500);
}

/* ========================================
   Footer
======================================== */
.footer {
    padding: 60px 0 40px;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', var(--font-main);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--gray-500);
    max-width: 300px;
}

.footer-links h4 {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-400);
}

.social-links a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.footer-fine-print {
    font-size: 11px;
    color: var(--gray-600);
}

/* ========================================
   Animations
======================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========================================
   Responsive
======================================== */
@media (max-width: 768px) {
    .nav-links { display: none; }

    .hero { padding: 100px 24px 60px; }
    .hero-stats { gap: 24px; }
    .stat-number { font-size: 36px; }
    .stat-divider { display: none; }

    section { padding: 60px 0; }

    .mission-grid { grid-template-columns: 1fr; gap: 32px; }
    .report-meta { grid-template-columns: 1fr; gap: 16px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .contract-box { flex-direction: column; text-align: center; }
    .contract-address { font-size: 11px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 32px; }
    .incident-quote p { font-size: 16px; }
    .final-quote p { font-size: 18px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
