:root {
  --bg: #0b1322;
  --bg-deep: #060a12;
  --panel: rgba(17, 30, 52, 0.84);
  --panel-solid: #111e34;
  --panel-hover: #172945;
  --line: rgba(174, 202, 240, 0.14);
  --line-strong: rgba(174, 202, 240, 0.28);
  --text: #f4f7fb;
  --muted: #9cacc0;
  --muted-2: #6f8098;
  --accent: #a7c9ff;
  --accent-strong: #617cf4;
  --accent-soft: rgba(111, 145, 255, 0.14);
  --green: var(--accent);
  --green-strong: var(--accent-strong);
  --green-soft: var(--accent-soft);
  --amber: #f4b860;
  --red: #ef897f;
  --blue: #72d4f5;
  --violet: #b99cff;
  --shadow: 0 30px 90px rgba(2, 7, 16, 0.42);
  --radius: 12px;
  --mono: "Space Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sans: "DM Sans", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Space Grotesk", "DM Sans", Inter, ui-sans-serif, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 73% 4%, rgba(94, 242, 116, 0.09), transparent 26rem),
    radial-gradient(circle at 8% 42%, rgba(70, 149, 102, 0.08), transparent 32rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  color: var(--text);
  font-family: var(--sans);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a { color: inherit; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--green);
  color: #07100b;
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.grid-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(166, 255, 178, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(166, 255, 178, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 67%);
}

.topbar, main, body > footer {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.topbar {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(168, 255, 120, 0.35);
  border-radius: 50%;
  box-shadow: inset 0 0 20px rgba(168, 255, 120, 0.08), 0 0 24px rgba(168, 255, 120, 0.08);
}
.brand-mark::before, .brand-mark::after, .brand-mark span {
  content: "";
  position: absolute;
  width: 15px;
  height: 1px;
  background: var(--green);
  transform-origin: center;
}
.brand-mark::before { transform: rotate(60deg); }
.brand-mark::after { transform: rotate(-60deg); }
.brand-mark span { width: 3px; height: 3px; border-radius: 50%; box-shadow: 0 0 8px var(--green); }

.brand-copy { display: grid; gap: 2px; letter-spacing: 0.12em; }
.brand-copy strong { font-size: 13px; }
.brand-copy small { color: var(--muted); font-size: 9px; }

.topnav { display: inline-flex; align-items: center; gap: 3px; padding: 3px; border: 1px solid var(--line); border-radius: 10px; background: rgba(5, 13, 8, 0.48); }
.topnav a { padding: 7px 10px; border-radius: 7px; color: var(--muted); font: 600 9px var(--mono); text-decoration: none; transition: color 150ms ease, background 150ms ease; }
.topnav a:hover { color: var(--text); background: rgba(255,255,255,0.035); }
.topnav a.is-active { color: var(--green); background: var(--green-soft); }
.topnav a:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }

.network-cluster { display: flex; align-items: center; gap: 10px; }
.creator-chip, .network-chip, .live-chip {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(12, 24, 16, 0.66);
  backdrop-filter: blur(14px);
}
.creator-chip {
  gap: 9px;
  padding: 7px 10px 7px 7px;
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}
.creator-chip:hover {
  border-color: rgba(168, 255, 120, 0.32);
  background: rgba(19, 39, 25, 0.82);
  transform: translateY(-1px);
}
.creator-chip:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}
.creator-icon {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 9px;
  background: var(--text);
  color: var(--bg-deep);
}
.creator-icon svg { width: 14px; height: 14px; fill: currentColor; }
.creator-copy { display: grid; gap: 2px; }
.creator-copy small { color: var(--muted); font: 600 8px var(--mono); letter-spacing: 0.11em; }
.creator-copy strong { font-size: 10px; font-weight: 650; }
.network-chip { gap: 9px; padding: 8px 11px 8px 8px; border-radius: 12px; }
.network-chip > span:last-child { display: grid; gap: 2px; }
.network-chip strong { font-size: 11px; font-weight: 600; }
.network-chip small { color: var(--muted); font-family: var(--mono); font-size: 9px; }
.network-icon {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 8px;
  background: linear-gradient(145deg, #c4ff82, #5ee66f);
  color: #0a180d;
  font-size: 12px;
  font-weight: 800;
}
.live-chip { gap: 7px; padding: 10px 12px; border-radius: 999px; color: var(--muted); font: 600 10px var(--mono); letter-spacing: 0.09em; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 4px rgba(255, 201, 107, 0.08); }
.live-chip.is-live { color: var(--green); border-color: rgba(168, 255, 120, 0.2); }
.live-chip.is-live .live-dot { background: var(--green-strong); box-shadow: 0 0 0 4px rgba(99, 237, 120, 0.09), 0 0 13px rgba(99, 237, 120, 0.7); animation: pulse 1.7s infinite; }
.live-chip.is-error { color: var(--red); }
.live-chip.is-error .live-dot { background: var(--red); }

main { padding: 32px 0 52px; }

.early-access-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 201, 107, 0.22);
  border-radius: 13px;
  background: linear-gradient(90deg, rgba(255, 201, 107, 0.075), rgba(255, 201, 107, 0.025));
  color: #f1d49d;
}
.early-access-notice[hidden] { display: none; }
.early-access-notice > span {
  display: grid;
  flex: 0 0 27px;
  place-items: center;
  height: 22px;
  border: 1px solid currentColor;
  border-radius: 6px;
  font: 700 8px var(--mono);
  letter-spacing: .08em;
}
.early-access-notice p { margin: 1px 0 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.early-access-notice strong { color: #ffe2aa; font-weight: 650; }

.mode-notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 16px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 201, 107, 0.22);
  border-radius: 13px;
  background: rgba(255, 201, 107, 0.065);
  color: #ffe6b8;
}
.mode-notice[hidden] { display: none; }
.mode-notice.demo { border-color: rgba(113, 214, 255, 0.25); background: rgba(113, 214, 255, 0.07); color: #cbefff; }
.notice-icon { display: grid; place-items: center; flex: 0 0 22px; height: 22px; border: 1px solid currentColor; border-radius: 50%; font: 700 11px var(--mono); }
.mode-notice strong { display: block; margin-bottom: 3px; font-size: 12px; }
.mode-notice p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.metric-card.dex-pools-card > strong { font-size: clamp(17px, 2vw, 25px); overflow-wrap: anywhere; }

.hero {
  min-height: 326px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-copy { padding: 22px 0 44px; position: relative; z-index: 2; }
.eyebrow, .section-kicker { margin: 0; color: var(--muted); font: 600 10px var(--mono); letter-spacing: 0.19em; }
.eyebrow { display: flex; align-items: center; gap: 8px; }
.eyebrow span { width: 18px; height: 1px; background: var(--green); box-shadow: 0 0 8px rgba(168, 255, 120, 0.7); }
h1 { margin: 20px 0 16px; max-width: 760px; font-size: clamp(41px, 5.3vw, 72px); line-height: 0.98; letter-spacing: -0.055em; font-weight: 560; }
h1 em { color: var(--green); font-style: normal; text-shadow: 0 0 34px rgba(168, 255, 120, 0.12); }
.hero-subtitle { max-width: 560px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.hero-status { display: flex; align-items: center; gap: 14px; margin-top: 26px; color: var(--muted); font-size: 11px; }
.hero-status span { display: inline-flex; align-items: center; gap: 7px; }
.hero-status b { color: var(--text); font-weight: 550; }
.status-pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.divider { width: 1px; height: 14px; background: var(--line-strong); }

.radar-stage { position: relative; min-height: 326px; display: grid; place-items: center; }
.radar-stage::before { content: ""; position: absolute; inset: 16% 5% -26% 0; border-radius: 50%; background: radial-gradient(circle, rgba(104, 255, 126, 0.11), transparent 66%); filter: blur(15px); }
.radar-grid { position: absolute; width: min(34vw, 390px); aspect-ratio: 1; border-radius: 50%; background: repeating-conic-gradient(from 0deg, rgba(157, 255, 173, 0.08) 0 1deg, transparent 1deg 45deg); opacity: 0.9; }
.ring { position: absolute; inset: 0; margin: auto; border: 1px solid rgba(164, 255, 179, 0.13); border-radius: 50%; }
.ring-one { width: 100%; height: 100%; }
.ring-two { width: 68%; height: 68%; }
.ring-three { width: 35%; height: 35%; }
.radar-grid::after, .radar-grid::before { content: ""; position: absolute; background: rgba(164, 255, 179, 0.11); }
.radar-grid::after { width: 100%; height: 1px; top: 50%; }
.radar-grid::before { height: 100%; width: 1px; left: 50%; }
.radar-beam { position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from 0deg, rgba(135, 255, 151, 0.3), transparent 14%, transparent); animation: radar 5s linear infinite; }
.radar-blip { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 14px 3px rgba(168, 255, 120, 0.6); }
.blip-one { top: 25%; left: 65%; animation: blink 3.2s infinite; }
.blip-two { top: 66%; left: 31%; animation: blink 4s 1.1s infinite; }
.block-core { z-index: 2; display: grid; place-items: center; text-align: center; padding: 25px; border-radius: 50%; }
.block-core small { color: var(--muted); font: 600 9px var(--mono); letter-spacing: 0.18em; }
.block-core strong { margin: 7px 0 5px; font: 500 clamp(21px, 3vw, 34px) var(--mono); letter-spacing: -0.06em; }
.block-core span { color: var(--green); font: 500 9px var(--mono); }

.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 28px 0 18px; }
.metric-card { min-height: 134px; padding: 18px 19px 16px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(16, 31, 21, 0.84), rgba(9, 19, 13, 0.72)); box-shadow: inset 0 1px rgba(255,255,255,0.02); }
.metric-head { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font: 600 9px var(--mono); letter-spacing: 0.14em; }
.metric-icon { display: grid; place-items: center; width: 25px; height: 25px; border: 1px solid var(--line); border-radius: 8px; color: var(--green); font-style: normal; font-size: 14px; }
.icon-market { color: var(--violet); }
.metric-card > strong { display: block; margin-top: 11px; font: 500 29px var(--mono); letter-spacing: -0.055em; }
.metric-card > p { margin: 8px 0 0; color: var(--muted-2); font-size: 10px; }
.up-mark { color: var(--green); }
.coverage-card { border-color: rgba(168, 255, 120, 0.18); background: linear-gradient(145deg, rgba(26, 47, 29, 0.85), rgba(10, 22, 14, 0.76)); }
.coverage-card > strong { color: var(--green); font-family: var(--sans); font-size: 23px; letter-spacing: -0.03em; }

