:root, [data-theme="dark"] {
  color-scheme: dark;
  --bg: #0a0908;
  --surface: #110f0c;
  --surface-2: #181510;
  --line: #24201a;
  --line-strong: #332c22;
  --text: #ece5d6;
  --muted: #918a7a;
  --accent: #d9ad3c;
  --accent-2: #f2cf6b;
  --accent-text: #1a1205;
  --lapis: #2b4fb8;
  --sol-a: #9945ff;
  --sol-b: #14f195;
  --display: "Cinzel", Georgia, serif;
  --green: #3ecf8e;
  --red: #e5484d;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
}
[data-theme="light"] {
  color-scheme: light;
  --bg: #fbf8f1;
  --surface: #ffffff;
  --surface-2: #f3eee2;
  --line: #e7e0d0;
  --line-strong: #d6cdb8;
  --text: #1c1810;
  --muted: #6f6858;
  --accent: #a67c14;
  --accent-2: #8a6508;
  --accent-text: #ffffff;
  --lapis: #2b4fb8;
  --green: #1a9e63;
  --red: #d4373d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }
h1 { font-family: var(--display); font-size: 30px; font-weight: 700; letter-spacing: .01em; line-height: 1.2; color: var(--accent-2); }
h2 { font-family: var(--display); font-size: 19px; font-weight: 700; letter-spacing: .04em; color: var(--accent-2); }
h3 { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
code { font-family: var(--mono); }
.muted { color: var(--muted); }
[hidden] { display: none !important; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.section { padding: 44px 24px 0; }
.section-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; min-height: 34px; }
.num { text-align: right; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  height: 34px; padding: 0 14px; border-radius: 6px;
  background: var(--accent); color: var(--accent-text); font-weight: 600; font-size: 13.5px;
  border: 1px solid var(--accent); white-space: nowrap;
}
.btn:hover { background: var(--accent-2); border-color: var(--accent-2); }
.btn-icon { padding: 0; justify-content: center; }
.intro-inner .actions .btn { width: 156px; height: 42px; justify-content: center; padding: 0; }
.btn-icon img { display: block; }
.nav-icon { display: inline-flex; align-items: center; gap: 6px; opacity: .85; }
.nav-icon:hover { opacity: 1; }
[data-theme="light"] .btn-icon img[src*="simpleicons"] { filter: invert(1); }
[data-theme="light"] .btn img[src*="-ink"] { filter: invert(1) brightness(2); }
.nav-icon img { opacity: .9; }
.top nav .btn img { margin-right: 2px; }
.btn-secondary { background: transparent; color: var(--accent-2); border-color: var(--line-strong); }
.btn-secondary:hover { background: var(--surface-2); border-color: var(--accent); }
.text-btn { background: none; border: 0; padding: 0; font: inherit; font-size: 13px; color: var(--accent); cursor: pointer; font-weight: 500; }
.text-btn:hover { text-decoration: underline; text-underline-offset: 3px; }
.icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 6px; border: 1px solid var(--line-strong); background: transparent; color: var(--muted); cursor: pointer; }
.icon-btn:hover { color: var(--text); }
[data-theme="light"] .i-moon, :root:not([data-theme="light"]) .i-sun { display: none; }

/* Header */
.top { position: sticky; top: 0; z-index: 10; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.top-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 64px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: .12em; color: var(--accent-2); justify-self: start; }
.brand img { border: 1px solid var(--accent); }
.nav-center { justify-self: center; }
.reveal { opacity: 0; transform: translateY(-4px); pointer-events: none; transition: opacity .25s, transform .25s; }
.top.scrolled .reveal { opacity: 1; transform: none; pointer-events: auto; }
.nav-right { justify-self: end; }
.social { display: inline-flex; align-items: center; gap: 20px; opacity: 0; transform: translateY(-4px); pointer-events: none; transition: opacity .25s, transform .25s; }
.top.scrolled .social { opacity: 1; transform: none; pointer-events: auto; }
.brand img { border-radius: 50%; }
.top nav { display: flex; align-items: center; gap: 20px; font-size: 13.5px; color: var(--muted); }
.top nav a:not(.btn):hover { color: var(--text); }
.count { display: inline-block; margin-left: 6px; padding: 1px 6px; border-radius: 4px; background: var(--surface-2); color: var(--text); font-size: 11.5px; font-family: var(--mono); }

/* Intro */
.intro { border-bottom: 1px solid var(--line); position: relative; overflow: hidden;
  background: radial-gradient(1100px 520px at 50% 0%, rgba(217,173,60,.18), transparent 70%), linear-gradient(180deg, rgba(43,79,184,.10), transparent 70%); }
[data-theme="light"] .intro { background: radial-gradient(640px 300px at 50% 0%, rgba(166,124,20,.10), transparent 70%), linear-gradient(180deg, rgba(43,79,184,.05), transparent 70%); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
[data-theme="light"] .hero-bg { opacity: .7; }
.intro-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding-top: 96px; padding-bottom: 72px; max-width: 1180px; }
.hero-avatar { width: 200px; height: 200px; border-radius: 50%; border: 2px solid var(--accent); box-shadow: 0 0 0 10px rgba(217,173,60,.08), 0 24px 60px rgba(0,0,0,.55); margin-bottom: 30px; }
.intro-inner .eyebrow-name { margin-bottom: 16px; font-size: 26px; letter-spacing: .26em; }
.intro-inner .lead { margin: 14px auto 30px; max-width: 720px; font-size: 17px; }
.wordmark { font-family: var(--display); font-weight: 700; font-size: clamp(44px, 7vw, 84px); letter-spacing: .16em; line-height: 1; color: var(--accent-2); text-shadow: 0 0 40px rgba(217,173,60,.25); margin: 0 0 14px .16em; }
.intro-inner h1 { color: var(--text); font-weight: 600; letter-spacing: .02em; }
.stats-strip { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line)); margin: 0 5px; background: color-mix(in srgb, var(--bg) 70%, transparent); backdrop-filter: blur(6px); }
.stat { padding: 22px 12px; display: flex; flex-direction: column; align-items: center; gap: 4px; border-right: 1px solid color-mix(in srgb, var(--accent) 22%, var(--line)); }
.stat:last-child { border-right: 0; }
.stat-n { font-family: var(--mono); font-size: 24px; color: var(--accent-2); font-weight: 500; }
.stat-l { font-family: var(--display); font-size: 10.5px; letter-spacing: .14em; color: var(--muted); text-transform: uppercase; }
.intro-inner .actions { justify-content: center; margin-bottom: 24px; gap: 14px; }
.intro-inner .sol-pill { margin: 0; }
.wallet-wide { margin-top: 32px; }
.wallet-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; min-height: 24px; }
.wallet-row .addr { flex: 1; min-width: 260px; }
.wallet-row .panel-links { margin: 0; }
.kv.kv-4 { grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.kv.kv-4 div { border-right: 1px solid var(--line); padding: 12px 16px; border-bottom: 0; }
.kv.kv-4 div:nth-child(odd), .kv.kv-4 div:nth-child(even) { padding: 12px 16px; border-right: 1px solid var(--line); }
.kv.kv-4 div:first-child { padding-left: 0; }
.kv.kv-4 div:last-child { border-right: 0; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.eyebrow img { border-radius: 50%; border: 1px solid var(--accent); }
.eyebrow-name { font-family: var(--display); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: 13px; color: var(--accent-2); }
.sol-pill { display: inline-flex; align-items: center; gap: 7px; margin-left: 4px; padding: 4px 10px 4px 8px; border-radius: 999px; border: 1px solid var(--line-strong); font-size: 12px; color: var(--muted); background: var(--surface); }
.sol-pill i { width: 9px; height: 9px; border-radius: 50%; background: linear-gradient(135deg, var(--sol-a), var(--sol-b)); }
.ornament { height: 14px; margin: 0 0 16px; background: linear-gradient(90deg, var(--accent), var(--line) 45%, var(--line)) left center / 100% 1px no-repeat; position: relative; }
.ornament::before { content: ""; position: absolute; left: 0; top: 3px; width: 8px; height: 8px; background: var(--accent); transform: rotate(45deg); }
.ornament::after { content: ""; position: absolute; left: 14px; top: 5px; width: 4px; height: 4px; background: var(--lapis); transform: rotate(45deg); }

.lead { margin: 14px 0 22px; max-width: 520px; color: var(--muted); font-size: 15.5px; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; }

.wallet-panel { border: 1px solid var(--line-strong); border-top: 2px solid var(--accent); border-radius: 8px; background: var(--surface); padding: 18px 20px; }
.panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.label { font-size: 11.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 600; }
.status { font-size: 12px; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--muted); }
.status.ok::before { background: var(--green); }
.status.err::before { background: var(--red); }
.addr { display: block; font-size: 12.5px; color: var(--text); word-break: break-all; line-height: 1.5; }
.panel-links { display: flex; gap: 16px; margin: 10px 0 16px; }
.kv { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 0; border-top: 1px solid var(--line); }
.kv div { padding: 10px 0; border-bottom: 1px solid var(--line); }
.kv div:nth-child(odd) { padding-right: 12px; border-right: 1px solid var(--line); }
.kv div:nth-child(even) { padding-left: 12px; }
.kv dt { font-size: 11.5px; color: var(--muted); }
.kv dd { margin: 2px 0 0; font-family: var(--mono); font-size: 16px; font-weight: 500; color: var(--accent-2); }

/* Callout */
.callout { margin-top: 16px; padding: 14px 16px; border: 1px solid var(--line-strong); border-left: 3px solid var(--accent); border-radius: 8px; font-size: 14px; color: var(--muted); background: var(--surface); }
.callout strong { color: var(--text); display: block; margin-bottom: 2px; font-weight: 600; }
.callout a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }

/* Filters */
.filters { display: flex; gap: 4px; }
.chip { background: transparent; border: 1px solid transparent; color: var(--muted); padding: 5px 10px; border-radius: 6px; font: inherit; font-size: 13px; cursor: pointer; }
.chip:hover { color: var(--text); }
.chip.is-active { background: var(--surface-2); color: var(--text); }

/* Tables */
.table-wrap { border: 1px solid var(--line); border-radius: 8px; overflow: auto; background: var(--surface); }
.tbl { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.tbl th, .tbl td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: middle; white-space: nowrap; }
.tbl th { font-size: 11.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 600; background: var(--surface-2); }
.tbl tr:last-child td { border-bottom: 0; }
.tbl tbody tr:hover td { background: var(--surface-2); }
.tbl td.num, .tbl th.num { text-align: right; font-variant-numeric: tabular-nums; }
.tbl .mono { font-family: var(--mono); font-size: 12.5px; }
.tbl a.lnk { color: var(--accent); font-weight: 500; }
.tbl a.lnk:hover { text-decoration: underline; text-underline-offset: 3px; }
.tbl .pos { color: var(--green); } .tbl .neg { color: var(--red); }
.tbl .skeleton td { height: 52px; background: linear-gradient(90deg, var(--surface), var(--surface-2), var(--surface)); background-size: 200% 100%; animation: sh 1.4s infinite; }
@keyframes sh { from { background-position: 200% 0 } to { background-position: -200% 0 } }

