/* ═══════════════════════════════════════════════════
   MILESTONES — White Clean Modern
   ═══════════════════════════════════════════════════ */

:root {
  --bg: #ffffff;
  --bg-alt: #f7f8fa;
  --bg-card: #ffffff;
  --text: #111111;
  --text-dim: #6b7280;
  --text-muted: #9ca3af;
  --border: #e5e7eb;
  --border-light: #f1f3f5;
  --orange: #f97316;
  --orange-light: #fff7ed;
  --blue: #3b82f6;
  --blue-light: #eff6ff;
  --green: #22c55e;
  --green-light: #f0fdf4;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow: 0 1px 3px rgba(0,0,0,.04), 0 4px 16px rgba(0,0,0,.04);
  --shadow-lg: 0 4px 24px rgba(0,0,0,.06), 0 12px 48px rgba(0,0,0,.06);
  --font: 'Inter', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

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

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

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

/* ─── navbar ─────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text);
  font-weight: 700; font-size: 18px;
}

.nav-logo img { border-radius: 8px; }

.nav-links {
  display: flex; gap: 6px; margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 14px; font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-xs);
  transition: background .2s, color .2s;
}

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

.nav-right {
  display: flex; align-items: center; gap: 12px;
}

.nav-ca {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  cursor: pointer;
  font-size: 13px;
  transition: border-color .2s;
}

.nav-ca:hover { border-color: var(--orange); }

.ca-tag {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: .5px;
}

.nav-ca code {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-dim);
}

.ca-copy {
  font-size: 11px; font-weight: 600;
  color: var(--orange);
}

.nav-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
  color: var(--text-dim);
  text-decoration: none;
  transition: border-color .2s, color .2s;
}

.nav-icon:hover { border-color: var(--text); color: var(--text); }

.btn-pump {
  display: inline-flex; align-items: center;
  padding: 7px 16px;
  background: var(--orange);
  color: #fff;
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-xs);
  transition: background .2s, transform .15s;
}

.btn-pump:hover { background: #ea6610; transform: translateY(-1px); }

/* ─── hero ───────────────────────────────────────── */
#hero {
  position: relative;
  padding: 140px 0 80px;
  text-align: center;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(249,115,22,.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 28px;
  letter-spacing: .3px;
}

.hero-logo-wrap {
  margin-bottom: 20px;
  animation: float 4s ease-in-out infinite;
}

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

.hero-logo {
  border-radius: 20px;
  filter: drop-shadow(0 8px 24px rgba(249,115,22,.15));
}

#hero h1 {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.05;
  background: linear-gradient(135deg, #f97316, #ea580c, #c2410c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.hero-tagline {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 460px;
  margin: 0 auto 48px;
}

/* ─── hero grid (3 col) ──────────────────────────── */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  text-align: left;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow .3s, transform .3s;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.card-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.label-orange { background: var(--orange-light); color: var(--orange); }
.label-blue { background: var(--blue-light); color: var(--blue); }

.card h3 {
  font-size: 20px; font-weight: 700;
  margin-bottom: 8px;
}

.card p {
  font-size: 14px; color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 16px;
}

.card-points { display: flex; flex-direction: column; gap: 8px; }

.point {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--text);
}

.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-orange { background: var(--orange); }
.dot-blue { background: var(--blue); }

/* ─── center stats ───────────────────────────────── */
.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}

.stats-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.stat-box {
  padding: 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
}

.stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  font-family: var(--mono);
}

.stat-lbl {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: .5px;
  margin-top: 2px;
}

.hero-buttons { display: flex; gap: 10px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px;
  font-size: 14px; font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
}

.btn-fill {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 2px 12px rgba(249,115,22,.25);
}

.btn-fill:hover {
  background: #ea6610;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(249,115,22,.35);
}

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

.btn-ghost:hover { background: var(--bg-alt); }

/* ─── milestone pills ────────────────────────────── */
.milestone-track {
  display: flex; flex-wrap: wrap; gap: 8px;
}

