:root {
  color-scheme: dark;
  --ink: #07110b;
  --ink-soft: #0b1710;
  --panel: rgba(14, 28, 19, .78);
  --panel-solid: #0e1c13;
  --panel-raised: #122419;
  --line: rgba(164, 255, 178, .13);
  --line-strong: rgba(164, 255, 178, .25);
  --text: #edf8ef;
  --text-soft: #c7d8ca;
  --muted: #7f9986;
  --green: #8df19e;
  --green-hot: #b5ffc0;
  --green-dim: #4d9560;
  --amber: #e6c879;
  --danger: #ff9c9c;
  --shadow: 0 26px 80px rgba(0, 0, 0, .32);
  --max: 1240px;
  --mono: ui-monospace, "SFMono-Regular", "Cascadia Code", "Roboto Mono", Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 0%, rgba(77, 149, 96, .14), transparent 31rem),
    radial-gradient(circle at 18% 22%, rgba(141, 241, 158, .06), transparent 28rem),
    linear-gradient(180deg, #08120c 0%, #07110b 58%, #050c08 100%);
  font: 15px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

::selection {
  color: #061008;
  background: var(--green-hot);
}

a {
  color: var(--green-hot);
  text-decoration: none;
}

a:hover {
  color: #d8ffde;
}

button,
input {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 12, 8, .82);
  backdrop-filter: blur(18px) saturate(125%);
}

.header-inner {
  width: min(var(--max), calc(100% - 36px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--text);
}

.brand:hover {
  color: var(--text);
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
}

.mark-stem {
  stroke: var(--green-hot);
  stroke-width: 2;
}

.mark-leaf {
  stroke: var(--green);
  stroke-width: 2;
}

.mark-leaf-alt {
  opacity: .74;
}

.mark-node {
  fill: var(--green-hot);
  stroke: none;
}

.brand-copy {
  display: grid;
  line-height: 1;
  gap: 5px;
}

.brand-copy strong {
  font-size: 17px;
  letter-spacing: .18em;
}

.brand-copy small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .19em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-link {
  color: var(--muted);
  font: 11px/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.header-link:hover {
  color: var(--green-hot);
}

.rpc-state {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(14, 28, 19, .65);
  font: 10px/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rpc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
  box-shadow: 0 0 0 4px rgba(127, 153, 134, .08);
}

.rpc-state.online {
  color: var(--green-hot);
  border-color: rgba(141, 241, 158, .22);
}

.rpc-state.online .rpc-dot {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(141, 241, 158, .08), 0 0 16px rgba(141, 241, 158, .8);
}

.rpc-state.offline {
  color: var(--danger);
  border-color: rgba(255, 156, 156, .22);
}

.rpc-state.offline .rpc-dot {
  background: var(--danger);
}

.shell {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  min-height: 520px;
  padding: 78px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, .75fr);
  gap: 56px;
  align-items: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 12%, var(--line) 62%, transparent);
}

.signal-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font: 10px/1 var(--mono);
  letter-spacing: .18em;
}

.signal-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 20px rgba(141, 241, 158, .9);
  animation: pulse 2s ease-in-out infinite;
}

.signal-separator {
  color: #385043;
}

.hero h1 {
  margin: 24px 0 0;
  display: grid;
  font-size: clamp(48px, 7.1vw, 92px);
  line-height: .91;
  letter-spacing: -.066em;
  max-width: 850px;
}

.hero h1 span {
  font-weight: 760;
}

.hero h1 em {
  margin-top: 10px;
  color: transparent;
  font-style: normal;
  font-weight: 520;
  -webkit-text-stroke: 1px rgba(181, 255, 192, .46);
  text-stroke: 1px rgba(181, 255, 192, .46);
}

.hero-summary {
  max-width: 710px;
  margin: 28px 0 0;
  color: var(--text-soft);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.7;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 27px;
}

.hero-facts span {
  padding: 7px 10px;
  border-left: 2px solid var(--green-dim);
  background: rgba(141, 241, 158, .035);
  color: var(--muted);
  font: 9px/1 var(--mono);
  letter-spacing: .16em;
}

.chain-art {
  width: min(100%, 390px);
  aspect-ratio: 1;
  justify-self: end;
  position: relative;
  display: grid;
  place-items: center;
}

.chain-art::before {
  content: "";
  position: absolute;
  width: 54%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 241, 158, .12), rgba(141, 241, 158, .025) 44%, transparent 70%);
  filter: blur(2px);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(141, 241, 158, .15);
  border-radius: 50%;
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(141, 241, 158, .7);
}

.orbit-a {
  inset: 10%;
  transform: rotate(-18deg);
}

.orbit-a::before {
  top: 10%;
  left: 16%;
}

.orbit-a::after {
  right: 1%;
  bottom: 39%;
}

.orbit-b {
  inset: 24%;
  border-style: dashed;
  opacity: .62;
  transform: rotate(21deg);
}

.orbit-b::before {
  right: 15%;
  top: 7%;
}

.orbit-b::after {
  left: 0;
  bottom: 37%;
}

.chain-core {
  width: 118px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(181, 255, 192, .34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(181, 255, 192, .13), transparent 45%),
    rgba(7, 17, 11, .88);
  box-shadow:
    0 0 0 12px rgba(141, 241, 158, .025),
    0 0 55px rgba(77, 149, 96, .12),
    inset 0 0 38px rgba(141, 241, 158, .04);
}

.chain-core .core-label {
  color: var(--muted);
  font: 10px/1 var(--mono);
  letter-spacing: .2em;
}

.chain-core strong {
  margin-top: 7px;
  color: var(--green-hot);
  font: 700 26px/1 var(--mono);
  letter-spacing: .13em;
}

.chain-node {
  position: absolute;
  min-width: 43px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(7, 17, 11, .91);
  color: var(--green-dim);
  font: 9px/1 var(--mono);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
}

.node-1 { top: 7%; left: 37%; }
.node-2 { top: 32%; right: 2%; }
.node-3 { bottom: 8%; right: 25%; }
.node-4 { bottom: 18%; left: 5%; }
.node-5 { top: 26%; left: 3%; }

.search-zone {
  margin-top: -1px;
  padding: 26px 0 32px;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.search-label {
  display: grid;
  gap: 4px;
}

.search-label > span {
  color: var(--text);
  font: 700 12px/1 var(--mono);
  letter-spacing: .14em;
}

.search-label small {
  color: var(--muted);
  font: 9px/1.4 var(--mono);
  letter-spacing: .08em;
}

.search {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 4px 18px 4px 18px;
  background:
    linear-gradient(90deg, rgba(141, 241, 158, .035), transparent 30%),
    rgba(5, 13, 8, .72);
  box-shadow: inset 0 0 32px rgba(141, 241, 158, .025);
  overflow: hidden;
}

.search:focus-within {
  border-color: rgba(141, 241, 158, .48);
  box-shadow: 0 0 0 3px rgba(141, 241, 158, .05), inset 0 0 32px rgba(141, 241, 158, .03);
}

.search-icon {
  padding-left: 19px;
  color: var(--green);
  font-size: 25px;
  transform: translateY(-1px);
}

.search input {
  width: 100%;
  min-width: 0;
  padding: 0 16px;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 16px;
}

.search input::placeholder {
  color: #607666;
}

.search button {
  align-self: stretch;
  min-width: 135px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 18px;
  border: 0;
  background: var(--green);
  color: #07110b;
  font: 800 11px/1 var(--mono);
  letter-spacing: .11em;
  text-transform: uppercase;
  cursor: pointer;
}

.search button:hover {
  background: var(--green-hot);
}

.notice {
  grid-column: 2;
  padding: 11px 13px;
  border: 1px solid var(--line);
  background: rgba(14, 28, 19, .72);
  color: var(--text-soft);
  font-size: 13px;
}

.notice.error {
  color: #ffd0d0;
  border-color: rgba(255, 156, 156, .32);
  background: rgba(75, 22, 22, .2);
}

.notice.hidden {
  display: none;
}

#app {
  padding: 34px 0 0;
}

.metric-strip {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(9, 20, 13, .52);
  box-shadow: var(--shadow);
}

.metric-card {
  min-height: 142px;
  padding: 22px 22px 19px;
  position: relative;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.metric-card:last-child {
  border-right: 0;
}

.metric-card::after {
  content: attr(data-index);
  position: absolute;
  right: 13px;
  top: 11px;
  color: rgba(181, 255, 192, .1);
  font: 700 27px/1 var(--mono);
}

.metric-card span {
  color: var(--muted);
  font: 9px/1 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.metric-card strong {
  margin-top: 14px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1;
  letter-spacing: -.035em;
}

.metric-card small {
  margin-top: auto;
  padding-top: 16px;
  color: #6e8775;
  font: 10px/1.3 var(--mono);
}

.panel,
.loading-card,
.error-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(18, 36, 25, .72), rgba(10, 22, 14, .78));
  box-shadow: var(--shadow);
}

.panel {
  margin-bottom: 18px;
  overflow: hidden;
}

.panel-head {
  min-height: 82px;
  padding: 18px 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .008);
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.panel-index {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--green);
  font: 9px/1 var(--mono);
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--green-dim);
  font: 700 9px/1 var(--mono);
  letter-spacing: .15em;
  text-transform: uppercase;
}

.panel h2,
.error-card h2 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -.02em;
}

.panel-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font: 10px/1 var(--mono);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.panel-meta::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-dim);
}

.muted {
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 730px;
  border-collapse: collapse;
}

th,
td {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(164, 255, 178, .075);
  text-align: left;
}

th {
  color: #68806f;
  background: rgba(4, 11, 7, .22);
  font: 700 9px/1 var(--mono);
  letter-spacing: .13em;
  text-transform: uppercase;
}

tbody tr {
  transition: background .18s ease, box-shadow .18s ease;
}

tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr:hover {
  background: rgba(141, 241, 158, .035);
  box-shadow: inset 2px 0 0 var(--green-dim);
}

.height-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font: 700 15px/1 var(--mono);
}

.height-link::before {
  content: "";
  width: 7px;
  height: 7px;
  border: 1px solid var(--green-dim);
  transform: rotate(45deg);
}

.height-link:hover {
  color: var(--green-hot);
}

.mono {
  font-family: var(--mono);
  font-size: 12px;
}

.break {
  overflow-wrap: anywhere;
  word-break: break-all;
}

.detail-hero {
  margin-bottom: 18px;
  padding: 26px 26px 25px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 20%, rgba(141, 241, 158, .07), transparent 20rem),
    linear-gradient(145deg, rgba(17, 35, 23, .9), rgba(8, 19, 12, .9));
  box-shadow: var(--shadow);
}

.detail-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 110px;
  height: 2px;
  background: var(--green);
}

.detail-kicker {
  color: var(--green-dim);
  font: 700 9px/1 var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
}

.detail-hero h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1;
  letter-spacing: -.055em;
}

.detail-hero .detail-hash {
  max-width: 920px;
  margin-top: 18px;
  color: var(--muted);
  font: 11px/1.6 var(--mono);
  overflow-wrap: anywhere;
}

