:root {
  color-scheme: dark;
  --bg: #050a13;
  --ink: #f8fafc;
  --muted: #aab5c5;
  --line: rgba(255,255,255,.12);
  --gold: #edbf59;
  --gold-soft: rgba(237,191,89,.12);
  --green: #6de0a4;
  --panel: rgba(11,20,36,.82);
}
* { 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;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 7%, rgba(24,81,170,.46), transparent 33rem),
    radial-gradient(circle at 90% 88%, rgba(237,191,89,.12), transparent 34rem),
    var(--bg);
  line-height: 1.65;
}
a { color: #a9ccff; }
a:hover { color: #e2edff; }
.shell { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.topbar { border-bottom: 1px solid var(--line); background: rgba(4,9,17,.84); }
.topbar .shell { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.network { color: var(--green); font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.language { display: flex; gap: 12px; font-size: .82rem; }
.language a { color: var(--muted); text-decoration: none; }
.language a[aria-current="page"] { color: white; }
header { display: flex; justify-content: space-between; align-items: center; min-height: 86px; border-bottom: 1px solid var(--line); }
.brand { color: white; text-decoration: none; font-weight: 800; letter-spacing: .04em; }
.brand span { color: var(--gold); }
nav { display: flex; gap: 24px; align-items: center; }
nav a { color: var(--muted); text-decoration: none; font-size: .92rem; }
.hero { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: center; min-height: 620px; padding: 76px 0; }
.hero.compact { min-height: 440px; grid-template-columns: 1fr; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .15em; font-size: .75rem; font-weight: 800; }
h1 { margin: 14px 0 22px; max-width: 850px; font-size: clamp(3.2rem,7vw,6.2rem); line-height: .97; letter-spacing: -.058em; }
h2 { margin: 0 0 14px; font-size: clamp(1.9rem,3.5vw,3rem); line-height: 1.1; letter-spacing: -.04em; }
h3 { margin: 0 0 8px; font-size: 1.12rem; }
.lede { max-width: 760px; color: #d1d8e2; font-size: 1.16rem; }
.section-intro { max-width: 760px; margin: 0 0 30px; color: var(--muted); }
.coin { width: min(100%,400px); height: auto; aspect-ratio: 1 / 1; object-fit: contain; filter: drop-shadow(0 28px 52px rgba(0,0,0,.5)); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; padding: 12px 19px; border-radius: 999px; background: var(--gold); color: #10141d; text-decoration: none; font-weight: 800; }
.button.secondary { background: transparent; color: var(--ink); border: 1px solid var(--line); }
section { padding: 78px 0; border-top: 1px solid var(--line); }
.grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.grid.three { grid-template-columns: repeat(3,minmax(0,1fr)); }
.card { padding: 27px; border: 1px solid var(--line); border-radius: 20px; background: var(--panel); box-shadow: 0 18px 52px rgba(0,0,0,.13); }
.card p { color: var(--muted); margin-bottom: 0; }
.card .link { display: inline-block; margin-top: 16px; text-decoration: none; font-weight: 700; }
.metric { color: var(--gold); font-size: 1.9rem; font-weight: 800; }
.status { display: inline-block; margin-bottom: 14px; padding: 5px 10px; border-radius: 999px; background: rgba(61,190,123,.13); color: #8ce6b5; font-size: .75rem; font-weight: 800; letter-spacing: .04em; }
.status.planned { background: rgba(167,176,192,.12); color: #c6cfdd; }
.facts { margin: 30px 0 0; border-top: 1px solid var(--line); }
.fact { display: grid; grid-template-columns: 190px 1fr; gap: 24px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.fact dt { color: var(--muted); }
.fact dd { margin: 0; font-weight: 650; overflow-wrap: anywhere; }
.callout { padding: 24px 27px; border: 1px solid rgba(237,191,89,.28); border-radius: 18px; background: var(--gold-soft); }
.steps { counter-reset: step; }
.steps .card::before { counter-increment: step; content: "0" counter(step); display: block; margin-bottom: 22px; color: var(--gold); font-size: .8rem; font-weight: 800; letter-spacing: .12em; }
code,.mono { overflow-wrap: anywhere; color: #dce8ff; font-family: ui-monospace,SFMono-Regular,Consolas,monospace; font-size: .9em; }
.fine { color: var(--muted); font-size: .9rem; }
footer { padding: 42px 0 58px; color: var(--muted); border-top: 1px solid var(--line); }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; align-items: flex-start; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: var(--muted); text-decoration: none; }
@media (max-width: 880px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 36px; }
  .coin { max-width: 300px; }
  .grid.three { grid-template-columns: 1fr; }
}
@media (max-width: 650px) {
  .shell { width: min(100% - 28px,1160px); }
  .grid { grid-template-columns: 1fr; }
  .fact { grid-template-columns: 1fr; gap: 3px; }
  .footer-grid { flex-direction: column; }
  h1 { font-size: clamp(3rem,16vw,4.6rem); }
}