.ms-pill {
  padding: 5px 12px;
  font-size: 12px; font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-dim);
  transition: all .2s;
}

.ms-pill.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.ms-pill-dashed {
  border-style: dashed;
}

.phase-note {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ─── section commons ────────────────────────────── */
section { position: relative; z-index: 1; }

.section-title {
  font-size: 32px; font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--text-dim);
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto 40px;
}

/* ─── roadmap ────────────────────────────────────── */
#roadmap {
  padding: 80px 0;
  background: var(--bg-alt);
}

.timeline {
  max-width: 640px;
  margin: 40px auto 0;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 11px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--border);
}

.tl-item {
  position: relative;
  padding-bottom: 36px;
}

.tl-item:last-child { padding-bottom: 0; }

.tl-marker {
  position: absolute;
  left: -40px; top: 4px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}

.tl-marker.active {
  border-color: var(--orange);
  background: var(--orange);
}

.tl-marker.active::after {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
}

.tl-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--orange);
  margin-bottom: 4px;
}

.tl-content h4 {
  font-size: 17px; font-weight: 700;
  margin-bottom: 4px;
}

.tl-content p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ─── live feed ──────────────────────────────────── */
#feed { padding: 80px 0; }

.feed-wrap {
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}

.feed-bar {
  display: flex; gap: 4px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-alt);
}

.feed-tab {
  padding: 5px 14px;
  border: none; background: none;
  font-size: 13px; font-weight: 500;
  color: var(--text-dim);
  cursor: pointer;
  border-radius: var(--radius-xs);
  transition: all .2s;
  font-family: var(--font);
}

.feed-tab:hover { color: var(--text); background: rgba(0,0,0,.03); }
.feed-tab.active { background: var(--text); color: #fff; }

.feed-list {
  max-height: 420px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.feed-empty {
  padding: 60px 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

.feed-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-light);
  animation: slideIn .4s ease;
}

.feed-item:last-child { border-bottom: none; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

.feed-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.feed-dot.airdrop { background: var(--orange); }
.feed-dot.liquidity { background: var(--blue); }

.feed-info { flex: 1; min-width: 0; }

.feed-type {
  font-size: 12px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.feed-type.airdrop { color: var(--orange); }
.feed-type.liquidity { color: var(--blue); }

.feed-addr {
  font-size: 13px;
  font-family: var(--mono);
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feed-amount {
  font-size: 13px;
  font-weight: 600;
  font-family: var(--mono);
  white-space: nowrap;
}

.feed-time {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
}

.feed-link {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
}

.feed-link:hover { color: var(--orange); }

/* ─── docs grid ──────────────────────────────────── */
#docs {
  padding: 80px 0;
  background: var(--bg-alt);
}

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

.doc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow .3s, transform .3s;
}

.doc-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.doc-num {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.doc-card h4 {
  font-size: 16px; font-weight: 700;
  margin-bottom: 8px;
}

.doc-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ─── quotes ─────────────────────────────────────── */
.quote-section {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

blockquote {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  font-size: 15px;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
}

blockquote cite {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  color: var(--orange);
}

/* ─── footer ─────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 14px;
}

.footer-left img { border-radius: 6px; }

.footer-dim { color: var(--text-muted); font-weight: 400; }

.footer-right {
  display: flex; gap: 20px;
}

.footer-right a {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color .2s;
}

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

/* ─── responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-center { order: -1; }

  .docs-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto 48px;
  }

  #hero h1 { font-size: 40px; }

  .nav-links { display: none; }

  .nav-ca code { display: none; }
}

@media (max-width: 600px) {
  .nav-inner { padding: 0 16px; }
  .nav-right { gap: 8px; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; }
  #hero h1 { font-size: 32px; }
  .hero-tagline { font-size: 15px; }
  .section-title { font-size: 26px; }
  .footer-inner { flex-direction: column; gap: 12px; }
}

/* ─── scroll animations ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