.detail-actions {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.text-link,
.button-link {
  min-height: 37px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  color: var(--text-soft);
  background: rgba(255, 255, 255, .015);
  font: 10px/1 var(--mono);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.text-link:hover,
.button-link:hover {
  border-color: var(--line-strong);
  color: var(--green-hot);
}

.detail-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  margin: 0;
}

.detail-grid dt,
.detail-grid dd {
  margin: 0;
  padding: 15px 21px;
  border-bottom: 1px solid rgba(164, 255, 178, .075);
}

.detail-grid dt {
  color: #68806f;
  font: 700 9px/1.4 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.detail-grid dd {
  min-width: 0;
  color: var(--text-soft);
}

.detail-grid dt:last-of-type,
.detail-grid dd:last-of-type {
  border-bottom: 0;
}

.pending {
  color: var(--amber);
}

.raw summary {
  padding: 18px 21px;
  cursor: pointer;
  color: var(--text-soft);
  font: 700 10px/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.raw pre {
  margin: 0;
  max-height: 590px;
  padding: 22px;
  overflow: auto;
  border-top: 1px solid var(--line);
  color: #b9d2be;
  background: rgba(3, 9, 5, .42);
  font: 11px/1.6 var(--mono);
}

.loading-card,
.error-card {
  min-height: 120px;
  padding: 28px;
}

.loading-card {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font: 10px/1 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.loading-scan {
  width: 26px;
  height: 26px;
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.loading-scan::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-top: 2px solid var(--green);
  border-radius: 50%;
  animation: spin .85s linear infinite;
}

.error-card {
  border-color: rgba(255, 156, 156, .2);
}

.error-card p {
  max-width: 720px;
  color: var(--muted);
}

.site-footer {
  width: min(var(--max), calc(100% - 36px));
  margin: 52px auto 0;
  padding: 25px 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.footer-mark img {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: contain;
}

.footer-brand > span:last-child {
  display: grid;
  gap: 2px;
}

.footer-brand strong {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 650;
}

.footer-brand small {
  font: 9px/1.3 var(--mono);
}

.footer-meta {
  display: flex;
  gap: 16px;
  font: 8px/1 var(--mono);
  letter-spacing: .11em;
}


.asset-name {
  color: var(--green-hot);
  font-family: var(--mono);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.asset-name:hover {
  color: #dcffe2;
}

.asset-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  margin-left: 10px;
  padding: 0 7px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--green-dim);
  background: rgba(141, 241, 158, .035);
  font: 700 8px/1 var(--mono);
  letter-spacing: .09em;
  text-transform: uppercase;
  vertical-align: middle;
}

.asset-badge.large {
  min-height: 28px;
  padding: 0 10px;
  font-size: 9px;
}

.asset-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.asset-title-row .asset-badge {
  margin-left: 0;
}

.asset-toolbar {
  min-height: 92px;
  padding: 18px 21px;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 1.2fr);
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.asset-toolbar h2 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -.02em;
}

.asset-filter {
  min-height: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border: 1px solid var(--line-strong);
  background: rgba(5, 13, 8, .6);
}

.asset-filter:focus-within {
  border-color: rgba(141, 241, 158, .45);
}

.asset-filter input {
  min-width: 0;
  padding: 0 14px;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font-family: var(--mono);
}

.asset-filter input::placeholder {
  color: #5f7565;
}

.asset-filter button {
  padding: 0 16px;
  border: 0;
  background: var(--green);
  color: var(--ink);
  cursor: pointer;
  font: 800 9px/1 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.asset-filter button:hover {
  background: var(--green-hot);
}

.asset-pagination,
.panel-foot {
  padding: 15px 20px;
  border-top: 1px solid var(--line);
}

.asset-pagination {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-foot {
  color: var(--muted);
  font: 9px/1.5 var(--mono);
  letter-spacing: .06em;
}

.asset-hero::after {
  content: "ASSET INDEX";
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: rgba(181, 255, 192, .06);
  font: 800 clamp(26px, 5vw, 58px)/1 var(--mono);
  letter-spacing: -.06em;
  pointer-events: none;
}

@media (max-width: 720px) {
  .asset-toolbar {
    grid-template-columns: 1fr;
  }

  .asset-filter {
    grid-template-columns: 1fr;
  }

  .asset-filter input,
  .asset-filter button {
    min-height: 44px;
  }

  .asset-badge {
    margin-left: 6px;
  }

  .asset-hero::after {
    display: none;
  }
}

@keyframes pulse {
  0%, 100% { opacity: .55; transform: scale(.85); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 28px;
    padding-top: 58px;
  }

  .hero h1 {
    font-size: clamp(48px, 8vw, 74px);
  }

  .search-zone {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-card:nth-child(2) {
    border-right: 0;
  }

  .metric-card:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .header-inner,
  .shell,
  .site-footer {
    width: min(100% - 24px, var(--max));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .header-link {
    display: none;
  }

  .header-link.assets-link {
    display: inline-flex;
  }

  .hero {
    display: block;
    padding: 46px 0 38px;
  }

  .hero h1 {
    font-size: clamp(46px, 15vw, 68px);
  }

  .hero-summary {
    font-size: 15px;
  }

  .chain-art {
    width: min(290px, 82vw);
    margin: 34px auto 0;
    justify-self: center;
  }

  .search-zone {
    display: block;
    padding: 22px 0 26px;
  }

  .search-label {
    margin-bottom: 12px;
  }

  .notice {
    margin-top: 10px;
  }

  .search {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .search button {
    grid-column: 1 / -1;
    min-height: 46px;
  }

  #app {
    padding-top: 24px;
  }

  .metric-card {
    min-height: 126px;
    padding: 18px;
  }

  .panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-grid dt {
    padding-bottom: 5px;
    border-bottom: 0;
  }

  .detail-grid dd {
    padding-top: 0;
  }

  .detail-grid dd:last-of-type {
    padding-bottom: 18px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .rpc-state {
    padding: 0 9px;
  }

  .rpc-state > span:last-child {
    display: none;
  }

  .hero-facts {
    gap: 6px;
  }

  .hero-facts span {
    font-size: 8px;
  }

  .metric-strip {
    grid-template-columns: 1fr;
  }

  .metric-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-card:last-child {
    border-bottom: 0;
  }

  .metric-card:nth-child(2) {
    border-right: 0;
  }

  .chain-art {
    width: min(250px, 78vw);
  }
}

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

.footer-meta a {
  color: var(--muted);
}

.footer-meta a:hover {
  color: var(--green-hot);
}

.api-docs {
  padding-top: 34px;
}

.api-docs-hero {
  margin-bottom: 18px;
}

.api-note {
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(141, 241, 158, .035);
  color: var(--text-soft);
  line-height: 1.65;
}

.api-note strong {
  color: var(--green-hot);
}

.api-note code,
.api-row code {
  font-family: var(--mono);
}

.api-list {
  display: grid;
}

.api-row {
  min-height: 78px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(164, 255, 178, .075);
}

.api-row:last-child {
  border-bottom: 0;
}

.api-row:hover {
  background: rgba(141, 241, 158, .025);
}

.api-row code {
  color: var(--green-hot);
  font-size: 12px;
}

.api-row p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.api-row > a,
.api-row > span {
  min-width: 92px;
  text-align: right;
  color: var(--green);
  font: 700 9px/1 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.api-row > a:hover {
  color: var(--green-hot);
}

.api-row.unavailable {
  opacity: .72;
}

.api-row.unavailable > span {
  color: var(--muted);
}

@media (max-width: 720px) {
  .api-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .api-row > a,
  .api-row > span {
    min-width: 0;
    text-align: left;
  }
}


.asset-badge.no-margin {
  margin-left: 0;
}

.metadata-link,
.portfolio-link {
  color: var(--green);
  font-family: var(--mono);
}

.metadata-link {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
}

.portfolio-link {
  margin-left: 7px;
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.asset-toolbar-oldstyle {
  grid-template-columns: minmax(190px, .48fr) minmax(0, 1.52fr);
}

.asset-filter-grid {
  display: grid;
  grid-template-columns: minmax(180px, 1.6fr) repeat(4, minmax(115px, .75fr)) auto;
  gap: 8px;
}

.asset-filter-grid input,
.asset-filter-grid select,
.asset-filter-grid button {
  min-width: 0;
  min-height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  outline: none;
  font-family: var(--mono);
  font-size: 10px;
}

.asset-filter-grid input,
.asset-filter-grid select {
  padding: 0 11px;
  color: var(--text);
  background: rgba(5, 13, 8, .7);
}

.asset-filter-grid input:focus,
.asset-filter-grid select:focus {
  border-color: rgba(141, 241, 158, .5);
}

.asset-filter-grid button {
  padding: 0 17px;
  border-color: var(--green);
  background: var(--green);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.asset-filter-grid button:hover {
  background: var(--green-hot);
}

.page-status {
  align-self: center;
  color: var(--muted);
  font: 9px/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.asset-metadata-content {
  padding: 20px;
}

.ipfs-preview {
  width: 100%;
  height: min(620px, 62vh);
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(3, 9, 5, .55);
}

.ipfs-preview iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.ipfs-actions {
  margin-bottom: 15px;
}

.metadata-hash {
  display: block;
  padding: 12px 14px;
  overflow-wrap: anywhere;
  border: 1px solid var(--line);
  background: rgba(3, 9, 5, .4);
  color: var(--muted);
  font: 10px/1.6 var(--mono);
}

@media (max-width: 1120px) {
  .asset-toolbar-oldstyle {
    grid-template-columns: 1fr;
  }

  .asset-filter-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .asset-filter-grid input {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .asset-filter-grid {
    grid-template-columns: 1fr;
  }

  .asset-filter-grid input {
    grid-column: auto;
  }

  .asset-pagination {
    display: grid;
    grid-template-columns: 1fr;
  }

  .asset-pagination > * {
    justify-self: start;
  }

  .ipfs-preview {
    height: 420px;
  }
}


.smartnode-hero::after {
  content: "SMARTNODE NETWORK";
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: rgba(181, 255, 192, .055);
  font: 800 clamp(22px, 4vw, 50px)/1 var(--mono);
  letter-spacing: -.06em;
  pointer-events: none;
}

.smartnode-toolbar {
  grid-template-columns: 1fr;
  align-items: start;
}

.smartnode-filter {
  width: 100%;
  grid-template-columns: minmax(260px, 1.8fr) minmax(150px, .9fr) minmax(160px, .9fr) minmax(190px, 1fr) auto;
}

.smartnode-note {
  padding: 13px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: rgba(141, 241, 158, .02);
  font-size: 12px;
  line-height: 1.6;
}

.smartnode-note strong {
  color: var(--green-hot);
}

.smartnode-table {
  min-width: 0;
  table-layout: fixed;
}

.smartnode-table th,
.smartnode-table td {
  padding-left: 14px;
  padding-right: 14px;
  vertical-align: top;
}

.smartnode-table th:nth-child(1),
.smartnode-table td:nth-child(1) { width: 6%; }

.smartnode-table th:nth-child(2),
.smartnode-table td:nth-child(2) { width: 18%; }

.smartnode-table th:nth-child(3),
.smartnode-table td:nth-child(3) { width: 16%; }

.smartnode-table th:nth-child(4),
.smartnode-table td:nth-child(4) { width: 10%; }

.smartnode-table th:nth-child(5),
.smartnode-table td:nth-child(5) { width: 17%; }

.smartnode-table th:nth-child(6),
.smartnode-table td:nth-child(6) { width: 11%; }

.smartnode-table th:nth-child(7),
.smartnode-table td:nth-child(7) { width: 14%; }

.smartnode-table th:nth-child(8),
.smartnode-table td:nth-child(8) { width: 8%; }

.smartnode-table td {
  overflow-wrap: anywhere;
}

.pay-age-cell {
  color: var(--green-hot);
  font-family: var(--mono);
  font-weight: 700;
}

.service-value,
.smartnode-address {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.smartnode-address {
  color: var(--green-hot);
}

.cell-primary {
  color: var(--text-soft);
}

.collateral-value {
  color: var(--text);
  font-weight: 700;
}

.row-sub {
  margin-top: 6px;
  color: #5d7464;
  font-size: 9px;
}

.smartnode-status {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: 700 8px/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.smartnode-status.status-enabled {
  color: var(--green-hot);
  border-color: rgba(141, 241, 158, .28);
  background: rgba(141, 241, 158, .055);
}

.smartnode-status.status-banned {
  color: var(--danger);
  border-color: rgba(255, 156, 156, .28);
  background: rgba(255, 156, 156, .04);
}

.smartnode-status.status-unknown {
  color: var(--amber);
}

@media (max-width: 1120px) {
  .smartnode-filter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .smartnode-filter input {
    grid-column: span 2;
  }

  .smartnode-table {
    min-width: 1050px;
  }
}

@media (max-width: 720px) {
  .smartnode-filter {
    grid-template-columns: 1fr;
  }

  .smartnode-filter input {
    grid-column: auto;
  }

  .smartnode-hero::after {
    display: none;
  }
}


.sort-header {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6f8876;
  font: 700 9px/1.2 var(--mono);
  letter-spacing: .11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sort-header:hover {
  color: var(--green-hot);
}

.sort-header.active {
  color: var(--green-hot);
}

.sort-arrow {
  display: inline-grid;
  place-items: center;
  min-width: 12px;
  color: var(--green-dim);
  font-size: 11px;
  letter-spacing: 0;
}

.sort-header.active .sort-arrow {
  color: var(--green-hot);
}

.smartnode-table th {
  background: rgba(4, 11, 7, .34);
}

.smartnode-table th:hover {
  background: rgba(141, 241, 158, .035);
}


.network-map-hero::after {
  content: "GLOBAL NETWORK";
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: rgba(181, 255, 192, .055);
  font: 800 clamp(22px, 4vw, 50px)/1 var(--mono);
  letter-spacing: -.06em;
  pointer-events: none;
}

.network-map-tabs {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.network-map-tabs > a {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, .012);
  font: 700 9px/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.network-map-tabs > a:hover,
.network-map-tabs > a.active {
  color: var(--green-hot);
  border-color: var(--line-strong);
  background: rgba(141, 241, 158, .05);
}

.map-legend {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.map-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font: 8px/1 var(--mono);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.map-legend-item i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  box-shadow: 0 0 10px currentColor;
}

.map-legend-item i.status-online { color: var(--green); background: var(--green); }
.map-legend-item i.status-slow { color: var(--amber); background: var(--amber); }
.map-legend-item i.status-penalized { color: #e39f62; background: #e39f62; }
.map-legend-item i.status-offline { color: #6f7b73; background: #6f7b73; }
.map-legend-item i.status-pose-banned { color: var(--danger); background: var(--danger); }

.network-map-stats {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(9, 20, 13, .52);
  box-shadow: var(--shadow);
}

.network-stat {
  min-height: 104px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  appearance: none;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  color: inherit;
  text-align: left;
  background: transparent;
  cursor: pointer;
  transition: background .16s ease, box-shadow .16s ease;
}

.network-stat:hover,
.network-stat:focus-visible {
  background: rgba(141, 241, 158, .045);
}

.network-stat.active {
  background: rgba(141, 241, 158, .075);
  box-shadow: inset 0 -2px 0 var(--green-hot);
}

.network-stat.active span,
.network-stat.active strong {
  color: var(--green-hot);
}

.network-stat:last-child {
  border-right: 0;
}

.network-stat span {
  color: var(--muted);
  font: 8px/1 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.network-stat strong {
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.04em;
}

.network-map-panel {
  overflow: hidden;
}

.network-map-canvas {
  position: relative;
  aspect-ratio: 2 / 1;
  min-height: 420px;
  overflow: hidden;
  touch-action: none;
  user-select: none;
  cursor: grab;
  background:
    radial-gradient(circle at 50% 47%, rgba(141, 241, 158, .06), transparent 35%),
    linear-gradient(180deg, rgba(6, 16, 10, .95), rgba(3, 10, 6, .98));
}

.network-map-canvas.is-dragging {
  cursor: grabbing;
}

.network-map-stage {
  position: absolute;
  inset: 0;
  transform-origin: 0 0;
  will-change: transform;
}

.network-map-base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  opacity: .18;
  filter: invert(68%) sepia(14%) saturate(1000%) hue-rotate(82deg) brightness(92%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.network-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(141, 241, 158, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141, 241, 158, .045) 1px, transparent 1px);
  background-size: 10% 20%;
  pointer-events: none;
}

.network-map-pins {
  position: absolute;
  inset: 0;
}

.network-pin {
  position: absolute;
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(var(--network-pin-scale, 1));
  transform-origin: center;
  cursor: pointer;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(141, 241, 158, .08), 0 0 13px rgba(141, 241, 158, .75);
  z-index: 2;
}

.network-pin:hover {
  z-index: 6;
  transform: translate(-50%, -50%) scale(var(--network-pin-hover-scale, 1.16));
}

.network-pin.status-online {
  background: var(--green);
}

.network-pin.status-slow {
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(230, 200, 121, .09), 0 0 13px rgba(230, 200, 121, .75);
}

.network-pin.status-penalized {
  background: #e39f62;
  box-shadow: 0 0 0 3px rgba(227, 159, 98, .09), 0 0 13px rgba(227, 159, 98, .72);
}

.network-pin.status-offline {
  background: #6f7b73;
  box-shadow: 0 0 0 3px rgba(111, 123, 115, .08), 0 0 10px rgba(111, 123, 115, .5);
}

.network-pin.status-pose-banned {
  background: var(--danger);
  box-shadow: 0 0 0 3px rgba(255, 156, 156, .1), 0 0 13px rgba(255, 156, 156, .75);
}

.network-pin.cluster {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  display: grid;
  place-items: center;
}

.network-pin.cluster span {
  color: #061008;
  font: 800 8px/1 var(--mono);
}

.network-map-controls {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 14;
  display: grid;
  gap: 6px;
}

.network-map-controls button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: rgba(5, 13, 8, .94);
  color: var(--green-hot);
  cursor: pointer;
  font: 800 16px/1 var(--mono);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .24);
}

.network-map-controls button:hover,
.network-map-controls button:focus-visible {
  border-color: rgba(141, 241, 158, .5);
  background: rgba(14, 31, 20, .97);
}

.network-map-hint {
  position: absolute;
  left: 62px;
  top: 18px;
  z-index: 10;
  padding: 8px 10px;
  border: 1px solid rgba(164, 255, 178, .12);
  background: rgba(5, 13, 8, .74);
  color: var(--muted);
  pointer-events: none;
  font: 8px/1 var(--mono);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.network-map-detail {
  position: absolute;
  top: 18px;
  right: 18px;
  width: min(410px, calc(100% - 36px));
  max-height: calc(100% - 36px);
  padding: 18px;
  overflow: auto;
  z-index: 12;
  border: 1px solid var(--line-strong);
  background: rgba(5, 13, 8, .96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  backdrop-filter: blur(16px);
}

.network-map-detail.hidden {
  display: none;
}

.network-map-detail h3 {
  margin: 5px 28px 5px 0;
  font-size: 20px;
  letter-spacing: -.02em;
}

.map-detail-close {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 18px;
}

.map-detail-close:hover {
  color: var(--green-hot);
  border-color: var(--line-strong);
}

.map-detail-meta {
  margin-bottom: 14px;
  color: var(--muted);
  font: 9px/1.5 var(--mono);
}

.map-node-list {
  display: grid;
  gap: 8px;
}

.map-node-row {
  padding: 10px 0;
  border-top: 1px solid rgba(164, 255, 178, .075);
}

.map-node-row > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.map-node-row strong {
  font-size: 10px;
  overflow-wrap: anywhere;
}

.map-node-row small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font: 8px/1.5 var(--mono);
}

.map-node-status {
  flex: 0 0 auto;
  padding: 4px 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font: 700 7px/1 var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.map-node-status.online { color: var(--green-hot); border-color: rgba(141,241,158,.24); }
.map-node-status.slow { color: var(--amber); border-color: rgba(230,200,121,.24); }
.map-node-status.penalized { color: #e39f62; border-color: rgba(227,159,98,.24); }
.map-node-status.pose-banned { color: var(--danger); border-color: rgba(255,156,156,.24); }

.map-node-more {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 8px/1.4 var(--mono);
}

.network-map-foot {
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 8px/1.45 var(--mono);
  letter-spacing: .04em;
}

@media (max-width: 980px) {
  .network-map-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .network-stat:nth-child(3n) {
    border-right: 0;
  }

  .network-stat:nth-child(-n+3) {
    border-bottom: 1px solid var(--line);
  }

  .network-map-canvas {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .map-legend {
    width: 100%;
    margin-left: 0;
  }

  .network-map-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .network-stat:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .network-stat:nth-child(2n) {
    border-right: 0;
  }

  .network-stat:nth-child(-n+4) {
    border-bottom: 1px solid var(--line);
  }

  .network-map-canvas {
    aspect-ratio: 1.35 / 1;
    min-height: 420px;
  }

  .network-map-base {
    object-fit: fill;
  }

  .network-map-hero::after {
    display: none;
  }
}


@media (max-width: 720px) {
  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-mark img {
    width: 38px;
    height: 38px;
  }

  .network-map-hint {
    display: none;
  }

  .network-map-controls {
    top: 10px;
    left: 10px;
  }

  .network-map-controls button {
    width: 34px;
    height: 34px;
  }
}


/* ==========================================================================
   Explorer 2.0 visual layer
   RPC-first data, visual-first presentation.
   ========================================================================== */

#app {
  display: grid;
  gap: 26px;
  padding-bottom: 8px;
}

.panel,
.detail-hero,
.loading-card,
.filter-surface,
.tip-card,
.pulse-card,
.block-card,
.asset-discovery-card,
.output-card,
.portfolio-card,
.utxo-card,
.network-ring-card,
.network-status-card,
.collateral-card,
.visual-fact {
  border-radius: 18px;
}

.panel,
.modern-panel {
  overflow: hidden;
  border-color: rgba(141, 241, 158, .14);
  background:
    radial-gradient(circle at 0 0, rgba(141, 241, 158, .065), transparent 28%),
    linear-gradient(145deg, rgba(8, 24, 14, .93), rgba(4, 12, 8, .9));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .018);
}

.modern-metrics {
  gap: 12px;
  border: 0;
  background: transparent;
}

.modern-metrics .metric-card {
  min-width: 0;
  border: 1px solid rgba(141, 241, 158, .12);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0, rgba(141, 241, 158, .07), transparent 36%),
    rgba(6, 18, 11, .72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .015);
  overflow: hidden;
}

.modern-metrics .metric-card::after {
  right: 14px;
  top: 8px;
  opacity: .08;
  font-size: 32px;
}

.modern-metrics .metric-card strong {
  letter-spacing: -.035em;
}

.cockpit-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 14px;
}

.tip-card,
.pulse-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(141, 241, 158, .15);
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(141, 241, 158, .11), transparent 34%),
    linear-gradient(145deg, rgba(9, 28, 16, .96), rgba(4, 14, 9, .94));
  box-shadow: 0 26px 80px rgba(0, 0, 0, .17);
}

.tip-card::after,
.pulse-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(141, 241, 158, .08);
  border-radius: 50%;
  right: -84px;
  bottom: -112px;
  box-shadow:
    0 0 0 36px rgba(141, 241, 158, .018),
    0 0 0 72px rgba(141, 241, 158, .012);
  pointer-events: none;
}

.tip-card-label,
.pulse-head > div > span,
.pulse-caption {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--green);
}

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green-hot);
  box-shadow: 0 0 15px rgba(141, 241, 158, .9);
  animation: pulse 2.4s ease-in-out infinite;
}

.tip-height {
  margin-top: 22px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: .95;
  letter-spacing: -.055em;
  color: var(--text);
  font-weight: 760;
}

.tip-context {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tip-context span {
  padding: 7px 10px;
  border: 1px solid rgba(141, 241, 158, .12);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  background: rgba(141, 241, 158, .025);
}

.tip-hash {
  display: inline-block;
  margin-top: 22px;
  color: var(--green);
  font-size: 12px;
}

.pulse-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pulse-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.pulse-head > div {
  display: grid;
  gap: 6px;
}

.pulse-head strong {
  font-size: 24px;
  letter-spacing: -.025em;
}

.pulse-caption {
  color: var(--muted);
  letter-spacing: .1em;
}

.pulse-chart {
  position: relative;
  z-index: 1;
  height: 118px;
  display: grid;
  grid-template-columns: repeat(12, minmax(6px, 1fr));
  align-items: end;
  gap: 7px;
  padding: 10px 0;
}

.pulse-bar {
  height: 100%;
  display: flex;
  align-items: end;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(141, 241, 158, .025);
}

.pulse-bar span {
  width: 100%;
  min-height: 8%;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--green-hot), rgba(94, 214, 114, .3));
  box-shadow: 0 0 18px rgba(141, 241, 158, .14);
  transition: height .25s ease, filter .25s ease;
}

.pulse-bar:hover span {
  filter: brightness(1.25);
}

.pulse-foot {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.level-1 span,
.meter-fill.level-1 { height: 12%; width: 12%; }
.level-2 span,
.meter-fill.level-2 { height: 20%; width: 20%; }
.level-3 span,
.meter-fill.level-3 { height: 30%; width: 30%; }
.level-4 span,
.meter-fill.level-4 { height: 40%; width: 40%; }
.level-5 span,
.meter-fill.level-5 { height: 50%; width: 50%; }
.level-6 span,
.meter-fill.level-6 { height: 60%; width: 60%; }
.level-7 span,
.meter-fill.level-7 { height: 70%; width: 70%; }
.level-8 span,
.meter-fill.level-8 { height: 80%; width: 80%; }
.level-9 span,
.meter-fill.level-9 { height: 90%; width: 90%; }
.level-10 span,
.meter-fill.level-10 { height: 100%; width: 100%; }

.pulse-bar.level-1 span { height: 12%; width: 100%; }
.pulse-bar.level-2 span { height: 20%; width: 100%; }
.pulse-bar.level-3 span { height: 30%; width: 100%; }
.pulse-bar.level-4 span { height: 40%; width: 100%; }
.pulse-bar.level-5 span { height: 50%; width: 100%; }
.pulse-bar.level-6 span { height: 60%; width: 100%; }
.pulse-bar.level-7 span { height: 70%; width: 100%; }
.pulse-bar.level-8 span { height: 80%; width: 100%; }
.pulse-bar.level-9 span { height: 90%; width: 100%; }
.pulse-bar.level-10 span { height: 100%; width: 100%; }

.section-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 2px 2px;
}

.section-intro > div {
  min-width: 0;
}

.section-intro h2 {
  margin: 3px 0 0;
  font-size: clamp(25px, 3vw, 38px);
  letter-spacing: -.035em;
}

.section-intro > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-intro.compact {
  padding-top: 8px;
}

.section-intro.mini {
  padding: 0 0 14px;
}

.section-intro.mini h2 {
  font-size: 22px;
}

.block-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.block-card {
  position: relative;
  display: grid;
  gap: 13px;
  padding: 19px;
  color: var(--text);
  border: 1px solid rgba(141, 241, 158, .115);
  background:
    linear-gradient(145deg, rgba(8, 23, 14, .9), rgba(4, 13, 8, .82));
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.block-card:hover {
  transform: translateY(-3px);
  color: var(--text);
  border-color: rgba(141, 241, 158, .28);
  background:
    radial-gradient(circle at 90% 0, rgba(141, 241, 158, .08), transparent 34%),
    linear-gradient(145deg, rgba(10, 30, 17, .96), rgba(5, 15, 9, .9));
}

.block-card-top,
.block-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.block-sequence,
.block-age,
.block-card-meta small {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--muted);
}

.block-sequence {
  color: var(--green);
}

.block-card-height {
  font-size: 27px;
  letter-spacing: -.035em;
}

.block-card-hash {
  font-size: 10px;
  color: var(--muted);
}

.block-card-meta {
  margin-top: 4px;
}

.block-card-meta span {
  display: grid;
  gap: 3px;
}

.block-card-meta b {
  font-size: 13px;
  font-weight: 620;
}

.activity-meter,
.ownership-meter,
.value-meter {
  height: 3px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(141, 241, 158, .07);
}

.meter-fill {
  display: block;
  height: 100% !important;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(96, 209, 116, .65), var(--green-hot));
  box-shadow: 0 0 12px rgba(141, 241, 158, .22);
}

.record-hero {
  position: relative;
  min-height: 238px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(141, 241, 158, .15);
  background:
    radial-gradient(circle at 88% 50%, rgba(141, 241, 158, .105), transparent 26%),
    radial-gradient(circle at 12% 0, rgba(141, 241, 158, .05), transparent 30%),
    linear-gradient(145deg, rgba(8, 26, 15, .96), rgba(4, 13, 8, .93));
}

.record-hero::before {
  content: "";
  position: absolute;
  inset: auto -80px -170px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(141, 241, 158, .08);
  box-shadow: 0 0 0 48px rgba(141, 241, 158, .012), 0 0 0 96px rgba(141, 241, 158, .009);
}

.record-hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.record-hero h2 {
  margin: 10px 0;
  font-size: clamp(38px, 5vw, 66px);
  letter-spacing: -.055em;
}

.record-hero .detail-hash {
  max-width: 860px;
  color: var(--muted);
}

.record-symbol {
  position: relative;
  z-index: 1;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border-radius: 38px;
  border: 1px solid rgba(141, 241, 158, .2);
  background:
    linear-gradient(145deg, rgba(141, 241, 158, .09), rgba(141, 241, 158, .015));
  box-shadow:
    0 22px 60px rgba(0, 0, 0, .2),
    inset 0 1px 0 rgba(255, 255, 255, .03);
  transform: rotate(4deg);
}

.record-symbol span {
  font-family: var(--mono);
  color: var(--green-hot);
  font-size: 25px;
  letter-spacing: .13em;
  transform: rotate(-4deg);
}

.chain-route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px minmax(0, 1fr);
  align-items: stretch;
  gap: 10px;
}

.chain-route-node,
.chain-route-current {
  min-width: 0;
  min-height: 118px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(141, 241, 158, .12);
  border-radius: 16px;
  background: rgba(6, 18, 11, .7);
}

.chain-route-node {
  color: var(--text);
  transition: border-color .18s ease, background .18s ease;
}

.chain-route-node:hover:not(.disabled) {
  color: var(--text);
  border-color: rgba(141, 241, 158, .3);
  background: rgba(10, 29, 17, .86);
}

.chain-route-node.disabled {
  opacity: .48;
  pointer-events: none;
}

.chain-route-node small,
.chain-route-current span,
.chain-route-current small {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted);
  letter-spacing: .14em;
}

.chain-route-node strong {
  margin-top: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--mono);
  font-size: 12px;
}

.chain-route-current {
  text-align: center;
  align-items: center;
  background:
    radial-gradient(circle, rgba(141, 241, 158, .1), transparent 70%),
    rgba(7, 23, 13, .85);
  border-color: rgba(141, 241, 158, .24);
}

.chain-route-current strong {
  margin: 4px 0;
  font-size: 24px;
  color: var(--green-hot);
}

.tx-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.tx-chip-card {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  color: var(--text);
  border: 1px solid rgba(141, 241, 158, .1);
  border-radius: 14px;
  background: rgba(6, 18, 11, .65);
  transition: transform .16s ease, border-color .16s ease;
}

.tx-chip-card:hover {
  transform: translateX(3px);
  color: var(--text);
  border-color: rgba(141, 241, 158, .26);
}

.tx-chip-index,
.activity-index {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(141, 241, 158, .06);
  color: var(--green);
  font-family: var(--mono);
  font-size: 10px;
}

.tx-chip-card > span:nth-child(2),
.activity-row > span:nth-child(2) {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.tx-chip-card small,
.activity-row small {
  font-family: var(--mono);
  font-size: 8px;
  color: var(--muted);
  letter-spacing: .12em;
}

.tx-chip-card strong,
.activity-row strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 500;
}

.tx-chip-arrow,
.activity-arrow {
  color: var(--green);
}

.balance-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 12px;
}

.balance-focus {
  position: relative;
  min-height: 240px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(141, 241, 158, .18);
  background:
    radial-gradient(circle at 80% 40%, rgba(141, 241, 158, .12), transparent 34%),
    linear-gradient(145deg, rgba(8, 29, 16, .95), rgba(4, 14, 9, .93));
}

.balance-focus::after {
  content: "Y";
  position: absolute;
  right: 24px;
  bottom: -34px;
  font-size: 180px;
  line-height: 1;
  font-weight: 800;
  color: rgba(141, 241, 158, .025);
}

.balance-focus > span {
  font-family: var(--mono);
  color: var(--green);
  font-size: 10px;
  letter-spacing: .17em;
}

.balance-focus > strong {
  margin-top: 10px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -.05em;
}

.balance-focus > small {
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--mono);
  letter-spacing: .12em;
}

.balance-side {
  display: grid;
  gap: 12px;
}

.visual-fact {
  display: grid;
  align-content: center;
  gap: 7px;
  min-height: 108px;
  padding: 18px;
  border: 1px solid rgba(141, 241, 158, .11);
  background:
    linear-gradient(145deg, rgba(8, 22, 14, .9), rgba(4, 13, 8, .82));
}

.visual-fact > span {
  font-family: var(--mono);
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.visual-fact strong {
  font-size: 20px;
  letter-spacing: -.02em;
}

.visual-fact small {
  color: var(--muted);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.portfolio-card {
  display: grid;
  gap: 12px;
  min-height: 142px;
  padding: 18px;
  color: var(--text);
  border: 1px solid rgba(141, 241, 158, .11);
  background:
    radial-gradient(circle at 100% 0, rgba(141, 241, 158, .06), transparent 40%),
    rgba(6, 18, 11, .68);
  transition: transform .17s ease, border-color .17s ease;
}

.portfolio-card:hover {
  transform: translateY(-2px);
  color: var(--text);
  border-color: rgba(141, 241, 158, .28);
}

.portfolio-type {
  justify-self: start;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(141, 241, 158, .06);
  font-family: var(--mono);
  font-size: 8px;
  color: var(--green);
  letter-spacing: .1em;
}

.portfolio-card strong {
  overflow-wrap: anywhere;
  font-size: 15px;
}

.portfolio-balance {
  margin-top: auto;
  font-size: 22px;
  letter-spacing: -.03em;
}

.two-column-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.activity-list,
.utxo-grid {
  display: grid;
  gap: 8px;
}

.activity-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  color: var(--text);
  border-bottom: 1px solid rgba(141, 241, 158, .08);
}

.activity-row:hover {
  color: var(--text);
  background: rgba(141, 241, 158, .025);
}

.utxo-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  color: var(--text);
  border: 1px solid rgba(141, 241, 158, .1);
  background: rgba(6, 18, 11, .58);
}

.utxo-card:hover {
  color: var(--text);
  border-color: rgba(141, 241, 158, .26);
}

.utxo-card > div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.utxo-card > div:first-child > span {
  font-family: var(--mono);
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .11em;
}

.utxo-card > div:first-child strong {
  font-size: 17px;
}

.utxo-card strong small {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted);
}

.utxo-meta {
  display: flex;
  gap: 8px;
}

.utxo-meta span {
  font-family: var(--mono);
  font-size: 8px;
  color: var(--green);
}

.utxo-card code {
  color: var(--muted);
  font-size: 9px;
}

.filter-surface {
  padding: 20px;
  border: 1px solid rgba(141, 241, 158, .13);
  background:
    radial-gradient(circle at 100% 0, rgba(141, 241, 158, .055), transparent 32%),
    rgba(6, 18, 11, .68);
}

.filter-surface-title {
  margin-bottom: 16px;
}

.filter-surface-title h2 {
  margin: 4px 0 0;
  font-size: 26px;
  letter-spacing: -.03em;
}

.filter-surface .asset-filter-grid {
  padding: 0;
  border: 0;
  background: transparent;
}

.asset-discovery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.asset-discovery-card {
  min-width: 0;
  min-height: 210px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--text);
  border: 1px solid rgba(141, 241, 158, .115);
  background:
    radial-gradient(circle at 90% 0, rgba(141, 241, 158, .07), transparent 40%),
    linear-gradient(145deg, rgba(8, 23, 14, .91), rgba(4, 13, 8, .82));
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.asset-discovery-card:hover {
  transform: translateY(-3px);
  color: var(--text);
  border-color: rgba(141, 241, 158, .28);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .16);
}

.asset-discovery-top,
.asset-discovery-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
}

.asset-live-dot {
  font-family: var(--mono);
  font-size: 8px;
  color: var(--green);
  letter-spacing: .11em;
}

.asset-discovery-name {
  overflow-wrap: anywhere;
  font-size: 20px;
  letter-spacing: -.025em;
}

.asset-discovery-stats {
  display: grid;
  grid-template-columns: 1.4fr .8fr .6fr;
  gap: 8px;
  margin-top: auto;
}

.asset-discovery-stats span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.asset-discovery-stats small,
.asset-discovery-foot {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .08em;
  color: var(--muted);
}

.asset-discovery-stats b {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  font-weight: 600;
}

.asset-discovery-foot {
  padding-top: 12px;
  border-top: 1px solid rgba(141, 241, 158, .08);
}

.asset-discovery-foot b {
  color: var(--green);
  font-weight: 500;
}

.modern-pagination {
  margin-top: 0;
  padding: 12px 2px;
}

.asset-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
}

