:root {
  --bg: #07110e;
  --bg-2: #0b1b15;
  --panel: rgba(255,255,255,0.07);
  --panel-strong: rgba(255,255,255,0.11);
  --text: #f3fff9;
  --muted: #a8bdb2;
  --line: rgba(255,255,255,0.14);
  --green: #32ff9c;
  --green-2: #16c172;
  --mint: #b6ffd8;
  --gold: #ffda79;
  --shadow: 0 28px 80px rgba(0,0,0,.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(50,255,156,.20), transparent 32rem),
    radial-gradient(circle at 80% 20%, rgba(255,218,121,.12), transparent 28rem),
    linear-gradient(180deg, var(--bg), #030706 70%);
  color: var(--text);
  min-height: 100vh;
}

a { color: inherit; }
.site-shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.nav {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(7,17,14,.75);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 14px 60px rgba(0,0,0,.28);
}

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 900; letter-spacing: -.03em; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--gold));
  color: #06120e;
  box-shadow: 0 0 28px rgba(50,255,156,.4);
}

.nav-links { display: flex; align-items: center; gap: 20px; color: var(--muted); font-size: 14px; font-weight: 650; }
.nav-links a, .nav-cta { text-decoration: none; transition: .2s ease; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--green);
  color: #06120e;
  font-weight: 850;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(50,255,156,.26); }

.section { padding: 86px 0; }
.hero { min-height: 720px; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 70px; }
.eyebrow { margin: 0 0 14px; text-transform: uppercase; letter-spacing: .18em; font-size: 12px; color: var(--green); font-weight: 900; }
.hero h1 { margin: 0; font-size: clamp(64px, 11vw, 132px); line-height: .86; letter-spacing: -.09em; }
.hero-subtitle { max-width: 620px; margin: 26px 0 24px; color: var(--mint); font-size: clamp(20px, 3vw, 32px); line-height: 1.18; font-weight: 750; letter-spacing: -.04em; }
.contract-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  width: min(100%, 640px);
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  border-radius: 18px;
}
.contract-card code { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--gold); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.contract-card span { color: var(--muted); font-weight: 800; }
.contract-card button {
  border: 0;
  border-radius: 12px;
  padding: 9px 12px;
  background: var(--panel-strong);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid var(--line);
}
.button.primary { background: var(--green); color: #06120e; border-color: transparent; }
.button.secondary { background: var(--panel-strong); }
.button.ghost { color: var(--mint); }
.button:hover { transform: translateY(-1px); }

.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.orb { position: absolute; border-radius: 50%; filter: blur(1px); opacity: .85; }
.orb-one { width: 340px; height: 340px; background: radial-gradient(circle, rgba(50,255,156,.42), rgba(50,255,156,.04) 68%); }
.orb-two { width: 210px; height: 210px; right: 18%; bottom: 5%; background: radial-gradient(circle, rgba(255,218,121,.30), rgba(255,218,121,.02) 70%); }
.coin-card {
  position: relative;
  width: min(380px, 100%);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.05));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  transform: rotate(-3deg);
}
.coin {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--green));
  color: #06120e;
  font-size: 72px;
  font-weight: 950;
  box-shadow: inset 0 -10px 22px rgba(0,0,0,.18), 0 0 55px rgba(50,255,156,.34);
}
.coin-card p { margin: 0 0 8px; color: var(--muted); font-weight: 700; }
.coin-card p span { color: var(--gold); }
.coin-card strong { display: block; font-size: 44px; line-height: .98; letter-spacing: -.06em; }

