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

:root {
    --bg: #050505;
    --bg-card: #0c0c0c;
    --bg-card-hover: #111111;
    --bg-section-alt: #080808;
    --border: #1a1a1a;
    --border-hover: #2a2a2a;
    --text: #e0e0e0;
    --text-dim: #707070;
    --text-muted: #484848;
    --fire-orange: #ff6a00;
    --fire-red: #ff2d2d;
    --fire-amber: #ffaa00;
    --fire-yellow: #ffd700;
    --fire-gradient: linear-gradient(135deg, #ff6a00, #ff2d2d, #ffaa00);
    --fire-glow: 0 0 30px rgba(255, 106, 0, 0.3);
    --success: #00ff88;
    --mono: 'JetBrains Mono', 'Fira Code', monospace;
    --sans: 'Space Grotesk', -apple-system, sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #222 #050505;
}

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

a {
    color: var(--fire-orange);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--fire-amber);
}

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

/* ===== EMBER CANVAS ===== */
#ember-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.logo-icon {
    font-size: 1.4rem;
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
}

.logo-text {
    font-family: var(--mono);
    background: var(--fire-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: var(--text-dim);
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
    letter-spacing: 0.3px;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-dim);
    font-family: var(--mono);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fire-orange);
    box-shadow: 0 0 8px var(--fire-orange);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--fire-orange); }
    50% { opacity: 0.5; box-shadow: 0 0 16px var(--fire-orange); }
}

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    z-index: 999;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--text-dim);
    font-size: 1rem;
    padding: 8px 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    text-decoration: none;
    font-family: var(--sans);
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--fire-gradient);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 0 40px rgba(255, 106, 0, 0.5);
    transform: translateY(-2px);
    color: #000;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-hover);
}

.btn-outline:hover {
    border-color: var(--fire-orange);
    color: var(--fire-orange);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.82rem;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-fire {
    font-size: 1.1em;
}

/* ===== TICKER ===== */
.ticker {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 999;
    background: #0a0a0a;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
}

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

.ticker-item {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ticker-item strong {
    color: var(--text);
}

.ticker-fire strong {
    color: var(--fire-orange);
}

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

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 200px 0 100px;
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.hero-logo {
    display: block;
    margin: 0 auto 24px;
    width: 140px;
    height: 140px;
    border-radius: 24px;
    object-fit: cover;
    filter: drop-shadow(0 0 40px rgba(255, 106, 0, 0.4));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: rgba(255, 106, 0, 0.05);
    font-size: 0.82rem;
    color: var(--text-dim);
    font-family: var(--mono);
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-line-1 {
    display: block;
    background: var(--fire-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-line-2 {
    display: block;
    color: var(--text);
    font-size: 0.55em;
    letter-spacing: -1px;
    opacity: 0.9;
}

.hero-subtitle {
    max-width: 640px;
    margin: 0 auto 40px;
    font-size: 1.15rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--fire-orange);
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--mono);
    margin-bottom: 6px;
}

.hero-stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--mono);
    color: var(--text);
}

.hero-countdown {
    color: var(--fire-orange) !important;
    text-shadow: 0 0 20px rgba(255, 106, 0, 0.4);
}

.hero-stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
}

/* ===== TERMINAL ===== */
.terminal-section {
    padding: 0 0 80px;
    position: relative;
    z-index: 1;
}

.terminal {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    background: #0a0a0a;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    background: #111;
    border-bottom: 1px solid var(--border);
}

.terminal-dots {
    display: flex;
    gap: 8px;
}

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

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.terminal-title {
    font-family: var(--mono);
    font-size: 0.78rem;
    color: var(--text-muted);
}

.terminal-body {
    padding: 24px;
    font-family: var(--mono);
    font-size: 0.88rem;
    line-height: 2;
}

