/* ═══════════════════════════════════════════════
   $CHILLER — Light & Chill Design System
   "Life's good. Just chill." ☀️🧊
   ═══════════════════════════════════════════════ */

:root {
    /* Light & Fresh Colors */
    --bg-primary: #f0f7ff;
    --bg-secondary: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.75);
    --bg-card-hover: rgba(255, 255, 255, 0.95);
    --border: rgba(0, 120, 220, 0.1);
    --border-hover: rgba(0, 120, 220, 0.25);

    --ice-100: #e0f4ff;
    --ice-200: #b0e0ff;
    --ice-300: #4db8ff;
    --ice-400: #0099ff;
    --ice-500: #0077dd;
    --ice-600: #005baa;

    --sky-100: #eef6ff;
    --sky-200: #d6ebff;

    --text-primary: #1a2d4a;
    --text-secondary: #5a7294;
    --text-muted: #8da2be;

    --green: #10b981;
    --green-soft: rgba(16, 185, 129, 0.1);
    --red: #ef4444;
    --red-soft: rgba(239, 68, 68, 0.1);
    --purple: #8b5cf6;
    --purple-soft: rgba(139, 92, 246, 0.1);
    --yellow: #f59e0b;
    --coral: #ff6b6b;
    --mint: #06d6a0;

    --shadow-sm: 0 2px 8px rgba(0, 60, 120, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 60, 120, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 60, 120, 0.1);
    --shadow-glow: 0 8px 40px rgba(0, 140, 255, 0.15);

    /* Typography */
    --font: 'Inter', -apple-system, sans-serif;
    --mono: 'JetBrains Mono', monospace;

    /* Spacing */
    --section-pad: 120px;
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════ Particles ═══════ */
#particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ═══════ Navigation ═══════ */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 16px 24px;
    transition: all 0.3s;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.nav-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-btn {
    background: linear-gradient(135deg, var(--ice-400), #00c6ff) !important;
    color: white !important;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 600 !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: 0.2s;
}

/* ═══════ Hero ═══════ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    z-index: 1;
    background: linear-gradient(180deg, #e8f4ff 0%, var(--bg-primary) 50%, #f0f7ff 100%);
}

.hero-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(0, 180, 255, 0.08) 0%, rgba(139, 92, 246, 0.04) 40%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--ice-500);
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-line-1 {
    display: block;
    color: var(--text-primary);
}

.hero-gradient {
    display: block;
    background: linear-gradient(135deg, #00b4ff, #0066ff, #8b5cf6, #06d6a0);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 5s ease infinite;
}

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

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.stat-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--ice-500);
    font-family: var(--mono);
    letter-spacing: -0.02em;
}

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

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: var(--font);
}

.btn-primary {
    background: linear-gradient(135deg, #0088ff, #00c6ff);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 136, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

.hero-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ═══════ Ticker ═══════ */
.ticker-bar {
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.ticker-track {
    display: flex;
    gap: 48px;
    animation: scroll-ticker 30s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.ticker-item {
    font-family: var(--mono);
    font-size: 0.85rem;
    font-weight: 600;
}

.ticker-item.profit { color: var(--green); }
.ticker-item.loss { color: var(--red); }

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

/* ═══════ Section Headers ═══════ */
section {
    position: relative;
    z-index: 1;
    padding: var(--section-pad) 0;
}

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

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(0, 136, 255, 0.08), rgba(139, 92, 246, 0.06));
    border: 1px solid rgba(0, 136, 255, 0.15);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--ice-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* ═══════ Origin Story ═══════ */
#origin {
    padding: 100px 0 60px;
}

.origin-card {
    max-width: 760px;
    margin: 0 auto;
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 56px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.origin-card::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px;
    height: 4px;
    background: linear-gradient(90deg, #00b4ff, #8b5cf6, #06d6a0, #f59e0b);
    border-radius: 24px 24px 0 0;
}

.origin-emoji {
    font-size: 3rem;
    margin-bottom: 16px;
}

.origin-card h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.origin-story {
    text-align: left;
    max-width: 580px;
    margin: 0 auto;
}

.origin-story p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.origin-story strong { color: var(--text-primary); }
.origin-story em { color: var(--ice-500); font-style: italic; }

.origin-punch {
    text-align: center;
    font-size: 1.3rem !important;
    color: var(--text-primary) !important;
    margin-top: 32px !important;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

/* ═══════ Philosophy ═══════ */
#philosophy {
    padding: 60px 0 var(--section-pad);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.phil-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.phil-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.phil-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
}

.phil-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.phil-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ═══════ Steps ═══════ */
.steps-grid {
    display: flex;
    align-items: stretch;
    gap: 24px;
    justify-content: center;
}

.step-card {
    flex: 1;
    max-width: 320px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

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

.step-card:hover::before { opacity: 1; }
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

.step-card.featured {
    border-color: rgba(0, 136, 255, 0.2);
    background: linear-gradient(180deg, rgba(0, 180, 255, 0.03), white);
}

.step-number {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.step-icon { font-size: 3rem; margin-bottom: 20px; }

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-arrow {
    display: flex;
    align-items: center;
    font-size: 2rem;
    color: var(--text-muted);
}

/* ═══════ Performance ═══════ */
.perf-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
}

.perf-chart-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-weight: 600;
    color: var(--text-primary);
}

.chart-badge {
    background: var(--green-soft);
    color: var(--green);
    padding: 6px 14px;
    border-radius: 8px;
    font-family: var(--mono);
    font-weight: 700;
}

.chart-area {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.perf-stats-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.perf-stat-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: var(--shadow-sm);
}

.psc-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.psc-icon {
    font-size: 1.2rem;
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.psc-icon.green { background: var(--green-soft); color: var(--green); }
.psc-icon.blue { background: rgba(0, 136, 255, 0.08); color: var(--ice-500); }
.psc-icon.cyan { background: rgba(6, 214, 160, 0.08); color: var(--mint); }
.psc-icon.purple { background: var(--purple-soft); color: var(--purple); }

.psc-value {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--mono);
    color: var(--text-primary);
}

.psc-label {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.psc-bar {
    height: 6px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 3px;
    margin-top: 12px;
    overflow: hidden;
}

.psc-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--green), #34d399);
    transition: width 1.5s ease-out;
}

.psc-fill.blue { background: linear-gradient(90deg, var(--ice-500), #00c6ff); }

.psc-tags {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.psc-tags span {
    padding: 4px 12px;
    background: rgba(0, 136, 255, 0.06);
    border: 1px solid rgba(0, 136, 255, 0.12);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--ice-500);
    font-weight: 500;
}

/* ═══════ AI Engine ═══════ */
#ai-engine {
    background: linear-gradient(180deg, var(--bg-primary), #e8f0ff, var(--bg-primary));
}

.engine-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.engine-left h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 16px 0;
    line-height: 1.1;
}

.engine-left p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.engine-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.engine-features li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ef-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.engine-features strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.engine-features span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Terminal — its container */
.engine-right {
    position: relative;
}

/* Terminal — stays dark for contrast */
.terminal {
    background: #0f172a;
    border: 1px solid rgba(100, 180, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }

.terminal-title {
    margin-left: auto;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    font-family: var(--mono);
}

.terminal-body {
    padding: 20px;
    font-family: var(--mono);
    font-size: 0.78rem;
    line-height: 1.8;
    height: 360px;
    overflow: hidden;
    color: #e2e8f0;
}

.term-line {
    opacity: 0;
    animation: fade-in-line 0.3s forwards;
}

.t-time { color: rgba(255,255,255,0.3); }
.t-info { color: #94a3b8; }
.t-success { color: #4ade80; }
.t-warn { color: #fbbf24; }
.t-value { color: #60a5fa; }

@keyframes fade-in-line {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ═══════ Revenue Flow ═══════ */
.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.flow-step {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    min-width: 140px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.flow-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.flow-step.highlight { border-color: rgba(0,136,255,0.25); background: linear-gradient(180deg, rgba(0,180,255,0.04), white); }

.flow-icon { font-size: 2rem; margin-bottom: 8px; }
.flow-label { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.flow-detail { font-size: 0.8rem; color: var(--text-muted); }
.flow-arrow { font-size: 1.5rem; color: var(--ice-400); font-weight: 700; }

.revenue-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.rev-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.rev-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
}

.rev-card.investor::before { background: linear-gradient(90deg, #10b981, #06d6a0); }
.rev-card.team::before { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }

.rev-pct {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--mono);
    line-height: 1;
    margin-bottom: 8px;
}

.rev-card.investor .rev-pct { color: var(--green); }
.rev-card.team .rev-pct { color: var(--purple); }

.rev-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.rev-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.6; margin-bottom: 16px; }

.rev-example {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rev-ex-label { font-size: 0.8rem; color: var(--text-muted); }
.rev-ex-value { font-size: 0.95rem; font-weight: 700; font-family: var(--mono); color: var(--text-primary); }

/* Not a scam */
.not-scam-card {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    background: white;
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    padding: 36px 40px;
    box-shadow: var(--shadow-sm);
}

.ns-left { flex-shrink: 0; text-align: center; }
.ns-emoji { font-size: 3rem; display: block; margin-bottom: 12px; }
.ns-left h3 { font-size: 1.1rem; max-width: 180px; }
.ns-right { flex: 1; display: flex; flex-direction: column; gap: 10px; }

.ns-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.ns-point span { font-size: 1.1rem; flex-shrink: 0; }

/* ═══════ Competitors ═══════ */
#landscape { background: linear-gradient(180deg, var(--bg-primary), #e8f0ff, var(--bg-primary)); }

.comp-tables {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.comp-group h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.comp-table {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comp-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.5fr 0.8fr;
    gap: 12px;
    padding: 14px 24px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    align-items: center;
}

.comp-row:last-child { border-bottom: none; }

.comp-row.header {
    background: var(--bg-primary);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comp-row.ours {
    background: linear-gradient(90deg, rgba(0,180,255,0.04), rgba(6,214,160,0.04));
    font-weight: 600;
    color: var(--text-primary);
}

.comp-row.ours span:first-child { color: var(--ice-500); font-weight: 800; }

/* ═══════ Meme With Meat ═══════ */
#meme-with-meat { padding: 80px 0 var(--section-pad); }

.mwm-card {
    text-align: center;
}

.mwm-header { margin-bottom: 48px; }

.mwm-header h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.mwm-gradient {
    background: linear-gradient(135deg, #00b4ff, #06d6a0, #f59e0b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 4s ease infinite;
}

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

.mwm-col {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.mwm-col:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.mwm-col.chiller {
    border: 2px solid rgba(0,180,255,0.3);
    background: linear-gradient(180deg, rgba(0,180,255,0.04), white, rgba(6,214,160,0.03));
    box-shadow: var(--shadow-md);
    transform: scale(1.04);
}

.mwm-col.chiller:hover { transform: scale(1.06) translateY(-4px); }

.mwm-crown {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: crown-bounce 2s ease-in-out infinite;
}

@keyframes crown-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-6px); }
}

.mwm-emoji { font-size: 2.5rem; margin-bottom: 12px; }

.mwm-col h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 6px; }
.mwm-col > p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }

.mwm-col ul {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.mwm-col ul li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding-left: 8px;
}

.mwm-col.dead ul li { color: var(--text-muted); }

.mwm-verdict {
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 16px;
    border-radius: 10px;
}

.mwm-verdict.bad { background: var(--red-soft); color: var(--red); }
.mwm-verdict.meh { background: rgba(245,158,11,0.1); color: var(--yellow); }
.mwm-verdict.fire { background: linear-gradient(135deg, rgba(0,180,255,0.1), rgba(6,214,160,0.1)); color: var(--ice-500); font-size: 1rem; }

.mwm-quote {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 40px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.mwm-quote::before {
    content: '"';
    position: absolute;
    top: 10px; left: 20px;
    font-size: 4rem;
    color: rgba(0,180,255,0.12);
    font-family: Georgia, serif;
    line-height: 1;
}

.mwm-quote p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.mwm-quote strong { color: var(--text-primary); }
.mwm-quote em { color: var(--ice-500); }

/* Responsive for new sections */
@media (max-width: 900px) {
    .revenue-split { grid-template-columns: 1fr; }
    .not-scam-card { flex-direction: column; }
    .comp-row { grid-template-columns: 1fr 1fr; gap: 6px; font-size: 0.82rem; padding: 12px 16px; }
    .comp-row.header { display: none; }
    .mwm-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
    .mwm-col.chiller { transform: scale(1); }
    .flow-arrow { display: none; }
    .flow-diagram { gap: 10px; }
    .flow-step { min-width: 120px; flex: 1; }
}

@media (max-width: 480px) {
    .flow-diagram { flex-direction: column; }
    .flow-step { min-width: auto; width: 100%; }
}

/* ═══════ Tokenomics ═══════ */
.token-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: center;
}

.token-visual {
    display: flex;
    justify-content: center;
}

.donut-chart {
    position: relative;
    width: 280px; height: 280px;
}

.donut-chart svg { width: 100%; height: 100%; transform: rotate(-90deg); }

.donut-seg { transition: stroke-dasharray 1s ease; }

.donut-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.donut-center span {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--mono);
    color: var(--ice-500);
}

.donut-center small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.token-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.token-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.token-row:hover { border-color: var(--border-hover); transform: translateX(4px); box-shadow: var(--shadow-md); }

.token-color {
    width: 8px;
    height: 44px;
    border-radius: 4px;
    flex-shrink: 0;
}

.token-info { flex: 1; }

.token-info strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.token-info span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.token-pct {
    font-family: var(--mono);
    font-weight: 700;
    color: var(--ice-500);
    font-size: 1.1rem;
}

/* ═══════ Roadmap ═══════ */
.roadmap-track {
    display: flex;
    gap: 32px;
    position: relative;
}

.roadmap-track::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0; right: 0;
    height: 2px;
    background: var(--border);
}

.rm-item {
    flex: 1;
    position: relative;
    padding-top: 48px;
}

.rm-dot {
    position: absolute;
    top: 12px; left: 24px;
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 3px solid var(--text-muted);
    background: var(--bg-primary);
    z-index: 2;
}

.rm-item.active .rm-dot {
    border-color: var(--ice-400);
    background: var(--ice-400);
    box-shadow: 0 0 20px rgba(0, 153, 255, 0.3);
}

.rm-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.rm-phase {
    font-size: 0.8rem;
    color: var(--ice-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.rm-card h3 {
    font-size: 1.4rem;
    margin: 8px 0 16px;
    color: var(--text-primary);
}

.rm-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rm-card li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}

.rm-card li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--ice-400);
    font-size: 0.6rem;
    top: 4px;
}

/* ═══════ FAQ ═══════ */
#faq {
    background: linear-gradient(180deg, var(--bg-primary), #e8f0ff, var(--bg-primary));
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.faq-item:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

.faq-item.open {
    border-color: rgba(0, 136, 255, 0.25);
    box-shadow: 0 4px 24px rgba(0, 136, 255, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    gap: 16px;
}

.faq-question span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ice-500);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: rgba(0, 136, 255, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 24px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 16px;
}

.faq-answer strong {
    color: var(--text-primary);
}

/* ═══════ CTA ═══════ */
#cta { padding-bottom: 80px; }

.cta-card {
    position: relative;
    background: linear-gradient(135deg, #0077dd, #00aaff, #8b5cf6);
    border: none;
    border-radius: 28px;
    padding: 80px 48px;
    text-align: center;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-glow {
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-card h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    color: white;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 32px;
    position: relative;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    position: relative;
    margin-bottom: 40px;
}

.cta-actions .btn-primary {
    background: white;
    color: var(--ice-500);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-actions .btn-primary:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.cta-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

.cta-addresses {
    position: relative;
}

.ca-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ca-value {
    font-family: var(--mono);
    font-size: 0.95rem;
    color: white;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 12px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.2s;
    backdrop-filter: blur(10px);
}

.ca-value:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ═══════ Footer ═══════ */
footer {
    border-top: 1px solid var(--border);
    padding: 48px 0;
    position: relative;
    z-index: 1;
    background: white;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.footer-logo {
    width: 32px; height: 32px;
    border-radius: 8px;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--ice-500); }

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    max-width: 600px;
    text-align: center;
    line-height: 1.5;
}

/* ═══════ Responsive ═══════ */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); }
    .perf-grid { grid-template-columns: 1fr; }
    .engine-card { grid-template-columns: 1fr; }
    .token-grid { grid-template-columns: 1fr; }
    .roadmap-track { flex-direction: column; }
    .philosophy-grid { grid-template-columns: repeat(2, 1fr); }
    .origin-card { padding: 40px 28px; }
    .roadmap-track::before {
        top: 0; bottom: 0;
        left: 20px;
        width: 2px;
        height: 100%;
    }
    .rm-item { padding-top: 0; padding-left: 56px; }
    .rm-dot { left: 12px; top: 32px; }
}

@media (max-width: 480px) {
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .stat-value { font-size: 1.5rem; }
    .hero-actions { flex-direction: column; }
    h1 { font-size: 2.5rem; }
    .cta-card { padding: 48px 24px; }
    .philosophy-grid { grid-template-columns: 1fr; }
}
