:root {
  --ink: #071311;
  --ink-2: #0b1b18;
  --ink-3: #10231f;
  --line: rgba(217, 226, 216, .12);
  --line-strong: rgba(217, 226, 216, .22);
  --cream: #eef0e8;
  --muted: #9ba8a1;
  --dim: #77857e;
  --mint: #9ed7b6;
  --mint-bright: #c7f2d6;
  --red: #ec9791;
  --gold: #e0bd72;
  --blue: #9abbd4;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --page: min(1440px, calc(100vw - 80px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--cream);
  background:
    radial-gradient(circle at 82% 8%, rgba(42, 98, 76, .16), transparent 33rem),
    radial-gradient(circle at 2% 42%, rgba(56, 83, 64, .08), transparent 28rem),
    var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
::selection { color: var(--ink); background: var(--mint); }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 1000; left: 16px; top: -80px;
  padding: 10px 16px; color: var(--ink); background: var(--cream);
  border-radius: 999px; transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.signal-field { position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: .38; overflow: hidden; }
.signal-field::before {
  content: ""; position: absolute; width: 50vw; height: 50vw; right: -14vw; top: 2vh;
  border: 1px solid rgba(158, 215, 182, .08); border-radius: 50%;
  animation: drift 18s ease-in-out infinite alternate;
}
.signal-field span { position: absolute; height: 1px; width: 42vw; right: -8vw; background: linear-gradient(90deg, transparent, rgba(158, 215, 182, .15), transparent); transform-origin: right center; }
.signal-field span:nth-child(1) { top: 16%; transform: rotate(-28deg); }
.signal-field span:nth-child(2) { top: 31%; transform: rotate(-19deg); }
.signal-field span:nth-child(3) { top: 48%; transform: rotate(-10deg); }
.signal-field span:nth-child(4) { top: 68%; transform: rotate(3deg); }
.signal-field span:nth-child(5) { top: 84%; transform: rotate(14deg); }

.site-header, main, footer { position: relative; z-index: 1; }
.site-header {
  width: var(--page); height: 84px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 650; letter-spacing: -.02em; }
.brand-mark {
  width: 35px; height: 35px; display: grid; place-items: center;
  color: var(--ink); background: var(--cream); border-radius: 50%;
  font-family: var(--serif); font-weight: 700;
}
.brand-name { font-size: 17px; }
.brand-subnet { color: var(--dim); font: 11px var(--mono); text-transform: uppercase; letter-spacing: .11em; }
.site-nav { display: flex; gap: 32px; color: var(--muted); font-size: 14px; }
.site-nav a, footer a { transition: color .2s ease; }
.site-nav a:hover, footer a:hover { color: var(--cream); }
.header-cta {
  padding: 10px 17px; border: 1px solid var(--line-strong); border-radius: 999px;
  color: #cbd3cd; font-size: 13px; transition: background .2s, border-color .2s;
}
.header-cta:hover { background: rgba(158, 215, 182, .07); border-color: rgba(158, 215, 182, .4); }

main { width: var(--page); margin: 0 auto; }
.hero {
  min-height: 610px; display: grid; grid-template-columns: 1.15fr .85fr;
  align-items: center; gap: clamp(50px, 9vw, 150px); padding: 88px 0 76px;
}
.eyebrow { display: flex; align-items: center; gap: 11px; color: var(--mint); font: 11px var(--mono); letter-spacing: .14em; text-transform: uppercase; }
.eyebrow i { width: 24px; height: 1px; background: currentColor; }
.hero h1, .section-heading h2, .system-note h2 {
  margin: 19px 0 23px; font-family: var(--serif); font-weight: 400; letter-spacing: -.045em; line-height: .98;
}
.hero h1 { font-size: clamp(58px, 7.2vw, 112px); max-width: 850px; }
.hero h1 em { color: var(--mint); font-weight: 400; }
.hero-copy > p { max-width: 630px; margin: 0; color: var(--muted); font-size: clamp(17px, 1.35vw, 21px); line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 37px; }
.primary-action {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 28px;
  min-width: 190px; padding: 14px 20px; color: var(--ink); background: var(--cream);
  border-radius: 999px; font-size: 13px; font-weight: 650; transition: transform .25s ease, background .25s ease;
}
.primary-action:hover { transform: translateY(-2px); background: var(--mint-bright); }
.text-action { color: #a9b4ad; font-size: 14px; transition: color .2s ease; }
.text-action:hover { color: var(--cream); }

.live-card {
  position: relative; overflow: hidden; padding: 22px;
  border: 1px solid var(--line-strong); border-radius: 25px;
  background: linear-gradient(145deg, rgba(17, 37, 32, .86), rgba(8, 20, 18, .94));
  box-shadow: 0 40px 100px rgba(0, 0, 0, .24);
}
.live-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(120deg, transparent 35%, rgba(158, 215, 182, .035), transparent 65%); animation: sheen 8s linear infinite; }
.live-card-head { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1; }
.live-pill { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-size: 12px; }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(224, 189, 114, .3); animation: pulse 2.2s infinite; }
.live-pill[data-state="ready"] .pulse-dot { background: var(--mint); box-shadow: 0 0 0 0 rgba(158, 215, 182, .35); }
.live-pill[data-state="stale"] .pulse-dot { background: var(--gold); }
.live-pill[data-state="unavailable"] .pulse-dot { background: var(--red); }
.auto-label { color: var(--dim); font: 10px var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.live-card-visual { position: relative; height: 210px; margin: 18px 0; border-block: 1px solid var(--line); overflow: hidden; }
.live-card-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.live-card-visual path { fill: none; stroke: rgba(158, 215, 182, .22); stroke-width: 1; stroke-dasharray: 5 7; animation: lineflow 9s linear infinite; }
.validator-node, .miner-node {
  position: absolute; z-index: 2; width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid rgba(158, 215, 182, .3); background: var(--ink-2);
  color: var(--mint); font: 11px var(--mono); box-shadow: 0 0 25px rgba(158, 215, 182, .09);
}
.validator-node { right: 11%; top: calc(50% - 19px); animation: nodeglow 3s ease-in-out infinite; }
.miner-node { left: 7%; color: var(--muted); width: 32px; height: 32px; }
.miner-one { top: 15%; }.miner-two { top: calc(50% - 16px); }.miner-three { bottom: 15%; }
.scan-line { position: absolute; top: 0; bottom: 0; width: 80px; z-index: 1; background: linear-gradient(90deg, transparent, rgba(158, 215, 182, .05), transparent); animation: scan 6s ease-in-out infinite; }
.freshness { display: flex; justify-content: space-between; gap: 18px; align-items: center; margin-bottom: 15px; }
.freshness span { color: var(--dim); font-size: 12px; }
.freshness strong { font: 12px var(--mono); color: #b9c5bd; font-weight: 400; }
.refresh-button {
  position: relative; z-index: 2; width: 100%; display: flex; align-items: center; justify-content: center; gap: 9px; padding: 12px 16px; border: 1px solid var(--line);
  border-radius: 12px; background: rgba(255, 255, 255, .025); color: #c5cec8;
  cursor: pointer; transition: border-color .2s, background .2s;
}
.refresh-button:hover { border-color: rgba(158, 215, 182, .35); background: rgba(158, 215, 182, .06); }
.refresh-button:disabled { cursor: wait; opacity: .65; }
.refresh-button.loading .refresh-icon { display: inline-block; animation: spin .8s linear infinite; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.stats-grid article { padding: 28px 30px; border-right: 1px solid var(--line); }
.stats-grid article:first-child { padding-left: 0; }.stats-grid article:last-child { border-right: 0; }
.stats-grid span, .stats-grid small { display: block; color: var(--dim); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.stats-grid strong { display: block; margin: 3px 0 0; font: 42px var(--serif); font-weight: 400; line-height: 1.15; }
.stats-grid strong.accent { color: var(--mint); }
.stats-grid small { text-transform: none; letter-spacing: 0; font-size: 12px; }

.leaderboard-shell { margin-top: 112px; border: 1px solid var(--line-strong); border-radius: 26px; background: rgba(8, 21, 18, .85); overflow: visible; }
.section-heading { display: flex; justify-content: space-between; gap: 50px; align-items: flex-end; padding: 40px 42px 32px; }
.section-heading h2 { margin: 12px 0 10px; font-size: clamp(42px, 4.5vw, 68px); }
.section-heading p { max-width: 600px; margin: 0; color: var(--muted); font-size: 15px; }
.legend { display: flex; gap: 20px; padding-bottom: 10px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; white-space: nowrap; }
.legend span { display: flex; align-items: center; gap: 8px; }
.legend-dot { width: 7px; height: 7px; border-radius: 50%; }.legend-dot.valid { background: var(--mint); }.legend-dot.invalid { background: var(--red); }.legend-dot.pending { background: var(--gold); }.legend-dot.carried { background: var(--blue); }

.toolbar { position: relative; display: grid; grid-template-columns: minmax(230px, 1fr) auto minmax(200px, .55fr); gap: 14px; align-items: center; padding: 16px 20px; border-block: 1px solid var(--line); background: rgba(255, 255, 255, .014); }
.search-field { height: 48px; display: flex; align-items: center; gap: 10px; padding: 0 15px; border: 1px solid var(--line); border-radius: 13px; color: var(--dim); background: rgba(0, 0, 0, .12); }
.search-field:focus-within { border-color: rgba(158, 215, 182, .45); }
.search-field input { width: 100%; border: 0; outline: 0; color: var(--cream); background: transparent; font-size: 14px; }
.search-field input::placeholder { color: #53625b; }
.filter-group { height: 48px; display: flex; gap: 3px; padding: 4px; border: 1px solid var(--line); border-radius: 13px; }
.filter-button { padding: 0 14px; border: 0; border-radius: 9px; background: transparent; color: var(--dim); cursor: pointer; font-size: 13px; }
.filter-button:hover { color: var(--cream); }.filter-button.active { color: var(--cream); background: rgba(158, 215, 182, .12); }
.sort-field { position: relative; height: 48px; display: flex; align-items: center; gap: 10px; }
.sort-caption { color: var(--dim); font: 10px var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.sort-trigger { height: 48px; flex: 1; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; border: 1px solid var(--line); border-radius: 13px; color: #bcc7c0; background: rgba(0, 0, 0, .12); cursor: pointer; }
.sort-chevron { width: 8px; height: 8px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg) translateY(-3px); }
.sort-trigger[aria-expanded="true"] .sort-chevron { transform: rotate(225deg) translate(-2px, -1px); }
.sort-menu { position: absolute; z-index: 20; top: 58px; right: 0; width: 285px; padding: 7px; border: 1px solid var(--line-strong); border-radius: 14px; background: #10211e; box-shadow: 0 24px 70px rgba(0, 0, 0, .45); animation: menu-in .16s ease-out; }
.sort-menu[hidden] { display: none; }
.sort-menu button { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 11px; border: 0; border-radius: 9px; text-align: left; background: transparent; color: var(--muted); cursor: pointer; }
.sort-menu button:hover, .sort-menu button[aria-selected="true"] { color: var(--cream); background: rgba(158, 215, 182, .08); }
.sort-menu span, .sort-menu strong, .sort-menu small { display: block; }.sort-menu strong { font-size: 13px; }.sort-menu small { color: var(--dim); font-size: 11px; }.sort-menu i { visibility: hidden; color: var(--mint); font-style: normal; }.sort-menu button[aria-selected="true"] i { visibility: visible; }

.preview-notice { padding: 12px 20px; color: var(--gold); background: rgba(224, 189, 114, .06); border-bottom: 1px solid rgba(224, 189, 114, .15); font-size: 12px; }
.table-wrap { position: relative; width: 100%; overflow-x: auto; overflow-y: visible; scrollbar-color: rgba(158, 215, 182, .18) transparent; }
table { width: 100%; min-width: 900px; border-collapse: separate; border-spacing: 0; }
th { height: 72px; padding: 0 20px; border-bottom: 1px solid var(--line); color: var(--dim); font: 10px var(--mono); text-align: left; text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; background: #0d1d1a; }
td { height: 88px; padding: 0 20px; border-bottom: 1px solid var(--line); background: rgba(8, 21, 18, .95); }
tbody tr { animation: row-in .45s both; } tbody tr:nth-child(2) { animation-delay: .035s; } tbody tr:nth-child(3) { animation-delay: .07s; } tbody tr:nth-child(4) { animation-delay: .105s; }
tbody tr:last-child td { border-bottom: 0; } tbody tr:hover td { background: rgba(15, 35, 30, .98); }
.sticky-rank { position: sticky; left: 0; z-index: 3; width: 70px; }.sticky-miner { position: sticky; left: 70px; z-index: 3; min-width: 250px; border-right: 1px solid var(--line); }
th.sticky-rank, th.sticky-miner { z-index: 5; }
.rank-cell { color: #75837c; font: 15px var(--mono); }.rank-cell.top { color: var(--mint); }
.miner-cell { display: flex; align-items: center; gap: 13px; }
.miner-avatar { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: var(--mint); background: rgba(158, 215, 182, .08); border: 1px solid rgba(158, 215, 182, .16); font: 10px var(--mono); }
.miner-id strong, .miner-id span { display: block; }.miner-id strong { max-width: 175px; overflow: hidden; color: #dce2dc; font: 13px var(--mono); text-overflow: ellipsis; white-space: nowrap; }.miner-id span { margin-top: 3px; color: var(--dim); font: 10px var(--mono); }
.consensus-cell { min-width: 160px; }.consensus-score, .consensus-meta { display: block; }.consensus-score { font: 22px var(--serif); }.consensus-meta { margin-top: 4px; color: var(--dim); font: 9px var(--mono); letter-spacing: .08em; }
.validator-head { min-width: 235px; }.validator-label, .validator-window { display: block; }.validator-label { color: #98a69e; font: 11px var(--mono); }.validator-window { margin-top: 4px; color: #58675f; font-size: 9px; }
.result-button { width: 100%; min-width: 190px; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 14px; color: var(--cream); background: rgba(255,255,255,.018); cursor: pointer; transition: transform .2s, border-color .2s, background .2s; }
.result-button:hover { transform: translateY(-2px); border-color: var(--line-strong); background: rgba(255,255,255,.04); }.result-button.valid, .result-button.passed { border-color: rgba(158,215,182,.2); }.result-button.monitoring, .result-button.auditing, .result-button.retrying { border-color: rgba(224,189,114,.2); }.result-button.carried { border-color: rgba(154,187,212,.22); }.result-button.invalid, .result-button.blacklisted { border-color: rgba(236,151,145,.17); }
.result-score { font: 18px var(--serif); }.missing { color: var(--dim); }
.result-state { display: flex; align-items: flex-end; flex-direction: column; gap: 4px; }
.status-tag { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font: 9px var(--mono); text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; }
.status-tag small { color: var(--dim); font: inherit; }
.status-tag::before { content: ""; flex: 0 0 auto; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }.status-tag.valid::before, .status-tag.passed::before { background: var(--mint); }.status-tag.invalid::before, .status-tag.blacklisted::before { background: var(--red); }.status-tag.carried::before { background: var(--blue); }
.reward-tag { padding: 2px 6px; border: 1px solid rgba(158,215,182,.18); border-radius: 999px; color: var(--mint); font: 8px var(--mono); text-transform: uppercase; letter-spacing: .07em; }
.table-footer { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 20px; border-top: 1px solid var(--line); color: var(--dim); font-size: 12px; }
.pagination { display: flex; align-items: center; gap: 12px; }.pagination button { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 9px; background: transparent; cursor: pointer; }.pagination button:disabled { opacity: .28; cursor: default; }.pagination span { font: 10px var(--mono); }
.matrix-disclaimer { margin: 0; padding: 17px 20px 20px; border-top: 1px solid var(--line); color: #56645d; font-size: 11px; line-height: 1.6; }
.empty-state { min-height: 260px; display: grid; place-content: center; text-align: center; color: var(--muted); }.empty-state[hidden] { display: none; }.empty-state strong, .empty-state p { display: block; }.empty-state p { margin: 5px 0; color: var(--dim); }.empty-glyph { color: var(--mint); font: 30px var(--serif); }

.protocol-section, .roadmap-section { padding: 140px 0 0; }
.section-heading.compact { padding: 0 0 44px; align-items: end; border-bottom: 1px solid var(--line); }
.section-heading.compact > p { max-width: 480px; }
.section-heading.compact h2 { max-width: 780px; font-size: clamp(42px, 5vw, 72px); }
.protocol-steps { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; list-style: none; counter-reset: step; }
.protocol-steps li { min-height: 250px; padding: 34px 32px; border-right: 1px solid var(--line); }.protocol-steps li:first-child { padding-left: 0; }.protocol-steps li:last-child { border-right: 0; }
.protocol-steps span { color: var(--mint); font: 10px var(--mono); }.protocol-steps h3, .phase-card h3 { margin: 32px 0 12px; font: 32px var(--serif); font-weight: 400; }.protocol-steps p, .phase-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.protocol-facts { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.protocol-facts span { padding: 20px; border-right: 1px solid var(--line); color: var(--dim); font-size: 11px; }.protocol-facts span:first-child { padding-left: 0; }.protocol-facts span:last-child { border-right: 0; }.protocol-facts strong { display: block; color: #c9d2cc; font: 20px var(--serif); font-weight: 400; }
.phase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding-top: 34px; }
.phase-card { position: relative; min-height: 360px; padding: 33px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.015); overflow: hidden; }
.phase-card.current { background: linear-gradient(145deg, rgba(31,65,53,.25), rgba(255,255,255,.012)); border-color: rgba(158,215,182,.2); }.phase-card.current::after { content: ""; position: absolute; width: 240px; height: 240px; top: -150px; right: -90px; border: 1px solid rgba(158,215,182,.11); border-radius: 50%; animation: drift 12s ease-in-out infinite alternate; }
.phase-meta { display: flex; align-items: center; justify-content: space-between; color: var(--dim); font: 10px var(--mono); text-transform: uppercase; letter-spacing: .09em; }.phase-meta i { padding: 5px 9px; border: 1px solid var(--line); border-radius: 999px; font-style: normal; }.current .phase-meta i { color: var(--mint); border-color: rgba(158,215,182,.2); }
.phase-card h3 { margin-top: 48px; font-size: 38px; }.phase-card p { max-width: 570px; }
.phase-card ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 31px 0 0; padding: 0; list-style: none; }.phase-card li { padding: 6px 10px; color: #829088; border: 1px solid var(--line); border-radius: 999px; font-size: 10px; }
.system-note { display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; margin: 140px 0; padding: 55px 0; border-block: 1px solid var(--line); }
.note-tag { color: var(--mint); font: 10px var(--mono); text-transform: uppercase; letter-spacing: .12em; }.system-note h2 { margin: 18px 0 0; max-width: 760px; font-size: clamp(40px,4.4vw,65px); }.system-note p { margin: 36px 0 28px; color: var(--muted); font-size: 16px; line-height: 1.8; }.system-note a { color: var(--mint); font-size: 13px; }

.detail-panel { position: fixed; inset: 0; z-index: 100; pointer-events: none; visibility: hidden; }.detail-panel.open { pointer-events: auto; visibility: visible; }
.panel-backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(1,7,6,.68); opacity: 0; transition: opacity .3s; }.open .panel-backdrop { opacity: 1; }
.panel-content { position: absolute; right: 0; top: 0; width: min(520px, 100%); height: 100%; overflow-y: auto; padding: 44px; background: #0d1d1a; border-left: 1px solid var(--line-strong); transform: translateX(100%); transition: transform .36s cubic-bezier(.2,.75,.2,1); }.open .panel-content { transform: translateX(0); }
.panel-close { position: absolute; top: 24px; right: 24px; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }.panel-kicker { color: var(--mint); font: 10px var(--mono); text-transform: uppercase; letter-spacing: .1em; }.panel-content h2 { margin: 14px 0 8px; font: 42px var(--serif); font-weight: 400; }
.detail-validator { margin: 0 0 26px; color: var(--dim); font: 11px var(--mono); }.detail-score { padding: 22px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.02); }.detail-score > strong { display: block; margin-bottom: 8px; font: 52px var(--serif); font-weight: 400; }.detail-statuses { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }.detail-score p { color: var(--muted); font-size: 13px; }.detail-actions { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 30px; }.detail-actions button, .detail-actions a { flex: 1 1 142px; padding: 10px; border: 1px solid var(--line); border-radius: 10px; color: #b9c3bd; background: transparent; text-align: center; cursor: pointer; font-size: 12px; }
.detail-list { margin: 0; }.detail-row { display: grid; grid-template-columns: 140px 1fr; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--line); }.detail-row dt { color: var(--dim); font-size: 11px; }.detail-row dd { margin: 0; overflow-wrap: anywhere; color: #b6c0ba; font: 11px var(--mono); text-align: right; }
.toast { position: fixed; z-index: 200; left: 50%; bottom: 28px; padding: 10px 16px; border: 1px solid var(--line-strong); border-radius: 999px; background: #152824; box-shadow: 0 12px 40px rgba(0,0,0,.35); color: #d5ddd7; font-size: 12px; opacity: 0; transform: translate(-50%, 20px); pointer-events: none; transition: opacity .2s, transform .2s; }.toast.visible { opacity: 1; transform: translate(-50%, 0); }

footer { width: var(--page); margin: 0 auto; padding: 30px 0 42px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid var(--line); color: var(--dim); font-size: 11px; }.footer-links, footer div { display: flex; gap: 22px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.75,.25,1); }.reveal.visible { opacity: 1; transform: none; }

@keyframes drift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-20px,18px,0) scale(1.04); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(158,215,182,.35); } 60%,100% { box-shadow: 0 0 0 9px rgba(158,215,182,0); } }
@keyframes sheen { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
@keyframes lineflow { to { stroke-dashoffset: -120; } }
@keyframes nodeglow { 0%,100% { box-shadow: 0 0 18px rgba(158,215,182,.08); } 50% { box-shadow: 0 0 32px rgba(158,215,182,.2); } }
@keyframes scan { 0% { left: -100px; opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; } 100% { left: calc(100% + 20px); opacity: 0; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes row-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes menu-in { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: none; } }

@media (max-width: 1050px) {
  :root { --page: min(100% - 40px, 960px); }
  .site-nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 54px; padding-top: 75px; }
  .live-card { max-width: 620px; }
  .toolbar { grid-template-columns: 1fr 1fr; }.search-field { grid-column: 1 / -1; }
  .section-heading, .section-heading.compact { align-items: flex-start; flex-direction: column; gap: 18px; }
  .legend { padding-bottom: 0; }
  .system-note { gap: 50px; }
}
@media (max-width: 720px) {
  :root { --page: calc(100% - 28px); }
  .site-header { height: 70px; }.brand-subnet, .header-cta { display: none; }
  .hero { min-height: auto; padding: 60px 0 54px; }.hero h1 { font-size: clamp(50px, 15vw, 76px); }.hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .live-card { padding: 17px; }.live-card-visual { height: 170px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }.stats-grid article { padding: 20px 16px; border-bottom: 1px solid var(--line); }.stats-grid article:nth-child(2) { border-right: 0; }.stats-grid article:nth-child(3), .stats-grid article:nth-child(4) { border-bottom: 0; }.stats-grid article:first-child { padding-left: 16px; }
  .leaderboard-shell { margin-top: 70px; border-radius: 18px; }.section-heading { padding: 27px 20px 22px; }.section-heading h2 { font-size: 43px; }.legend { gap: 12px; font-size: 9px; }
  .toolbar { grid-template-columns: 1fr; padding: 12px; }.search-field { grid-column: auto; }.filter-group { overflow-x: auto; }.filter-button { flex: 1; padding-inline: 10px; }.sort-field { width: 100%; }
  .sticky-miner { left: 58px; min-width: 210px; }.sticky-rank { width: 58px; } th, td { padding-inline: 13px; }
  .protocol-section, .roadmap-section { padding-top: 95px; }.section-heading.compact { padding-bottom: 28px; }.section-heading.compact h2 { font-size: 44px; }
  .protocol-steps, .phase-grid { grid-template-columns: 1fr; }.protocol-steps li { min-height: auto; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }.protocol-steps li:last-child { border-bottom: 0; }.protocol-steps h3 { margin-top: 14px; }
  .protocol-facts { grid-template-columns: 1fr 1fr; }.protocol-facts span { padding: 15px; border-bottom: 1px solid var(--line); }.protocol-facts span:first-child { padding-left: 15px; }
  .phase-card { min-height: auto; padding: 25px; }.phase-card h3 { margin-top: 32px; font-size: 32px; }
  .system-note { grid-template-columns: 1fr; gap: 12px; margin: 95px 0; }.system-note p { margin-top: 15px; }
  .panel-content { padding: 30px 22px; }.detail-row { grid-template-columns: 115px 1fr; }
  footer { align-items: flex-start; flex-direction: column; } footer div { flex-wrap: wrap; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