.stream-panel, .social-panel, .launch-panel, .event-panel { border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.stream-panel { padding: 20px 22px 14px; margin-bottom: 18px; }
.panel-title-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.panel-title-row h2 { margin: 5px 0 0; font-size: 17px; font-weight: 550; letter-spacing: -0.02em; }
.stream-legend { display: flex; gap: 16px; color: var(--muted); font-size: 9px; }
.stream-legend span { display: inline-flex; align-items: center; gap: 6px; }
.stream-legend i { width: 7px; height: 7px; border-radius: 2px; background: var(--muted-2); }
.stream-legend .legend-token { background: var(--green); box-shadow: 0 0 8px rgba(168,255,120,0.4); }
#block-chart { display: block; width: 100%; height: 112px; margin-top: 8px; }

.nft-standard { display: inline-flex; align-items: center; min-height: 20px; padding: 4px 6px; border: 1px solid rgba(168,255,120,0.17); border-radius: 5px; color: var(--green); background: var(--green-soft); font: 650 7px var(--mono); letter-spacing: 0.04em; white-space: nowrap; }
.nft-standard.erc-1155 { color: var(--blue); border-color: rgba(113,214,255,0.17); background: rgba(113,214,255,0.06); }
.nft-standard.erc-2309 { color: var(--violet); border-color: rgba(192,165,255,0.2); background: rgba(192,165,255,0.07); }
.nft-standard.nft { color: var(--amber); border-color: rgba(255,201,107,0.18); background: rgba(255,201,107,0.06); }
.nft-empty-pulse { display: grid; place-items: center; width: 22px; height: 22px; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--muted-2); font: 650 8px var(--mono); }
.nft-heat-track { display: block; height: 2px; margin-top: 9px; overflow: hidden; border-radius: 2px; background: rgba(255,255,255,0.055); }
.nft-heat-track i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--green-strong), var(--green)); box-shadow: 0 0 8px rgba(168,255,120,0.35); }
.nft-heat-track i.heat-0 { width: 0; }
.nft-heat-track i.heat-1 { width: 10%; }
.nft-heat-track i.heat-2 { width: 20%; }
.nft-heat-track i.heat-3 { width: 30%; }
.nft-heat-track i.heat-4 { width: 40%; }
.nft-heat-track i.heat-5 { width: 50%; }
.nft-heat-track i.heat-6 { width: 60%; }
.nft-heat-track i.heat-7 { width: 70%; }
.nft-heat-track i.heat-8 { width: 80%; }
.nft-heat-track i.heat-9 { width: 90%; }
.nft-heat-track i.heat-10 { width: 100%; }

.social-panel { margin-bottom: 18px; overflow: hidden; }
.social-heading { align-items: flex-start; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.social-subtitle { margin: 7px 0 0; color: var(--muted-2); font-size: 10px; line-height: 1.5; }
.social-actions { display: flex; align-items: center; gap: 9px; }
.social-health-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(3, 9, 5, 0.38);
  font: 650 8px var(--mono);
  letter-spacing: 0.09em;
  white-space: nowrap;
}
.social-health-chip i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; }
.social-health-chip.is-live { color: var(--green); border-color: rgba(168,255,120,0.19); }
.social-health-chip.is-live i { animation: pulse 1.7s infinite; }
.social-health-chip.is-auth, .social-health-chip.is-degraded { color: var(--amber); border-color: rgba(255,201,107,0.2); }
.social-health-chip.is-loading { color: var(--muted); }
.social-search-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--muted);
  text-decoration: none;
  font-size: 9px;
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
}
.social-search-link:hover { color: var(--text); border-color: var(--line-strong); background: rgba(255,255,255,0.03); }
.social-state {
  min-height: 184px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 28px 22px;
  color: var(--muted);
  text-align: left;
}
.social-state[hidden], .social-post-list[hidden] { display: none; }
.social-state.is-compact { min-height: 0; justify-content: flex-start; padding-block: 13px; border-bottom: 1px solid var(--line); background: rgba(255,201,107,0.035); }
.social-state > div { max-width: 560px; }
.social-state strong { display: block; color: var(--text); font-size: 11px; font-weight: 580; }
.social-state p { margin: 5px 0 0; color: var(--muted-2); font-size: 10px; line-height: 1.5; }
.social-state-icon { flex: 0 0 25px; width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; color: var(--amber); font: 650 10px var(--mono); }
.social-state.is-live .social-state-icon { color: var(--green); }
.social-post-list { list-style: none; max-height: 620px; margin: 0; padding: 10px; overflow-y: auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; scrollbar-width: thin; scrollbar-color: var(--line-strong) transparent; }
.social-post-item { min-width: 0; }
.social-post { height: 100%; display: flex; flex-direction: column; padding: 16px; border: 1px solid var(--line); border-radius: 13px; background: rgba(5, 13, 8, 0.42); transition: border-color 150ms ease, background 150ms ease, transform 150ms ease; }
.social-post:hover { border-color: rgba(168,255,120,0.2); background: rgba(13, 28, 17, 0.72); transform: translateY(-1px); }
.social-post-head { display: grid; grid-template-columns: 35px minmax(0, 1fr) auto; align-items: center; gap: 10px; }
.social-avatar { display: grid; place-items: center; width: 35px; height: 35px; border: 1px solid rgba(237,248,238,0.13); border-radius: 50%; background: linear-gradient(145deg, rgba(237,248,238,0.12), rgba(168,255,120,0.05)); color: var(--text); font: 650 9px var(--mono); }
.social-identity { min-width: 0; }
.social-identity > strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 11px; font-weight: 600; }
.social-post-meta { display: flex; align-items: center; gap: 5px; min-width: 0; margin-top: 4px; color: var(--muted-2); font: 8px var(--mono); }
.social-post-meta > span:first-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.social-meta-separator { opacity: 0.65; }
.social-query { max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; padding: 5px 7px; border: 1px solid var(--line); border-radius: 6px; color: var(--muted-2); font: 600 7px var(--mono); text-transform: uppercase; }
.social-post-content { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 5; overflow: hidden; overflow-wrap: anywhere; white-space: pre-wrap; margin: 14px 0 16px; color: #dceade; font-size: 11px; line-height: 1.58; }
.social-post-footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: auto; }
.social-signals { display: flex; align-items: center; flex-wrap: wrap; gap: 5px; min-width: 0; }
.social-tag, .social-contract { display: inline-flex; align-items: center; max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; padding: 4px 6px; border: 1px solid var(--line); border-radius: 5px; color: var(--muted); background: rgba(255,255,255,0.025); font: 650 7px var(--mono); letter-spacing: 0.025em; }
.social-tag.launch { color: var(--green); border-color: rgba(168,255,120,0.17); background: var(--green-soft); }
.social-tag.contract, .social-contract { color: var(--blue); border-color: rgba(113,214,255,0.16); background: rgba(113,214,255,0.06); }
.social-tag.risk { color: var(--red); border-color: rgba(255,129,122,0.18); background: rgba(255,129,122,0.07); }
.social-contract { text-transform: none; }
.social-original-link { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 6px; color: var(--green); text-decoration: none; font-size: 9px; white-space: nowrap; }
.social-original-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.social-original-missing { flex: 0 0 auto; color: var(--muted-2); font-size: 8px; }

.content-grid { display: grid; grid-template-columns: minmax(0, 1.52fr) minmax(300px, 0.48fr); gap: 18px; align-items: start; }
.launch-panel, .event-panel { overflow: hidden; }
.launch-heading, .event-panel > .panel-title-row { padding: 20px 22px; border-bottom: 1px solid var(--line); }
.filters { display: flex; gap: 4px; padding: 3px; border: 1px solid var(--line); border-radius: 10px; background: rgba(4, 10, 6, 0.45); }
.filter { appearance: none; border: 0; border-radius: 7px; padding: 7px 9px; background: transparent; color: var(--muted); cursor: pointer; font-size: 9px; }
.filter:hover { color: var(--text); background: rgba(255,255,255,0.03); }
.filter.is-active { background: var(--green-soft); color: var(--green); box-shadow: inset 0 0 0 1px rgba(168, 255, 120, 0.1); }
.filter:focus-visible, button:focus-visible, a:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }

.token-list { min-height: 290px; }
.token-entry { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: stretch; border-bottom: 1px solid var(--line); transition: background 150ms ease; }
.token-entry:last-child { border-bottom: 0; }
.token-entry:hover { background: var(--panel-hover); }
.token-entry::before { content: ""; position: absolute; z-index: 1; left: 0; top: 25%; bottom: 25%; width: 2px; border-radius: 0 3px 3px 0; background: var(--green); opacity: 0; box-shadow: 0 0 12px var(--green); transition: opacity 150ms; }
.token-entry:hover::before { opacity: 1; }
.token-row { display: grid; grid-template-columns: minmax(210px, 1.35fr) minmax(100px, 0.62fr) minmax(100px, 0.66fr) 96px 28px; gap: 12px; align-items: center; width: 100%; min-width: 0; min-height: 86px; padding: 14px 10px 14px 22px; border: 0; background: transparent; color: var(--text); text-align: left; cursor: pointer; }
.token-main { display: flex; gap: 12px; align-items: center; min-width: 0; }
.token-avatar { flex: 0 0 39px; width: 39px; height: 39px; display: grid; place-items: center; border: 1px solid rgba(168, 255, 120, 0.19); border-radius: 12px; background: var(--green-soft); color: var(--green); font: 650 10px var(--mono); text-transform: uppercase; }
.token-identity { min-width: 0; }
.token-title-line { display: flex; align-items: center; gap: 7px; min-width: 0; }
.token-title-line strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 12px; font-weight: 570; }
.token-symbol { flex: 0 0 auto; color: var(--muted); font: 500 9px var(--mono); }
.token-address { display: block; margin-top: 5px; color: var(--muted-2); font: 9px var(--mono); }
.tag { display: inline-flex; align-items: center; width: max-content; max-width: 100%; padding: 5px 7px; border-radius: 6px; border: 1px solid var(--line); color: var(--muted); font: 600 8px var(--mono); letter-spacing: 0.04em; white-space: nowrap; }
.tag.confirmed { color: var(--green); border-color: rgba(168,255,120,0.17); background: var(--green-soft); }
.tag.likely { color: var(--blue); border-color: rgba(113,214,255,0.16); background: rgba(113,214,255,0.07); }
.tag.possible { color: var(--amber); border-color: rgba(255,201,107,0.18); background: rgba(255,201,107,0.07); }
.tag.market { color: var(--violet); border-color: rgba(192,165,255,0.18); background: rgba(192,165,255,0.07); }
.token-confidence { display: grid; gap: 7px; }
.confidence-label { display: flex; justify-content: space-between; gap: 8px; color: var(--muted); font: 8px var(--mono); }
.confidence-label b { color: var(--text); font-weight: 500; }
.confidence-track { height: 3px; overflow: hidden; border-radius: 4px; background: rgba(255,255,255,0.06); }
.confidence-track i { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--green-strong), var(--green)); box-shadow: 0 0 8px rgba(168,255,120,0.35); }
.confidence-track i.confidence-10 { width: 10%; }
.confidence-track i.confidence-20 { width: 20%; }
.confidence-track i.confidence-30 { width: 30%; }
.confidence-track i.confidence-40 { width: 40%; }
.confidence-track i.confidence-50 { width: 50%; }
.confidence-track i.confidence-60 { width: 60%; }
.confidence-track i.confidence-70 { width: 70%; }
.confidence-track i.confidence-80 { width: 80%; }
.confidence-track i.confidence-90 { width: 90%; }
.confidence-track i.confidence-100 { width: 100%; }
.token-block { color: var(--muted); font: 9px var(--mono); }
.token-block strong { display: block; color: var(--text); font-size: 10px; font-weight: 500; margin-bottom: 4px; }
.finality { display: inline-flex; align-items: center; gap: 5px; }
.finality::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--amber); }
.finality.safe::before, .finality.finalized::before { background: var(--green); }
.row-arrow { color: var(--muted-2); font-size: 17px; transition: color 150ms, transform 150ms; }
.token-row:hover .row-arrow { color: var(--green); transform: translateX(2px); }
.token-explorer-link { align-self: center; display: inline-flex; align-items: center; justify-content: center; min-width: 68px; min-height: 44px; margin: 8px 10px 8px 0; padding: 7px 9px; border: 1px solid rgba(168,255,120,0.18); border-radius: 9px; color: var(--green); background: var(--green-soft); font: 650 8px var(--mono); letter-spacing: 0.035em; text-decoration: none; white-space: nowrap; transition: border-color 150ms ease, background 150ms ease, transform 150ms ease; }
.token-explorer-link:hover { border-color: rgba(168,255,120,0.38); background: rgba(168,255,120,0.11); transform: translateY(-1px); }

.empty-state, .loading-state { min-height: 290px; display: grid; place-items: center; align-content: center; gap: 12px; color: var(--muted); text-align: center; }
.empty-state p, .loading-state p { margin: 0; font-size: 12px; }
.empty-state small { color: var(--muted-2); max-width: 360px; line-height: 1.5; }
.empty-radar { width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 50%; position: relative; }
.empty-radar::before { content: ""; position: absolute; inset: 8px; border: 1px solid var(--line); border-radius: 50%; }
.empty-radar::after { content: ""; position: absolute; left: 50%; top: 50%; width: 4px; height: 4px; border-radius: 50%; background: var(--green); box-shadow: 0 0 9px var(--green); }
.loader { width: 28px; height: 28px; border: 1px solid var(--line); border-top-color: var(--green); border-radius: 50%; animation: spin 1s linear infinite; }

