/* extractablevalue.net — dark + purple + cyberpunk-tech.
   Distinct from BOUNTY (skull/gold/parchment) and HypeStrategy (mint/teal/serif). */

:root {
  --ink:        #0a0612;
  --ink-2:      #110720;
  --panel:      #170a2a;
  --panel-2:    #1f0e38;
  --line:       #2a1450;
  --line-2:     #3a1d6a;
  --text:       #efe6ff;
  --muted:      #9a8ec5;
  --muted-2:    #6c5e93;
  --purple:     #a458ff;
  --purple-2:   #c688ff;
  --purple-dim: #6a3acc;
  --green:      #4ade80;
  --red:        #f87171;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--ink);
  color: var(--text);
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* `clip` not `hidden`. hidden creates a scrolling context that breaks
     position:sticky and fixed-relative-to-viewport layouts. */
  overflow-x: clip;
  /* Custom purple scrollbar — Firefox property. */
  scrollbar-color: var(--purple) var(--ink-2);
  scrollbar-width: thin;
}

/* Custom purple scrollbar — WebKit / Chromium / Safari. */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--ink-2);
  border-left: 1px solid var(--line);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--purple), var(--purple-dim));
  border-radius: 5px;
  border: 2px solid var(--ink-2);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--purple-2), var(--purple));
}
::-webkit-scrollbar-corner { background: var(--ink-2); }
a { color: var(--purple-2); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--text); }
code, .mono { font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace; }
code { background: rgba(164,88,255,0.08); padding: 1px 6px; border-radius: 4px; font-size: 0.88em; color: var(--purple-2); }

/* ── ambient ────────────────────────────────────────────────── */
.bg-fx { position: fixed; inset: 0; pointer-events: none; z-index: -1; }
.bg-fx .grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(138,92,246,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(138,92,246,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 0%, transparent 100%);
}
.bg-fx .orb {
  position: absolute;
  width: 720px; height: 720px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
}
.bg-fx .orb-l { background: radial-gradient(circle, var(--purple) 0%, transparent 70%); top: -200px; left: -200px; }
.bg-fx .orb-r { background: radial-gradient(circle, var(--purple-dim) 0%, transparent 70%); top: 200px; right: -240px; }
.bg-fx .scan {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent 0px,
    transparent 3px,
    rgba(138,92,246,0.015) 3px,
    rgba(138,92,246,0.015) 4px
  );
  pointer-events: none;
}

/* ── nav (custom: terminal-pill design) ────────────────────── */
.nav {
  position: sticky;
  top: 0; z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 32px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 6, 18, 0.72);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex; align-items: center; gap: 12px;
  font-size: 16px; color: var(--text);
  font-weight: 400;
}
.brand img {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(164,88,255,0.4);
  box-shadow: 0 0 14px -2px rgba(164,88,255,0.5);
}
.brand b { font-weight: 700; color: var(--text); margin-right: 3px; }
.brand-sm { font-size: 15px; }
.brand-sm img { width: 26px; height: 26px; }

.nav > nav {
  display: flex; align-items: center; gap: 4px;
  font-size: 13px;
}
.nav > nav a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 500;
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: all 0.15s ease;
}
.nav > nav a::before {
  content: "/";
  color: var(--muted-2);
  font-weight: 400;
}
.nav > nav a:hover {
  color: var(--text);
  background: rgba(164,88,255,0.06);
  border-color: rgba(164,88,255,0.2);
}
.nav > nav a:hover::before { color: var(--purple-2); }
.nav > nav a.active {
  color: var(--purple-2);
  background: rgba(164,88,255,0.10);
  border-color: rgba(164,88,255,0.35);
}
.nav > nav a.active::before { color: var(--purple); }

.nav > nav .x-link {
  font-family: inherit;
  font-size: 16px;
  width: 32px; height: 32px;
  padding: 0; justify-content: center;
  margin-left: 8px;
}
.nav > nav .x-link::before { content: none; }
.nav > nav .x-link:hover { background: var(--purple); color: white; border-color: var(--purple); }