.holder-list {
  display: grid;
  gap: 8px;
}

.holder-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) minmax(120px, auto) 74px;
  align-items: center;
  gap: 13px;
  padding: 13px 15px;
  color: var(--text);
  border: 1px solid rgba(141, 241, 158, .09);
  border-radius: 13px;
  background: rgba(6, 18, 11, .58);
  transition: border-color .16s ease, background .16s ease;
}

.holder-card:hover {
  color: var(--text);
  border-color: rgba(141, 241, 158, .24);
  background: rgba(9, 26, 15, .72);
}

.holder-rank {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--green);
}

.holder-address {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.holder-card > strong {
  text-align: right;
}

.holder-percent {
  text-align: right;
  font-family: var(--mono);
  color: var(--muted);
  font-size: 10px;
}

.holder-card .ownership-meter {
  grid-column: 2 / -1;
}

.modern-foot {
  margin-top: -14px;
  border-radius: 12px;
  background: rgba(141, 241, 158, .025);
}

.network-health-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 12px;
}

.network-ring-card {
  min-height: 260px;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(141, 241, 158, .15);
  background:
    radial-gradient(circle at 20% 50%, rgba(141, 241, 158, .08), transparent 32%),
    rgba(6, 19, 11, .78);
}

.network-ring-wrap {
  position: relative;
  width: 190px;
  height: 190px;
}