.coin-cell { display: flex; align-items: center; gap: 12px; }
.coin-cell img { width: 36px; height: 36px; border-radius: 6px; object-fit: cover; background: var(--surface-2); flex: none; }
.coin-cell .n { font-weight: 600; }
.coin-cell .s { color: var(--muted); font-size: 12.5px; font-family: var(--mono); }
.coin-cell .d { color: var(--muted); font-size: 12px; max-width: 280px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; white-space: normal; line-height: 1.35; margin-top: 2px; }

.tag { display: inline-block; font-size: 11.5px; font-weight: 600; padding: 3px 8px; border-radius: 4px; border: 1px solid var(--line-strong); color: var(--muted); }
.tag.live { color: var(--sol-b); border-color: color-mix(in srgb, var(--sol-b) 45%, transparent); }
[data-theme="light"] .tag.live { color: #0b8f5a; }
.tag.live::before { content: "●"; margin-right: 5px; font-size: 9px; vertical-align: 1px; }
.tag.grad { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 45%, transparent); }
.tag.Create { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 45%, transparent); }
.tag.Buy { color: var(--green); border-color: color-mix(in srgb, var(--green) 40%, transparent); }
.tag.Sell { color: var(--red); border-color: color-mix(in srgb, var(--red) 50%, transparent); }
.tag.warn { color: var(--red); border-color: color-mix(in srgb, var(--red) 50%, transparent); }

.hold { font-size: 13px; }
.hold small { display: block; color: var(--muted); font-size: 11.5px; }
.hold.ok { color: var(--green); }
.hold.warn { color: var(--red); }
.spark { width: 80px; height: 28px; display: block; }
.spark-h { width: 80px; }
.row-actions { display: flex; gap: 10px; justify-content: flex-end; }
.coins th, .coins td { padding-left: 10px; padding-right: 10px; }
.coins .hold { font-size: 12.5px; }
.coins .launched { font-size: 12.5px; }
.coins th:first-child, .coins td:first-child { padding-left: 20px; }
.coins th:last-child, .coins td:last-child { padding-right: 20px; }

.empty { padding: 36px 16px; text-align: center; color: var(--muted); border: 1px dashed var(--line-strong); border-radius: 8px; }

