/* ==========================================
   ALPHAPESSIMIST — style.css
   Mobile-first, fully responsive
   ========================================== */

/* --- Design Tokens --- */
:root {
    --bg: #07070b;
    --bg-2: #0d0d18;
    --neon-green: #00ff88;
    --neon-purple: #b900ff;
    --neon-cyan: #00f0ff;
    --neon-pink: #ff2d78;
    --text: #e0e0e0;
    --text-muted: #778;
    --glass: rgba(13, 13, 24, 0.7);
    --glass-border: rgba(255,255,255,0.07);
    --radius: 16px;
    --radius-sm: 8px;
    --shadow: 0 8px 32px rgba(0,0,0,0.6);
    --nav-h: 70px;
    --bottom-nav-h: 64px;
    --transition: 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    /* Space for bottom nav on mobile */
    padding-bottom: var(--bottom-nav-h);
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--neon-purple); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--neon-green); }

/* ==========================================
   BACKGROUND
   ========================================== */
.matrix-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    opacity: 0.12;
    pointer-events: none;
}
.bg-glow {
    position: fixed;
    width: 500px; height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -2;
    opacity: 0.25;
    pointer-events: none;
}
.bg-glow-1 { top: -150px; left: -150px; background: var(--neon-purple); animation: bgFloat 20s ease-in-out infinite alternate; }
.bg-glow-2 { bottom: -150px; right: -150px; background: var(--neon-cyan); animation: bgFloat 16s ease-in-out infinite alternate-reverse; }
@keyframes bgFloat {
    from { transform: translate(0,0); }
    to { transform: translate(80px, 60px); }
}

/* ==========================================
   BOOT LOADER
   ========================================== */
.boot-loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}
.boot-loader.fade-out { opacity: 0; visibility: hidden; }

.boot-terminal {
    font-family: 'Fira Code', monospace;
    color: var(--neon-green);
    width: min(90vw, 600px);
    text-shadow: 0 0 8px var(--neon-green);
}
.boot-logo {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
}
#boot-text {
    font-size: clamp(0.75rem, 2vw, 0.95rem);
    line-height: 2;
    min-height: 10em;
    opacity: 0.9;
}
.boot-bar-wrap {
    margin-top: 1.5rem;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}
.boot-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* ==========================================
   GLASSMORPHISM
   ========================================== */
.glass-panel {
    background: var(--glass);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.glow-border { position: relative; }
.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius) + 2px);
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan), var(--neon-green));
    z-index: -1;
    opacity: 0.5;
    filter: blur(8px);
    transition: opacity 0.4s, filter 0.4s;
}
.glow-border:hover::before { opacity: 0.9; filter: blur(14px); }

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
    background: rgba(7,7,11,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 200;
    transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.6); }

.logo { text-decoration: none; }
.gradient-text {
    background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-size: 1.6rem;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 20px);
}
.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--neon-green); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 300;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    padding: 12px 26px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-block;
    border: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--neon-green);
    color: #000;
    box-shadow: 0 0 15px rgba(0,255,136,0.35);
}
.btn-primary:hover { background: #00ffaa; box-shadow: 0 0 28px rgba(0,255,136,0.8); transform: translateY(-2px); }
.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--glass-border);
}
.btn-ghost:hover { background: rgba(0,255,136,0.08); border-color: var(--neon-green); color: var(--neon-green); transform: translateY(-2px); }
.nav-cta { padding: 8px 18px; font-size: 0.85rem; }
.pulse-btn { animation: pulse 2.5s infinite; }
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 15px rgba(0,255,136,0.35); }
    50% { box-shadow: 0 0 35px rgba(0,255,136,0.8); }
}

/* ==========================================
   PAGE / SECTION BASE
   ========================================== */
.page {
    min-height: 100vh;
    padding: clamp(80px, 12vh, 120px) clamp(1rem, 6vw, 8%) clamp(60px, 8vh, 100px);
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 4vw, 40px) 5%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 20px;
}
.section-divider::before, .section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}
.divider-label {
    font-family: 'Fira Code', monospace;
    font-size: 0.75rem;
    color: var(--neon-purple);
    letter-spacing: 3px;
    white-space: nowrap;
}