.intro {
  padding: 0 0 70px;
}
.intro p {
  margin: 0;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--panel);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.45;
  color: var(--mint);
  box-shadow: var(--shadow);
}
.section-heading { max-width: 760px; margin-bottom: 30px; }
.section-heading h2, .panel h2 { margin: 0; font-size: clamp(34px, 5vw, 62px); line-height: .98; letter-spacing: -.06em; }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stat-card, .panel, .table-card, .step-card, .roadmap article {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.stat-card { padding: 26px; }
.stat-card span { display: block; color: var(--muted); font-weight: 800; margin-bottom: 14px; }
.stat-card strong { display: block; font-size: clamp(28px, 3.4vw, 44px); letter-spacing: -.06em; line-height: 1; }
.stat-card p { margin: 14px 0 0; color: var(--muted); }

.table-card { margin-top: 18px; overflow: hidden; }
.table-title { display: flex; align-items: end; justify-content: space-between; gap: 16px; padding: 24px 26px; border-bottom: 1px solid var(--line); }
.table-title h3 { margin: 0; font-size: 26px; letter-spacing: -.04em; }
.table-title p { margin: 0; color: var(--muted); }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { padding: 18px 26px; text-align: left; border-bottom: 1px solid rgba(255,255,255,.08); }
th { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; }
td { font-weight: 650; }
.status { display: inline-flex; padding: 6px 10px; border-radius: 999px; color: #06120e; background: var(--green); font-size: 13px; font-weight: 900; }
.pagination { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: center; padding: 18px; color: var(--muted); }
.pagination button { border: 1px solid var(--line); background: rgba(255,255,255,.06); color: var(--muted); border-radius: 999px; padding: 8px 12px; }

.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: 18px; }
.panel { padding: 32px; }
.panel p { color: var(--muted); line-height: 1.6; }
.muted { color: var(--muted); }
.tax-badge { display: inline-flex; margin: 24px 0 10px; padding: 12px 16px; border-radius: 999px; background: var(--gold); color: #06120e; font-weight: 950; }
.tokenomics-bars { display: grid; gap: 22px; margin-top: 30px; }
.bar-row { display: grid; grid-template-columns: 1fr auto; gap: 8px 14px; align-items: center; }
.bar-row span { color: var(--mint); font-weight: 850; }
.bar-row strong { color: var(--gold); }
.bar { grid-column: 1 / -1; height: 12px; border-radius: 999px; background: rgba(255,255,255,.10); overflow: hidden; }
.bar i { display: block; width: var(--width); height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--green), var(--gold)); }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step-card { padding: 24px; }
.step-card span, .roadmap article span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(50,255,156,.14); color: var(--green); font-weight: 950; margin-bottom: 20px; }
.step-card h3, .roadmap h3 { margin: 0 0 12px; font-size: 24px; line-height: 1.08; letter-spacing: -.04em; }
.step-card p, .roadmap li { color: var(--muted); line-height: 1.55; }
.step-card a { display: inline-flex; margin-top: 8px; color: var(--green); font-weight: 900; text-decoration: none; }
.step-card a:hover { text-decoration: underline; }

.roadmap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.roadmap article { padding: 24px; }
.roadmap ul { margin: 0; padding-left: 20px; }

.footer { border-top: 1px solid var(--line); padding: 34px 0 50px; color: var(--muted); text-align: center; }
.footer p { margin: 0 auto; max-width: 760px; line-height: 1.6; }
.footer-link { display: inline-flex; margin-top: 12px; color: var(--green); font-weight: 900; text-decoration: none; }
.footer-link:hover { text-decoration: underline; }
.roadmap a { color: var(--green); font-weight: 850; text-decoration: none; }
.roadmap a:hover { text-decoration: underline; }

.live-source { max-width: 720px; margin-top: 14px; }
.live-stats { grid-template-columns: repeat(3, 1fr); }
.archived-stats { padding: 18px; }
.stat-card.compact { box-shadow: none; background: rgba(255,255,255,.045); }
.stat-card.compact strong { font-size: clamp(24px, 2.7vw, 34px); }
.market-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 20px 0 18px; }

@media (max-width: 940px) {
  .nav-links { display: none; }
  .hero, .split { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 70px; }
  .hero-visual { min-height: 380px; }
  .stats-grid, .steps-grid, .roadmap { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .site-shell { width: min(100% - 22px, 1180px); }
  .section { padding: 60px 0; }
  .nav { top: 10px; border-radius: 24px; }
  .nav-cta { display: none; }
  .contract-card { grid-template-columns: 1fr auto; }
  .contract-card span { grid-column: 1 / -1; }
  .stats-grid, .steps-grid, .roadmap { grid-template-columns: 1fr; }
  .table-title { display: block; }
  .hero-visual { display: none; }
  .intro p { padding: 22px; }
}

.chart-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}

.chart-card iframe {
  display: block;
  width: 100%;
  height: 620px;
  border: 0;
  background: #050807;
}

button.button {
  cursor: pointer;
  color: var(--mint);
  background: transparent;
}

button.button:disabled {
  cursor: wait;
  opacity: .62;
  transform: none;
}

@media (max-width: 620px) {
  .chart-card iframe { height: 480px; }
}