.terminal-line {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.prompt {
    color: var(--fire-orange);
    font-weight: 700;
}

.cmd {
    color: var(--text);
}

.terminal-line.output {
    color: var(--text-dim);
    padding-left: 20px;
}

.success {
    color: var(--success);
}

.fire-text {
    color: var(--fire-orange);
    text-shadow: 0 0 10px rgba(255, 106, 0, 0.4);
}

.terminal-line.blink .cursor {
    animation: blink 1s step-end infinite;
    color: var(--fire-orange);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-dark {
    background: var(--bg-section-alt);
}

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

.section-tag {
    display: inline-block;
    font-family: var(--mono);
    font-size: 0.78rem;
    color: var(--fire-orange);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.gradient-text {
    background: var(--fire-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-dim);
    font-size: 1.05rem;
}

/* ===== MISSION GRID ===== */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.mission-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.3s;
}

.mission-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.mission-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.mission-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.mission-card p {
    color: var(--text-dim);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ===== PHASES ===== */
.phases {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.phase {
    display: flex;
    gap: 32px;
    position: relative;
}

.phase-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.phase-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-muted);
    background: var(--bg);
    transition: all 0.3s;
    position: relative;
    z-index: 2;
}

.phase.active .phase-number {
    border-color: var(--fire-orange);
    color: var(--fire-orange);
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.3);
}

.phase-line {
    width: 2px;
    flex: 1;
    background: var(--border);
    min-height: 40px;
}

.phase:last-child .phase-line {
    display: none;
}

.phase-content {
    padding-bottom: 48px;
    flex: 1;
}

.phase-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: var(--mono);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(255, 106, 0, 0.15);
    color: var(--fire-orange);
    border: 1px solid rgba(255, 106, 0, 0.3);
    margin-bottom: 12px;
}

.phase-badge.pending {
    background: rgba(112, 112, 112, 0.1);
    color: var(--text-muted);
    border-color: var(--border);
}

.phase-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.phase.active .phase-title {
    color: var(--fire-orange);
}

.phase-desc {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

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

.phase-list li {
    font-size: 0.92rem;
    color: var(--text-dim);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.phase-list .check {
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
}

.phase-list .sub-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-style: italic;
    padding-left: 24px;
}

/* ===== COUNTDOWN ===== */
.countdown-box {
    text-align: center;
    margin-bottom: 48px;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.countdown-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--fire-gradient);
}

.countdown-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 0.88rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.countdown-digit {
    width: 80px;
    height: 100px;
    background: #111;
    border: 1px solid #222;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--fire-orange);
    text-shadow: 0 0 30px rgba(255, 106, 0, 0.4);
}

.countdown-separator {
    font-family: var(--mono);
    font-size: 3rem;
    font-weight: 700;
    color: var(--fire-orange);
    animation: blink 1s step-end infinite;
}

.countdown-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--mono);
}

/* ===== STATS GRID ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.stat-card.fire-border {
    border-color: rgba(255, 106, 0, 0.3);
    box-shadow: inset 0 0 30px rgba(255, 106, 0, 0.03);
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--mono);
    margin-bottom: 8px;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--mono);
    color: var(--text);
    margin-bottom: 4px;
}

.stat-card.fire-border .stat-value {
    color: var(--fire-orange);
}

.stat-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ===== SUPPLY TRACKER ===== */
.supply-tracker {
    margin-bottom: 48px;
}

.supply-bar-container {
    margin-bottom: 40px;
}

.supply-bar {
    height: 40px;
    border-radius: 100px;
    background: #111;
    border: 1px solid var(--border);
    display: flex;
    overflow: hidden;
    position: relative;
}

.supply-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #1a1a2e, #16213e);
    transition: width 1s ease;
    position: relative;
}

.supply-bar-glow {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--text-dim);
    box-shadow: 0 0 10px var(--text-dim);
}

.supply-bar-burned {
    height: 100%;
    background: linear-gradient(90deg, var(--fire-red), var(--fire-orange));
    transition: width 1s ease;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.3);
}