.page-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 70px);
}
.section-tag {
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
    color: var(--neon-cyan);
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 60%, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-lead {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ==========================================
   HERO
   ========================================== */
.page-hero {
    padding-top: calc(var(--nav-h) + 40px);
    min-height: 100svh;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 80px);
    align-items: center;
    flex: 1;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0,255,136,0.08);
    border: 1px solid rgba(0,255,136,0.3);
    color: var(--neon-green);
    border-radius: 100px;
    font-family: 'Fira Code', monospace;
    font-size: 0.8rem;
    margin-bottom: 24px;
    letter-spacing: 1px;
}
.badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 0 0 8px var(--neon-green);
    animation: blinkDot 1.5s infinite;
}
@keyframes blinkDot { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

h1.glitch {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 8px;
    position: relative;
}
.hero-ticker {
    font-family: 'Fira Code', monospace;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    margin-bottom: 20px;
    letter-spacing: 3px;
}
.hero-sub {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.8;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.h-stat {
    display: flex;
    flex-direction: column;
}
.h-val {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--neon-green);
    font-family: 'Fira Code', monospace;
}
.h-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}
.hero-avatar-wrap {
    width: min(340px, 60vw);
    height: min(340px, 60vw);
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
}
.hero-avatar { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.hero-avatar-wrap:hover .hero-avatar { transform: scale(1.07); }

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,0.12);
    animation: orbitSpin 20s linear infinite;
}
.ring-1 { width: min(420px, 75vw); height: min(420px, 75vw); }
.ring-2 { width: min(520px, 90vw); height: min(520px, 90vw); animation-duration: 30s; animation-direction: reverse; }
@keyframes orbitSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.orbit-tag {
    position: absolute;
    padding: 6px 14px;
    border-radius: 100px;
    font-family: 'Fira Code', monospace;
    font-size: 0.75rem;
    white-space: nowrap;
    color: var(--neon-cyan);
    border-color: rgba(0,240,255,0.2);
    animation: floatTag 6s ease-in-out infinite alternate;
    z-index: 3;
}
.tag-1 { top: 10%; left: 0; }
.tag-2 { bottom: 10%; left: 0; animation-delay: -2s; }
.tag-3 { top: 20%; right: -10%; animation-delay: -4s; }
@keyframes floatTag { from { transform: translateY(0); } to { transform: translateY(-12px); } }

.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeUpDown 2s ease-in-out infinite;
}
.scroll-arrow {
    width: 20px; height: 20px;
    border-right: 2px solid var(--neon-green);
    border-bottom: 2px solid var(--neon-green);
    transform: rotate(45deg);
}
@keyframes fadeUpDown {
    0%, 100% { opacity: 0.4; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(6px); }
}

/* ==========================================
   ABOUT / LORE
   ========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.about-lore {
    padding: clamp(24px, 4vw, 40px);
}
.about-lore h3 {
    font-size: 1.3rem;
    color: var(--neon-cyan);
    margin-bottom: 16px;
    font-family: 'Fira Code', monospace;
}
.about-lore p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 1rem;
}
.about-lore strong { color: var(--neon-green); }
.about-lore code { color: var(--neon-purple); font-family: 'Fira Code', monospace; }
.lore-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--text-muted);
}
.lore-list li::before { content: '▸ '; color: var(--neon-green); }

.about-stats-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.a-stat {
    padding: 24px 16px;
    text-align: center;
}
.a-stat-icon { font-size: 2rem; margin-bottom: 12px; }
.a-stat-val {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--neon-green);
    font-family: 'Fira Code', monospace;
}
.a-stat-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==========================================
   FEATURES
   ========================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    padding: clamp(24px, 3vw, 36px);
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: transform 0.3s ease;
}
.feature-card:hover { transform: translateY(-6px); }
.feat-num {
    font-family: 'Fira Code', monospace;
    font-size: 0.8rem;
    color: var(--neon-purple);
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.feat-icon { font-size: 2.5rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.3rem; color: var(--text); margin-bottom: 12px; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }
.feat-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    background: rgba(0,240,255,0.08);
    color: var(--neon-cyan);
    border: 1px solid rgba(0,240,255,0.2);
    font-family: 'Fira Code', monospace;
}

/* ==========================================
   LIVE FEED
   ========================================== */