/* ── hero ──────────────────────────────────────────────────── */
.hero {
  max-width: 880px; margin: 0 auto;
  padding: 48px 36px 64px;
  text-align: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--purple-2);
  background: rgba(164,88,255,0.08);
  border: 1px solid rgba(164,88,255,0.25);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-tag b { color: var(--text); font-weight: 600; }
.hero h1 {
  font-size: clamp(40px, 7vw, 78px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
}
.hero h1 .grad,
.grad {
  background: linear-gradient(90deg, var(--purple-2), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lede {
  max-width: 680px; margin: 0 auto 32px;
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--muted);
  line-height: 1.65;
}
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-row.center { justify-content: center; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s ease;
  border: 1px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dim) 100%);
  color: white;
  box-shadow: 0 8px 28px -8px rgba(164,88,255,0.6);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 36px -8px rgba(164,88,255,0.8); color: white; }
.btn-ghost {
  background: rgba(164,88,255,0.06);
  border-color: rgba(164,88,255,0.25);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(164,88,255,0.12); border-color: var(--purple); color: var(--text); }

.dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; }
.dot-live { background: var(--purple); box-shadow: 0 0 10px var(--purple); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.hero-strip {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  background: rgba(23,10,42,0.55);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
}
.hero-strip > div { text-align: left; }
.kpi-l { font-family: "JetBrains Mono", monospace; font-size: 10px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.kpi-v { font-size: 16px; font-weight: 600; color: var(--text); }
.kpi-v.purple { color: var(--purple-2); }
.kpi-v.green  { color: var(--green); }

/* ── sections ──────────────────────────────────────────────── */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 76px 36px;
}
.section-thin { padding: 28px 36px; }
.section-head { text-align: center; margin-bottom: 52px; }
.eyebrow {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--purple-2);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.section h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 14px;
}
.sub {
  max-width: 620px; margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
}

/* ── stats grid ─────────────────────────────────────────── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.stat {
  background: linear-gradient(180deg, rgba(23,10,42,0.7) 0%, rgba(17,7,32,0.5) 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 22px 20px;
}
.stat-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.stat-sub { font-size: 12.5px; color: var(--muted); line-height: 1.55; }

/* ── pillars ───────────────────────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pillar {
  background: linear-gradient(180deg, var(--panel) 0%, rgba(17,7,32,0.4) 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.pillar::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, transparent 0%, rgba(164,88,255,0.18) 100%);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.pillar:hover { border-color: var(--line-2); transform: translateY(-2px); }
.pillar:hover::before { opacity: 1; }
.pillar-num { font-family: "JetBrains Mono", monospace; font-size: 12px; color: var(--purple-2); letter-spacing: 0.1em; margin-bottom: 16px; }
.pillar h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 10px; color: var(--text); }
.pillar p { font-size: 14px; line-height: 1.65; color: var(--muted); margin: 0; }

/* ── architecture ──────────────────────────────────────────── */
.arch-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start; }
.flow-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.flow-list li {
  display: flex; align-items: flex-start; gap: 20px;
  background: rgba(23,10,42,0.45);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 24px;
  transition: border-color 0.2s ease;
}
.flow-list li:hover { border-color: var(--line-2); }
.step {
  flex-shrink: 0;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dim) 100%);
  color: white;
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 4px 16px -4px rgba(164,88,255,0.5);
}
.flow h4 { margin: 0 0 4px; font-size: 16px; font-weight: 600; color: var(--text); }
.flow p { margin: 0; color: var(--muted); font-size: 13.5px; }
.arch-diagram {
  background: rgba(23,10,42,0.45);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  position: sticky;
  top: 24px;
}
.arch-diagram svg { width: 100%; height: auto; }

/* ── fee curve ─────────────────────────────────────────── */
.formula {
  font-family: "JetBrains Mono", monospace;
  background: rgba(164,88,255,0.08);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.92em;
}
.curve-wrap { display: grid; grid-template-columns: 1.6fr 1fr; gap: 24px; align-items: start; }
.curve-svg {
  width: 100%; height: auto;
  background: rgba(23,10,42,0.45);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}
