/* ===== FONTS ===== */
/* Playfair Display + DM Mono + Inter loaded via Google Fonts in layout */

/* ===== TOKENS ===== */
:root {
  --bg: #080C14;
  --bg-2: #0F1623;
  --bg-card: #111827;
  --fg: #F5F0E8;
  --fg-muted: #8A94A6;
  --accent: #F5A623;
  --accent-dark: #C4780E;
  --accent-glow: rgba(245, 166, 35, 0.15);
  --teal: #00E5A0;
  --red: #EF4444;
  --radius: 16px;
  --radius-sm: 8px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-dark); border-radius: 3px; }

/* ===== NAV ===== */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(8, 12, 20, 0.7);
  border-bottom: 1px solid rgba(245, 166, 35, 0.1);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-weight: 500;
  font-size: 18px;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
}
.nav-tag {
  background: var(--accent);
  color: var(--bg);
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 500;
  letter-spacing: 1px;
}
.nav-divider { color: var(--fg-muted); }
.nav-chain { color: var(--fg-muted); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-family: 'DM Mono', monospace;
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--teal); }
  50% { opacity: 0.5; box-shadow: 0 0 16px var(--teal); }
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 6vw, 96px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.title-line-1 { color: var(--fg); }
.title-line-2 { color: var(--fg-muted); font-style: italic; }
.title-line-3 {
  color: var(--accent);
  text-shadow: 0 0 40px rgba(245,166,35,0.4);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: 'DM Mono', monospace;
}
.stat-val {
  font-size: 28px;
  font-weight: 500;
  color: var(--accent);
  display: block;
}
.stat-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-sep { color: rgba(245,166,35,0.3); font-size: 20px; }
.hero-mascot {
  flex-shrink: 0;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(245,166,35,0.2));
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: 120px 48px;
  background: var(--bg-2);
  position: relative;
}
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  max-width: 640px;
  margin-bottom: 56px;
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239,68,68,0.4);
}
.problem-icon { margin-bottom: 16px; }
.problem-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--fg);
}
.problem-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.solution-divider {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}
.solution-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-dark), transparent);
}
.divider-label {
  position: relative;
  background: var(--bg-2);
  padding: 0 20px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}
.solution-card {
  background: linear-gradient(135deg, rgba(245,166,35,0.1), rgba(245,166,35,0.03));
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: var(--radius);
  padding: 40px 48px;
}
.solution-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}
.solution-body { font-size: 16px; color: var(--fg-muted); max-width: 600px; line-height: 1.7; }

/* ===== TOKENOMICS ===== */
.tokenomics {
  padding: 120px 48px;
  background: var(--bg);
}
.token-grid {
  display: grid;
  grid-template-columns: 2fr repeat(5, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-bottom: 48px;
}
.token-card {
  background: var(--bg-card);
  border: 1px solid rgba(245,166,35,0.1);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s ease;
}
.token-card:hover { border-color: rgba(245,166,35,0.3); }
.token-card-main {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.token-card-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.token-card-main .token-card-label { color: rgba(8,12,20,0.6); }
.token-card-value {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--bg);
  line-height: 1;
}
.token-card-main .token-card-note { color: rgba(8,12,20,0.7); font-size: 14px; margin-top: 8px; }
.token-card-sub { font-size: 16px; font-weight: 600; color: var(--fg); margin-bottom: 6px; }
.token-card-desc { font-size: 12px; color: var(--fg-muted); line-height: 1.5; }
.burn-visual {
  background: var(--bg-card);
  border: 1px solid rgba(245,166,35,0.1);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.burn-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.burn-bar {
  height: 40px;
  background: rgba(245,166,35,0.1);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 12px;
}
.burn-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #00E5A0);
  border-radius: 100px;
  position: relative;
}
.burn-fill::after {
  content: '95%';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--bg);
  font-weight: 500;
}
.burn-info {
  display: flex;
  justify-content: space-between;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--fg-muted);
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 120px 48px;
  background: var(--bg-2);
  border-top: 1px solid rgba(245,166,35,0.06);
  border-bottom: 1px solid rgba(245,166,35,0.06);
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.manifesto-quote svg { margin-bottom: 20px; }
.manifesto-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.6;
  color: var(--fg);
  margin-bottom: 24px;
}
.manifesto-sig {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--accent);
}
.manifesto-values { display: flex; flex-direction: column; gap: 28px; }
.value { display: flex; gap: 16px; align-items: flex-start; }
.value-icon { flex-shrink: 0; margin-top: 2px; }
.value h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.value p { font-size: 14px; color: var(--fg-muted); }

/* ===== CLOSING ===== */
.closing {
  padding: 120px 48px;
  background: var(--bg);
  text-align: center;
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-mascot { margin-bottom: 32px; }
.closing-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--accent);
  text-shadow: 0 0 60px rgba(245,166,35,0.3);
  margin-bottom: 24px;
}
.closing-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.closing-chain {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.chain-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.2);
  padding: 8px 20px;
  border-radius: 100px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--fg-muted);
}
.chain-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 6px var(--teal);
}
.cta-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--fg-muted);
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 48px 32px;
  border-top: 1px solid rgba(245,166,35,0.08);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 16px;
  color: var(--fg);
  margin-bottom: 8px;
}
.footer-tagline { font-size: 13px; color: var(--fg-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-link {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-bottom p { font-size: 12px; color: var(--fg-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-mascot { display: none; }
  .hero-title { font-size: 48px; }
  .problems-grid { grid-template-columns: 1fr; }
  .token-grid { grid-template-columns: 1fr 1fr; }
  .token-card-main { grid-column: 1 / -1; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .section-title { font-size: 32px; }
  .philosophy, .tokenomics, .manifesto, .closing { padding: 80px 24px; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .solution-card { padding: 28px 24px; }
  .manifesto-quote p { font-size: 18px; }
}
@media (max-width: 480px) {
  .token-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 12px; }
  .stat-sep { display: none; }
}