.feed-wrap { max-width: 900px; margin: 0 auto; width: 100%; }
.feed-header-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
    color: var(--neon-green);
}
.live-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
    animation: blinkDot 1.5s infinite;
}
.feed-note { margin-left: auto; color: var(--text-muted); font-size: 0.75rem; }
.feed-container {
    padding: 24px;
    max-height: 520px;
    overflow-y: auto;
}
.feed-container::-webkit-scrollbar { width: 4px; }
.loading-feed {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--neon-cyan);
    font-family: 'Fira Code', monospace;
    padding: 60px 20px;
}
.loading-spinner {
    width: 20px; height: 20px;
    border: 2px solid rgba(0,240,255,0.2);
    border-top-color: var(--neon-cyan);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.tweet-item {
    padding: 18px 20px;
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
    background: rgba(0,0,0,0.4);
    border-left: 3px solid var(--neon-purple);
    transition: all 0.25s ease;
}
.tweet-item:hover { background: rgba(0,0,0,0.6); border-left-color: var(--neon-green); transform: translateX(4px); }
.tweet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.tweet-author { font-family: 'Fira Code', monospace; font-size: 0.85rem; color: var(--neon-cyan); font-weight: 600; }
.tweet-date { font-size: 0.75rem; color: var(--text-muted); }
.tweet-body { color: var(--text); font-size: 1rem; line-height: 1.6; }
.error-feed { color: var(--neon-pink); text-align: center; padding: 40px; font-family: 'Fira Code', monospace; }

/* ==========================================
   TOKENOMICS
   ========================================== */
.token-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}
.token-card {
    padding: clamp(20px, 3vw, 32px);
    text-align: center;
    transition: transform 0.3s;
}
.token-card:hover { transform: translateY(-5px); }
.tc-icon { font-size: 2rem; margin-bottom: 12px; }
.token-card h3 { font-size: 1rem; color: var(--text-muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; font-family: 'Fira Code', monospace; }
.tc-val { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 900; color: var(--neon-purple); margin-bottom: 8px; font-family: 'Fira Code', monospace; }
.tc-sub { font-size: 0.85rem; color: var(--text-muted); }

.ca-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 28px;
    margin-bottom: 32px;
}
.ca-inner { display: flex; flex-direction: column; gap: 6px; }
.ca-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; }
.ca-value {
    font-family: 'Fira Code', monospace;
    color: var(--neon-green);
    font-size: clamp(0.8rem, 2vw, 1rem);
    word-break: break-all;
}

.where-to-buy { padding: 32px; }
.where-to-buy h3 { font-size: 1.1rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px; font-family: 'Fira Code', monospace; text-align: center; }
.buy-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.buy-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 32px;
    background: rgba(0,0,0,0.4);
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: 1px solid var(--glass-border);
    transition: all var(--transition);
    min-width: 140px;
}
.buy-link:hover { border-color: var(--neon-green); background: rgba(0,255,136,0.06); transform: translateY(-4px); }
.buy-icon { font-size: 1.8rem; }
.buy-name { font-weight: 700; color: var(--text); font-size: 1rem; }
.buy-desc { font-size: 0.75rem; color: var(--text-muted); }