.event-panel { max-height: 624px; }
.streaming-label { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font: 600 8px var(--mono); letter-spacing: 0.12em; }
.streaming-label i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; animation: pulse 1.7s infinite; }
.event-list { list-style: none; margin: 0; padding: 8px 0; max-height: 544px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--line-strong) transparent; }
.event-item { display: grid; grid-template-columns: 16px 1fr auto; gap: 9px; align-items: start; padding: 11px 18px; }
.event-item + .event-item { border-top: 1px solid rgba(204,255,207,0.055); }
.event-glyph { display: grid; place-items: center; width: 16px; height: 16px; margin-top: 1px; border-radius: 5px; background: var(--green-soft); color: var(--green); font-size: 9px; }
.event-item.pool .event-glyph { background: rgba(192,165,255,0.09); color: var(--violet); }
.event-item.nft .event-glyph { background: rgba(113,214,255,0.08); color: var(--blue); }
.event-item.orphan .event-glyph { background: rgba(255,129,122,0.09); color: var(--red); }
.event-copy { min-width: 0; }
.event-copy strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 10px; font-weight: 540; }
.event-copy span { display: block; margin-top: 4px; color: var(--muted-2); font: 8px var(--mono); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.event-time { color: var(--muted-2); font: 8px var(--mono); white-space: nowrap; }
.event-empty { padding: 32px 20px; color: var(--muted-2); text-align: center; font-size: 11px; }

body > footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 76px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 9px; }
body > footer p { margin: 0; }
body > footer a { color: var(--muted); text-decoration: none; }
body > footer a:hover { color: var(--green); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

dialog { width: min(620px, calc(100% - 30px)); max-height: calc(100vh - 30px); padding: 0; border: 1px solid var(--line-strong); border-radius: 20px; background: var(--panel-solid); color: var(--text); box-shadow: 0 30px 100px rgba(0,0,0,0.62); }
dialog::backdrop { background: rgba(1, 5, 2, 0.76); backdrop-filter: blur(6px); }
.dialog-shell { overflow: hidden; }
.dialog-head { display: grid; grid-template-columns: 44px 1fr 34px; gap: 12px; align-items: center; padding: 21px 22px; border-bottom: 1px solid var(--line); background: linear-gradient(130deg, rgba(168,255,120,0.06), transparent 55%); }
.dialog-token-mark { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(168,255,120,0.2); border-radius: 13px; background: var(--green-soft); color: var(--green); font: 650 11px var(--mono); }
.dialog-head p { margin: 0 0 3px; color: var(--green); font: 600 9px var(--mono); }
.dialog-head h2 { margin: 0; font-size: 18px; font-weight: 560; }
.close-button { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 9px; background: transparent; color: var(--muted); cursor: pointer; font-size: 19px; }
.close-button:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.dialog-body { padding: 20px 22px; max-height: 62vh; overflow-y: auto; }
.address-line { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 11px; border: 1px solid var(--line); border-radius: 10px; background: rgba(3, 9, 5, 0.4); }
.address-line code { overflow: hidden; text-overflow: ellipsis; color: var(--muted); font: 9px var(--mono); }
.address-line button { flex: 0 0 auto; border: 0; background: transparent; color: var(--green); cursor: pointer; font-size: 9px; }
.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 16px; }
.detail-item { padding: 11px; border: 1px solid var(--line); border-radius: 10px; }
.detail-item span { display: block; color: var(--muted-2); font: 8px var(--mono); text-transform: uppercase; letter-spacing: 0.08em; }
.detail-item strong { display: block; margin-top: 7px; overflow: hidden; text-overflow: ellipsis; color: var(--text); font: 500 10px var(--mono); }
.evidence-section, .warning-section { margin-top: 20px; }
.evidence-section h3, .warning-section h3 { margin: 0 0 10px; color: var(--muted); font-size: 10px; font-weight: 550; text-transform: uppercase; letter-spacing: 0.09em; }
#evidence-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; }
.evidence-row { display: flex; justify-content: space-between; gap: 8px; padding: 8px 9px; background: rgba(255,255,255,0.025); border-radius: 7px; color: var(--muted); font-size: 9px; }
.evidence-row b { color: var(--green); font-weight: 550; }
.evidence-row b.no { color: var(--muted-2); }
.warning-section ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 7px; }
.warning-section li { padding: 8px 10px; border-radius: 7px; background: rgba(255,201,107,0.07); color: #f2d7aa; font-size: 9px; }
.dialog-footer { display: flex; justify-content: flex-end; padding: 14px 22px; border-top: 1px solid var(--line); }
.dialog-footer a { display: inline-flex; gap: 7px; align-items: center; padding: 9px 12px; border-radius: 9px; background: var(--green); color: #09140c; text-decoration: none; font-size: 10px; font-weight: 650; }

/* Dedicated NFT activity board */
.nft-page-main { padding-top: 22px; }
.nft-page-hero { min-height: 270px; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr); align-items: center; border-bottom: 1px solid var(--line); overflow: hidden; }
.nft-page-hero > div:first-child { position: relative; z-index: 2; padding: 34px 0 42px; }
.nft-page-hero h1 { margin: 17px 0 14px; font-size: clamp(44px, 5vw, 68px); }
.nft-page-hero p:last-child { max-width: 650px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.nft-page-pulse { position: relative; width: min(30vw, 330px); aspect-ratio: 1; justify-self: end; border: 1px solid rgba(168,255,120,0.11); border-radius: 50%; background: radial-gradient(circle, rgba(168,255,120,0.11), transparent 63%); }
.nft-page-pulse::before, .nft-page-pulse::after, .nft-page-pulse span { content: ""; position: absolute; inset: 18%; border: 1px solid rgba(168,255,120,0.1); border-radius: 50%; }
.nft-page-pulse::after { inset: 37%; }
.nft-page-pulse span { inset: 49.2% 0 auto; border: 0; border-top: 1px solid rgba(168,255,120,0.1); border-radius: 0; }
.nft-page-pulse i, .nft-page-pulse b { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 15px 3px rgba(168,255,120,0.45); animation: blink 3s infinite; }
.nft-page-pulse i { top: 29%; left: 63%; }
.nft-page-pulse b { top: 68%; left: 37%; animation-delay: 1.1s; }
.nft-page-summary { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin: 22px 0 16px; }
.nft-page-summary article { min-height: 120px; padding: 17px 18px; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(145deg, rgba(16,31,21,0.82), rgba(8,18,12,0.72)); }
.nft-page-summary article:nth-child(2) { border-color: rgba(168,255,120,0.2); background: linear-gradient(145deg, rgba(25,46,29,0.84), rgba(8,19,12,0.72)); }
.nft-page-summary span { color: var(--muted); font: 650 8px var(--mono); letter-spacing: 0.12em; }
.nft-page-summary strong { display: block; margin-top: 12px; overflow: hidden; text-overflow: ellipsis; color: var(--text); font: 520 27px var(--mono); letter-spacing: -0.05em; }
.nft-page-summary article:nth-child(2) strong { color: var(--green); }
.nft-page-summary p { margin: 7px 0 0; color: var(--muted-2); font-size: 9px; }
.nft-board, .nft-page-events { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.nft-board-head, .nft-page-events > header { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 19px 21px; border-bottom: 1px solid var(--line); }
.nft-board-head h2, .nft-page-events h2 { margin: 5px 0 0; font-size: 17px; font-weight: 560; }
.nft-board-head p:last-child { margin: 7px 0 0; color: var(--muted-2); font-size: 9px; }
.nft-window-tabs { display: inline-flex; align-items: center; gap: 3px; padding: 3px; border: 1px solid var(--line); border-radius: 9px; background: rgba(3,9,5,0.4); }
.nft-window-tabs button { min-width: 38px; padding: 7px 8px; border: 0; border-radius: 6px; background: transparent; color: var(--muted); font: 650 8px var(--mono); cursor: pointer; }
.nft-window-tabs button:hover { color: var(--text); background: rgba(255,255,255,0.035); }
.nft-window-tabs button.is-active { color: #07100b; background: var(--green); }
.nft-window-tabs button:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.nft-board-columns { display: grid; grid-template-columns: minmax(260px, 1.15fr) minmax(90px, .45fr) minmax(330px, 1.7fr) 90px 110px 160px; gap: 14px; padding: 10px 17px 10px 67px; border-bottom: 1px solid var(--line); color: var(--muted-2); font: 650 7px var(--mono); letter-spacing: 0.09em; }
.nft-board-stale { display: flex; align-items: center; gap: 7px; padding: 9px 17px; border-bottom: 1px solid rgba(255,201,107,0.18); background: rgba(255,201,107,0.055); color: #e8c98f; font-size: 8px; }
.nft-board-stale[hidden] { display: none; }
.nft-board-stale > span { display: grid; flex: 0 0 17px; place-items: center; height: 17px; border: 1px solid rgba(255,201,107,0.45); border-radius: 50%; color: var(--amber); font: 700 8px var(--mono); }
.nft-board-stale > strong { color: var(--amber); font-weight: 650; }
.nft-board-unverified { padding: 9px 17px; border-bottom: 1px solid rgba(113,214,255,0.14); background: rgba(113,214,255,0.045); color: #a9d8e8; font-size: 8px; line-height: 1.5; }
.nft-board-unverified[hidden] { display: none; }
.nft-page-state { min-height: 260px; display: flex; align-items: center; justify-content: center; gap: 13px; padding: 28px; color: var(--muted); }
.nft-page-state[hidden], .nft-page-collection-list[hidden], .nft-page-event-list[hidden], .nft-page-event-state[hidden] { display: none; }
.nft-page-state strong { display: block; color: var(--text); font-size: 12px; }
.nft-page-state p { margin: 5px 0 0; color: var(--muted-2); font-size: 10px; }
.nft-page-state.is-error .nft-empty-pulse { color: var(--amber); border-color: rgba(255,201,107,0.25); }
.nft-page-collection-list { list-style: none; margin: 0; padding: 0; }
.nft-page-collection-list.is-stale { box-shadow: inset 3px 0 0 rgba(255,201,107,0.35); }
.nft-page-collection-item + .nft-page-collection-item { border-top: 1px solid rgba(204,255,207,0.065); }
.nft-page-collection-row { position: relative; display: grid; grid-template-columns: 36px minmax(260px, 1.15fr) minmax(90px, .45fr) minmax(330px, 1.7fr) 90px 110px 160px; gap: 14px; align-items: center; min-height: 126px; padding: 14px 17px; transition: background 150ms ease; }
.nft-page-collection-row:hover { background: rgba(168,255,120,0.025); }
.nft-page-collection-row [hidden] { display: none; }
.nft-page-rank { color: var(--green); font: 650 9px var(--mono); }
.nft-page-collection-identity { min-width: 0; }
.nft-collection-title { display: flex; min-width: 0; align-items: center; gap: 7px; }
.nft-collection-title > a, .nft-collection-title > strong { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--text); font-size: 12px; font-weight: 590; text-decoration: none; }
.nft-collection-title > a:hover { color: var(--green); }
.nft-collection-symbol { flex: 0 0 auto; max-width: 76px; overflow: hidden; padding: 3px 5px; border: 1px solid rgba(113,214,255,0.18); border-radius: 5px; color: var(--blue); font: 650 7px var(--mono); text-overflow: ellipsis; white-space: nowrap; }
.nft-page-collection-identity code { display: block; margin-top: 5px; overflow: hidden; text-overflow: ellipsis; color: var(--muted-2); font: 8px var(--mono); }
.nft-page-standards { display: flex; flex-wrap: wrap; gap: 4px; }
.nft-page-stat strong { display: block; color: var(--text); font: 520 13px var(--mono); }
.nft-page-stat span, .nft-page-latest span { display: block; margin-top: 4px; color: var(--muted-2); font: 7px var(--mono); }
.nft-page-latest time { color: var(--text); font: 500 10px var(--mono); }
.nft-supply-cell { min-width: 0; padding: 9px 10px; border: 1px solid rgba(204,255,207,0.09); border-radius: 9px; background: rgba(3,10,6,0.28); }
.nft-supply-cell.has-cap { border-color: rgba(168,255,120,0.16); background: linear-gradient(120deg, rgba(22,48,27,0.54), rgba(3,10,6,0.22)); }
.nft-supply-cell.is-cap-unknown { border-style: dashed; }
.nft-supply-cell.is-activity-only { border-color: rgba(255,201,107,0.13); background: rgba(255,201,107,0.025); }
.nft-supply-cell.is-metadata-dirty { border-color: rgba(255,201,107,0.28); background: linear-gradient(120deg, rgba(53,40,18,0.3), rgba(3,10,6,0.22)); }
.nft-supply-head { display: flex; min-width: 0; align-items: baseline; justify-content: space-between; gap: 12px; }
.nft-supply-head > span { overflow: hidden; color: var(--muted); font: 650 7px var(--mono); letter-spacing: 0.08em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.nft-supply-head > strong { color: var(--text); font: 560 13px var(--mono); white-space: nowrap; }
.nft-supply-dirty { display: block; margin-top: 5px; color: var(--amber); font: 650 6px var(--mono); letter-spacing: 0.06em; text-transform: uppercase; }
.nft-cap-progress { display: block; width: 100%; height: 6px; margin: 8px 0 7px; overflow: hidden; appearance: none; border: 0; border-radius: 999px; background: rgba(255,255,255,0.055); }
.nft-cap-progress.is-stale { opacity: 0.5; filter: saturate(0.25); }
.nft-cap-progress::-webkit-progress-bar { border-radius: inherit; background: rgba(255,255,255,0.055); }
.nft-cap-progress::-webkit-progress-value { border-radius: inherit; background: linear-gradient(90deg, var(--green-strong), var(--green)); box-shadow: 0 0 9px rgba(168,255,120,0.38); }
.nft-cap-progress::-moz-progress-bar { border-radius: inherit; background: linear-gradient(90deg, var(--green-strong), var(--green)); box-shadow: 0 0 9px rgba(168,255,120,0.38); }
.nft-supply-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 5px; }
.nft-supply-facts > span { min-width: 0; padding-left: 7px; border-left: 1px solid var(--line); }
.nft-supply-facts > span:first-child { padding-left: 0; border-left: 0; }
.nft-supply-facts b, .nft-supply-facts strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nft-supply-facts b { color: var(--muted-2); font: 600 6px var(--mono); text-transform: uppercase; }
.nft-supply-facts strong { margin-top: 3px; color: var(--text); font: 520 9px var(--mono); }
.nft-supply-note, .nft-supply-source { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nft-supply-note { margin-top: 7px; color: var(--muted); font: 7px var(--mono); }
.nft-supply-source { margin-top: 4px; color: var(--muted-2); font: 6px var(--mono); text-transform: uppercase; }
.nft-cap-unknown-track { display: grid; grid-template-columns: minmax(25px, 1fr) auto; align-items: center; gap: 8px; margin-top: 8px; }
.nft-cap-unknown-track i { height: 4px; border-radius: 999px; background: repeating-linear-gradient(90deg, rgba(143,166,149,0.28) 0 7px, transparent 7px 11px); }
.nft-cap-unknown-track b { color: var(--muted-2); font: 650 6px var(--mono); letter-spacing: 0.07em; }
.nft-activity-track { height: 5px; margin-top: 8px; background: repeating-linear-gradient(90deg, rgba(255,201,107,0.08) 0 8px, transparent 8px 12px); }
.nft-activity-track i { background: linear-gradient(90deg, #c88f37, var(--amber)); box-shadow: 0 0 7px rgba(255,201,107,0.25); }
.nft-page-links { display: flex; flex-wrap: wrap; gap: 7px; }
.nft-page-links > span { color: var(--muted-2); font-size: 8px; }
.nft-explorer-link { color: var(--green); font: 600 8px var(--mono); text-decoration: none; white-space: nowrap; }
.nft-explorer-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.nft-explorer-link:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.nft-page-events { margin-top: 16px; }
.nft-page-events > header > span { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font: 650 8px var(--mono); letter-spacing: 0.08em; }
.nft-page-events > header > span i { width: 5px; height: 5px; border-radius: 50%; background: currentColor; box-shadow: 0 0 8px currentColor; animation: pulse 1.7s infinite; }
.nft-page-event-state { min-height: 120px; display: grid; place-items: center; padding: 24px; color: var(--muted-2); font-size: 10px; }
.nft-page-event-list { list-style: none; margin: 0; padding: 9px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.nft-page-event-list > li { min-width: 0; }
.nft-page-event { height: 100%; padding: 12px; border: 1px solid var(--line); border-radius: 11px; background: rgba(5,13,8,0.4); }
.nft-page-event-top, .nft-page-event-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.nft-page-event-top time { color: var(--muted-2); font: 8px var(--mono); }
.nft-page-event > strong { display: block; margin-top: 11px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 10px; font-weight: 570; }
.nft-page-event > p { margin: 6px 0 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--muted); font: 8px var(--mono); }
.nft-page-event-foot { flex-wrap: wrap; margin-top: 11px; padding-top: 8px; border-top: 1px solid var(--line); color: var(--muted-2); font: 650 7px var(--mono); }
.nft-page-event-links { display: inline-flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 8px; }
.nft-coverage-note { display: flex; align-items: flex-start; gap: 11px; margin-top: 16px; padding: 14px 16px; border: 1px solid rgba(255,201,107,0.16); border-radius: 12px; background: rgba(255,201,107,0.04); }
.nft-coverage-note > span { flex: 0 0 21px; display: grid; place-items: center; height: 21px; border: 1px solid var(--amber); border-radius: 50%; color: var(--amber); font: 650 9px var(--mono); }
.nft-coverage-note p { margin: 0; color: var(--muted); font-size: 9px; line-height: 1.55; }
.nft-coverage-note strong { color: #f6dba6; }

@keyframes radar { to { transform: rotate(360deg); } }
@keyframes pulse { 50% { opacity: 0.45; } }
@keyframes blink { 0%, 68%, 100% { opacity: 0.2; transform: scale(0.7); } 76%, 90% { opacity: 1; transform: scale(1); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* Use wide desktop canvases without changing the established laptop/mobile scale. */
@media (min-width: 1600px) {
  .topbar, main, body > footer { width: min(1680px, calc(100% - 96px)); }
  .topbar { height: 96px; }
  main { padding: 38px 0 64px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-copy strong { font-size: 14px; }
  .brand-copy small { font-size: 10px; }
  .topnav a { padding: 8px 12px; font-size: 10px; }
  .network-chip strong { font-size: 12px; }
  .network-chip small { font-size: 10px; }
  .creator-copy small { font-size: 9px; }
  .creator-copy strong, .live-chip { font-size: 11px; }

  .hero { min-height: 374px; grid-template-columns: 1.2fr .8fr; }
  .hero-copy { padding: 30px 0 52px; }
  h1 { max-width: 900px; font-size: clamp(64px, 4.2vw, 82px); }
  .hero-subtitle { max-width: 650px; font-size: 17px; }
  .hero-status { margin-top: 30px; font-size: 12px; }
  .radar-stage { min-height: 374px; }
  .radar-grid { width: min(29vw, 460px); }
  .block-core strong { font-size: 38px; }
  .metrics { gap: 16px; margin: 32px 0 22px; }
  .metric-card { min-height: 150px; padding: 22px; }
  .metric-head { font-size: 10px; }
  .metric-card > strong { font-size: 32px; }
  .metric-card.dex-pools-card > strong { font-size: 25px; }
  .metric-card > p { font-size: 11px; }
  .coverage-card > strong { font-size: 26px; }
  .stream-panel { padding: 24px 26px 18px; }
  .panel-title-row h2 { font-size: 19px; }
  .social-heading, .launch-heading, .event-panel > .panel-title-row { padding: 24px 26px; }
  .social-subtitle { font-size: 11px; }
  .social-post-list { max-height: 680px; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; padding: 12px; }
  .social-post { padding: 18px; }
  .social-identity > strong { font-size: 12px; }
  .social-post-meta { font-size: 9px; }
  .social-post-content { font-size: 12px; }
  .content-grid { grid-template-columns: minmax(0, 1.55fr) minmax(360px, .45fr); gap: 22px; }
  .token-row { min-height: 96px; padding: 16px 12px 16px 26px; }
  .token-avatar { flex-basis: 44px; width: 44px; height: 44px; font-size: 11px; }
  .token-title-line strong { font-size: 13px; }
  .token-address { font-size: 10px; }
  .confidence-label, .tag { font-size: 9px; }
  .token-block { font-size: 10px; }
  .token-block strong { font-size: 11px; }
  .token-explorer-link { min-width: 75px; font-size: 9px; }
  .event-panel { max-height: 680px; }
  .event-list { max-height: 592px; }
  .event-item { padding: 13px 20px; }
  .event-copy strong { font-size: 11px; }
  .event-copy span, .event-time { font-size: 9px; }
  body > footer { min-height: 84px; font-size: 10px; }

  .nft-page-main { padding-top: 28px; }
  .nft-page-hero { min-height: 320px; }
  .nft-page-hero > div:first-child { padding: 42px 0 50px; }
  .nft-page-hero h1 { font-size: 80px; }
  .nft-page-hero p:last-child { max-width: 760px; font-size: 15px; }
  .nft-page-pulse { width: min(25vw, 380px); }
  .nft-page-summary { gap: 14px; margin: 26px 0 20px; }
  .nft-page-summary article { min-height: 138px; padding: 21px 22px; }
  .nft-page-summary span { font-size: 9px; }
  .nft-page-summary strong { font-size: 31px; }
  .nft-page-summary p { font-size: 10px; }
  .nft-board-head, .nft-page-events > header { padding: 23px 26px; }
  .nft-board-head h2, .nft-page-events h2 { font-size: 19px; }
  .nft-board-head p:last-child { font-size: 10px; }
  .nft-window-tabs button { min-width: 44px; padding: 8px 10px; font-size: 9px; }
  .nft-board-columns { grid-template-columns: minmax(300px, 1.15fr) minmax(105px, .45fr) minmax(390px, 1.7fr) 100px 125px 180px; gap: 18px; padding: 12px 22px 12px 80px; font-size: 8px; }
  .nft-page-collection-row { grid-template-columns: 40px minmax(300px, 1.15fr) minmax(105px, .45fr) minmax(390px, 1.7fr) 100px 125px 180px; gap: 18px; min-height: 142px; padding: 16px 22px; }
  .nft-page-rank { font-size: 10px; }
  .nft-collection-title > a, .nft-collection-title > strong { font-size: 14px; }
  .nft-page-collection-identity code { font-size: 9px; }
  .nft-standard { min-height: 22px; padding: 5px 7px; font-size: 8px; }
  .nft-page-stat strong { font-size: 14px; }
  .nft-page-stat span, .nft-page-latest span { font-size: 8px; }
  .nft-page-latest time { font-size: 11px; }
  .nft-supply-cell { padding: 11px 12px; }
  .nft-supply-head > span { font-size: 8px; }
  .nft-supply-head > strong { font-size: 15px; }
  .nft-supply-dirty { font-size: 7px; }
  .nft-cap-progress { height: 7px; }
  .nft-supply-facts b { font-size: 7px; }
  .nft-supply-facts strong { font-size: 10px; }
  .nft-supply-note { font-size: 8px; }
  .nft-supply-source { font-size: 7px; }
  .nft-explorer-link { font-size: 9px; }
  .nft-page-event-list { gap: 12px; padding: 12px; }
  .nft-page-event { padding: 15px; }
  .nft-page-event > strong { font-size: 11px; }
  .nft-page-event > p { font-size: 9px; }
  .nft-page-event-top time, .nft-page-event-foot { font-size: 8px; }
  .nft-coverage-note p { font-size: 10px; }
}

@media (min-width: 721px) and (max-width: 1280px) {
  .nft-board { overflow-x: auto; }
  .nft-board-head, .nft-board-columns, .nft-board-stale, .nft-board-unverified, .nft-page-state, .nft-page-collection-list { min-width: 1194px; }
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1.25fr 0.75fr; }
  .radar-grid { width: min(43vw, 340px); }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; }
  .event-panel { max-height: none; }
  .event-list { max-height: 320px; }
  .nft-page-hero { grid-template-columns: minmax(0, 1fr) minmax(220px, .55fr); }
  .nft-page-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nft-page-event-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .topbar, main, body > footer { width: min(100% - 28px, 1280px); }
  .topbar { height: 74px; }
  .network-chip { display: none; }
  .topnav { gap: 1px; }
  .topnav a { padding: 6px 7px; font-size: 8px; }
  .creator-chip { padding: 7px; border-radius: 11px; }
  .creator-copy { display: none; }
  main { padding-top: 22px; }
  .early-access-notice { margin-bottom: 12px; padding: 11px 12px; }
  .early-access-notice p { font-size: 10px; }
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: 26px 0 12px; }
  h1 { font-size: clamp(39px, 12vw, 58px); }
  .radar-stage { min-height: 240px; margin-top: -18px; }
  .radar-grid { width: 260px; }
  .metrics { gap: 9px; }
  .metric-card { min-height: 124px; padding: 15px; }
  .stream-panel { padding-inline: 14px; }
  .nft-page-main { padding-top: 10px; }
  .nft-page-hero { min-height: 0; grid-template-columns: 1fr; }
  .nft-page-hero > div:first-child { padding: 35px 0; }
  .nft-page-hero h1 { font-size: clamp(42px, 13vw, 62px); }
  .nft-page-pulse { display: none; }
  .nft-board { overflow: hidden; }
  .nft-board-head { min-width: 0; align-items: flex-start; flex-direction: column; padding: 16px; }
  .nft-window-tabs { width: 100%; }
  .nft-window-tabs button { flex: 1; min-width: 0; }
  .nft-board-columns { display: none; }
  .nft-page-state { min-width: 0; min-height: 210px; padding: 22px 16px; }
  .nft-page-collection-list { min-width: 0; }
  .nft-page-collection-row { grid-template-columns: 31px minmax(0, 1fr); gap: 8px 10px; min-height: 0; padding: 15px; }
  .nft-page-rank { grid-column: 1; grid-row: 1 / span 6; }
  .nft-page-collection-identity, .nft-page-standards, .nft-supply-cell, .nft-page-stat, .nft-page-latest, .nft-page-links { grid-column: 2; }
  .nft-page-standards, .nft-supply-cell, .nft-page-stat, .nft-page-latest, .nft-page-links { margin-top: 2px; }
  .nft-page-stat { display: flex; align-items: baseline; gap: 7px; }
  .nft-page-stat span { margin: 0; }
  .nft-page-events > header { align-items: flex-start; flex-direction: column; padding: 16px; }
  .nft-page-event-list { grid-template-columns: 1fr; }
  .social-heading { align-items: stretch; flex-direction: column; }
  .social-actions { justify-content: space-between; }
  .social-post-list { grid-template-columns: 1fr; }
  .launch-heading { align-items: flex-start; flex-direction: column; }
  .filters { width: 100%; overflow-x: auto; }
  .filter { flex: 1 0 auto; }
  .token-row { grid-template-columns: minmax(0, 1fr) 96px 20px; padding: 13px 14px; }
  .token-confidence, .token-block { display: none; }
  .token-row > .tag { justify-self: end; }
  .detail-grid { grid-template-columns: repeat(2, 1fr); }
  body > footer { align-items: flex-start; flex-direction: column; justify-content: center; padding: 20px 0; }
}

@media (max-width: 430px) {
  .brand-copy small { display: none; }
  .brand-copy strong { font-size: 10px; }
  .brand { gap: 7px; }
  .brand-mark { width: 29px; height: 29px; }
  .topnav a { padding-inline: 5px; font-size: 7px; }
  .network-cluster { gap: 7px; }
  .live-chip { padding: 9px; }
  .hero-subtitle { font-size: 13px; }
  .hero-status { flex-wrap: wrap; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .metric-card { min-height: 116px; }
  .metric-card > strong { font-size: 24px; }
  .coverage-card > strong { font-size: 18px; }
  .stream-legend { display: none; }
  .nft-page-summary { gap: 7px; }
  .nft-page-summary article { min-height: 105px; padding: 13px; }
  .nft-page-summary strong { font-size: 22px; }
  .social-actions { align-items: stretch; flex-direction: column; }
  .social-health-chip, .social-search-link { justify-content: center; }
  .social-post { padding: 14px; }
  .social-post-head { grid-template-columns: 35px minmax(0, 1fr); }
  .social-query { display: none; }
  .social-post-footer { align-items: flex-start; flex-direction: column; }
  .token-row { grid-template-columns: minmax(0, 1fr) 18px; }
  .token-row > .tag { display: none; }
  .token-explorer-link { min-width: 56px; margin-right: 6px; padding-inline: 6px; font-size: 7px; }
  .dialog-body, .dialog-head { padding-inline: 15px; }
  .detail-grid { grid-template-columns: 1fr 1fr; }
  #evidence-list { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition: none !important; }
}

/* Explorer, market analytics and verified DeFi views. */
.data-page-main { padding-top: 22px; }
.data-hero {
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
  align-items: center;
  gap: 54px;
  padding: 34px 0 42px;
  border-bottom: 1px solid var(--line);
}
.data-hero h1 { margin: 17px 0 15px; font-size: clamp(43px, 5vw, 68px); }
.data-hero > div > p:last-child { max-width: 720px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.compact-data-hero { min-height: 310px; grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr); }
.method-card, .data-explainer-panel {
  border: 1px solid rgba(168,255,120,.17);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(20,39,25,.82), rgba(7,16,10,.76));
  box-shadow: var(--shadow);
}
.method-card { padding: 22px; }
.method-card > span { color: var(--green); font: 650 8px var(--mono); letter-spacing: .15em; }
.method-card > strong { display: block; margin-top: 12px; font-size: 17px; font-weight: 570; }
.method-card > p { margin: 9px 0 0; color: var(--muted); font-size: 10px; line-height: 1.6; }

.explorer-search { align-self: center; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(10,22,14,.76); box-shadow: var(--shadow); }
.search-field { display: grid; grid-template-columns: 24px minmax(0,1fr) auto; align-items: center; gap: 9px; padding: 6px 6px 6px 12px; border: 1px solid var(--line-strong); border-radius: 12px; background: rgba(3,9,5,.68); }
.search-field > span { color: var(--green); font: 20px var(--mono); }
.search-field input { min-width: 0; padding: 9px 0; border: 0; outline: 0; background: transparent; color: var(--text); font: 11px var(--mono); }
.search-field input::placeholder { color: var(--muted-2); }
.search-field:focus-within { border-color: rgba(168,255,120,.5); box-shadow: 0 0 0 3px rgba(168,255,120,.06); }
.search-field button, .data-refresh-button, .data-quiet-button { border: 1px solid var(--line); border-radius: 8px; cursor: pointer; font: 650 9px var(--mono); }
.search-field button { padding: 10px 14px; border-color: transparent; background: var(--green); color: #07100b; }
.search-field button:hover { background: #c4ff9f; }
.explorer-search > p { margin: 9px 2px 0; color: var(--muted-2); font-size: 8px; line-height: 1.45; }
.data-inline-status { min-height: 13px; }
.data-inline-status.is-error { color: var(--red); }
.data-inline-status.is-success { color: var(--green); }

.data-summary-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; margin: 24px 0 18px; }
.data-summary-card { min-height: 128px; padding: 18px 19px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(16,31,21,.84), rgba(9,19,13,.72)); }
.data-summary-card:nth-child(3) { border-color: rgba(168,255,120,.18); }
.data-summary-card > span { color: var(--muted); font: 650 8px var(--mono); letter-spacing: .13em; }
.data-summary-card > strong { display: block; margin-top: 13px; overflow: hidden; color: var(--text); font: 520 25px var(--mono); letter-spacing: -.045em; text-overflow: ellipsis; white-space: nowrap; }
.data-summary-card > p { margin: 8px 0 0; color: var(--muted-2); font-size: 9px; }

.data-dashboard-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.data-table-panel, .data-result-panel, .data-explainer-panel { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.data-panel-head { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.data-panel-head h2, .data-explainer-panel h2 { margin: 5px 0 0; font-size: 17px; font-weight: 560; }
.data-panel-head p:last-child { max-width: 720px; margin: 6px 0 0; color: var(--muted-2); font-size: 9px; line-height: 1.45; }
.data-refresh-button, .data-quiet-button { flex: 0 0 auto; padding: 8px 11px; background: transparent; color: var(--green); }
.data-refresh-button:hover, .data-quiet-button:hover { border-color: rgba(168,255,120,.35); background: var(--green-soft); }
.data-refresh-button:focus-visible, .data-quiet-button:focus-visible, .search-field button:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.data-section-gap { margin-top: 18px; }
.data-table-wrap { width: 100%; overflow-x: auto; scrollbar-width: thin; scrollbar-color: var(--line-strong) transparent; }
.data-table { width: 100%; border-collapse: collapse; font-size: 10px; }
.data-table th { padding: 11px 14px; border-bottom: 1px solid var(--line); color: var(--muted-2); font: 650 7px var(--mono); letter-spacing: .08em; text-align: left; text-transform: uppercase; white-space: nowrap; }
.data-table td { height: 68px; padding: 12px 14px; border-bottom: 1px solid rgba(204,255,207,.06); color: var(--muted); vertical-align: middle; }
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table tbody tr:hover td { background: rgba(168,255,120,.025); }
.data-table td:first-child { color: var(--text); }
.data-table .data-numeric { color: var(--text); font-family: var(--mono); white-space: nowrap; }
.data-link { color: var(--green); font: 620 9px var(--mono); text-decoration: none; }
.data-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.data-link:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
.data-link-button { display: inline-flex; padding: 7px 9px; border: 1px solid rgba(168,255,120,.18); border-radius: 7px; background: rgba(168,255,120,.05); text-decoration: none; white-space: nowrap; }
.data-link-button:hover { background: rgba(168,255,120,.1); text-decoration: none; }
.data-identity { display: block; max-width: 260px; overflow: hidden; color: var(--text); font-size: 11px; font-weight: 580; text-overflow: ellipsis; white-space: nowrap; }
.data-mono-subline, .data-warning-subline { display: block; max-width: 270px; margin-top: 5px; overflow: hidden; color: var(--muted-2); font: 7px var(--mono); text-overflow: ellipsis; white-space: nowrap; }
.data-warning-subline { color: var(--amber); }
.data-unavailable { color: var(--muted-2) !important; }
.address-flow { display: block; max-width: 190px; overflow: hidden; color: var(--muted); font: 7px var(--mono); text-overflow: ellipsis; white-space: nowrap; }
.address-flow + .address-flow { margin-top: 5px; }
.data-pair { max-width: 230px; color: var(--muted); font: 8px var(--mono); }
.table-state { min-height: 170px; display: flex; align-items: center; justify-content: center; gap: 13px; padding: 26px; color: var(--muted); text-align: left; }
.table-state strong { display: block; color: var(--text); font-size: 11px; }
.table-state p { max-width: 420px; margin: 5px 0 0; color: var(--muted-2); font-size: 9px; line-height: 1.45; }
.table-state.is-error strong { color: var(--amber); }

.coverage-banner { display: flex; align-items: flex-start; gap: 11px; margin: 18px 0; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.02); color: var(--muted); }
.data-table-panel > .coverage-banner { margin: 0; border-width: 0 0 1px; border-radius: 0; }
.coverage-banner > span { display: grid; flex: 0 0 21px; place-items: center; height: 21px; border: 1px solid currentColor; border-radius: 50%; font: 700 8px var(--mono); }
.coverage-banner p { margin: 2px 0 0; font-size: 9px; line-height: 1.5; }
.coverage-banner strong { color: inherit; }
.coverage-banner.is-partial { border-color: rgba(255,201,107,.2); background: rgba(255,201,107,.05); color: #e8c98f; }
.coverage-banner.is-complete { border-color: rgba(168,255,120,.19); background: rgba(168,255,120,.05); color: var(--green); }
.data-method-badge, .data-badge { display: inline-flex; align-items: center; width: max-content; border: 1px solid var(--line); border-radius: 999px; font: 650 7px var(--mono); letter-spacing: .07em; }
.data-method-badge { padding: 7px 9px; color: var(--green); }
.signal-list { display: flex; flex-wrap: wrap; gap: 4px; max-width: 230px; }
.data-badge { padding: 4px 6px; color: var(--muted); }
.data-badge.is-warning { border-color: rgba(255,201,107,.22); color: var(--amber); }
.data-badge.is-danger { border-color: rgba(255,129,122,.22); color: var(--red); }
.data-badge.is-neutral { color: var(--muted-2); }

.data-result-panel { margin-bottom: 18px; }
.data-result-panel[hidden] { display: none; }
.search-result-body { padding: 20px; }
.search-result-record + .search-result-record { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.search-result-heading { display: flex; align-items: center; gap: 10px; }
.search-result-heading > strong { font-size: 14px; font-weight: 570; }
.search-result-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; margin: 17px 0 0; }
.search-result-fact { min-width: 0; padding: 11px 12px; border: 1px solid var(--line); border-radius: 9px; background: rgba(3,9,5,.28); }
.search-result-fact dt { color: var(--muted-2); font: 650 7px var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.search-result-fact dd { margin: 7px 0 0; overflow-wrap: anywhere; color: var(--text); font: 9px var(--mono); }
.data-explainer-panel { padding: 21px; }
.data-explainer-panel dl { display: grid; gap: 13px; margin: 19px 0 0; }
.data-explainer-panel dl > div { padding-top: 13px; border-top: 1px solid var(--line); }
.data-explainer-panel dt { color: var(--green); font: 650 8px var(--mono); text-transform: uppercase; }
.data-explainer-panel dd { margin: 6px 0 0; color: var(--muted); font-size: 9px; line-height: 1.55; }
.defi-grid { grid-template-columns: minmax(0,1.45fr) minmax(300px,.55fr); }
.market-table, .nft-sales-table, .defi-pools-table { min-width: 1020px; }

@media (min-width: 1600px) {
  .data-hero { min-height: 390px; gap: 72px; padding: 45px 0 54px; }
  .data-hero h1 { max-width: 980px; font-size: 78px; }
  .data-hero > div > p:last-child { max-width: 820px; font-size: 15px; }
  .explorer-search, .method-card { padding: 26px; }
  .search-field input { font-size: 13px; }
  .data-summary-grid { gap: 16px; margin: 28px 0 22px; }
  .data-summary-card { min-height: 146px; padding: 22px; }
  .data-summary-card > span { font-size: 9px; }
  .data-summary-card > strong { font-size: 30px; }
  .data-summary-card > p { font-size: 10px; }
  .data-dashboard-grid { gap: 22px; }
  .data-panel-head { min-height: 94px; padding: 22px 25px; }
  .data-panel-head h2, .data-explainer-panel h2 { font-size: 19px; }
  .data-panel-head p:last-child { font-size: 10px; }
  .data-table { font-size: 11px; }
  .data-table th { padding: 13px 18px; font-size: 8px; }
  .data-table td { height: 78px; padding: 15px 18px; }
  .data-link { font-size: 10px; }
  .data-identity { max-width: 320px; font-size: 12px; }
  .data-mono-subline { max-width: 330px; font-size: 8px; }
  .market-table, .nft-sales-table, .defi-pools-table { min-width: 1200px; }
}

@media (max-width: 1050px) {
  .topbar { height: auto; min-height: 88px; flex-wrap: wrap; gap: 10px; padding: 10px 0; }
  .topnav { order: 3; flex: 1 0 100%; justify-content: center; max-width: 100%; overflow-x: auto; scrollbar-width: thin; }
  .topnav a { flex: 0 0 auto; }
  .data-hero, .compact-data-hero { grid-template-columns: 1fr; gap: 24px; min-height: 0; }
  .data-hero { padding: 42px 0; }
  .explorer-search, .method-card { width: 100%; }
  .data-dashboard-grid, .defi-grid { grid-template-columns: 1fr; }
  .search-result-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 720px) {
  .topbar { height: auto; padding: 9px 0 10px; }
  .topnav { justify-content: flex-start; }
  .data-page-main { padding-top: 10px; }
  .data-hero { padding: 34px 0; }
  .data-hero h1 { font-size: clamp(39px, 12vw, 58px); }
  .data-hero > div > p:last-child { font-size: 12px; }
  .method-card, .explorer-search { padding: 16px; }
  .search-field { grid-template-columns: 20px minmax(0,1fr); padding: 7px 10px; }
  .search-field button { grid-column: 1 / -1; width: 100%; }
  .data-summary-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
  .data-summary-card { min-height: 116px; padding: 14px; }
  .data-summary-card > strong { font-size: 22px; }
  .data-panel-head { align-items: flex-start; flex-direction: column; padding: 16px; }
  .data-refresh-button { width: 100%; }
  .data-table { min-width: 700px; }
  .market-table, .nft-sales-table, .defi-pools-table { min-width: 980px; }
  .data-table th, .data-table td { padding-inline: 11px; }
  .search-result-grid { grid-template-columns: 1fr; }
  .search-result-body { padding: 15px; }
  .coverage-banner { margin: 12px 0; padding: 12px; }
  .coverage-banner p { font-size: 8px; }
}

@media (max-width: 430px) {
  .data-summary-grid { grid-template-columns: 1fr 1fr; }
  .data-summary-card { min-height: 106px; }
  .data-summary-card > span { font-size: 7px; }
  .data-summary-card > strong { font-size: 19px; }
  .data-method-badge { align-self: flex-start; }
}

/* Proof Radar visual system — independent analytics, live on Arc. */
:root {
  --success: #55c59a;
  --success-soft: rgba(85, 197, 154, 0.13);
  --canvas-line: rgba(174, 202, 240, 0.065);
  --canvas-line-strong: rgba(174, 202, 240, 0.13);
}

body {
  background:
    radial-gradient(ellipse at 78% -8%, rgba(72, 107, 194, 0.26), transparent 34rem),
    radial-gradient(ellipse at -5% 48%, rgba(106, 72, 172, 0.12), transparent 38rem),
    linear-gradient(150deg, #0b1322 0%, #07101f 48%, #050912 100%);
  background-attachment: fixed;
}

.grid-glow {
  opacity: 1;
  overflow: hidden;
  background-image:
    linear-gradient(var(--canvas-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--canvas-line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, .5) 55%, transparent 92%);
}
.grid-glow::before,
.grid-glow::after {
  content: "";
  position: fixed;
  pointer-events: none;
  border: 1px solid rgba(167, 201, 255, .12);
  border-radius: 50%;
}
.grid-glow::before {
  width: min(58vw, 940px);
  aspect-ratio: 1;
  top: -42vw;
  right: -14vw;
  box-shadow: 0 0 0 74px rgba(112, 141, 213, .025), 0 0 0 148px rgba(112, 141, 213, .018);
}
.grid-glow::after {
  width: 320px;
  aspect-ratio: 1;
  left: -210px;
  bottom: 4vh;
  border-color: rgba(185, 156, 255, .09);
}

.topbar {
  min-height: 94px;
  border-bottom-color: var(--line-strong);
}
.brand { gap: 13px; }
.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 1px solid rgba(167, 201, 255, .44);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(167, 201, 255, .17), rgba(97, 124, 244, .07));
  box-shadow: inset 0 1px rgba(255, 255, 255, .08), 0 12px 30px rgba(0, 8, 25, .24);
}
.brand-mark::before {
  inset: auto -4px -15px auto;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(167, 201, 255, .24);
  border-radius: 50%;
  background: transparent;
  transform: none;
}
.brand-mark::after { display: none; }
.brand-mark span {
  position: static;
  width: auto;
  height: auto;
  border-radius: 0;
  color: var(--text);
  background: transparent;
  box-shadow: none;
  font: 650 9px var(--mono);
  letter-spacing: -.05em;
}
.brand-copy { gap: 4px; letter-spacing: .13em; }
.brand-copy strong { color: var(--text); font: 650 13px var(--mono); }
.brand-copy small { color: var(--accent); font: 600 8px var(--mono); letter-spacing: .18em; }

.topnav {
  gap: 2px;
  padding: 4px;
  border-radius: 8px;
  background: rgba(7, 15, 29, .64);
  box-shadow: inset 0 1px rgba(255, 255, 255, .025);
}
.topnav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 10px;
}
.topnav a:hover { background: rgba(167, 201, 255, .075); }
.topnav a.is-active {
  color: #091426;
  background: linear-gradient(135deg, #c6dcff, #91b9ff);
  box-shadow: 0 8px 24px rgba(75, 116, 216, .18);
}

.creator-chip, .network-chip, .live-chip {
  border-color: var(--line);
  background: rgba(10, 22, 42, .72);
}
.creator-chip, .network-chip { border-radius: 9px; }
.creator-chip:hover {
  border-color: rgba(167, 201, 255, .38);
  background: rgba(20, 39, 69, .88);
}
.creator-icon {
  border: 1px solid rgba(167, 201, 255, .2);
  border-radius: 6px;
  color: var(--text);
  background: rgba(255, 255, 255, .055);
}
.network-icon {
  width: 39px;
  height: 28px;
  border: 1px solid rgba(167, 201, 255, .24);
  border-radius: 5px;
  color: var(--accent);
  background: linear-gradient(135deg, rgba(167, 201, 255, .16), rgba(97, 124, 244, .1));
  font: 700 8px var(--mono);
  letter-spacing: .09em;
}
.live-chip { border-radius: 8px; }
.live-chip.is-live { color: var(--success); border-color: rgba(85, 197, 154, .26); }
.live-chip.is-live .live-dot {
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(85, 197, 154, .08), 0 0 12px rgba(85, 197, 154, .52);
}

.early-access-notice {
  position: relative;
  border-color: rgba(244, 184, 96, .22);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(244, 184, 96, .085), rgba(244, 184, 96, .02));
  color: #f2cc94;
}
.early-access-notice::after {
  content: "ARC.RUNTIME // PRE-GA";
  margin-left: auto;
  color: rgba(244, 184, 96, .52);
  font: 600 7px var(--mono);
  letter-spacing: .12em;
  white-space: nowrap;
}
.early-access-notice strong { color: #f7d9aa; }

.mode-notice,
.coverage-banner.is-partial,
.nft-coverage-note {
  border-radius: 8px;
}

h1,
.nft-page-hero h1,
.data-hero h1 {
  font-family: var(--display);
  font-weight: 420;
  letter-spacing: -.052em;
}
h1 em {
  color: var(--accent);
  background: linear-gradient(100deg, #d7e7ff 0%, #91b9ff 52%, #b99cff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}
.eyebrow, .section-kicker { color: #8fa5c4; letter-spacing: .21em; }
.eyebrow span {
  width: 28px;
  background: linear-gradient(90deg, var(--accent), transparent);
  box-shadow: none;
}
.hero {
  position: relative;
  min-height: 360px;
  border-bottom-color: var(--line-strong);
}
.hero::before {
  content: "ARC.RUNTIME  /  REF-5042";
  position: absolute;
  top: 18px;
  right: 0;
  color: var(--muted-2);
  font: 600 8px var(--mono);
  letter-spacing: .16em;
}
.hero-copy { padding: 52px 0 54px; }
.hero-subtitle { color: #aab9cb; }
.status-pulse { background: var(--success); box-shadow: 0 0 10px rgba(85, 197, 154, .6); }

.radar-stage { min-height: 360px; }
.radar-stage::before {
  inset: 9% -7% -28% 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 113, 204, .19), rgba(86, 79, 162, .07) 38%, transparent 67%);
  filter: blur(22px);
}
.radar-grid {
  width: min(32vw, 390px);
  border: 1px solid rgba(167, 201, 255, .17);
  background:
    radial-gradient(circle at center, transparent 0 34%, rgba(167, 201, 255, .055) 34.3% 34.7%, transparent 35% 67%, rgba(167, 201, 255, .045) 67.3% 67.7%, transparent 68%),
    conic-gradient(from 218deg, transparent 0 22%, rgba(97, 124, 244, .16) 22% 24%, transparent 24% 62%, rgba(185, 156, 255, .12) 62% 65%, transparent 65%);
  opacity: 1;
  transform: rotate(-9deg);
}
.radar-grid::after, .radar-grid::before { display: none; }
.ring { border-color: rgba(167, 201, 255, .13); }
.ring-one { border-left-color: transparent; border-bottom-color: rgba(185, 156, 255, .2); }
.ring-two { border-right-color: transparent; transform: rotate(34deg); }
.ring-three { border-top-color: var(--accent); border-left-color: transparent; transform: rotate(-27deg); }
.radar-beam {
  inset: 7%;
  border: 2px solid transparent;
  border-top-color: rgba(167, 201, 255, .72);
  border-right-color: rgba(97, 124, 244, .26);
  background: none;
  box-shadow: inset 0 0 24px rgba(97, 124, 244, .035);
  animation-duration: 14s;
}
.radar-blip {
  width: 6px;
  height: 6px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(167, 201, 255, .07), 0 0 16px rgba(167, 201, 255, .72);
}
.block-core {
  min-width: 184px;
  padding: 19px 22px;
  border: 1px solid rgba(167, 201, 255, .18);
  border-radius: 7px;
  background: rgba(6, 14, 29, .74);
  box-shadow: 0 18px 70px rgba(0, 5, 18, .42), inset 0 1px rgba(255, 255, 255, .035);
  backdrop-filter: blur(13px);
}
.block-core span { color: var(--accent); }

.metric-card,
.nft-page-summary article,
.data-summary-card {
  border-color: var(--line);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(20, 38, 66, .78), rgba(8, 18, 35, .72));
  box-shadow: inset 0 1px rgba(255, 255, 255, .035);
}
.metric-card:nth-child(2),
.nft-page-summary article:nth-child(2),
.data-summary-card:nth-child(3) {
  border-color: rgba(167, 201, 255, .22);
  background: linear-gradient(145deg, rgba(29, 52, 89, .8), rgba(10, 20, 40, .74));
}
.coverage-card {
  border-color: rgba(185, 156, 255, .25);
  background: linear-gradient(145deg, rgba(52, 42, 89, .5), rgba(10, 20, 40, .76));
}
.metric-icon { border-radius: 6px; color: var(--accent); }
.metric-card > p, .nft-page-summary p, .data-summary-card > p { color: #7487a2; }

.stream-panel, .social-panel, .launch-panel, .event-panel,
.nft-page-board, .nft-page-events,
.data-table-panel, .data-result-panel, .data-explainer-panel {
  border-color: var(--line);
  border-radius: 12px;
  background: linear-gradient(155deg, rgba(15, 29, 51, .88), rgba(7, 16, 31, .86));
  box-shadow: 0 24px 70px rgba(0, 6, 18, .28), inset 0 1px rgba(255, 255, 255, .025);
}
.panel-title-row, .data-panel-head, .nft-board-head, .nft-page-events > header { border-bottom-color: var(--line); }
.stream-legend .legend-token { background: var(--accent); box-shadow: 0 0 8px rgba(167, 201, 255, .44); }

.social-health-chip, .filters, .nft-window-tabs {
  border-radius: 7px;
  background: rgba(5, 13, 28, .52);
}
.social-post, .token-entry, .event-item, .nft-page-event {
  border-color: var(--line);
  background: rgba(8, 18, 34, .55);
}
.social-post:hover, .nft-page-collection-row:hover, .data-table tbody tr:hover td {
  border-color: rgba(167, 201, 255, .22);
  background: rgba(40, 69, 113, .16);
}
.social-avatar, .token-avatar {
  border-color: rgba(167, 201, 255, .22);
  background: linear-gradient(145deg, rgba(167, 201, 255, .14), rgba(97, 124, 244, .08));
  color: var(--accent);
}
.social-post-content { color: #dce7f5; }
.filter.is-active, .nft-window-tabs button.is-active {
  color: #091426;
  background: var(--accent);
  box-shadow: none;
}
.confidence-track i, .nft-heat-track i, .nft-cap-progress::-webkit-progress-value, .nft-cap-progress::-moz-progress-bar {
  background: linear-gradient(90deg, var(--accent-strong), var(--accent));
  box-shadow: 0 0 9px rgba(167, 201, 255, .34);
}
.token-explorer-link, .data-link-button {
  border-color: rgba(167, 201, 255, .22);
  color: var(--accent);
  background: var(--accent-soft);
}
.token-explorer-link:hover, .data-link-button:hover { background: rgba(167, 201, 255, .14); }

dialog {
  border-color: rgba(167, 201, 255, .26);
  border-radius: 14px;
  background: var(--panel-solid);
}
dialog::backdrop { background: rgba(1, 5, 14, .8); }
.dialog-head { background: linear-gradient(130deg, rgba(167, 201, 255, .1), transparent 58%); }
.dialog-token-mark { border-color: rgba(167, 201, 255, .24); background: var(--accent-soft); color: var(--accent); }
.address-line, .search-result-fact { background: rgba(4, 11, 24, .5); }
.dialog-footer a { color: #091426; background: var(--accent); }

.nft-page-hero, .data-hero { border-bottom-color: var(--line-strong); }
.nft-page-pulse {
  border-color: rgba(167, 201, 255, .16);
  background:
    radial-gradient(circle, rgba(97, 124, 244, .13), transparent 62%),
    conic-gradient(from 204deg, transparent 0 18%, rgba(167, 201, 255, .15) 18% 20%, transparent 20% 63%, rgba(185, 156, 255, .13) 63% 66%, transparent 66%);
  transform: rotate(-8deg);
}
.nft-page-pulse::before, .nft-page-pulse::after, .nft-page-pulse span { border-color: rgba(167, 201, 255, .13); }
.nft-page-pulse span { border-top-color: rgba(167, 201, 255, .12); }
.nft-page-pulse i, .nft-page-pulse b { background: var(--accent); box-shadow: 0 0 15px 3px rgba(167, 201, 255, .4); }
.nft-supply-cell { border-color: var(--line); background: rgba(5, 13, 28, .38); }
.nft-supply-cell.has-cap { border-color: rgba(167, 201, 255, .2); background: linear-gradient(120deg, rgba(31, 57, 96, .48), rgba(5, 13, 28, .26)); }
.nft-page-rank, .nft-page-events > header > span, .data-link, .data-method-badge, .data-explainer-panel dt { color: var(--accent); }

.data-hero::before {
  content: "{ARC MAINNET}  //  VERIFIED DATA ONLY";
  position: absolute;
  right: 0;
  top: 20px;
  color: var(--muted-2);
  font: 600 8px var(--mono);
  letter-spacing: .14em;
}
.method-card, .explorer-search {
  border-color: rgba(167, 201, 255, .2);
  border-radius: 10px;
  background: linear-gradient(150deg, rgba(25, 46, 78, .78), rgba(8, 18, 35, .78));
}
.search-field {
  border-color: var(--line-strong);
  border-radius: 8px;
  background: rgba(3, 10, 22, .64);
}
.search-field:focus-within { border-color: rgba(167, 201, 255, .62); box-shadow: 0 0 0 3px rgba(167, 201, 255, .07); }
.search-field button { color: #091426; background: var(--accent); }
.search-field button:hover { background: #c9deff; }
.coverage-banner.is-complete { border-color: rgba(85, 197, 154, .22); background: var(--success-soft); color: var(--success); }
.data-table td { border-bottom-color: rgba(174, 202, 240, .07); }

body > footer {
  border-top-color: var(--line-strong);
  color: #71839d;
}
body > footer a { color: var(--accent); }

@media (min-width: 1600px) {
  .topbar, main, body > footer { width: min(1720px, calc(100% - 112px)); }
  .hero { min-height: 410px; }
  .radar-stage { min-height: 410px; }
  .radar-grid { width: min(29vw, 445px); }
  .brand-mark { width: 44px; height: 44px; }
  .topnav a { min-height: 40px; font-size: 11px; }
}

@media (max-width: 1050px) {
  .early-access-notice::after { display: none; }
  .hero::before, .data-hero::before { display: none; }
}

@media (max-width: 720px) {
  .grid-glow { background-size: 48px 48px; }
  .topbar { min-height: 0; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-copy strong { font-size: 11px; }
  .brand-copy small { font-size: 7px; }
  .topnav a { min-height: 42px; padding-inline: 13px; font-size: 10px; }
  .network-icon { width: 35px; }
  .hero-copy { padding-top: 36px; }
  .block-core { min-width: 164px; }
}

@media (max-width: 430px) {
  .topnav a { font-size: 10px; }
  .early-access-notice { border-radius: 7px; }
  .early-access-notice p { font-size: 10px; }
}