.network-ring {
  width: 100%;
  height: 100%;
}

.ring-track,
.ring-value {
  fill: none;
  stroke-width: 8;
}

.ring-track {
  stroke: rgba(141, 241, 158, .07);
}

.ring-value {
  stroke: var(--green-hot);
  stroke-linecap: round;
  filter: drop-shadow(0 0 7px rgba(141, 241, 158, .35));
}

.network-ring-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
}

.network-ring-label strong {
  font-size: 35px;
  letter-spacing: -.04em;
}

.network-ring-label span,
.network-ring-copy > span {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--green);
  letter-spacing: .14em;
}

.network-ring-copy h3 {
  margin: 8px 0;
  font-size: 30px;
  letter-spacing: -.035em;
}

.network-ring-copy p {
  max-width: 440px;
  color: var(--muted);
  line-height: 1.65;
}

.network-status-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(141, 241, 158, .12);
  background: rgba(5, 16, 9, .72);
}

.network-status-card .visual-fact {
  min-height: 0;
}

.collateral-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.collateral-card {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 16px;
  border: 1px solid rgba(141, 241, 158, .1);
  background:
    linear-gradient(145deg, rgba(8, 22, 14, .85), rgba(4, 13, 8, .76));
}

.collateral-card span,
.collateral-card small {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted);
  letter-spacing: .08em;
}

.collateral-card strong {
  font-size: 25px;
  letter-spacing: -.03em;
}

.smartnode-directory-panel {
  margin-top: 4px;
}

.value-flow {
  display: grid;
  grid-template-columns: minmax(150px, .7fr) 80px minmax(210px, 1.1fr) 80px minmax(150px, .7fr);
  align-items: center;
  gap: 8px;
}

.flow-node {
  min-height: 160px;
  padding: 20px;
  display: grid;
  align-content: center;
  gap: 5px;
  text-align: center;
  border: 1px solid rgba(141, 241, 158, .12);
  border-radius: 18px;
  background: rgba(6, 18, 11, .72);
}

.flow-node.transaction {
  min-height: 200px;
  border-color: rgba(141, 241, 158, .25);
  background:
    radial-gradient(circle at 50% 50%, rgba(141, 241, 158, .12), transparent 58%),
    rgba(7, 23, 13, .88);
}

.flow-node span,
.flow-node small {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  color: var(--muted);
}

.flow-node strong {
  overflow-wrap: anywhere;
  font-size: 30px;
  letter-spacing: -.04em;
}

.flow-node.transaction strong {
  color: var(--green-hot);
}

.flow-line {
  display: flex;
  align-items: center;
  color: var(--green);
}

.flow-line span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(141, 241, 158, .08), rgba(141, 241, 158, .5));
}

.flow-line b {
  font-weight: 400;
}

.output-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.output-card {
  display: grid;
  gap: 15px;
  padding: 18px;
  border: 1px solid rgba(141, 241, 158, .1);
  background: rgba(6, 18, 11, .64);
}

.output-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.output-card-head span {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--green);
  letter-spacing: .12em;
}

.output-card-head strong {
  font-size: 18px;
}

.output-destination {
  min-height: 34px;
  overflow-wrap: anywhere;
  font-size: 10px;
  color: var(--muted);
}

.empty-state {
  padding: 24px;
  border: 1px dashed rgba(141, 241, 158, .14);
  border-radius: 14px;
  color: var(--muted);
  text-align: center;
  background: rgba(141, 241, 158, .015);
}

.empty-state.wide {
  grid-column: 1 / -1;
}

.raw.modern-panel {
  margin-top: 4px;
}

@media (max-width: 1080px) {
  .block-card-grid,
  .asset-discovery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-grid,
  .asset-snapshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collateral-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .network-health-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .cockpit-grid,
  .balance-stage,
  .two-column-flow {
    grid-template-columns: 1fr;
  }

  .chain-route {
    grid-template-columns: 1fr;
  }

  .chain-route-current {
    order: -1;
  }

  .tx-chip-grid,
  .output-grid {
    grid-template-columns: 1fr;
  }

  .value-flow {
    grid-template-columns: 1fr;
  }

  .flow-line {
    width: 1px;
    height: 34px;
    justify-self: center;
    flex-direction: column;
  }

  .flow-line span {
    width: 1px;
    height: 100%;
    flex: 1;
    background: linear-gradient(180deg, rgba(141, 241, 158, .08), rgba(141, 241, 158, .5));
  }

  .flow-line b {
    transform: rotate(90deg);
  }

  .record-hero {
    grid-template-columns: 1fr;
  }

  .record-symbol {
    position: absolute;
    right: 22px;
    top: 22px;
    width: 78px;
    height: 78px;
    border-radius: 24px;
    opacity: .65;
  }

  .record-symbol span {
    font-size: 16px;
  }

  .network-ring-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .network-ring-wrap {
    margin: 0 auto;
  }

  .network-ring-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .holder-card {
    grid-template-columns: 46px minmax(0, 1fr) auto;
  }

  .holder-percent {
    display: none;
  }

  .holder-card .ownership-meter {
    grid-column: 2 / -1;
  }
}

@media (max-width: 620px) {
  #app {
    gap: 18px;
  }

  .tip-card,
  .pulse-card,
  .record-hero {
    padding: 20px;
  }

  .tip-card,
  .pulse-card {
    min-height: 220px;
  }

  .pulse-chart {
    gap: 4px;
  }

  .block-card-grid,
  .asset-discovery-grid,
  .portfolio-grid,
  .asset-snapshot-grid,
  .collateral-grid {
    grid-template-columns: 1fr;
  }

  .section-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .section-intro > p {
    max-width: none;
  }

  .asset-discovery-stats {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .holder-card {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .holder-card > strong {
    grid-column: 2;
    text-align: left;
  }

  .holder-card .ownership-meter {
    grid-column: 2;
  }

  .network-ring-wrap {
    width: 160px;
    height: 160px;
  }

  .record-hero h2 {
    max-width: calc(100% - 72px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .block-card,
  .asset-discovery-card,
  .portfolio-card,
  .tx-chip-card {
    transition: none;
  }

  .live-dot {
    animation: none;
  }
}


/* ==========================================================================
   Explorer 2.1 compact density pass
   Smaller surfaces, more data per viewport, explicit Yerbas addresses.
   ========================================================================== */

.hero {
  min-height: 350px;
  padding: 46px 0 34px;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, .65fr);
  gap: 34px;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(42px, 5.5vw, 70px);
  line-height: .93;
}

.hero-summary {
  max-width: 660px;
  margin-top: 20px;
  font-size: clamp(14px, 1.35vw, 17px);
  line-height: 1.6;
}

.hero-facts {
  margin-top: 18px;
}

.chain-art {
  transform: scale(.82);
  transform-origin: center;
}

.search-zone {
  padding-top: 22px;
  padding-bottom: 22px;
}

#app {
  gap: 16px;
}

.cockpit-grid {
  gap: 10px;
}

.tip-card,
.pulse-card {
  min-height: 178px;
  padding: 18px 20px;
  border-radius: 14px;
}

.tip-height {
  margin-top: 14px;
  font-size: clamp(38px, 4.3vw, 54px);
}

.tip-context {
  margin-top: 12px;
}

.tip-hash {
  margin-top: 14px;
}

.pulse-head strong {
  font-size: 19px;
}

.pulse-chart {
  height: 82px;
  gap: 5px;
  padding: 4px 0;
}

.modern-metrics {
  gap: 8px;
}

.modern-metrics .metric-card {
  min-height: 102px;
  padding: 14px 16px 13px;
  border-radius: 12px;
}

.modern-metrics .metric-card::after {
  font-size: 23px;
  right: 10px;
  top: 8px;
}

.modern-metrics .metric-card strong {
  margin-top: 9px;
  font-size: clamp(21px, 2vw, 28px);
}

.modern-metrics .metric-card small {
  padding-top: 10px;
  font-size: 9px;
}

.section-intro {
  padding-top: 8px;
  gap: 18px;
}

.section-intro h2 {
  font-size: clamp(23px, 2.3vw, 31px);
}

.section-intro > p {
  max-width: 460px;
  font-size: 13px;
  line-height: 1.55;
}

.block-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.block-card {
  gap: 9px;
  padding: 13px;
  border-radius: 12px;
}

.block-card-height {
  font-size: 22px;
}

.block-card-hash {
  font-size: 9px;
}

.record-hero {
  min-height: 168px;
  padding: 22px 24px;
  border-radius: 14px;
  gap: 18px;
}

.record-hero h2 {
  margin: 5px 0 8px;
  font-size: clamp(31px, 3.6vw, 48px);
}

.record-hero .detail-hash {
  font-size: 11px;
}

.record-symbol {
  width: 88px;
  height: 88px;
  border-radius: 24px;
}

.record-symbol span {
  font-size: 18px;
}

.chain-route {
  grid-template-columns: minmax(0, 1fr) 160px minmax(0, 1fr);
  gap: 8px;
}

.chain-route-node,
.chain-route-current {
  min-height: 86px;
  padding: 13px;
  border-radius: 12px;
}

.chain-route-current strong {
  font-size: 20px;
}

.tx-chip-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.tx-chip-card {
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 10px;
}

.tx-chip-index,
.activity-index {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.balance-stage {
  gap: 9px;
}

.balance-focus {
  min-height: 165px;
  padding: 21px;
  border-radius: 14px;
}

.balance-focus > strong {
  font-size: clamp(34px, 4.5vw, 52px);
}

.balance-side {
  gap: 8px;
}

.visual-fact {
  min-height: 78px;
  padding: 12px 14px;
  border-radius: 12px;
}

.visual-fact strong {
  font-size: 17px;
}

.portfolio-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.portfolio-card {
  min-height: 106px;
  padding: 12px;
  gap: 8px;
  border-radius: 12px;
}

.portfolio-balance {
  font-size: 18px;
}

.activity-row {
  padding: 9px 10px;
}

.utxo-grid {
  gap: 6px;
}

.utxo-card {
  padding: 10px 12px;
  border-radius: 10px;
}

.filter-surface {
  padding: 15px;
  border-radius: 14px;
}

.filter-surface-title {
  margin-bottom: 11px;
}

.filter-surface-title h2 {
  font-size: 22px;
}

.asset-discovery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.asset-discovery-card {
  min-height: 158px;
  padding: 13px;
  gap: 10px;
  border-radius: 12px;
}

.asset-discovery-name {
  font-size: 17px;
}

.asset-discovery-stats {
  gap: 5px;
}

.asset-discovery-foot {
  padding-top: 8px;
}

.asset-snapshot-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 7px;
}

.holder-list {
  gap: 5px;
}

.holder-card {
  grid-template-columns: 42px minmax(0, 1fr) minmax(100px, auto) 62px;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
}

.network-health-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  gap: 9px;
}

.network-ring-card {
  min-height: 185px;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  border-radius: 14px;
}

.network-ring-wrap {
  width: 136px;
  height: 136px;
}

.network-ring-label strong {
  font-size: 27px;
}

.network-ring-copy h3 {
  font-size: 23px;
}

.network-ring-copy p {
  font-size: 12px;
}

.network-status-card {
  gap: 7px;
  padding: 8px;
  border-radius: 14px;
}

.collateral-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 7px;
}

.collateral-card {
  min-height: 78px;
  padding: 10px 12px;
  border-radius: 10px;
}

.collateral-card strong {
  font-size: 20px;
}

.value-flow {
  grid-template-columns: minmax(120px, .65fr) 54px minmax(180px, 1fr) 54px minmax(120px, .65fr);
  gap: 6px;
}

.flow-node {
  min-height: 108px;
  padding: 13px;
  border-radius: 13px;
}

.flow-node.transaction {
  min-height: 128px;
}

.flow-node strong {
  font-size: 23px;
}

.output-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.output-card {
  gap: 10px;
  padding: 12px;
  border-radius: 11px;
}

.output-card-head strong {
  font-size: 15px;
}

.output-address-label,
.cell-label {
  display: block;
  margin-bottom: 5px;
  font-family: var(--mono);
  font-size: 8px;
  line-height: 1;
  letter-spacing: .11em;
  color: var(--green);
}

.output-destination {
  min-height: 44px;
  line-height: 1.45;
}

.output-destination a {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--text-soft);
}

.address-identity {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  border: 1px solid rgba(141, 241, 158, .18);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(141, 241, 158, .06), rgba(141, 241, 158, .015));
}

.address-identity > span {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .13em;
  color: var(--green);
}

.address-identity code {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 12px;
  background: transparent;
}

.address-identity a {
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .08em;
  color: var(--green);
}

.smartnode-address {
  color: var(--text-soft);
}

.smartnode-table td {
  padding-top: 9px;
  padding-bottom: 9px;
}