/* ==========================================
   ROADMAP
   ========================================== */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.roadmap-card {
    padding: clamp(24px, 3vw, 36px);
    position: relative;
    transition: transform 0.3s;
}
.roadmap-card:hover { transform: translateY(-4px); }
.rm-active { border-color: rgba(0,255,136,0.3); }
.rm-phase {
    font-family: 'Fira Code', monospace;
    font-size: 0.75rem;
    color: var(--neon-purple);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.roadmap-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.rm-status {
    font-family: 'Fira Code', monospace;
    font-size: 0.8rem;
    margin-bottom: 20px;
}
.status-live { color: var(--neon-green); }
.status-soon { color: var(--neon-cyan); }
.status-future { color: var(--text-muted); }

.rm-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================
   TERMINAL
   ========================================== */
.terminal {
    font-family: 'Fira Code', monospace;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}
.terminal-header {
    background: rgba(0,0,0,0.7);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--glass-border);
}
.dot { width: 13px; height: 13px; border-radius: 50%; }
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }
.terminal-title { flex: 1; text-align: center; color: var(--text-muted); font-size: 0.85rem; }
.terminal-badge {
    padding: 2px 8px;
    background: rgba(0,255,136,0.2);
    color: var(--neon-green);
    border-radius: 4px;
    font-size: 0.7rem;
    animation: blinkDot 1.5s infinite;
}
.terminal-body {
    padding: 28px;
    min-height: 320px;
    max-height: 420px;
    overflow-y: auto;
    color: var(--neon-green);
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    line-height: 1.8;
}
.prompt { color: var(--neon-purple); }
.sys-msg { color: var(--text-muted); }
.highlight-rug { color: #ff5f56; }
.highlight-win { color: var(--neon-cyan); }
.scan-msg { color: var(--neon-green); }

/* ==========================================
   FAQ
   ========================================== */
.faq-container {
    max-width: 850px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item { overflow: hidden; }
.faq-question {
    width: 100%;
    text-align: left;
    padding: 22px 24px;
    background: none;
    border: none;
    color: var(--text);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color var(--transition);
    font-family: 'Inter', sans-serif;
}
.faq-question:hover { color: var(--neon-green); }
.icon { font-size: 1.4rem; color: var(--neon-purple); transition: transform 0.35s ease; flex-shrink: 0; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, padding 0.3s ease;
    padding: 0 24px;
}
.faq-item.active .faq-answer { max-height: 600px; padding-bottom: 24px; }
.faq-item.active .icon { transform: rotate(45deg); color: var(--neon-green); }
.faq-answer p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }
.faq-answer strong { color: var(--neon-cyan); }

/* ==========================================
   COMMUNITY
   ========================================== */
.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.community-card {
    padding: clamp(28px, 4vw, 44px);
    text-align: center;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s;
}
.community-card:hover { transform: translateY(-6px); }
.comm-icon { font-size: 2.8rem; margin-bottom: 4px; }
.community-card h3 { font-size: 1.3rem; color: var(--text); }
.community-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.comm-cta { color: var(--neon-green); font-weight: 700; font-size: 0.9rem; margin-top: 8px; }

/* ==========================================
   DISCLAIMER
   ========================================== */
.page-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(20px, 4vw, 40px) clamp(1rem, 6vw, 8%);
}
.disclaimer-box {
    padding: 24px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.disclaimer-box strong { color: var(--neon-pink); }

/* ==========================================
   LIVE STATS
   ========================================== */
.stats-live-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}
.stat-live-card {
    padding: clamp(20px, 3vw, 36px);
    text-align: center;
    transition: transform 0.3s;
}
.stat-live-card:hover { transform: translateY(-5px); }
.sl-icon { font-size: 2rem; margin-bottom: 12px; }
.sl-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-family: 'Fira Code', monospace;
}
.sl-val {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--neon-green);
    font-family: 'Fira Code', monospace;
    margin-bottom: 6px;
}
.sl-sub { font-size: 0.8rem; color: var(--text-muted); }
.sl-up { color: var(--neon-green); }
.sl-down { color: #ff5f56; }
.stats-disclaimer {
    padding: 16px 24px;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}
.stats-disclaimer a { color: var(--neon-cyan); }

/* ==========================================
   WALLET ROASTER
   ========================================== */
.roaster-wrap {
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.roaster-box {
    padding: clamp(24px, 4vw, 44px);
}
.roaster-input-row {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.wallet-input {
    flex: 1;
    min-width: 200px;
    padding: 14px 20px;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}
.wallet-input:focus { border-color: var(--neon-cyan); box-shadow: 0 0 10px rgba(0,240,255,0.2); }
.wallet-input::placeholder { color: var(--text-muted); }

.roaster-output {
    min-height: 100px;
}
.roaster-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px;
    color: var(--text-muted);
    text-align: center;
    font-size: 0.9rem;
}
.roaster-placeholder span { font-size: 2.5rem; opacity: 0.4; }
.roaster-result {
    background: rgba(0,0,0,0.5);
    border-left: 3px solid var(--neon-green);
    border-radius: var(--radius-sm);
    padding: 24px;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.roast-wallet {
    font-family: 'Fira Code', monospace;
    font-size: 0.8rem;
    color: var(--neon-cyan);
    margin-bottom: 12px;
}
.roast-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
}
.roast-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.roast-loading {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--neon-cyan);
    font-family: 'Fira Code', monospace;
    padding: 20px;
}
.roast-error {
    color: #ff5f56;
    font-family: 'Fira Code', monospace;
    padding: 20px;
}

.roaster-examples {
    padding: clamp(20px, 3vw, 36px);
}
.examples-title {
    font-family: 'Fira Code', monospace;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.example-roasts { display: flex; flex-direction: column; gap: 16px; }
.example-roast {
    padding: 16px 20px;
    background: rgba(0,0,0,0.3);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.6;
    border-left: 2px solid var(--neon-purple);
}
.eq { color: var(--neon-purple); font-size: 1.2rem; margin-right: 6px; }

/* ==========================================
   BOTTOM NAV (Mobile)
   ========================================== */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: var(--bottom-nav-h);
    background: rgba(7,7,11,0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    z-index: 200;
    justify-content: space-around;
    align-items: center;
    padding: 0 8px;
}
.bn-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: color var(--transition);
    flex: 1;
    text-align: center;
}
.bn-item:hover, .bn-item.active { color: var(--neon-green); }

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

/* Tablet ≤ 1024px */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-content { order: 2; }
    .hero-visual { order: 1; min-height: 300px; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .orbit-tag.tag-1, .orbit-tag.tag-3 { display: none; }

    .about-grid { grid-template-columns: 1fr; }
    .about-stats-row { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .token-grid { grid-template-columns: repeat(2, 1fr); }
    .roadmap-grid { grid-template-columns: 1fr; }
    .community-grid { grid-template-columns: repeat(2, 1fr); }

    .nav-links {
        position: fixed;
        top: var(--nav-h);
        left: 0; right: 0;
        background: rgba(7,7,11,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 6px;
        border-bottom: 1px solid var(--glass-border);
        display: none;
    }
    .nav-links.open { display: flex; }
    .nav-link { font-size: 1.1rem; padding: 10px 0; width: 100%; border-bottom: 1px solid var(--glass-border); }
    .nav-cta { margin-top: 16px; width: 100%; text-align: center; padding: 14px; }
    .hamburger { display: flex; }
}

/* Mobile ≤ 640px */
@media (max-width: 640px) {
    body { padding-bottom: var(--bottom-nav-h); }
    .bottom-nav { display: flex; }

    .page { padding: 80px 1rem 60px; }
    .about-stats-row { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr; }
    .token-grid { grid-template-columns: repeat(2, 1fr); }
    .community-grid { grid-template-columns: 1fr; }
    .roadmap-grid { grid-template-columns: 1fr; }
    .hero-avatar-wrap { width: min(260px, 70vw); height: min(260px, 70vw); }
    .ring-1, .ring-2 { display: none; }
    .orbit-tag { display: none; }
    .buy-links { flex-direction: column; }
    .ca-box { flex-direction: column; align-items: flex-start; }
    .feed-header-bar { flex-wrap: wrap; }
    .feed-note { display: none; }
}
