/* ========================================
   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);
}

.legend-usdc .legend-dot {
    background: transparent;
    border: 2px dashed #22d3ee;
}

/* ========================================
   The Solana Thesis
======================================== */
.thesis {
    padding: 80px 0 60px;
    position: relative;
}

.thesis-intro {
    max-width: 740px;
    margin: 8px auto 56px;
}

.thesis-hook {
    font-size: 20px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    border-left: 3px solid #14F195;
    padding: 6px 0 6px 22px;
    font-weight: 500;
}

.thesis-point {
    max-width: 760px;
    margin: 0 auto 44px;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    align-items: start;
}

.thesis-num {
    font-family: 'Space Grotesk', 'Inter', monospace;
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(135deg, #14F195, #9945FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    padding-top: 4px;
    letter-spacing: -0.02em;
}

.thesis-body h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.thesis-body p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 14px;
}

.thesis-body p:last-child { margin-bottom: 0; }

.thesis-body p strong { color: #fff; font-weight: 700; }
.thesis-body p em { font-style: italic; color: rgba(255, 255, 255, 0.95); }

.thesis-roadmap {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
}

.thesis-roadmap li {
    padding: 12px 16px;
    background: rgba(20, 241, 149, 0.05);
    border-left: 3px solid #14F195;
    border-radius: 0 8px 8px 0;
    margin-bottom: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.thesis-roadmap li strong { color: #fff; }

.thesis-kicker {
    max-width: 720px;
    margin: 56px auto 0;
    text-align: center;
    padding: 36px 24px 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.thesis-kicker p {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(135deg, #14F195, #9945FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
}

.thesis-kicker-sub {
    font-size: 14px !important;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.5) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.5) !important;
    background: none !important;
    font-weight: 500 !important;
}

@media (max-width: 600px) {
    .thesis { padding: 56px 0 40px; }
    .thesis-intro { margin: 4px auto 40px; }
    .thesis-hook { font-size: 17px; padding: 4px 0 4px 14px; }
    .thesis-point {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 36px;
    }
    .thesis-num { font-size: 30px; padding-top: 0; }
    .thesis-body h3 { font-size: 19px; margin-bottom: 12px; }
    .thesis-body p { font-size: 15px; line-height: 1.65; }
    .thesis-roadmap li { font-size: 14px; padding: 10px 14px; }
    .thesis-kicker { padding: 28px 14px 4px; margin-top: 40px; }
    .thesis-kicker p { font-size: 21px; }
}

/* ========================================
   Bag Calculator
======================================== */
.calculator-section {
    padding: 60px 0 40px;
    position: relative;
}

.calc-card {
    max-width: 640px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(20, 241, 149, 0.04), rgba(153, 69, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
}

.calc-header { text-align: center; margin-bottom: 22px; }

.calc-header h2 {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, #14F195, #9945FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.calc-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.calc-input-row {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 4px 16px 4px 4px;
    margin-bottom: 18px;
    transition: border-color 0.2s ease;
}

.calc-input-row:focus-within {
    border-color: rgba(20, 241, 149, 0.6);
}

#calcAmount {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: inherit;
    font-size: 24px;
    font-weight: 700;
    padding: 16px 14px;
    min-width: 0;
    width: 100%;
}

#calcAmount::placeholder { color: rgba(255, 255, 255, 0.25); }

.calc-input-suffix {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #14F195;
    flex-shrink: 0;
}

.calc-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.calc-result {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.calc-result.highlight {
    background: rgba(153, 69, 255, 0.08);
    border-color: rgba(153, 69, 255, 0.3);
}

.calc-result-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.3;
}

.calc-result-label em {
    text-transform: none;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.45);
    font-style: normal;
    font-size: 10px;
}

.calc-result-value {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    word-break: break-all;
    line-height: 1.1;
}

.calc-result.highlight .calc-result-value {
    background: linear-gradient(135deg, #14F195, #9945FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calc-disclaimer {
    margin-top: 18px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
}

@media (max-width: 600px) {
    .calculator-section { padding: 40px 0 20px; }
    .calc-card { padding: 22px 18px; border-radius: 16px; }
    .calc-header h2 { font-size: 22px; }
    .calc-sub { font-size: 13px; }
    #calcAmount { font-size: 20px; padding: 14px 10px; }
    .calc-results { grid-template-columns: 1fr; gap: 10px; }
    .calc-result-value { font-size: 20px; }
}

/* ========================================
   Hero CA pill — visible without scrolling
======================================== */
.hero-ca {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 10px 14px;
    background: rgba(20, 241, 149, 0.06);
    border: 1px solid rgba(20, 241, 149, 0.35);
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-ca:hover {
    background: rgba(20, 241, 149, 0.12);
    border-color: rgba(20, 241, 149, 0.6);
}

.hero-ca:active { transform: scale(0.98); }

.hero-ca-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #14F195;
    flex-shrink: 0;
}

.hero-ca-address {
    font-family: 'Space Grotesk', 'Inter', monospace;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    word-break: break-all;
    line-height: 1.3;
    text-align: center;
}

.hero-ca-copy {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: background 0.15s ease;
    flex-shrink: 0;
}

.hero-ca-copy:hover { background: rgba(255, 255, 255, 0.15); }

.hero-ca-copy-default { display: inline-flex; align-items: center; gap: 5px; }
.hero-ca-copy-done { display: none; color: #14F195; }

.hero-ca.copied .hero-ca-copy-default { display: none; }
.hero-ca.copied .hero-ca-copy-done { display: inline-flex; }

@media (max-width: 480px) {
    .hero-ca {
        flex-direction: column;
        gap: 8px;
        padding: 12px;
        width: 100%;
    }
    .hero-ca-address { font-size: 11px; }
    .hero-ca-copy { width: 100%; justify-content: center; padding: 10px; }
}

#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; }
}

/* ========================================
   Mobile polish — most users are on phones
======================================== */
@media (max-width: 768px) {
    .container { padding: 0 20px; }

    .impact-grid {
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    .chart-legend {
        flex-wrap: wrap;
        gap: 8px 14px;
        font-size: 11px;
    }

    .legend-item { font-size: 11px; }

    .hero-logo img { max-width: 120px; }

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

    .v-badge { font-size: 11px; padding: 6px 10px; }

    .copy-btn {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero { padding: 56px 16px 36px !important; }
    .hero-content { padding: 0; }

    .title-main { font-size: 30px !important; line-height: 1.15; }
    .hero-eyebrow { font-size: 11px; letter-spacing: 0.2em; }

    .multiplier-hero .mult-number { font-size: 56px !important; }
    .multiplier-hero .mult-x { font-size: 28px !important; }

    .sol-equal { font-size: 13px !important; line-height: 1.5; }
    .sol-equal strong { display: inline-block; }

    .stats-chart-row { gap: 16px !important; }
    .stats-mini { flex-direction: row !important; gap: 8px !important; }
    .stat-mini { padding: 12px 10px; flex: 1; }
    .stat-mini .stat-val { font-size: 18px; }
    .stat-mini .stat-lbl { font-size: 10px; }

    .price-chart-container {
        max-width: 100% !important;
        padding: 12px !important;
    }

    #priceChart { height: 200px !important; }

    .chart-title { font-size: 13px; }

    .hero-cta {
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
        justify-content: center;
    }

    section { padding: 48px 0 !important; }

    .section-header h2 { font-size: 24px; }
    .section-number { font-size: 12px; }

    .lead-text { font-size: 16px !important; line-height: 1.55; }

    .key-findings h3 { font-size: 18px; }
    .key-findings li { gap: 10px; }
    .finding-icon { font-size: 22px; }

    .report-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .report-badge { font-size: 10px; }

    .tweet-screenshot .screenshot-caption {
        font-size: 14px !important;
        padding: 1.25rem 0.75rem !important;
    }

    .impact-card { padding: 14px; }
    .impact-header { font-size: 13px; }
    .impact-change { font-size: 13px; }

    .contract-header h3 { font-size: 18px; }
    .contract-address { font-size: 10px !important; word-break: break-all; }

    .disclaimer-box { font-size: 12px; line-height: 1.5; }

    .final-quote p { font-size: 17px !important; line-height: 1.4; }

    .footer-bottom { text-align: center; font-size: 11px; }
    .footer-fine-print { font-size: 10px; }

    .social-links { flex-direction: column; gap: 10px; }
    .social-links a {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }
}

/* Tap targets — anything clickable should be at least 44px high on mobile */
@media (hover: none) and (pointer: coarse) {
    .hero-cta,
    .copy-btn,
    .contract-box,
    .social-links a,
    .evidence-link {
        min-height: 44px;
    }
}

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