@media (max-width: 1180px) {
  .block-card-grid,
  .asset-discovery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .asset-snapshot-grid,
  .collateral-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .output-grid,
  .tx-chip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    padding: 34px 0 26px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .chain-art {
    transform: scale(.72);
  }

  .block-card-grid,
  .asset-discovery-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .asset-snapshot-grid,
  .collateral-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .network-health-grid {
    grid-template-columns: 1fr;
  }

  .address-identity {
    grid-template-columns: 1fr auto;
  }

  .address-identity code {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 620px) {
  .block-card-grid,
  .asset-discovery-grid,
  .portfolio-grid,
  .asset-snapshot-grid,
  .collateral-grid,
  .output-grid,
  .tx-chip-grid {
    grid-template-columns: 1fr;
  }

  .address-identity {
    grid-template-columns: 1fr;
  }

  .address-identity a {
    white-space: normal;
  }
}


/* ==========================================================================
   Explorer 3.0 — Chain Observatory / Ledger Rail
   No dashboard-card language. Continuous data rails and compact live streams.
   ========================================================================== */

.observatory-mast {
  min-height: 0;
  padding: 30px 0 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  border-bottom: 1px solid rgba(141, 241, 158, .13);
}

.mast-copy {
  min-width: 0;
}

.mast-copy h1 {
  margin: 10px 0 4px;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: .96;
  letter-spacing: -.052em;
}

.mast-copy h1 span {
  color: transparent;
  font-weight: 500;
  -webkit-text-stroke: 1px rgba(181, 255, 192, .4);
  text-stroke: 1px rgba(181, 255, 192, .4);
}

.mast-copy p {
  margin: 10px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.mast-telemetry {
  display: grid;
  grid-template-columns: repeat(3, auto);
  align-items: end;
  gap: 0;
  border-left: 1px solid rgba(141, 241, 158, .12);
}

.mast-telemetry > span {
  min-width: 112px;
  padding: 8px 15px;
  display: grid;
  gap: 4px;
  border-right: 1px solid rgba(141, 241, 158, .1);
}

.mast-telemetry small {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .16em;
  color: var(--muted);
}

.mast-telemetry strong {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--green);
}

.search-zone {
  padding: 12px 0 14px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(141, 241, 158, .12);
}

.search-label small {
  margin-top: 3px;
}

.search {
  min-height: 42px;
  border-radius: 0;
  border: 0;
  border-left: 1px solid rgba(141, 241, 158, .2);
  background: rgba(141, 241, 158, .018);
}

.search input {
  min-height: 42px;
}

.search button {
  min-width: 106px;
  min-height: 42px;
  border-radius: 0;
}

#app {
  gap: 0;
  padding-top: 0;
}

.telemetry-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  border-top: 1px solid rgba(141, 241, 158, .16);
  border-bottom: 1px solid rgba(141, 241, 158, .16);
  background: rgba(141, 241, 158, .012);
}

.telemetry-cell {
  min-width: 0;
  min-height: 68px;
  padding: 11px 14px 10px;
  display: grid;
  align-content: center;
  gap: 3px;
  border-right: 1px solid rgba(141, 241, 158, .09);
}

.telemetry-cell:last-child {
  border-right: 0;
}

.telemetry-cell > span,
.telemetry-cell > small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .14em;
  color: var(--muted);
}

.telemetry-cell > span {
  color: var(--green);
}

.telemetry-cell > strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: clamp(16px, 1.6vw, 23px);
  line-height: 1.05;
  letter-spacing: -.025em;
}

.observatory-strip {
  min-height: 66px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(141, 241, 158, .1);
}

.observatory-label {
  display: grid;
  gap: 2px;
}

.observatory-label span,
.observatory-source {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .15em;
  color: var(--green);
}

.observatory-label strong {
  font-size: 13px;
  font-weight: 560;
}

.observatory-source {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.rhythm-line {
  height: 42px;
  display: grid;
  grid-template-columns: repeat(18, minmax(2px, 1fr));
  align-items: end;
  gap: 3px;
}

.rhythm-tick {
  display: block;
  width: 100%;
  min-height: 4px;
  background: linear-gradient(180deg, var(--green-hot), rgba(89, 205, 108, .18));
  opacity: .72;
}

.rhythm-tick.level-1 { height: 10%; }
.rhythm-tick.level-2 { height: 20%; }
.rhythm-tick.level-3 { height: 30%; }
.rhythm-tick.level-4 { height: 40%; }
.rhythm-tick.level-5 { height: 50%; }
.rhythm-tick.level-6 { height: 60%; }
.rhythm-tick.level-7 { height: 70%; }
.rhythm-tick.level-8 { height: 80%; }
.rhythm-tick.level-9 { height: 90%; }
.rhythm-tick.level-10 { height: 100%; }

.ledger-section {
  padding: 18px 0 0;
}

.rail-heading {
  min-height: 48px;
  padding: 0 2px 10px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(141, 241, 158, .14);
}

.rail-heading > div {
  display: grid;
  gap: 2px;
}

.rail-heading span {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .16em;
  color: var(--green);
}

.rail-heading h3 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -.025em;
}

.rail-heading small {
  padding-bottom: 2px;
  font-family: var(--mono);
  font-size: 8px;
  color: var(--muted);
  letter-spacing: .08em;
}

.chain-tape {
  position: relative;
}

.chain-tape::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(141, 241, 158, .13);
}

.chain-tape-row {
  min-height: 46px;
  display: grid;
  grid-template-columns: 42px 105px 80px 58px 90px minmax(160px, 1fr) 110px 20px;
  align-items: center;
  gap: 10px;
  padding: 0 3px 0 0;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(141, 241, 158, .07);
  transition: background .12s ease, color .12s ease;
}

.chain-tape-row:hover {
  color: var(--text);
  background: rgba(141, 241, 158, .025);
}

.chain-tape-row.is-tip {
  background: linear-gradient(90deg, rgba(141, 241, 158, .055), transparent 70%);
}

.tape-node {
  position: relative;
  height: 100%;
  display: grid;
  place-items: center;
}

.tape-node i {
  position: relative;
  z-index: 1;
  width: 7px;
  height: 7px;
  border: 1px solid var(--green);
  border-radius: 50%;
  background: var(--ink);
}

.is-tip .tape-node i {
  background: var(--green-hot);
  box-shadow: 0 0 12px rgba(141, 241, 158, .75);
}

.tape-height {
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -.02em;
}

.tape-age,
.tape-stat small {
  font-family: var(--mono);
  font-size: 8px;
  color: var(--muted);
}

.tape-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px;
  align-items: baseline;
}

.tape-stat b {
  font-size: 11px;
  font-weight: 580;
}

.tape-hash {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #809486;
  font-size: 9px;
}

.tape-activity,
.output-microbar {
  height: 2px;
  background: rgba(141, 241, 158, .06);
  overflow: hidden;
}

.tape-activity i,
.output-microbar i,
.holder-microbar {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, rgba(94, 211, 114, .35), var(--green-hot));
}

.tape-activity .level-1,
.output-microbar .level-1,
.holder-microbar.level-1 { width: 10%; }
.tape-activity .level-2,
.output-microbar .level-2,
.holder-microbar.level-2 { width: 20%; }
.tape-activity .level-3,
.output-microbar .level-3,
.holder-microbar.level-3 { width: 30%; }
.tape-activity .level-4,
.output-microbar .level-4,
.holder-microbar.level-4 { width: 40%; }
.tape-activity .level-5,
.output-microbar .level-5,
.holder-microbar.level-5 { width: 50%; }
.tape-activity .level-6,
.output-microbar .level-6,
.holder-microbar.level-6 { width: 60%; }
.tape-activity .level-7,
.output-microbar .level-7,
.holder-microbar.level-7 { width: 70%; }
.tape-activity .level-8,
.output-microbar .level-8,
.holder-microbar.level-8 { width: 80%; }
.tape-activity .level-9,
.output-microbar .level-9,
.holder-microbar.level-9 { width: 90%; }
.tape-activity .level-10,
.output-microbar .level-10,
.holder-microbar.level-10 { width: 100%; }

.tape-open,
.ledger-open {
  color: var(--green);
  font-family: var(--mono);
  font-size: 9px;
  text-align: right;
}

.ledger-header {
  padding: 22px 0 16px;
  border-bottom: 1px solid rgba(141, 241, 158, .16);
}

.ledger-kind {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .16em;
  color: var(--green);
}

.ledger-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(141, 241, 158, .65);
}

.ledger-title-row {
  margin-top: 7px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.ledger-title-row h2 {
  margin: 0;
  font-size: clamp(28px, 3.3vw, 44px);
  letter-spacing: -.045em;
}

.ledger-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.ledger-actions a {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .1em;
  color: var(--green);
}

.ledger-identity {
  display: block;
  margin-top: 6px;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: #8ca091;
  font-size: 10px;
  line-height: 1.45;
}

.ledger-note {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.chain-nav-rail {
  min-height: 62px;
  display: grid;
  grid-template-columns: 1fr 170px 1fr;
  align-items: stretch;
  border-bottom: 1px solid rgba(141, 241, 158, .12);
}

.chain-nav-rail > * {
  min-width: 0;
  padding: 10px 14px;
  display: grid;
  align-content: center;
  gap: 3px;
  color: var(--text-soft);
  border-right: 1px solid rgba(141, 241, 158, .08);
}

.chain-nav-rail > *:last-child {
  border-right: 0;
}

.chain-nav-rail a:hover {
  color: var(--text);
  background: rgba(141, 241, 158, .02);
}

.chain-nav-rail span,
.chain-nav-rail code {
  font-family: var(--mono);
  font-size: 8px;
  color: var(--muted);
}

.chain-nav-rail strong {
  font-size: 17px;
  color: var(--green);
}

.chain-nav-rail > div {
  text-align: center;
}

.chain-nav-rail .disabled {
  opacity: .38;
}

.ledger-list {
  border-bottom: 1px solid rgba(141, 241, 158, .12);
}

.ledger-row {
  min-height: 39px;
  display: grid;
  align-items: center;
  gap: 9px;
  padding: 0 4px;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(141, 241, 158, .065);
}

.ledger-row:hover {
  color: var(--text);
  background: rgba(141, 241, 158, .022);
}

.tx-ledger-row {
  grid-template-columns: 36px 40px minmax(0, 1fr) 18px;
}

.tx-ledger-row code {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 9px;
}

.ledger-index,
.ledger-row-label,
.asset-inline-type {
  font-family: var(--mono);
  font-size: 8px;
  color: var(--muted);
  letter-spacing: .08em;
}

.ledger-row-label,
.asset-inline-type {
  color: var(--green);
}

.ledger-empty,
.ledger-warning {
  padding: 14px 4px;
  color: var(--muted);
  font-size: 11px;
  border-bottom: 1px solid rgba(141, 241, 158, .08);
}

.ledger-warning {
  color: #d7bf79;
}

.split-ledger {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 24px;
  padding-top: 18px;
}

.ledger-pane {
  min-width: 0;
}

.asset-ledger-row {
  grid-template-columns: 72px minmax(0, 1fr) auto 18px;
}

.asset-ledger-row strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
}

.asset-inline-balance {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text);
}

.utxo-ledger-row {
  grid-template-columns: 42px 128px 64px 76px minmax(90px, 1fr) 18px;
}

.utxo-ledger-row strong {
  font-size: 10px;
  color: var(--text);
}

.utxo-ledger-row > span:not(.ledger-row-label):not(.ledger-open) {
  font-family: var(--mono);
  font-size: 8px;
  color: var(--muted);
}

.utxo-ledger-row code {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 8px;
  color: #7f9185;
}

.rail-filter {
  min-height: 48px;
  display: grid;
  grid-template-columns: minmax(180px, 1.5fr) repeat(4, minmax(100px, .65fr)) auto;
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid rgba(141, 241, 158, .14);
}

.rail-filter input,
.rail-filter select,
.rail-filter button {
  min-width: 0;
  min-height: 48px;
  padding: 0 12px;
  border: 0;
  border-right: 1px solid rgba(141, 241, 158, .09);
  border-radius: 0;
  background: rgba(141, 241, 158, .012);
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .05em;
}

.rail-filter input:focus,
.rail-filter select:focus {
  outline: none;
  background: rgba(141, 241, 158, .035);
}

.rail-filter button {
  padding: 0 18px;
  color: #041007;
  background: var(--green);
  font-weight: 700;
}

.asset-matrix {
  border-bottom: 1px solid rgba(141, 241, 158, .12);
}

.asset-matrix-row {
  min-height: 43px;
  display: grid;
  grid-template-columns: 76px minmax(150px, 1.45fr) minmax(100px, .8fr) 72px 52px 100px 18px;
  gap: 10px;
  align-items: center;
  padding: 0 4px;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(141, 241, 158, .065);
}

.asset-matrix-row:hover {
  color: var(--text);
  background: linear-gradient(90deg, rgba(141, 241, 158, .03), transparent 70%);
}

.asset-matrix-row strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
}

.asset-matrix-row > span:not(.asset-inline-type):not(.asset-state):not(.ledger-open) {
  display: grid;
  gap: 2px;
  font-family: var(--mono);
  font-size: 9px;
}

.asset-matrix-row small {
  font-size: 6px;
  color: var(--muted);
  letter-spacing: .1em;
}

.asset-state {
  font-family: var(--mono);
  font-size: 7px;
  color: var(--muted);
}

.rail-pagination {
  min-height: 44px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 4px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .08em;
  color: var(--muted);
}

.rail-pagination > :last-child {
  justify-self: end;
}

.rail-pagination a {
  color: var(--green);
}

.asset-facts-rail {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) minmax(0, 1.5fr);
  border-bottom: 1px solid rgba(141, 241, 158, .12);
}

.asset-facts-rail > div {
  min-width: 0;
  min-height: 58px;
  padding: 10px 13px;
  display: grid;
  align-content: center;
  gap: 3px;
  border-right: 1px solid rgba(141, 241, 158, .08);
}

.asset-facts-rail > div:last-child {
  border-right: 0;
}

.asset-facts-rail span {
  font-family: var(--mono);
  font-size: 7px;
  color: var(--green);
  letter-spacing: .1em;
}

.asset-facts-rail strong,
.asset-facts-rail code {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 9px;
  color: var(--text-soft);
}

.holder-rail {
  border-bottom: 1px solid rgba(141, 241, 158, .12);
}

.holder-rail-row {
  min-height: 40px;
  display: grid;
  grid-template-columns: 35px minmax(170px, 1fr) 120px 58px 110px;
  align-items: center;
  gap: 10px;
  padding: 0 4px;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(141, 241, 158, .065);
}

.holder-rail-row:hover {
  color: var(--text);
  background: rgba(141, 241, 158, .02);
}

.holder-rail-row code {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 9px;
}

.holder-rail-row strong {
  text-align: right;
  font-size: 10px;
}

.holder-rail-row > span:not(.ledger-index) {
  text-align: right;
  font-family: var(--mono);
  font-size: 8px;
  color: var(--muted);
}

.holder-microbar {
  height: 2px;
  background: linear-gradient(90deg, rgba(94, 211, 114, .35), var(--green-hot));
}

.collateral-rail {
  min-height: 58px;
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  border-bottom: 1px solid rgba(141, 241, 158, .12);
}

.collateral-rail > span {
  min-width: 100px;
  padding: 8px 12px;
  display: grid;
  align-content: center;
  grid-template-columns: auto auto;
  gap: 2px 5px;
  border-right: 1px solid rgba(141, 241, 158, .08);
}

.collateral-rail > span b {
  font-size: 12px;
}

.collateral-rail > span small {
  align-self: end;
  font-family: var(--mono);
  font-size: 6px;
  color: var(--muted);
}

.collateral-rail > span strong {
  grid-column: 1 / -1;
  font-family: var(--mono);
  font-size: 8px;
  color: var(--green);
}

.collateral-rail .rail-label {
  min-width: 90px;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 7px;
  color: var(--muted);
  letter-spacing: .12em;
}

.smartnode-rail-filter {
  grid-template-columns: minmax(180px, 1.4fr) repeat(3, minmax(120px, .75fr)) auto;
}

.node-stream-head,
.node-stream-row {
  display: grid;
  grid-template-columns: 18px 48px minmax(150px, 1fr) minmax(220px, 1.25fr) 84px 94px 48px 90px;
  gap: 9px;
  align-items: center;
}

.node-stream-head {
  min-height: 30px;
  padding: 0 4px;
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: .09em;
  color: var(--muted);
  border-bottom: 1px solid rgba(141, 241, 158, .1);
}

.node-stream-row {
  min-height: 46px;
  padding: 0 4px;
  border-bottom: 1px solid rgba(141, 241, 158, .06);
}

.node-stream-row:hover {
  background: rgba(141, 241, 158, .02);
}

.node-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #637067;
}

.node-status-dot.status-enabled {
  background: var(--green);
  box-shadow: 0 0 8px rgba(141, 241, 158, .45);
}

.node-status-dot.status-banned {
  background: var(--danger);
}

.node-pay-rank {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted);
}

.node-service,
.node-payout-wrap,
.node-collateral,
.node-paid,
.node-pose {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.node-service b,
.node-collateral b,
.node-paid b,
.node-pose b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 9px;
  font-weight: 560;
}

