/* Static pages (about, docs, compare, guides). Same tokens as the app, plain HTML so crawlers read it without JavaScript. */
:root {
  --page: #050509;
  --card: #10101a;
  --card-border: rgba(255, 255, 255, 0.06);
  --text: #e8ecf4;
  --text-2: #c3cad8;
  --muted: #8b94a7;
  --accent: #4f5dff;
  --accent-light: #8b9cff;
  --pos: #22c55e;
  color-scheme: dark;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--page); color: var(--text); font-family: Manrope, system-ui, -apple-system, sans-serif; -webkit-font-smoothing: antialiased; }
body { line-height: 1.6; font-size: 16px; }
a { color: var(--accent-light); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 760px; margin: 0 auto; padding: 0 20px 60px; }
header.top { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--card-border); margin-bottom: 28px; flex-wrap: wrap; }
header.top .brand { display: flex; align-items: center; gap: 10px; color: var(--text); font-weight: 800; font-size: 18px; }
header.top .brand img { width: 28px; height: 28px; }
header.top nav { display: flex; gap: 16px; flex-wrap: wrap; font-size: 14px; color: var(--text-2); }
header.top nav a { color: var(--text-2); }
header.top nav a.cta { color: #fff; background: var(--accent); padding: 6px 12px; border-radius: 999px; font-weight: 700; }
header.top nav a.cta:hover { text-decoration: none; background: #4250e6; }
h1 { font-size: 34px; line-height: 1.15; margin: 0 0 12px; letter-spacing: -0.01em; }
h2 { font-size: 22px; margin: 36px 0 10px; }
h3 { font-size: 17px; margin: 24px 0 6px; }
p.lead { font-size: 18px; color: var(--text-2); margin: 0 0 18px; }
p { margin: 0 0 14px; }
ul, ol { padding-left: 22px; margin: 0 0 14px; }
li { margin: 4px 0; }
table { border-collapse: collapse; width: 100%; margin: 12px 0 20px; font-size: 15px; }
th, td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--card-border); vertical-align: top; }
th { color: var(--muted); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; }
.tablewrap { overflow-x: auto; }
.card { background: var(--card); border: 1px solid var(--card-border); border-radius: 14px; padding: 16px 18px; margin: 16px 0; }
.muted { color: var(--muted); }
.note { color: var(--muted); font-size: 14px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0; }
.btn { display: inline-block; background: var(--accent); color: #fff; font-weight: 700; padding: 10px 18px; border-radius: 12px; }
.btn:hover { background: #4250e6; text-decoration: none; }
.btn.ghost { background: transparent; border: 1px solid var(--card-border); color: var(--text); }
footer { margin-top: 48px; padding-top: 18px; border-top: 1px solid var(--card-border); font-size: 13px; color: var(--muted); display: flex; gap: 14px; flex-wrap: wrap; }
footer a { color: var(--muted); }
.chain { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 6px; vertical-align: middle; }
.sol { background: #9945ff; } .base { background: #0052ff; } .hood { background: #00c805; }