.supply-bar-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-family: var(--mono);
    font-size: 0.72rem;
    color: var(--text-muted);
}

.supply-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.supply-stat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.supply-stat.fire {
    border-color: rgba(255, 106, 0, 0.3);
}

.supply-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-family: var(--mono);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.supply-stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--mono);
}

.supply-stat.fire .supply-stat-value {
    color: var(--fire-orange);
}

/* ===== BURN LOG ===== */
.burn-log {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.burn-log-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    font-family: var(--mono);
    font-size: 0.85rem;
    color: var(--text-dim);
}

.burn-log-entries {
    max-height: 300px;
    overflow-y: auto;
}

.burn-entry {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 24px;
    border-bottom: 1px solid #0f0f0f;
    font-family: var(--mono);
    font-size: 0.82rem;
    transition: background 0.2s;
}

.burn-entry:hover {
    background: rgba(255, 106, 0, 0.02);
}

.burn-entry:last-child {
    border-bottom: none;
}

.burn-time {
    color: var(--text-muted);
    min-width: 80px;
    flex-shrink: 0;
}

.burn-action {
    flex: 1;
    color: var(--text-dim);
}

.burn-hash {
    color: var(--text-muted);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ===== WALLETS ===== */
.wallets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.wallet-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.3s;
}

.wallet-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.wallet-card.fire-card {
    border-color: rgba(255, 106, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.03), rgba(255, 45, 45, 0.02));
}

.wallet-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.wallet-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.wallet-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.wallet-address {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #0a0a0a;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-bottom: 16px;
}

.wallet-address code {
    flex: 1;
    font-family: var(--mono);
    font-size: 0.85rem;
    color: var(--text-dim);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.copy-btn {
    padding: 4px 14px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: #111;
    color: var(--text-dim);
    font-size: 0.78rem;
    font-family: var(--mono);
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.copy-btn:hover {
    border-color: var(--fire-orange);
    color: var(--fire-orange);
}

.wallet-link {
    font-size: 0.88rem;
    font-weight: 500;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.active {
    border-color: var(--border-hover);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: var(--bg-card);
    border: none;
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--sans);
    transition: background 0.2s;
    text-align: left;
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-toggle {
    font-size: 1.3rem;
    color: var(--fire-orange);
    transition: transform 0.3s;
    font-family: var(--mono);
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== CTA ===== */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.05), rgba(255, 45, 45, 0.03));
    border: 1px solid rgba(255, 106, 0, 0.15);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.05) 0%, transparent 50%);
    animation: cta-pulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cta-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

.cta-box h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 12px;
    background: var(--fire-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-box p {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid var(--border);
    padding: 48px 0 24px;
    position: relative;
    z-index: 1;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
}

.footer-disclaimer {
    max-width: 600px;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

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

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-dim);
}

.footer-links a:hover {
    color: var(--fire-orange);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-header,
.mission-card,
.phase,
.stat-card,
.wallet-card,
.faq-item {
    opacity: 0;
    animation: fadeInUp 0.6s forwards;
}

.section-header { animation-delay: 0.1s; }
.mission-card:nth-child(1) { animation-delay: 0.15s; }
.mission-card:nth-child(2) { animation-delay: 0.25s; }
.mission-card:nth-child(3) { animation-delay: 0.35s; }
.mission-card:nth-child(4) { animation-delay: 0.45s; }

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

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 160px 0 60px;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat-divider {
        display: none;
    }

    .countdown-digit {
        width: 60px;
        height: 80px;
        font-size: 2.5rem;
    }

    .phase {
        gap: 20px;
    }

    .wallets-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .burn-entry {
        flex-wrap: wrap;
        gap: 8px;
    }

    .burn-hash {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .countdown-digit {
        width: 48px;
        height: 64px;
        font-size: 2rem;
    }

    .countdown-separator {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}