.node-service code,
.node-payout,
.node-payout-wrap small,
.node-collateral small,
.node-paid small,
.node-pose small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 7px;
  color: var(--muted);
}

.node-payout {
  color: var(--text-soft);
}

.node-payout-wrap small {
  color: var(--green);
}

.node-stream-row .smartnode-status {
  justify-self: start;
  padding: 4px 6px;
  font-size: 7px;
}

.flow-rail {
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr 34px 1.3fr 34px 1fr;
  align-items: stretch;
  border-bottom: 1px solid rgba(141, 241, 158, .12);
}

.flow-rail > span {
  display: grid;
  place-content: center;
  text-align: center;
  gap: 3px;
}

.flow-rail > span small {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .1em;
  color: var(--muted);
}

.flow-rail > span b {
  font-size: 14px;
}

.flow-rail .flow-center {
  background: rgba(141, 241, 158, .026);
  border-left: 1px solid rgba(141, 241, 158, .08);
  border-right: 1px solid rgba(141, 241, 158, .08);
}

.flow-rail .flow-center b {
  color: var(--green);
}

.flow-rail > i {
  display: grid;
  place-items: center;
  color: var(--green);
  font-style: normal;
}

.output-rail {
  border-bottom: 1px solid rgba(141, 241, 158, .12);
}

.output-rail-row {
  min-height: 47px;
  display: grid;
  grid-template-columns: 35px 130px minmax(0, 1fr) 120px;
  gap: 10px;
  align-items: center;
  padding: 0 4px;
  border-bottom: 1px solid rgba(141, 241, 158, .065);
}

.output-rail-row > strong {
  font-size: 10px;
}

.output-rail-address {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 9px;
}

.output-rail-address small {
  display: block;
  margin-bottom: 2px;
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: .08em;
  color: var(--green);
}

.output-rail-address a {
  color: var(--text-soft);
}

.raw-ledger {
  margin-top: 16px;
  border-top: 1px solid rgba(141, 241, 158, .12);
  border-bottom: 1px solid rgba(141, 241, 158, .12);
}

.raw-ledger summary {
  padding: 10px 4px;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .1em;
  color: var(--green);
}

.raw-ledger pre {
  margin: 0;
  padding: 14px 4px;
  max-height: 420px;
  overflow: auto;
  border-top: 1px solid rgba(141, 241, 158, .08);
  font-size: 9px;
  color: #8da094;
  background: transparent;
}

@media (max-width: 1120px) {
  .mast-telemetry > span {
    min-width: 92px;
  }

  .chain-tape-row {
    grid-template-columns: 42px 96px 70px 48px 76px minmax(120px, 1fr) 80px 18px;
  }

  .asset-matrix-row {
    grid-template-columns: 68px minmax(130px, 1.3fr) minmax(90px, .8fr) 64px 46px 80px 16px;
  }

  .node-stream-head,
  .node-stream-row {
    grid-template-columns: 16px 40px minmax(130px, 1fr) minmax(170px, 1fr) 74px 82px 42px 76px;
  }
}

@media (max-width: 900px) {
  .observatory-mast {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mast-telemetry {
    border-left: 0;
    border-top: 1px solid rgba(141, 241, 158, .1);
  }

  .search-zone {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .search-label {
    display: flex;
    justify-content: space-between;
  }

  .observatory-strip {
    grid-template-columns: 130px minmax(0, 1fr) 58px;
    gap: 10px;
  }

  .chain-tape-row {
    grid-template-columns: 35px 92px 66px 44px 70px minmax(90px, 1fr) 18px;
  }

  .tape-activity {
    display: none;
  }

  .split-ledger {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .rail-filter,
  .smartnode-rail-filter {
    grid-template-columns: 1fr 1fr;
  }

  .rail-filter input {
    grid-column: 1 / -1;
  }

  .rail-filter button {
    min-height: 42px;
  }

  .node-stream-head {
    display: none;
  }

  .node-stream-row {
    grid-template-columns: 16px 40px minmax(130px, 1fr) minmax(160px, 1fr) 70px 76px;
  }

  .node-pose,
  .node-stream-row .smartnode-status {
    display: none;
  }
}

@media (max-width: 700px) {
  .mast-telemetry {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .mast-telemetry > span {
    min-width: 0;
    padding-left: 8px;
    padding-right: 8px;
  }

  .telemetry-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .telemetry-cell:nth-child(2n) {
    border-right: 0;
  }

  .observatory-strip {
    grid-template-columns: 1fr;
    padding: 10px 0;
  }

  .observatory-source {
    display: none;
  }

  .chain-tape-row {
    min-height: 52px;
    grid-template-columns: 28px 90px 58px 48px 1fr 16px;
    gap: 7px;
  }

  .chain-tape::before {
    left: 13px;
  }

  .tape-stat:nth-of-type(2),
  .tape-hash {
    display: none;
  }

  .chain-nav-rail {
    grid-template-columns: 1fr;
  }

  .chain-nav-rail > * {
    border-right: 0;
    border-bottom: 1px solid rgba(141, 241, 158, .07);
  }

  .ledger-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .ledger-actions {
    justify-content: flex-start;
  }

  .asset-ledger-row {
    grid-template-columns: 62px minmax(0, 1fr) auto 16px;
  }

  .utxo-ledger-row {
    grid-template-columns: 40px minmax(110px, 1fr) 50px 68px 16px;
  }

  .utxo-ledger-row code {
    display: none;
  }

  .asset-matrix-row {
    grid-template-columns: 62px minmax(100px, 1fr) 78px 50px 16px;
  }

  .asset-matrix-row > span:nth-of-type(3),
  .asset-matrix-row > span:nth-of-type(4) {
    display: none;
  }

  .asset-facts-rail {
    grid-template-columns: 1fr;
  }

  .asset-facts-rail > div {
    border-right: 0;
    border-bottom: 1px solid rgba(141, 241, 158, .07);
  }

  .holder-rail-row {
    grid-template-columns: 28px minmax(120px, 1fr) 94px 46px;
  }

  .holder-microbar {
    display: none;
  }

  .collateral-rail {
    min-height: 52px;
  }

  .node-stream-row {
    grid-template-columns: 14px 32px minmax(120px, 1fr) minmax(140px, 1fr);
  }

  .node-collateral,
  .node-paid {
    display: none;
  }

  .flow-rail {
    grid-template-columns: 1fr 22px 1.2fr 22px 1fr;
  }

  .output-rail-row {
    grid-template-columns: 28px 106px minmax(0, 1fr);
  }

  .output-microbar {
    display: none;
  }
}

@media (max-width: 520px) {
  .mast-copy h1 {
    font-size: 32px;
  }

  .mast-copy p {
    font-size: 11px;
  }

  .rail-filter,
  .smartnode-rail-filter {
    grid-template-columns: 1fr;
  }

  .asset-matrix-row {
    grid-template-columns: 54px minmax(0, 1fr) 16px;
  }

  .asset-matrix-row > span:not(.asset-inline-type):not(.ledger-open),
  .asset-matrix-row > strong + span {
    display: none;
  }

  .holder-rail-row {
    grid-template-columns: 26px minmax(0, 1fr) 80px;
  }

  .holder-rail-row > span:not(.ledger-index) {
    display: none;
  }

  .node-stream-row {
    grid-template-columns: 14px 28px minmax(100px, 1fr);
  }

  .node-payout-wrap {
    display: none;
  }

  .flow-rail {
    grid-template-columns: 1fr;
  }

  .flow-rail > i {
    display: none;
  }

  .output-rail-row {
    grid-template-columns: 24px 94px minmax(0, 1fr);
  }
}


/* ==========================================================================
   Explorer 3.1 — Readability + blockchain tape glyphs
   ========================================================================== */

body {
  font-size: 16px;
}

.mast-copy p {
  font-size: 15px;
}

.mast-telemetry small,
.observatory-label span,
.observatory-source,
.telemetry-cell > span,
.telemetry-cell > small,
.rail-heading span,
.rail-heading small,
.ledger-kind,
.ledger-actions a,
.ledger-row-label,
.asset-inline-type,
.asset-state,
.asset-matrix-row small,
.asset-facts-rail span,
.node-payout-wrap small,
.node-collateral small,
.node-paid small,
.node-pose small,
.output-rail-address small,
.raw-ledger summary {
  font-size: 9px;
}

.mast-telemetry strong,
.telemetry-cell > strong,
.tape-stat b,
.ledger-row code,
.asset-inline-balance,
.asset-matrix-row > span:not(.asset-inline-type):not(.asset-state):not(.ledger-open),
.asset-facts-rail strong,
.asset-facts-rail code,
.holder-rail-row code,
.holder-rail-row strong,
.node-service b,
.node-collateral b,
.node-paid b,
.node-pose b,
.node-payout,
.output-rail-row > strong,
.output-rail-address,
.raw-ledger pre {
  font-size: 11px;
}

.rail-heading h3 {
  font-size: 22px;
}

.ledger-title-row h2 {
  font-size: clamp(32px, 3.5vw, 48px);
}

.ledger-identity,
.ledger-note {
  font-size: 12px;
}

.chain-tape-row {
  min-height: 54px;
  grid-template-columns: 54px 118px 88px 66px 100px minmax(190px, 1fr) 120px 22px;
}

.chain-tape::before {
  left: 27px;
  background: linear-gradient(
    180deg,
    transparent 0,
    rgba(141, 241, 158, .18) 3%,
    rgba(141, 241, 158, .18) 97%,
    transparent 100%
  );
}

.tape-node {
  position: relative;
  height: 100%;
  display: grid;
  place-items: center;
}

.tape-block-icon {
  position: relative;
  z-index: 1;
  width: 25px;
  height: 25px;
  overflow: visible;
  filter: drop-shadow(0 0 4px rgba(141, 241, 158, .12));
}

.tape-block-icon .block-face {
  stroke: rgba(141, 241, 158, .78);
  stroke-width: 1.15;
  stroke-linejoin: round;
}

.tape-block-icon .block-top {
  fill: rgba(141, 241, 158, .16);
}

.tape-block-icon .block-left {
  fill: rgba(67, 151, 82, .08);
}

.tape-block-icon .block-right {
  fill: rgba(141, 241, 158, .045);
}

.tape-block-icon .block-link {
  fill: none;
  stroke: rgba(141, 241, 158, .35);
  stroke-width: 1.15;
  stroke-linecap: round;
}

.chain-tape-row.is-tip .tape-block-icon {
  filter:
    drop-shadow(0 0 5px rgba(141, 241, 158, .52))
    drop-shadow(0 0 12px rgba(141, 241, 158, .2));
}

.chain-tape-row.is-tip .tape-block-icon .block-face {
  stroke: var(--green-hot);
}

.chain-tape-row.is-tip .tape-block-icon .block-top {
  fill: rgba(141, 241, 158, .42);
}

.chain-tape-row:hover .tape-block-icon {
  transform: translateY(-1px) scale(1.05);
}

.tape-block-icon {
  transition: transform .14s ease, filter .14s ease;
}

.tape-height {
  font-size: 18px;
}

.tape-age {
  font-size: 10px;
}

.tape-stat small {
  font-size: 9px;
}

.tape-stat b {
  font-size: 12px;
}

.tape-hash {
  font-size: 10px;
}

.tape-open,
.ledger-open {
  font-size: 11px;
}

.telemetry-cell {
  min-height: 78px;
  padding-top: 13px;
  padding-bottom: 12px;
}

.observatory-strip {
  min-height: 74px;
}

.observatory-label strong {
  font-size: 15px;
}

.rhythm-line {
  height: 46px;
}

.ledger-row {
  min-height: 46px;
}

.asset-matrix-row {
  min-height: 50px;
}

.holder-rail-row {
  min-height: 46px;
}

.node-stream-row {
  min-height: 52px;
}

.output-rail-row {
  min-height: 54px;
}

@media (max-width: 1120px) {
  .chain-tape-row {
    grid-template-columns: 50px 108px 82px 60px 90px minmax(150px, 1fr) 100px 20px;
  }

  .chain-tape::before {
    left: 25px;
  }
}

@media (max-width: 900px) {
  .chain-tape-row {
    grid-template-columns: 46px 102px 78px 54px 82px minmax(120px, 1fr) 18px;
  }

  .chain-tape::before {
    left: 23px;
  }

  .tape-block-icon {
    width: 23px;
    height: 23px;
  }
}

@media (max-width: 700px) {
  .chain-tape-row {
    min-height: 58px;
    grid-template-columns: 42px 100px 68px 50px 1fr 18px;
  }

  .chain-tape::before {
    left: 21px;
  }

  .tape-block-icon {
    width: 22px;
    height: 22px;
  }

  .tape-height {
    font-size: 16px;
  }

  .telemetry-cell > strong {
    font-size: 18px;
  }
}
 

/* ==========================================================================
   Explorer 3.2 — woven blockchain spine
   ========================================================================== */

.chain-tape::before {
  left: 27px;
  width: 2px;
  background:
    linear-gradient(
      180deg,
      transparent 0,
      rgba(141, 241, 158, .08) 2%,
      rgba(141, 241, 158, .24) 12%,
      rgba(141, 241, 158, .12) 50%,
      rgba(141, 241, 158, .24) 88%,
      rgba(141, 241, 158, .08) 98%,
      transparent 100%
    );
  box-shadow: 0 0 8px rgba(141, 241, 158, .06);
}

.tape-node {
  overflow: visible;
}

.tape-block-icon {
  width: 33px;
  height: 33px;
  overflow: visible;
  filter:
    drop-shadow(0 0 4px rgba(141, 241, 158, .14))
    drop-shadow(0 2px 2px rgba(0, 0, 0, .32));
}

.tape-block-icon .chain-weave,
.tape-block-icon .chain-core-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tape-block-icon .weave-back {
  stroke: rgba(89, 184, 105, .38);
  stroke-width: 1.45;
}

.tape-block-icon .weave-front {
  stroke: rgba(181, 255, 192, .95);
  stroke-width: 1.85;
  filter: drop-shadow(0 0 3px rgba(141, 241, 158, .42));
}

.tape-block-icon .chain-core-line {
  stroke: rgba(141, 241, 158, .6);
  stroke-width: 1.25;
}

.tape-block-icon .block-face {
  stroke-width: 1.2;
}

.tape-block-icon .block-top {
  fill: rgba(141, 241, 158, .19);
}

.tape-block-icon .block-left {
  fill: rgba(58, 129, 70, .13);
}

.tape-block-icon .block-right {
  fill: rgba(141, 241, 158, .055);
}

/* Alternate the wrap direction so the spine visibly snakes through each block. */
.chain-tape-row:nth-child(even) .tape-block-icon .chain-weave {
  transform: scaleX(-1);
  transform-origin: 16px 16px;
}

/* Slightly offset alternate blocks to reinforce the physical-link illusion. */
.chain-tape-row:nth-child(odd) .tape-block-icon {
  translate: -1px 0;
}

.chain-tape-row:nth-child(even) .tape-block-icon {
  translate: 1px 0;
}

.chain-tape-row:hover .tape-block-icon {
  transform: translateY(-1px) scale(1.06);
}

.chain-tape-row.is-tip .tape-block-icon {
  filter:
    drop-shadow(0 0 6px rgba(141, 241, 158, .62))
    drop-shadow(0 0 15px rgba(141, 241, 158, .22));
}

.chain-tape-row.is-tip .tape-block-icon .weave-front,
.chain-tape-row.is-tip .tape-block-icon .chain-core-line {
  stroke: var(--green-hot);
}

.chain-tape-row.is-tip .tape-block-icon .block-top {
  fill: rgba(141, 241, 158, .48);
}

@media (max-width: 1120px) {
  .chain-tape::before {
    left: 25px;
  }
}

@media (max-width: 900px) {
  .chain-tape::before {
    left: 23px;
  }

  .tape-block-icon {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 700px) {
  .chain-tape::before {
    left: 21px;
  }

  .tape-block-icon {
    width: 29px;
    height: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tape-block-icon {
    transition: none;
  }
}


/* ==========================================================================
   Explorer 3.3 — masthead refinement
   ========================================================================== */

.observatory-mast {
  padding: 18px 0 13px;
  align-items: center;
}

.mast-copy {
  display: grid;
  gap: 6px;
}

.mast-copy .signal-line {
  margin: 0;
}

.mast-title {
  margin: 0;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  line-height: 1;
}

.mast-title strong {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 760;
  letter-spacing: .08em;
}

.mast-slash {
  font-family: var(--mono);
  font-size: clamp(15px, 1.6vw, 20px);
  letter-spacing: 0;
  color: rgba(141, 241, 158, .42);
}

.mast-channel {
  font-family: var(--mono);
  font-size: clamp(14px, 1.5vw, 19px);
  font-weight: 560;
  letter-spacing: .16em;
  color: var(--green);
}

.mast-subtitle {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  max-width: none;
  font-family: var(--mono);
  font-size: 9px !important;
  line-height: 1.35;
  letter-spacing: .08em;
  color: var(--muted);
}

.mast-subtitle > span {
  padding-left: 14px;
  border-left: 1px solid rgba(141, 241, 158, .15);
  color: #789083;
}

.mast-telemetry > span {
  padding-top: 7px;
  padding-bottom: 7px;
}

@media (max-width: 900px) {
  .observatory-mast {
    padding-top: 16px;
    padding-bottom: 12px;
  }

  .mast-title {
    gap: 7px;
  }

  .mast-subtitle {
    font-size: 8px !important;
  }
}

@media (max-width: 620px) {
  .mast-title strong {
    font-size: 26px;
  }

  .mast-channel {
    font-size: 13px;
  }

  .mast-subtitle > span {
    padding-left: 0;
    border-left: 0;
  }
}


/* ==========================================================================
   Explorer 3.4 — HoloLedger
   Futuristic observatory treatment without sacrificing density or readability.
   ========================================================================== */

:root {
  --holo-cyan: #82f4ff;
  --holo-blue: #72bfff;
  --holo-dim: rgba(130, 244, 255, .18);
  --holo-line: rgba(130, 244, 255, .105);
  --holo-glow: 0 0 24px rgba(130, 244, 255, .10);
}

html {
  background: #030907;
}

body {
  position: relative;
  background:
    radial-gradient(circle at 78% -8%, rgba(92, 220, 255, .075), transparent 28rem),
    radial-gradient(circle at 18% 12%, rgba(141, 241, 158, .075), transparent 30rem),
    linear-gradient(180deg, #050d09 0%, #040b08 54%, #020705 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      180deg,
      transparent 0,
      transparent 3px,
      rgba(130, 244, 255, .012) 4px
    );
  opacity: .5;
}

body::after {
  content: "";
  position: fixed;
  left: 50%;
  bottom: -32vh;
  width: 120vw;
  height: 70vh;
  z-index: -3;
  pointer-events: none;
  transform: translateX(-50%) perspective(520px) rotateX(62deg);
  transform-origin: center bottom;
  background-image:
    linear-gradient(rgba(130, 244, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141, 241, 158, .045) 1px, transparent 1px);
  background-size: 54px 38px;
  mask-image: linear-gradient(to top, black, transparent 76%);
  opacity: .55;
}

.page-noise {
  opacity: .10;
  background-image:
    linear-gradient(rgba(141, 241, 158, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130, 244, 255, .018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 74%);
}

.site-header {
  background:
    linear-gradient(90deg, rgba(4, 13, 8, .91), rgba(5, 16, 11, .84) 55%, rgba(4, 14, 12, .9));
  border-bottom-color: rgba(130, 244, 255, .10);
  box-shadow:
    0 1px 0 rgba(141, 241, 158, .055),
    0 8px 32px rgba(0, 0, 0, .18);
  backdrop-filter: blur(22px) saturate(140%);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      transparent 0,
      rgba(141, 241, 158, .08) 18%,
      rgba(130, 244, 255, .5) 50%,
      rgba(141, 241, 158, .08) 82%,
      transparent 100%
    );
  opacity: .45;
}

.brand-mark {
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 241, 158, .15), transparent 68%);
  filter: blur(8px);
}

.brand-mark img {
  filter:
    drop-shadow(0 0 7px rgba(141, 241, 158, .18))
    drop-shadow(0 0 14px rgba(130, 244, 255, .08));
}

.brand-copy strong {
  text-shadow: 0 0 18px rgba(141, 241, 158, .08);
}

.header-link {
  position: relative;
  transition: color .14s ease, text-shadow .14s ease;
}

.header-link::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -9px;
  height: 1px;
  background: linear-gradient(90deg, var(--green), var(--holo-cyan));
  transition: left .16s ease, right .16s ease, opacity .16s ease;
  opacity: 0;
}

.header-link:hover {
  color: #dfffe8;
  text-shadow: 0 0 10px rgba(130, 244, 255, .16);
}

.header-link:hover::after {
  left: 0;
  right: 0;
  opacity: .8;
}

.rpc-state {
  position: relative;
  overflow: hidden;
  border-color: rgba(130, 244, 255, .12);
  background:
    linear-gradient(90deg, rgba(141, 241, 158, .04), rgba(130, 244, 255, .025));
}

.rpc-state.online {
  border-color: rgba(141, 241, 158, .25);
  box-shadow:
    inset 0 0 12px rgba(141, 241, 158, .03),
    0 0 18px rgba(141, 241, 158, .035);
}

.observatory-mast {
  position: relative;
  overflow: hidden;
  border-bottom-color: rgba(130, 244, 255, .11);
}

.observatory-mast::before,
.observatory-mast::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 12px;
  pointer-events: none;
}

.observatory-mast::before {
  left: 0;
  top: 7px;
  border-left: 1px solid rgba(130, 244, 255, .28);
  border-top: 1px solid rgba(130, 244, 255, .28);
}

.observatory-mast::after {
  right: 0;
  bottom: 5px;
  border-right: 1px solid rgba(141, 241, 158, .25);
  border-bottom: 1px solid rgba(141, 241, 158, .25);
}

.signal-line {
  color: var(--holo-cyan);
}

.signal-pulse {
  background: var(--holo-cyan);
  box-shadow:
    0 0 8px rgba(130, 244, 255, .85),
    0 0 20px rgba(130, 244, 255, .32);
}

.mast-title strong {
  color: transparent;
  background:
    linear-gradient(100deg, #f3fff5 0%, var(--green-hot) 58%, var(--holo-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 34px rgba(141, 241, 158, .07);
}

.mast-slash {
  color: rgba(130, 244, 255, .58);
  text-shadow: 0 0 12px rgba(130, 244, 255, .18);
}

.mast-channel {
  color: var(--holo-cyan);
  text-shadow:
    0 0 9px rgba(130, 244, 255, .22),
    0 0 22px rgba(141, 241, 158, .07);
}

.mast-subtitle > span {
  color: rgba(130, 244, 255, .55);
  border-left-color: rgba(130, 244, 255, .16);
}

.mast-telemetry {
  position: relative;
  background:
    linear-gradient(120deg, rgba(141, 241, 158, .025), rgba(130, 244, 255, .018));
  box-shadow:
    inset 0 1px 0 rgba(130, 244, 255, .055),
    inset 0 -1px 0 rgba(141, 241, 158, .045);
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
}

.mast-telemetry > span {
  border-right-color: rgba(130, 244, 255, .09);
}

.mast-telemetry strong {
  color: var(--holo-cyan);
}

.search-zone {
  border-bottom-color: rgba(130, 244, 255, .105);
}

.search-label > span {
  color: var(--holo-cyan);
  text-shadow: 0 0 12px rgba(130, 244, 255, .11);
}

.search {
  position: relative;
  overflow: hidden;
  border-left-color: rgba(130, 244, 255, .22);
  background:
    linear-gradient(90deg, rgba(130, 244, 255, .018), rgba(141, 241, 158, .018));
  box-shadow:
    inset 0 0 24px rgba(130, 244, 255, .012),
    0 0 0 1px rgba(130, 244, 255, .025);
}

.search::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -28%;
  width: 22%;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(130, 244, 255, .055), transparent);
  transform: skewX(-18deg);
  animation: holo-scan 7s linear infinite;
}

.search-icon {
  color: var(--holo-cyan);
  text-shadow: 0 0 9px rgba(130, 244, 255, .22);
}

.search button {
  position: relative;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  background:
    linear-gradient(100deg, var(--green), #94f5af 55%, var(--holo-cyan));
}

.telemetry-rail {
  position: relative;
  overflow: hidden;
  border-top-color: rgba(130, 244, 255, .12);
  border-bottom-color: rgba(130, 244, 255, .12);
  background:
    linear-gradient(90deg, rgba(141, 241, 158, .012), rgba(130, 244, 255, .014), rgba(141, 241, 158, .012));
}

.telemetry-rail::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -18%;
  width: 12%;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(130, 244, 255, .035), transparent);
  transform: skewX(-16deg);
  animation: rail-pass 9s linear infinite;
}