.curve-meta { display: flex; flex-direction: column; gap: 14px; font-size: 13.5px; color: var(--muted); }
.curve-meta b { color: var(--text); font-weight: 600; }

/* ── classifier signals ───────────────────────────────── */
.signals {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.signal {
  background: linear-gradient(180deg, rgba(23,10,42,0.6) 0%, rgba(17,7,32,0.4) 100%);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 16px;
}
.signal-tag {
  display: inline-block;
  background: rgba(164,88,255,0.12);
  border: 1px solid rgba(164,88,255,0.3);
  color: var(--purple-2);
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 6px;
  margin-bottom: 12px;
}
.signal h4 { margin: 0 0 6px; font-size: 14px; font-weight: 600; color: var(--text); }
.signal p { margin: 0; font-size: 12.5px; color: var(--muted); line-height: 1.55; }

/* ── comparison table ─────────────────────────────────── */
.cmp {
  background: rgba(23,10,42,0.45);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.cmp table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.cmp th, .cmp td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.cmp th { font-family: "JetBrains Mono", monospace; font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.cmp tr:last-child td { border-bottom: none; }
.cmp tr:hover td { background: rgba(164,88,255,0.04); }
.cmp td.ok, .cmp .ok { color: var(--green); }
.cmp td.no, .cmp .no { color: var(--muted-2); }
.cmp td:first-child { color: var(--text); font-weight: 500; }

/* ── tokenomics ────────────────────────────────────────── */
.tokenomics {
  background: rgba(23,10,42,0.45);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
}
.distro-bar {
  display: flex;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--line-2);
}
.seg {
  flex-basis: var(--w);
  position: relative;
  transition: filter 0.15s ease;
}
.seg-1 { background: linear-gradient(180deg, var(--purple) 0%, var(--purple-dim) 100%); }
.seg-2 { background: linear-gradient(180deg, #7a3acc 0%, #4a1f8e 100%); }
.seg-3 { background: linear-gradient(180deg, #5a2eaa 0%, #2a0f5e 100%); }
.seg-4 { background: linear-gradient(180deg, #c688ff 0%, #8b5cf6 100%); }
.seg:hover { filter: brightness(1.2); }
.distro-legend {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.distro-legend li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px;
  color: var(--text);
}
.distro-legend li b { display: block; font-weight: 600; }
.distro-legend .lg-sub { display: block; font-size: 12.5px; color: var(--muted); margin-top: 2px; line-height: 1.5; }
.sw { display: inline-block; width: 14px; height: 14px; border-radius: 4px; flex-shrink: 0; margin-top: 3px; }
.sw-1 { background: linear-gradient(180deg, var(--purple), var(--purple-dim)); }
.sw-2 { background: linear-gradient(180deg, #7a3acc, #4a1f8e); }
.sw-3 { background: linear-gradient(180deg, #5a2eaa, #2a0f5e); }
.sw-4 { background: linear-gradient(180deg, #c688ff, #8b5cf6); }

/* ── roadmap ───────────────────────────────────────────── */
.rm { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.rm li {
  background: rgba(23,10,42,0.45);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: baseline;
  position: relative;
}
.rm li.rm-done { border-left: 3px solid var(--green); }
.rm li.rm-active { border-left: 3px solid var(--purple); box-shadow: 0 0 24px -8px rgba(164,88,255,0.4); }
.rm-phase {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--purple-2);
  letter-spacing: 0.1em;
}
.rm h4 { font-size: 17px; font-weight: 600; margin: 0 0 6px; color: var(--text); letter-spacing: -0.01em; }
.rm h4 .muted { font-weight: 400; font-size: 13px; }
.rm p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.6; }

/* ── faq ───────────────────────────────────────────────── */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  background: rgba(23,10,42,0.45);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 10px;
  padding: 0;
  transition: border-color 0.2s ease;
}
.faq details:hover { border-color: var(--line-2); }
.faq summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--purple-2);
  font-family: "JetBrains Mono", monospace;
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ── subpage hero (mechanic / architecture) ───────────────── */
.page-hero {
  max-width: 880px;
  margin: 0 auto;
  padding: 56px 36px 32px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 10px 0 20px;
}
.page-hero .lede {
  max-width: 660px; margin: 0 auto;
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
}

/* ── entry cards on landing (route to subpages) ──────────── */
.entry-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.entry-card {
  background: linear-gradient(180deg, var(--panel) 0%, rgba(17,7,32,0.4) 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 24px 22px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.18s ease;
  position: relative;
  overflow: hidden;
}
.entry-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, transparent 0%, rgba(164,88,255,0.18) 100%);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.entry-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-2);
  color: var(--text);
}
.entry-card:hover::before { opacity: 1; }
.entry-pre {
  font-size: 11px;
  color: var(--purple-2);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.entry-card h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
}
.entry-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted);
  flex: 1;
}
.entry-cta {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-2);
}
.entry-card:hover .entry-cta { color: var(--text); }

/* ── split cards on /mechanic ─────────────────────────── */
.split-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.sc {
  background: linear-gradient(180deg, rgba(23,10,42,0.7) 0%, rgba(17,7,32,0.5) 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.sc:hover { border-color: var(--line-2); }
.sc-lp   { border-left: 3px solid var(--green); }
.sc-burn { border-left: 3px solid var(--red); }
.sc-pol  { border-left: 3px solid var(--purple); }
.sc-pct {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--text);
}
.sc-lp .sc-pct   { color: var(--green); }
.sc-burn .sc-pct { color: var(--red); }
.sc-pol .sc-pct  { color: var(--purple-2); }
.sc-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sc p { margin: 0; font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.sc .addr { font-size: 10px; word-break: break-all; }

/* ── code block on /architecture ────────────────────────── */
.arch-code {
  background: #0f0822;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--text);
  overflow-x: auto;
  white-space: pre;
  margin: 0;
}
.arch-code .kw { color: #c688ff; font-weight: 600; }
.arch-code .vt { color: #4ade80; }
.arch-code .cm { color: #6c5e93; font-style: italic; }
.arch-code .hl { background: rgba(164,88,255,0.12); display: inline-block; }

/* ── closer ────────────────────────────────────────────── */
.closer {
  max-width: 900px; margin: 0 auto;
  padding: 96px 36px 80px;
  text-align: center;
}
.closer h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 18px;
}
.closer-sub { max-width: 540px; margin: 0 auto 32px; color: var(--muted); }

/* ── footer ────────────────────────────────────────────── */
.foot { max-width: 1200px; margin: 60px auto 0; padding: 30px 36px 48px; border-top: 1px solid var(--line); }
.foot-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; flex-wrap: wrap; gap: 14px; }
.foot-links { display: flex; align-items: center; gap: 20px; font-size: 14px; color: var(--muted); }
.foot-links .mono { color: var(--purple-2); font-size: 12px; }
.muted { color: var(--muted); }
.small { font-size: 12px; line-height: 1.65; }

/* ── responsive ───────────────────────────────────────── */
@media (max-width: 980px) {
  .arch-grid { grid-template-columns: 1fr; }
  .arch-diagram { position: static; }
  .curve-wrap { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .signals { grid-template-columns: repeat(2, 1fr); }
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  .distro-legend { grid-template-columns: 1fr; }
  .rm li { grid-template-columns: 1fr; gap: 6px; }
  .entry-cards { grid-template-columns: 1fr; }
  .split-cards { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav { padding: 18px 18px; }
  .nav nav { gap: 16px; font-size: 13px; }
  .hero { padding: 32px 18px 48px; }
  .section { padding: 56px 18px; }
  .pillars { grid-template-columns: 1fr; }
  .signals { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .entry-cards { grid-template-columns: 1fr; }
  .split-cards { grid-template-columns: 1fr; }
  .closer { padding: 60px 18px; }
  .page-hero { padding: 40px 18px 28px; }
  .flow-list li { padding: 18px; gap: 14px; }
  .foot { padding: 28px 18px 40px; }
  .tokenomics { padding: 20px; }
  .cmp table { font-size: 12.5px; }
  .cmp th, .cmp td { padding: 10px 12px; }
}