.unannounced { margin-top: 14px; }
.unannounced summary { cursor: pointer; font-size: 13px; color: var(--muted); padding: 8px 0; list-style: none; }
.unannounced summary::-webkit-details-marker { display: none; }
.unannounced summary::before { content: "+"; display: inline-block; width: 16px; color: var(--muted); font-family: var(--mono); }
.unannounced[open] summary::before { content: "–"; }
.unannounced summary span { color: var(--text); font-weight: 600; }
.unannounced .table-wrap { margin-top: 10px; }
.unannounced td { color: var(--muted); }

/* Verify */
.verify-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 14px; font-size: 14px; }
.verify-grid ol { margin: 0 0 10px; padding-left: 18px; }
.verify-grid li { margin-bottom: 6px; }
.verify-grid li a { color: var(--accent); }
.verify-grid p { margin-bottom: 8px; }

/* Footer */
.foot { border-top: 1px solid var(--line); margin-top: 48px; }
.foot-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 18px; padding-bottom: 22px; font-size: 12.5px; }
.foot-inner > span:first-child { font-family: var(--display); font-weight: 700; letter-spacing: .08em; color: var(--accent-2); }

/* Responsive */
@media (max-width: 860px) {
  .wrap, .section { padding-left: 16px; padding-right: 16px; }
  .top nav { gap: 12px; }
  .nav-center { display: none; }
  .top-inner { grid-template-columns: auto 1fr; }
  .brand { font-size: 17px; }
  .social { gap: 14px; }
  .intro-inner { padding-top: 48px; padding-bottom: 44px; }
  .hero-avatar { width: 140px; height: 140px; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .intro-inner .actions .btn { width: 100px; }
  .kv.kv-4 { grid-template-columns: 1fr 1fr; }
  .kv.kv-4 div:nth-child(2) { border-right: 0; }
  .kv.kv-4 div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .kv.kv-4 div:nth-child(3) { padding-left: 0; }
  h1 { font-size: 22px; }
  .eyebrow img { width: 36px; height: 36px; }
  .verify-grid { grid-template-columns: 1fr; gap: 24px; }
  .coins .spark-h, .coins .spark-cell, .coins .launched { display: none; }
}

.tbl th:first-child, .tbl td:first-child { padding-left: 20px; }
.tbl th:last-child, .tbl td:last-child { padding-right: 20px; }
.wallet-panel { padding: 18px 20px 10px; }
.unannounced { margin-top: 16px; }
.verify-grid { margin-top: 16px; }
.foot { margin-top: 44px; }
.foot-inner { align-items: center; }
.section-head .muted { font-size: 13.5px; }
.section-note { margin: -6px 0 14px; font-size: 13.5px; }
.tag.Tx { color: var(--muted); }

/* Pharaonic frames for panels and tables */
.table-wrap, .wallet-panel, .callout {
  position: relative;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, var(--line));
  box-shadow: 0 0 0 4px var(--bg), 0 0 0 5px color-mix(in srgb, var(--accent) 22%, var(--line)), 0 10px 30px rgba(0,0,0,.35);
  border-radius: 4px;
  background: linear-gradient(180deg, var(--surface), color-mix(in srgb, var(--surface) 92%, var(--accent) 8%));
}
.wallet-panel { border-top: 1px solid color-mix(in srgb, var(--accent) 45%, var(--line)); }
.callout { border-left: 1px solid color-mix(in srgb, var(--accent) 45%, var(--line)); }
.table-wrap::before, .wallet-panel::before, .callout::before,
.table-wrap::after, .wallet-panel::after, .callout::after {
  content: ""; position: absolute; width: 9px; height: 9px; background: var(--accent); transform: rotate(45deg); pointer-events: none;
}
.table-wrap::before, .wallet-panel::before, .callout::before { top: -5px; left: -5px; }
.table-wrap::after, .wallet-panel::after, .callout::after { bottom: -5px; right: -5px; }
.wrap > .table-wrap, .section > .table-wrap, .wallet-wide, .callout, .unannounced .table-wrap { margin-left: 5px; margin-right: 5px; }
.tbl th {
  font-family: var(--display); font-weight: 700; font-size: 11px; letter-spacing: .14em; color: var(--accent);
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 14%, var(--surface)), color-mix(in srgb, var(--accent) 6%, var(--surface)));
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line));
}
.tbl tbody tr:hover td { background: color-mix(in srgb, var(--accent) 6%, var(--surface)); }
.label { font-family: var(--display); color: var(--accent); letter-spacing: .14em; font-size: 11px; }
.callout strong { font-family: var(--display); letter-spacing: .04em; color: var(--accent-2); font-size: 13.5px; }
.kv.kv-4 { border-top: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line)); }
.kv.kv-4 div { border-right-color: color-mix(in srgb, var(--accent) 22%, var(--line)); }
.tag.grad, .tag.Create { background: color-mix(in srgb, var(--accent) 10%, transparent); }
.chip.is-active { background: color-mix(in srgb, var(--accent) 14%, transparent); color: var(--accent-2); border-color: color-mix(in srgb, var(--accent) 40%, transparent); }
.wallet-panel { padding-bottom: 8px; }
.section-note { margin-left: 5px; }
@media (max-width: 860px) { .wrap > .table-wrap, .section > .table-wrap, .wallet-wide, .callout, .unannounced .table-wrap { margin-left: 5px; margin-right: 5px; } }