.telemetry-cell {
  position: relative;
  border-right-color: rgba(130, 244, 255, .075);
}

.telemetry-cell::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 1px;
  height: 18px;
  background: linear-gradient(var(--holo-cyan), transparent);
  opacity: .24;
}

.telemetry-cell > span {
  color: var(--holo-cyan);
}

.observatory-strip {
  border-bottom-color: rgba(130, 244, 255, .09);
}

.observatory-label span,
.observatory-source {
  color: var(--holo-cyan);
}

.rhythm-tick {
  background:
    linear-gradient(180deg, var(--holo-cyan) 0%, var(--green-hot) 48%, rgba(89, 205, 108, .16) 100%);
  box-shadow: 0 0 8px rgba(130, 244, 255, .035);
}

.rail-heading {
  position: relative;
  border-bottom-color: rgba(130, 244, 255, .12);
}

.rail-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 94px;
  height: 1px;
  background: linear-gradient(90deg, var(--holo-cyan), var(--green), transparent);
  opacity: .7;
}

.rail-heading span {
  color: var(--holo-cyan);
}

.chain-tape::before {
  background:
    linear-gradient(
      180deg,
      transparent 0,
      rgba(130, 244, 255, .11) 3%,
      rgba(141, 241, 158, .28) 22%,
      rgba(130, 244, 255, .16) 50%,
      rgba(141, 241, 158, .28) 78%,
      rgba(130, 244, 255, .11) 97%,
      transparent 100%
    );
  box-shadow:
    0 0 8px rgba(141, 241, 158, .06),
    0 0 15px rgba(130, 244, 255, .035);
}

.chain-tape-row {
  position: relative;
  overflow: hidden;
}

.chain-tape-row::after {
  content: "";
  position: absolute;
  left: 54px;
  right: 0;
  bottom: 0;
  height: 1px;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(130, 244, 255, .065), rgba(141, 241, 158, .025), transparent 82%);
}

.chain-tape-row:hover {
  background:
    linear-gradient(90deg, rgba(130, 244, 255, .026), rgba(141, 241, 158, .025) 35%, transparent 84%);
}

.chain-tape-row.is-tip {
  background:
    linear-gradient(90deg, rgba(130, 244, 255, .05), rgba(141, 241, 158, .055) 24%, transparent 76%);
}

.chain-tape-row.is-tip::before {
  content: "";
  position: absolute;
  left: 52px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--holo-cyan);
  box-shadow: 0 0 12px rgba(130, 244, 255, .5);
}

.tape-block-icon .weave-front {
  stroke: #d5ffe0;
  filter:
    drop-shadow(0 0 3px rgba(141, 241, 158, .42))
    drop-shadow(0 0 5px rgba(130, 244, 255, .16));
}

.chain-tape-row:nth-child(3n) .tape-block-icon .block-top {
  fill: rgba(130, 244, 255, .15);
}

.chain-tape-row:nth-child(3n) .tape-block-icon .block-face {
  stroke: rgba(130, 244, 255, .66);
}

.tape-height {
  text-shadow: 0 0 16px rgba(141, 241, 158, .055);
}

.tape-open,
.ledger-open {
  color: var(--holo-cyan);
}

.ledger-header {
  position: relative;
  overflow: hidden;
  border-bottom-color: rgba(130, 244, 255, .12);
}

.ledger-header::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -90px;
  top: -110px;
  border: 1px solid rgba(130, 244, 255, .07);
  border-radius: 50%;
  box-shadow:
    0 0 0 26px rgba(141, 241, 158, .012),
    0 0 0 52px rgba(130, 244, 255, .008);
  pointer-events: none;
}

.ledger-kind {
  color: var(--holo-cyan);
}

.ledger-dot {
  background: var(--holo-cyan);
  box-shadow:
    0 0 8px rgba(130, 244, 255, .8),
    0 0 18px rgba(141, 241, 158, .16);
}

.ledger-actions a {
  color: var(--holo-cyan);
}

.rail-filter input,
.rail-filter select,
.rail-filter button {
  border-right-color: rgba(130, 244, 255, .075);
}

.rail-filter input:focus,
.rail-filter select:focus {
  background:
    linear-gradient(90deg, rgba(130, 244, 255, .026), rgba(141, 241, 158, .018));
}

.rail-filter button {
  clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
  background: linear-gradient(100deg, var(--green), var(--holo-cyan));
}

.asset-matrix-row:hover,
.node-stream-row:hover,
.ledger-row:hover,
.holder-rail-row:hover {
  background:
    linear-gradient(90deg, rgba(130, 244, 255, .022), rgba(141, 241, 158, .018), transparent 72%);
}

.node-status-dot.status-enabled {
  background: var(--holo-cyan);
  box-shadow:
    0 0 7px rgba(130, 244, 255, .5),
    0 0 14px rgba(141, 241, 158, .12);
}

.node-payout-wrap small,
.output-rail-address small {
  color: var(--holo-cyan);
}

.flow-rail .flow-center {
  background:
    linear-gradient(90deg, rgba(130, 244, 255, .018), rgba(141, 241, 158, .032), rgba(130, 244, 255, .018));
  border-left-color: rgba(130, 244, 255, .09);
  border-right-color: rgba(130, 244, 255, .09);
}

.flow-rail .flow-center b {
  color: var(--holo-cyan);
  text-shadow: 0 0 14px rgba(130, 244, 255, .08);
}

.site-footer {
  position: relative;
  border-top-color: rgba(130, 244, 255, .09);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -1px;
  width: min(520px, 68vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--holo-cyan), var(--green), transparent);
  opacity: .28;
}

@keyframes holo-scan {
  from { left: -28%; }
  to { left: 112%; }
}

@keyframes rail-pass {
  from { left: -18%; }
  to { left: 108%; }
}

@media (max-width: 700px) {
  body::after {
    opacity: .34;
    background-size: 42px 34px;
  }

  .mast-telemetry {
    clip-path: none;
  }

  .chain-tape-row.is-tip::before {
    left: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .search::before,
  .telemetry-rail::after {
    animation: none;
    display: none;
  }

  .header-link,
  .header-link::after {
    transition: none;
  }
}


/* ==========================================================================
   Explorer 3.5 — factual block telemetry
   Remove ambiguous composite activity meters; visualize TX count only.
   ========================================================================== */

.chain-tape-row {
  grid-template-columns: 54px 118px 88px 66px 100px minmax(260px, 1fr) 22px;
}

.tape-hash {
  color: #8aa294;
}

.rhythm-line {
  position: relative;
  padding-top: 4px;
  border-bottom: 1px solid rgba(130, 244, 255, .08);
}

.rhythm-tick {
  cursor: help;
  min-height: 5px;
}

.observatory-source {
  white-space: nowrap;
}

@media (max-width: 1120px) {
  .chain-tape-row {
    grid-template-columns: 50px 108px 82px 60px 90px minmax(190px, 1fr) 20px;
  }
}

@media (max-width: 900px) {
  .chain-tape-row {
    grid-template-columns: 46px 102px 78px 54px 82px minmax(130px, 1fr) 18px;
  }
}

@media (max-width: 700px) {
  .chain-tape-row {
    grid-template-columns: 42px 100px 68px 50px 1fr 18px;
  }

  .tape-hash {
    display: none;
  }
}


/* ==========================================================================
   Explorer 3.6 — full-history chain tape pagination
   ========================================================================== */

.chain-pagination {
  min-height: 46px;
  display: grid;
  grid-template-columns: minmax(72px, .8fr) minmax(86px, 1fr) minmax(130px, 1.2fr) minmax(86px, 1fr) minmax(72px, .8fr);
  align-items: stretch;
  border-bottom: 1px solid rgba(130, 244, 255, .11);
  background:
    linear-gradient(90deg, rgba(130, 244, 255, .012), rgba(141, 241, 158, .016), rgba(130, 244, 255, .012));
}

.chain-pagination > * {
  min-width: 0;
  display: grid;
  place-items: center;
  padding: 0 10px;
  border-right: 1px solid rgba(130, 244, 255, .07);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .10em;
  white-space: nowrap;
}

.chain-pagination > *:last-child {
  border-right: 0;
}

.chain-pagination a {
  color: var(--holo-cyan);
  transition: background .14s ease, color .14s ease, text-shadow .14s ease;
}

.chain-pagination a:hover {
  color: #e4fff0;
  background:
    linear-gradient(90deg, rgba(130, 244, 255, .028), rgba(141, 241, 158, .025));
  text-shadow: 0 0 10px rgba(130, 244, 255, .18);
}

.chain-pagination .disabled {
  color: rgba(127, 153, 134, .36);
}

.chain-page-status {
  color: var(--green-hot);
  background: rgba(141, 241, 158, .018);
}

@media (max-width: 700px) {
  .chain-pagination {
    grid-template-columns: 1fr 1fr 1.35fr 1fr 1fr;
  }

  .chain-pagination > * {
    padding: 0 5px;
    font-size: 7px;
    letter-spacing: .06em;
  }
}

@media (max-width: 480px) {
  .chain-pagination {
    grid-template-columns: 1fr 1fr 1.25fr 1fr;
  }

  .chain-pagination > :first-child {
    display: none;
  }

  .chain-pagination > :last-child {
    border-right: 0;
  }
}


/* ==========================================================================
   Explorer 3.7 — Market observatory
   ========================================================================== */

.market-matrix,
.market-trade-list,
.orderbook-list {
  border-bottom: 1px solid rgba(130, 244, 255, .10);
}

.market-matrix-row {
  min-height: 50px;
  display: grid;
  grid-template-columns: 110px 120px 110px 80px 120px 100px 130px 18px;
  gap: 10px;
  align-items: center;
  padding: 0 4px;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(130, 244, 255, .06);
}

.market-matrix-row:hover {
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(130, 244, 255, .025), rgba(141, 241, 158, .02), transparent 74%);
}

.market-exchange {
  display: grid;
  gap: 2px;
}

.market-exchange b {
  font-size: 12px;
}

.market-exchange small,
.market-matrix-row small {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .08em;
  color: var(--muted);
}

.market-matrix-row > span:not(.market-exchange):not(.ledger-open) {
  display: grid;
  gap: 2px;
  font-family: var(--mono);
  font-size: 10px;
}

.market-matrix-row > strong {
  font-size: 14px;
  letter-spacing: -.02em;
}

.market-up {
  color: var(--green-hot) !important;
}

.market-down {
  color: #ff8f9b !important;
}

.market-value-rail,
.market-liquidity-rail {
  display: grid;
  border-bottom: 1px solid rgba(130, 244, 255, .10);
}

.market-value-rail {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.market-liquidity-rail {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background:
    linear-gradient(90deg, rgba(141, 241, 158, .012), rgba(130, 244, 255, .014));
}

.market-value-rail > span,
.market-liquidity-rail > span {
  min-width: 0;
  min-height: 68px;
  padding: 10px 13px;
  display: grid;
  align-content: center;
  gap: 3px;
  border-right: 1px solid rgba(130, 244, 255, .075);
}

.market-value-rail > span:last-child,
.market-liquidity-rail > span:last-child {
  border-right: 0;
}

.market-value-rail small,
.market-liquidity-rail small {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .10em;
  color: var(--holo-cyan);
}

.market-value-rail b,
.market-liquidity-rail b {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 620;
}

.market-value-rail em {
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--mono);
  font-size: 8px;
  font-style: normal;
  color: var(--muted);
}

.market-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 18px;
}

.market-pane {
  min-width: 0;
}

.orderbook-head,
.orderbook-row {
  display: grid;
  grid-template-columns: 120px minmax(100px, 1fr) 100px 90px;
  gap: 10px;
  align-items: center;
}

.orderbook-head {
  min-height: 30px;
  padding: 0 4px;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .08em;
  color: var(--muted);
  border-bottom: 1px solid rgba(130, 244, 255, .08);
}

.orderbook-row {
  min-height: 39px;
  padding: 0 4px;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(130, 244, 255, .05);
}

.orderbook-row:hover {
  background: rgba(130, 244, 255, .018);
}

.orderbook-row.bid > span:first-child {
  color: var(--green-hot);
}

.orderbook-row.ask > span:first-child {
  color: #ff8f9b;
}

.order-depth {
  display: block;
  height: 2px;
  background: rgba(130, 244, 255, .07);
}

.order-depth.level-1 { width: 10%; }
.order-depth.level-2 { width: 20%; }
.order-depth.level-3 { width: 30%; }
.order-depth.level-4 { width: 40%; }
.order-depth.level-5 { width: 50%; }
.order-depth.level-6 { width: 60%; }
.order-depth.level-7 { width: 70%; }
.order-depth.level-8 { width: 80%; }
.order-depth.level-9 { width: 90%; }
.order-depth.level-10 { width: 100%; }

.orderbook-row.bid .order-depth {
  background: linear-gradient(90deg, rgba(141, 241, 158, .35), var(--green-hot));
}

.orderbook-row.ask .order-depth {
  background: linear-gradient(90deg, rgba(255, 143, 155, .26), #ff8f9b);
}

.market-trade-head,
.market-trade-row {
  display: grid;
  grid-template-columns: 64px 130px 130px 110px minmax(150px, 1fr);
  gap: 10px;
  align-items: center;
}

.market-trade-head {
  min-height: 30px;
  padding: 0 4px;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .08em;
  color: var(--muted);
  border-bottom: 1px solid rgba(130, 244, 255, .08);
}

.market-trade-row {
  min-height: 40px;
  padding: 0 4px;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(130, 244, 255, .05);
}

.market-trade-row:hover {
  background:
    linear-gradient(90deg, rgba(130, 244, 255, .018), rgba(141, 241, 158, .012), transparent);
}

.trade-side {
  font-weight: 700;
  letter-spacing: .08em;
}

.market-trade-row.buy .trade-side {
  color: var(--green-hot);
}

.market-trade-row.sell .trade-side {
  color: #ff8f9b;
}

.market-disclaimer {
  margin-top: 16px;
  padding: 10px 0;
  border-top: 1px solid rgba(130, 244, 255, .08);
  font-family: var(--mono);
  font-size: 8px;
  line-height: 1.55;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .market-matrix-row {
    grid-template-columns: 90px 100px 100px 72px 100px 90px 18px;
  }

  .market-matrix-row > span:nth-of-type(5) {
    display: none;
  }

  .market-liquidity-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .market-liquidity-rail > span:nth-child(3) {
    border-right: 0;
  }
}

@media (max-width: 900px) {
  .market-split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .market-value-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .market-value-rail > span:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 700px) {
  .market-matrix-row {
    grid-template-columns: 74px 88px minmax(84px, 1fr) 64px 18px;
  }

  .market-matrix-row > span:nth-of-type(3),
  .market-matrix-row > span:nth-of-type(4),
  .market-matrix-row > span:nth-of-type(5) {
    display: none;
  }

  .market-liquidity-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .market-liquidity-rail > span {
    border-right: 1px solid rgba(130, 244, 255, .075);
  }

  .market-liquidity-rail > span:nth-child(2n) {
    border-right: 0;
  }

  .orderbook-head,
  .orderbook-row {
    grid-template-columns: 100px minmax(90px, 1fr) 82px 70px;
  }

  .market-trade-head,
  .market-trade-row {
    grid-template-columns: 52px 110px 100px minmax(120px, 1fr);
  }

  .market-trade-head > :nth-child(4),
  .market-trade-row > :nth-child(4) {
    display: none;
  }
}

@media (max-width: 520px) {
  .market-value-rail,
  .market-liquidity-rail {
    grid-template-columns: 1fr;
  }

  .market-value-rail > span,
  .market-liquidity-rail > span {
    border-right: 0;
    border-bottom: 1px solid rgba(130, 244, 255, .05);
  }

  .orderbook-head,
  .orderbook-row {
    grid-template-columns: 92px minmax(80px, 1fr) 68px;
  }

  .orderbook-head > :last-child,
  .orderbook-row > :last-child {
    display: none;
  }

  .market-trade-head,
  .market-trade-row {
    grid-template-columns: 48px 98px minmax(90px, 1fr);
  }

  .market-trade-head > :nth-child(4),
  .market-trade-row > :nth-child(4),
  .market-trade-head > :nth-child(5),
  .market-trade-row > :nth-child(5) {
    display: none;
  }
}


/* ==========================================================================
   Explorer 3.8 — six-confirmation block maturity
   ========================================================================== */

.tape-age {
  display: grid;
  align-content: center;
  gap: 2px;
}

.tape-confirmation {
  font-family: var(--mono);
  font-size: 7px;
  line-height: 1;
  letter-spacing: .08em;
  white-space: nowrap;
}

.tape-block-icon .block-check {
  fill: none;
  stroke: var(--green-hot);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  filter: drop-shadow(0 0 3px rgba(141, 241, 158, .55));
  transition: opacity .16s ease;
}

/* 1–5 confirmations: holographic / still maturing. */
.chain-tape-row.is-confirming .tape-confirmation {
  color: var(--holo-cyan);
}

.chain-tape-row.is-confirming .tape-block-icon .block-face {
  stroke: rgba(130, 244, 255, .82);
}

.chain-tape-row.is-confirming .tape-block-icon .block-top {
  fill: rgba(130, 244, 255, .13);
}

.chain-tape-row.is-confirming .tape-block-icon .block-left {
  fill: rgba(73, 165, 182, .07);
}

.chain-tape-row.is-confirming .tape-block-icon .block-right {
  fill: rgba(130, 244, 255, .035);
}

.chain-tape-row.is-confirming .tape-block-icon .weave-front,
.chain-tape-row.is-confirming .tape-block-icon .chain-core-line {
  stroke: var(--holo-cyan);
}

.chain-tape-row.is-confirming .tape-block-icon {
  filter:
    drop-shadow(0 0 5px rgba(130, 244, 255, .25))
    drop-shadow(0 2px 2px rgba(0, 0, 0, .32));
}

/* 6+ confirmations: solid Yerbas-green confirmed block. */
.chain-tape-row.is-confirmed .tape-confirmation {
  color: var(--green-hot);
}

.chain-tape-row.is-confirmed .tape-block-icon .block-face {
  stroke: rgba(181, 255, 192, .96);
}

.chain-tape-row.is-confirmed .tape-block-icon .block-top {
  fill: rgba(141, 241, 158, .52);
}

.chain-tape-row.is-confirmed .tape-block-icon .block-left {
  fill: rgba(88, 199, 107, .30);
}

.chain-tape-row.is-confirmed .tape-block-icon .block-right {
  fill: rgba(141, 241, 158, .20);
}

.chain-tape-row.is-confirmed .tape-block-icon .weave-front,
.chain-tape-row.is-confirmed .tape-block-icon .chain-core-line {
  stroke: var(--green-hot);
}

.chain-tape-row.is-confirmed .tape-block-icon .block-check {
  opacity: 1;
}

.chain-tape-row.is-confirmed .tape-block-icon {
  filter:
    drop-shadow(0 0 5px rgba(141, 241, 158, .34))
    drop-shadow(0 0 10px rgba(141, 241, 158, .10))
    drop-shadow(0 2px 2px rgba(0, 0, 0, .32));
}

.chain-tape-row.is-confirmed .tape-height {
  color: #e9ffed;
}

/* The live tip is still visually strongest, but remains in confirming state. */
.chain-tape-row.is-tip.is-confirming .tape-block-icon {
  filter:
    drop-shadow(0 0 7px rgba(130, 244, 255, .62))
    drop-shadow(0 0 16px rgba(130, 244, 255, .22));
}

@media (max-width: 700px) {
  .tape-confirmation {
    font-size: 6px;
  }
}


/* ==========================================================================
   Explorer 3.9 — IPFS asset display
   ========================================================================== */

.asset-ipfs-ref {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
}

.asset-ipfs-ref:hover {
  color: var(--text);
}

.asset-ipfs-ref code {
  min-width: 0;
  overflow-wrap: anywhere;
}

.asset-ipfs-ref span {
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .08em;
  color: var(--holo-cyan);
}

.ipfs-display {
  margin-top: 18px;
  border-top: 1px solid rgba(130, 244, 255, .12);
  border-bottom: 1px solid rgba(130, 244, 255, .12);
  background:
    linear-gradient(180deg, rgba(130, 244, 255, .012), rgba(141, 241, 158, .01));
}

.ipfs-display-head {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 4px;
  border-bottom: 1px solid rgba(130, 244, 255, .08);
}

.ipfs-display-head > div {
  display: grid;
  gap: 2px;
}

.ipfs-display-head span {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .12em;
  color: var(--holo-cyan);
}

.ipfs-display-head strong {
  font-size: 18px;
  letter-spacing: -.02em;
}

.ipfs-display-head > a {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .08em;
  color: var(--green-hot);
}

.ipfs-frame-shell {
  position: relative;
  min-height: 360px;
  background:
    radial-gradient(circle at 50% 0, rgba(130, 244, 255, .035), transparent 38%),
    rgba(2, 8, 5, .72);
  overflow: hidden;
}

.ipfs-frame-shell::before,
.ipfs-frame-shell::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 2;
  pointer-events: none;
}

.ipfs-frame-shell::before {
  left: 8px;
  top: 8px;
  border-left: 1px solid rgba(130, 244, 255, .28);
  border-top: 1px solid rgba(130, 244, 255, .28);
}

.ipfs-frame-shell::after {
  right: 8px;
  bottom: 8px;
  border-right: 1px solid rgba(141, 241, 158, .28);
  border-bottom: 1px solid rgba(141, 241, 158, .28);
}

.ipfs-frame {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
  background: #fff;
}

.ipfs-display-foot {
  min-height: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 0 4px;
  border-top: 1px solid rgba(130, 244, 255, .08);
}

.ipfs-display-foot code {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 9px;
}

.ipfs-display-foot span {
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .1em;
  color: var(--holo-cyan);
}

@media (max-width: 700px) {
  .asset-ipfs-ref {
    grid-template-columns: 1fr;
  }

  .asset-ipfs-ref span {
    white-space: normal;
  }

  .ipfs-display-head {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .ipfs-frame {
    min-height: 340px;
  }

  .ipfs-display-foot {
    grid-template-columns: 1fr;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .ipfs-display-foot span {
    white-space: normal;
  }
}


/* ==========================================================================
   Explorer 4.0 — adaptive network-map pins
   Geographic positions zoom normally; pin symbols scale only gently.
   ========================================================================== */

.network-map-pins {
  --network-pin-scale: 1;
  --network-pin-hover-scale: 1.16;
}

.network-pin {
  will-change: transform;
}

.network-pin.cluster {
  width: 22px;
  height: 22px;
}

.network-pin.cluster span {
  font-size: 8px;
  line-height: 1;
}

@media (max-width: 700px) {
  .network-pin.cluster {
    width: 20px;
    height: 20px;
  }

  .network-pin.cluster span {
    font-size: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .network-pin {
    transition: none;
  }
}