/* Scoreboard */
.score-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin: 0 5px; }
.score-grid-3 { grid-template-columns: repeat(3, 1fr); }
.score { border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line)); background: linear-gradient(180deg, var(--surface), color-mix(in srgb, var(--surface) 92%, var(--accent) 8%)); padding: 14px 16px; border-radius: 4px; display: flex; flex-direction: column; gap: 4px; }
.score-l { font-family: var(--display); font-size: 10.5px; letter-spacing: .14em; color: var(--accent); }
.score-v { font-family: var(--mono); font-size: 20px; color: var(--text); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.score-v.warn { color: var(--red); }
.score-v.ok { color: var(--green); }

/* Risk cell */
.risk { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; }
.risk .pill { font-family: var(--mono); font-size: 11.5px; padding: 2px 7px; border-radius: 4px; border: 1px solid var(--line-strong); }
.risk .pill.good { color: var(--green); border-color: color-mix(in srgb, var(--green) 40%, transparent); }
.risk .pill.mid { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 40%, transparent); }
.risk .pill.bad { color: var(--red); border-color: color-mix(in srgb, var(--red) 50%, transparent); }
.risk a { color: var(--muted); }
.risk a:hover { color: var(--text); }

/* Explorer links under coin name */
.coin-cell .links { display: flex; flex-wrap: wrap; gap: 4px 10px; margin-top: 5px; font-size: 11.5px; max-width: 280px; }
.coin-cell .links a { color: var(--muted); }
.coin-cell .links a:hover { color: var(--accent); }
.coin-cell .links a.primary { color: var(--accent); font-weight: 600; }
a.tag.live:hover { background: color-mix(in srgb, var(--sol-b) 12%, transparent); }

/* Comparison */
.compare td:first-child { font-weight: 600; white-space: nowrap; }
.compare td { white-space: normal; vertical-align: top; }
.compare td:nth-child(2) { color: var(--muted); }
.compare td:nth-child(3) { color: var(--text); }
.compare th:nth-child(3) { color: var(--accent-2); }

/* FAQ */
.faq { margin: 0 5px; border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line)); border-radius: 4px; background: var(--surface); }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: 0; }
.faq summary { cursor: pointer; padding: 14px 18px; font-weight: 600; font-size: 14.5px; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-family: var(--mono); }
.faq details[open] summary::after { content: "–"; }
.faq p { margin: 0; padding: 0 18px 16px; color: var(--muted); font-size: 14px; max-width: 760px; }

.foot-inner .text-btn { font-size: 12.5px; }
@media (max-width: 860px) {
  .score-grid { grid-template-columns: repeat(2, 1fr); }
  .score-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .score-v { font-size: 17px; }
}
.coins td:first-child, .coins th:first-child { min-width: 330px; }
.section-note.after-grid { margin: 14px 5px 0; }
.score-grid { margin-bottom: 0; }

/* Scrollable tables: about 10 rows visible, header stays put */
.table-wrap.scroll { overflow: auto; overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: color-mix(in srgb, var(--accent) 45%, transparent) transparent; }
.table-wrap.rows-10 { max-height: 500px; }
.table-wrap.rows-10.coins-wrap { max-height: 900px; }
.table-wrap.scroll thead th { position: sticky; top: 0; z-index: 2; }
.table-wrap.scroll tfoot th { position: sticky; bottom: 0; z-index: 2; background: color-mix(in srgb, var(--accent) 10%, var(--surface)); }
.table-wrap.scroll::-webkit-scrollbar { width: 8px; height: 8px; }
.table-wrap.scroll::-webkit-scrollbar-thumb { background: color-mix(in srgb, var(--accent) 45%, transparent); border-radius: 8px; }
.table-wrap.scroll::-webkit-scrollbar-track { background: transparent; }
