/* ============================================================================
   SUBDEX — full-bleed instrument. Rules, in priority order:
     1. No wasted space. No page margins, no max-width, no decorative padding.
     2. Three views only. One question each.
     3. Every number that can be a shape is a shape.
     4. Colour = meaning. Blue is identity, green/amber/red are payout states.
   ========================================================================== */

:root {
  --bg:      #070a12;
  --bg-1:    #0a0e18;
  --bg-2:    #0e1420;
  --bg-3:    #141b2b;

  --line:    #161d2c;
  --line-2:  #222c42;
  --line-3:  #31405c;

  --text:    #e9edf6;
  --text-2:  #a8b2c7;
  --text-3:  #6d7891;
  --text-4:  #4b5670;

  --brand:   #4c8dff;
  --brand-2: #7db0ff;

  --ok:      #34d17c;
  --warn:    #dda845;
  --bad:     #e0685c;
  --idle:    #3b465e;

  --mono: ui-monospace, "SF Mono", "JetBrains Mono", "Cascadia Mono", Menlo, Consolas, monospace;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scrollbar-gutter: stable; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--sans); font-size: 13.5px; line-height: 1.55;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  min-height: 100vh; display: flex; flex-direction: column;
  overflow-x: hidden;   /* nothing gets to shove the page sideways */
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: rgba(76,141,255,.3); }

.shell { width: 100%; padding: 0; }
main.shell { flex: 1 0 auto; }

.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; letter-spacing: -.01em; }
.pos { color: var(--ok); } .neg { color: var(--bad); } .warn2 { color: var(--warn); } .muted { color: var(--text-4); }

/* ---------------------------------------------------------------- header -- */
header.top {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7,10,18,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.top-inner { display: flex; align-items: center; height: 48px; }

.brand { display: flex; align-items: center; gap: 10px; padding: 0 14px; height: 100%; border-right: 1px solid var(--line); flex: 0 0 auto; }
.brand .mark { border-radius: 50%; box-shadow: 0 0 0 1px rgba(76,141,255,.28), 0 0 14px rgba(76,141,255,.14); width: 26px; height: 26px; }
.brand .word { font-weight: 700; letter-spacing: .12em; font-size: 13px; }

.nav { display: flex; height: 100%; }
.nav a {
  position: relative; display: flex; align-items: center; padding: 0 16px; height: 100%;
  font-size: 12.5px; font-weight: 550; color: var(--text-3);
  border-right: 1px solid var(--line); transition: color .15s var(--ease);
}
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: var(--brand); transform: scaleX(0); transition: transform .2s var(--ease);
}
.nav a:hover { color: var(--text-2); }
.nav a.on { color: var(--text); }
.nav a.on::after { transform: scaleX(1); }

.searchwrap { position: relative; margin-left: auto; flex: 0 1 380px; padding: 0 10px; }
#search {
  width: 100%; padding: 6px 12px; border-radius: 8px; outline: none;
  background: var(--bg-2); border: 1px solid var(--line-2); color: var(--text);
  font-size: 12.5px; transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
#search::placeholder { color: var(--text-4); }
#search:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(76,141,255,.14); }

.results {
  position: absolute; top: calc(100% + 6px); left: 10px; right: 10px; z-index: 60;
  background: var(--bg-1); border: 1px solid var(--line-2); border-radius: 10px;
  box-shadow: 0 24px 60px -12px rgba(0,0,0,.8); overflow: hidden; max-height: 420px; overflow-y: auto;
}
.results .r {
  display: flex; align-items: baseline; gap: 10px; width: 100%; text-align: left;
  padding: 9px 13px; border-bottom: 1px solid var(--line); font-size: 13px;
}
.results .r:last-child { border-bottom: none; }
.results .r:hover, .results .r.hot { background: var(--bg-2); }
.results .r b { font-weight: 600; }
.results .r .n { color: var(--text-3); font-size: 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.results .r .e { margin-left: auto; color: var(--text-3); font-size: 11.5px; white-space: nowrap; font-family: var(--mono); }
.results .none { padding: 11px 13px; color: var(--text-3); font-size: 12.5px; }

/* live payout ticker in the command bar */
.ticker {
  margin-left: auto; display: flex; align-items: center; overflow: hidden;
  font-family: var(--mono); font-size: 11px; color: var(--text-3); white-space: nowrap;
  max-width: 380px; height: 100%;
}
.ticker .t {
  display: inline-flex; align-items: center; gap: 6px; padding: 0 10px;
  animation: tickin .35s var(--ease);
}
.ticker .t b { color: var(--ok); font-weight: 650; }
.ticker .t .to { color: var(--text-4); }
@keyframes tickin { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.ticker:not(:empty) + .searchwrap { margin-left: 0; }

.themebtn {
  width: 26px; height: 26px; border-radius: 8px; flex: none; margin-right: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text-3); border: 1px solid var(--line-2);
  transition: all .15s var(--ease);
}
.themebtn:hover { color: var(--brand-2); border-color: rgba(76,141,255,.5); }

.livedot { width: 8px; height: 8px; border-radius: 50%; background: var(--text-4); flex: 0 0 auto; margin-right: 14px; }
.livedot.flash { animation: dotflash .5s var(--ease); }
@keyframes dotflash { 0% { transform: scale(1); } 40% { transform: scale(2.1); } 100% { transform: scale(1); } }
.livedot.ok { background: var(--ok); box-shadow: 0 0 8px rgba(52,209,124,.6); }
.livedot.bad { background: var(--bad); }

/* ----------------------------------------------------------------- panel -- */
.panel { border-bottom: 1px solid var(--line); background: var(--bg-1); }
.panel > h2 {
  display: flex; align-items: baseline; gap: 10px;
  font-size: 11px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-2); padding: 8px 14px; border-bottom: 1px solid var(--line);
}
.panel > h2 .sub { font-size: 11.5px; color: var(--text-4); font-weight: 400; letter-spacing: 0; text-transform: none; }
.panel > h2 .right { margin-left: auto; display: flex; gap: 6px; align-items: center; }
.panel .pad { padding: 12px 14px; }
.pgrid { display: grid; gap: 1px; background: var(--line); }
.pgrid > .panel { border-bottom: none; }
.pgrid.c2 { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
.pgrid.c3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
@media (max-width: 980px) { .pgrid.c2, .pgrid.c3 { grid-template-columns: 1fr; } }

/* -------------------------------------------------------------- KPI rail -- */
.kpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); border-bottom: 1px solid var(--line); background: var(--bg-1); }
.kpi { padding: 9px 14px 10px; border-right: 1px solid var(--line); }
.kpi .k { font-size: 9.5px; letter-spacing: .09em; text-transform: uppercase; color: var(--text-4); font-weight: 650; }
.kpi .v { font-size: 20px; font-weight: 650; font-family: var(--mono); font-variant-numeric: tabular-nums; letter-spacing: -.03em; margin-top: 2px; line-height: 1.1; }
.kpi .s { font-size: 10px; color: var(--text-4); margin-top: 1px; }
.kpi .v.ok { color: var(--ok); } .kpi .v.warn { color: var(--warn); } .kpi .v.bad { color: var(--bad); } .kpi .v.brand { color: var(--brand-2); }

/* ------------------------------------------------------- launchpad pulse -- */
.pulseread { padding: 9px 14px 3px; font-size: 12.5px; color: var(--text-2); }
.pulseread b { font-family: var(--mono); color: var(--text); }
.pulseread .ok { color: var(--ok); } .pulseread .bad { color: var(--bad); } .pulseread .warn { color: var(--warn); }
.pulsebar { display: flex; height: 18px; overflow: hidden; margin-top: 6px; }
.pulsebar .seg {
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: rgba(255,255,255,.9);
  font-family: var(--mono); overflow: hidden; white-space: nowrap; min-width: 0;
}
.pulselegend { display: flex; gap: 14px; flex-wrap: wrap; font-size: 10.5px; color: var(--text-3); padding: 6px 14px 8px; }
.pulselegend b { color: var(--text-2); font-family: var(--mono); font-weight: 600; }
.pulselegend i { display: inline-block; width: 8px; height: 8px; border-radius: 2px; margin-right: 5px; vertical-align: -1px; }

.heatgrid { display: flex; flex-wrap: wrap; gap: 3px; padding: 10px 14px 12px; }
.heatgrid a {
  width: 13px; height: 13px; border-radius: 3px; background: var(--idle);
  transition: transform .12s var(--ease);
}
.heatgrid a:hover { transform: scale(1.45); outline: 1px solid var(--text-2); z-index: 2; }

/* --------------------------------------------------------------- toolbar -- */
.toolbar {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  padding: 7px 14px; border-bottom: 1px solid var(--line); background: var(--bg-1);
}
.chip {
  padding: 4px 11px; border-radius: 999px; font-size: 11.5px; font-weight: 550;
  color: var(--text-3); border: 1px solid transparent; transition: all .15s var(--ease);
}
.chip:hover { color: var(--text-2); }
.chip.on { color: var(--brand-2); background: rgba(76,141,255,.1); border-color: rgba(76,141,255,.35); }
.toolbar .spacer { flex: 1; }
.toolbar .count { color: var(--text-4); font-size: 11.5px; font-family: var(--mono); }

/* ----------------------------------------------------------------- table -- */
.tablewrap { overflow-x: auto; }
table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 12.5px; }
thead th {
  /* .tablewrap (overflow-x) is the sticky context — top must be 0, not the
     page-header offset, or the header parks itself on top of the rows. */
  position: sticky; top: 0; z-index: 20; background: var(--bg-2);
  box-shadow: 0 1px 0 var(--line-2), 0 -1px 0 var(--line-2);
  text-align: right; padding: 6px 12px; white-space: nowrap;
  font-size: 10px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; color: var(--text-4);
  border-bottom: 1px solid var(--line-2); user-select: none;
}
thead th.l { text-align: left; }
thead th.sortable { cursor: pointer; }
thead th.sortable:hover { color: var(--text-2); }
thead th .arr { color: var(--brand); margin-left: 3px; }
tbody td {
  padding: 4px 7px; text-align: right; white-space: nowrap;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono); font-variant-numeric: tabular-nums; color: var(--text-2);
  font-size: 12px;
}
tbody td.l { text-align: left; font-family: var(--sans); }
tbody tr.click { cursor: pointer; transition: background .12s var(--ease); background: var(--tint, transparent); }
tbody tr.click:hover { background: rgba(76,141,255,.06); }
thead th { padding: 5px 8px; }

.coincell { display: flex; align-items: center; gap: 7px; }
.coincell .avatar { width: 22px; height: 22px; border-radius: 50%; flex: none; background: var(--bg-3); object-fit: cover; }
.sym { font-weight: 650; color: var(--text); font-size: 12.5px; line-height: 1.25; }
.nm { color: var(--text-4); font-size: 10.5px; max-width: 118px; overflow: hidden; text-overflow: ellipsis; line-height: 1.2; }

/* holder:creator allocation split */
.alloc { display: inline-flex; align-items: center; gap: 5px; }
.alloc .track { width: 28px; height: 5px; border-radius: 3px; overflow: hidden; display: flex; background: var(--bg-3); }
.alloc .track i { display: block; height: 100%; }
.hdelta { font-size: 10.5px; margin-left: 5px; }

/* value + proportional bar, stacked tight */
.vbar { display: inline-flex; flex-direction: column; align-items: flex-end; gap: 2px; min-width: 56px; }
.vbar .track { width: 100%; max-width: 68px; height: 3px; border-radius: 2px; background: var(--bg-3); overflow: hidden; }
.vbar .track > i { display: block; height: 100%; border-radius: 2px; }

/* payout cycle cell: epoch + progress toward deadline */
.cyc { display: flex; flex-direction: column; gap: 2px; min-width: 102px; }
.cyc .row1 { display: flex; align-items: baseline; gap: 6px; }
.cyc b { color: var(--text); font-weight: 600; font-family: var(--mono); font-size: 11.5px; }
.cyc .due { font-size: 10.5px; color: var(--text-3); font-family: var(--mono); }
.cyc .due.ok { color: var(--ok); } .cyc .due.late { color: var(--warn); } .cyc .due.bad { color: var(--bad); }
.cyc .track { height: 3px; border-radius: 2px; background: var(--bg-3); overflow: hidden; max-width: 96px; }
.cyc .track > i { display: block; height: 100%; border-radius: 2px; }

/* reliability cell */
.rel { display: inline-flex; align-items: center; gap: 5px; }
.rel .track { width: 26px; height: 3px; border-radius: 2px; background: var(--bg-3); overflow: hidden; }
.rel .track > i { display: block; height: 100%; }

.st { display: inline-flex; align-items: center; gap: 7px; font-family: var(--sans); font-size: 12.5px; }
.st i { width: 7px; height: 7px; border-radius: 50%; background: var(--text-4); flex: none; }
.st.current i { background: var(--ok); } .st.late i { background: var(--warn); }
.st.stalled i, .st.never i { background: var(--bad); }
.st.current { color: var(--text-2); } .st.late { color: var(--warn); }
.st.stalled, .st.never { color: var(--bad); } .st.idle, .st.unbound { color: var(--text-4); }

.grade {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 6px; flex: none;
  font-weight: 700; font-size: 12px; font-family: var(--sans);
  border: 1px solid var(--line-2); color: var(--text-3); background: var(--bg-2);
}
.grade.A { color: var(--ok); border-color: rgba(52,209,124,.4); background: rgba(52,209,124,.08); }
.grade.B { color: var(--brand-2); border-color: rgba(76,141,255,.4); background: rgba(76,141,255,.08); }
.grade.C { color: var(--warn); border-color: rgba(221,168,69,.4); background: rgba(221,168,69,.08); }
.grade.D, .grade.E { color: var(--bad); border-color: rgba(224,104,92,.4); background: rgba(224,104,92,.08); }

.spark { display: block; overflow: visible; }

/* ---------------------------------------------------------------- detail -- */
.dhead { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding: 12px 14px; border-bottom: 1px solid var(--line); background: var(--bg-1); }
.dhead .back { color: var(--text-3); font-size: 12.5px; }
.dhead .back:hover { color: var(--text); }
.dhead h1 { font-size: 20px; font-weight: 700; letter-spacing: -.02em; }
.dhead .nm2 { color: var(--text-3); font-size: 13px; }
.dhead .right { margin-left: auto; display: flex; gap: 8px; align-items: center; }

.clock { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); background: var(--bg-1); border-bottom: 1px solid var(--line); }
.clock > div { padding: 12px 14px 13px; border-right: 1px solid var(--line); display: flex; gap: 12px; align-items: center; }
.clock .txt { min-width: 0; }
.clock .k { font-size: 9.5px; color: var(--text-4); font-weight: 650; letter-spacing: .09em; text-transform: uppercase; }
.clock .v { font-size: 22px; font-weight: 650; font-family: var(--mono); font-variant-numeric: tabular-nums; letter-spacing: -.03em; margin-top: 2px; line-height: 1.1; }
.clock .s { font-size: 10.5px; color: var(--text-4); margin-top: 1px; }
.clock .v.ok { color: var(--ok); } .clock .v.warn { color: var(--warn); } .clock .v.bad { color: var(--bad); }

/* fee waterfall */
.wf { display: flex; flex-direction: column; gap: 8px; }
.wfrow { display: grid; grid-template-columns: 110px 1fr 84px; gap: 10px; align-items: center; font-size: 12px; }
.wfrow .k { color: var(--text-3); }
.wfbar { height: 7px; border-radius: 3px; background: var(--bg-3); overflow: hidden; }
.wfbar > i { display: block; height: 100%; border-radius: 3px; }
.wfrow .v { text-align: right; font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* addresses */
.addrs { display: flex; flex-direction: column; }
.addr { display: flex; align-items: center; gap: 10px; padding: 8px 14px; border-bottom: 1px solid var(--line); font-size: 12.5px; }
.addr:last-child { border-bottom: none; }
.addr .k { width: 82px; flex: none; color: var(--text-3); }
.addr code { font-family: var(--mono); font-size: 11.5px; color: var(--text-2); overflow: hidden; text-overflow: ellipsis; }
.addr .act { margin-left: auto; display: flex; gap: 4px; flex: none; }
.addr .act button, .addr .act a {
  padding: 2px 8px; border-radius: 6px; font-size: 11px; color: var(--text-3);
  border: 1px solid var(--line-2); transition: all .13s var(--ease);
}
.addr .act button:hover, .addr .act a:hover { color: var(--brand-2); border-color: rgba(76,141,255,.4); }

/* stat grid */
.sgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(136px, 1fr)); }
.sgrid > div { padding: 9px 14px 10px; border-right: 1px solid var(--line); border-top: 1px solid var(--line); }
.sgrid .k { font-size: 9.5px; color: var(--text-4); font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.sgrid .v { font-size: 15px; font-weight: 600; font-family: var(--mono); font-variant-numeric: tabular-nums; margin-top: 2px; }

.lrow { display: flex; align-items: baseline; gap: 10px; padding: 8px 14px; border-bottom: 1px solid var(--line); font-size: 12.5px; }
.lrow:last-child { border-bottom: none; }
.lrow .val { margin-left: auto; font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* charts */
.chart { display: block; width: 100%; }
.axis { font-size: 9px; fill: var(--text-4); font-family: var(--mono); }
.chartnote { padding: 4px 14px 8px; font-size: 10.5px; color: var(--text-4); }
.chartnote b { color: var(--text-3); font-weight: 600; }

/* heatmap — CSS grid, cells keep their own aspect, nothing stretches */
.hm { padding: 10px 14px 6px; overflow-x: auto; }
.hmgrid { display: grid; grid-template-columns: repeat(24, 1fr); gap: 3px; }
.hmgrid i { display: block; aspect-ratio: 1.7 / 1; min-width: 0; border-radius: 3px; background: var(--bg-3); }
.hmaxis { display: flex; justify-content: space-between; font-size: 9.5px; color: var(--text-4); font-family: var(--mono); padding-top: 6px; }
.hmlegend { display: flex; align-items: center; gap: 5px; padding: 0 14px 10px; font-size: 10px; color: var(--text-4); }
.hmlegend i { width: 10px; height: 10px; border-radius: 2px; display: inline-block; }

/* =================================================================== lab -- */
.labgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(430px, 1fr)); gap: 1px; background: var(--line); }
.labgrid > .panel { border-bottom: none; min-width: 0; }
.labgrid > .span2 { grid-column: 1 / -1; }
.lab-svg { display: block; width: 100%; height: auto; }
.labnote { padding: 6px 14px 10px; font-size: 10.5px; color: var(--text-4); line-height: 1.5; }
.labnote b { color: var(--text-2); font-family: var(--mono); font-weight: 600; }
#net { display: block; width: 100%; height: 460px; cursor: grab; }
#net:active { cursor: grabbing; }

/* ---------------------------------------------------------------- donuts -- */
.donutwrap { display: flex; align-items: center; gap: 22px; padding: 14px 16px; flex-wrap: wrap; }
.dchart { position: relative; flex: 0 0 190px; max-width: 210px; }
.dcenter { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; pointer-events: none; }
.dcenter b { font-family: var(--mono); font-size: 19px; font-weight: 750; letter-spacing: -.02em; }
.dcenter span { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-4); font-weight: 650; }
.dlegend { flex: 1 1 220px; min-width: 200px; display: flex; flex-direction: column; gap: 5px; }
.dleg { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.dleg i { width: 9px; height: 9px; border-radius: 3px; flex: none; }
.dleg .dl { color: var(--text-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 140px; }
.dleg b { font-family: var(--mono); font-weight: 700; margin-left: auto; }
.dleg .dv { font-family: var(--mono); color: var(--text-3); min-width: 74px; text-align: right; }

/* prose */
.prose { max-width: 84ch; color: var(--text-2); font-size: 12.5px; line-height: 1.65; }
.prose h3 { font-size: 12px; color: var(--text); margin: 14px 0 4px; font-weight: 650; }
.prose h3:first-child { margin-top: 0; }
.prose p { margin-bottom: 8px; }
.prose b { color: var(--text); font-weight: 600; }
.prose code { font-family: var(--mono); font-size: 11px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 4px; padding: 0 4px; }

/* ============================================================== home tab -- */
.ohero { position: relative; border-bottom: 1px solid var(--line); background: radial-gradient(ellipse at 50% 42%, rgba(19,27,43,.85), var(--bg) 75%); overflow: hidden; }
.oword { position: absolute; top: 18px; left: 18px; display: flex; align-items: center; gap: 11px; pointer-events: none; }
.oword img { width: 34px; height: 34px; border-radius: 50%; box-shadow: 0 0 0 1px rgba(76,141,255,.35), 0 0 20px rgba(76,141,255,.3); }
.oword b { display: block; font-size: 17px; letter-spacing: .16em; font-weight: 800; }
.oword i { display: block; font-style: normal; font-size: 11px; color: var(--text-3); letter-spacing: .04em; }
.overdict { position: absolute; left: 18px; bottom: 46px; font-size: 13px; color: var(--text-2); max-width: 38ch; pointer-events: none; }
.overdict.ok { text-shadow: 0 0 18px rgba(52,209,124,.25); }
.overdict.bad { text-shadow: 0 0 18px rgba(224,104,92,.25); }
.onums { position: absolute; right: 18px; top: 18px; display: flex; flex-direction: column; gap: 10px; text-align: right; pointer-events: none; }
.onums > div b { display: block; font-family: var(--mono); font-size: 26px; font-weight: 700; letter-spacing: -.03em; }
.onums > div span { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-4); font-weight: 650; }
.onums > div.bad b { color: var(--bad); } .onums > div.warn b { color: var(--warn); }
.olegend { position: absolute; left: 0; right: 0; bottom: 0; padding: 7px 18px; font-size: 10px; color: var(--text-4);
  background: linear-gradient(transparent, rgba(4,6,12,.7)); pointer-events: none; }
.olegend b { color: var(--ok); font-weight: 600; }
body.light .ohero { background: radial-gradient(ellipse at 50% 42%, #e6ecf6, var(--bg) 75%); }
body.light .olegend { background: linear-gradient(transparent, rgba(240,244,250,.8)); }

.tokstrip { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 980px) { .tokstrip { grid-template-columns: 1fr; } }
.tok2 { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: var(--bg-1); transition: background .15s var(--ease); }
.tok2:hover { background: var(--bg-2); }
.tok2 .ticon { width: 40px; height: 40px; border-radius: 12px; flex: none; box-shadow: 0 0 0 1px var(--line-2); }
.tok2 .tmeta { min-width: 0; }
.tok2 .tmeta b { display: flex; align-items: center; font-size: 15px; font-weight: 800; letter-spacing: .06em; }
.tok2 .tmeta i { display: block; font-style: normal; font-size: 11px; color: var(--text-3); margin-top: 2px; }
.tok2 .tstats { margin-left: auto; display: flex; gap: 18px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.tok2 .tstats > span { text-align: right; }
.tok2 .tstats b { display: block; font-family: var(--mono); font-size: 13.5px; font-weight: 700; }
.tok2 .tstats u { text-decoration: none; font-size: 8.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-4); font-weight: 650; }
.tok2 .bl { display: flex; gap: 3px; }

/* ------------------------------------------------------- info + modal ---- */
.infobtn {
  width: 18px; height: 18px; border-radius: 50%; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--text-4); border: 1px solid var(--line-2);
  transition: all .14s var(--ease); line-height: 1; text-transform: none; letter-spacing: 0;
  font-weight: 500; cursor: pointer;
}
.infobtn:hover { color: var(--brand-2); border-color: rgba(76,141,255,.5); }
h2 .infobtn:last-child { margin-left: auto; }

.mscrim {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(4,6,12,.82); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 18px;
}
.mcard {
  background: var(--bg-1); border: 1px solid var(--line-2); border-radius: 12px;
  max-width: min(1700px, 97vw); max-height: 94vh; overflow: auto; min-width: 320px;
  box-shadow: 0 40px 120px -20px rgba(0,0,0,.9);
}
.mcard > header {
  display: flex; align-items: center; gap: 10px; padding: 11px 16px;
  border-bottom: 1px solid var(--line); position: sticky; top: 0; background: var(--bg-1); z-index: 2;
}
.mcard > header b { font-size: 13.5px; }
.mx { margin-left: auto; font-size: 22px; line-height: 1; color: var(--text-4); }
.mx:hover { color: var(--text); }
.mbody { padding: 16px; }
.mbody .prose { font-size: 13px; max-width: 62ch; }

/* basket composition cell */
.bcell { display: inline-flex; align-items: center; gap: 3px; }
.blogo {
  width: 19px; height: 19px; border-radius: 50%; background: #fff;
  object-fit: contain; border: 1px solid var(--line-2); display: block;
}
.bchip {
  font-size: 9px; padding: 2px 4px; border: 1px solid var(--line-2); border-radius: 4px;
  color: var(--text-3); font-family: var(--mono); line-height: 1;
}

.empty { padding: 26px; text-align: center; color: var(--text-3); font-size: 12.5px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px; padding: 2px 9px;
  border-radius: 999px; font-size: 11.5px; font-weight: 550;
  border: 1px solid var(--line-2); color: var(--text-3);
}
.pill.ok { color: var(--ok); border-color: rgba(52,209,124,.35); background: rgba(52,209,124,.06); }
.pill.warn { color: var(--warn); border-color: rgba(221,168,69,.35); background: rgba(221,168,69,.06); }
.pill.bad { color: var(--bad); border-color: rgba(224,104,92,.35); background: rgba(224,104,92,.06); }

.toast {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--bg-3); border: 1px solid var(--line-2); border-radius: 8px;
  padding: 8px 14px; font-size: 12.5px; z-index: 200; transition: transform .22s var(--ease);
  box-shadow: 0 18px 50px -12px rgba(0,0,0,.85);
}
.toast.on { transform: translateX(-50%); }

footer.foot {
  flex: 0 0 auto; color: var(--text-4); font-size: 10.5px; text-align: center;
  padding: 10px 14px 14px; line-height: 1.5; border-top: 1px solid var(--line);
}
.footbrand {
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 5px;
  color: var(--text-2);
}
.footbrand img { border-radius: 50%; box-shadow: 0 0 0 1px rgba(76,141,255,.3); }
.footbrand b { letter-spacing: .12em; font-size: 11.5px; color: var(--text); }
.footbrand span { color: var(--text-4); letter-spacing: .06em; text-transform: uppercase; font-size: 9.5px; }

/* focus mode: table owns the page */
body.focus .overview { display: none; }

/* ============================================================= light mode -- */
body.light {
  --bg:      #eef1f7;
  --bg-1:    #f7f9fc;
  --bg-2:    #edf1f7;
  --bg-3:    #e2e8f2;

  --line:    #dfe5ee;
  --line-2:  #cbd4e3;
  --line-3:  #a8b5cb;

  --text:    #17202f;
  --text-2:  #3a4a63;
  --text-3:  #64718c;
  --text-4:  #8d99b0;

  --brand:   #2f6ae0;
  --brand-2: #1f5ad0;

  --ok:      #148f52;
  --warn:    #a3761b;
  --bad:     #c2453a;
  --idle:    #b6c1d4;
}
body.light header.top { background: rgba(247,249,252,.92); }
body.light .brand .mark, body.light .footbrand img { box-shadow: 0 0 0 1px rgba(47,106,224,.35); }
body.light #fx { opacity: .45; }
body.light tbody tr.click:hover { background: rgba(47,106,224,.07); }
body.light .heatgrid a:hover { outline-color: var(--text); }
body.light .blogo { border-color: var(--line-3); }
body.light .pulsebar .seg { color: rgba(255,255,255,.95); }
body.light .mscrim { background: rgba(230,236,245,.75); }
body.light .toast { background: #fff; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--line-3); }

/* upstream divergence banner */
.upbar[hidden] { display: none; }
.upbar {
  position: relative; z-index: 2;
  padding: 7px 16px; font-size: 12px; color: var(--text-2);
  background: rgba(221,168,69,.08); border-bottom: 1px solid rgba(221,168,69,.35);
  box-shadow: inset 3px 0 0 var(--warn);
}
.upbar b { color: var(--warn); font-family: var(--mono); }

/* content eases in on route change */
main.shell > * { animation: fadeup .22s var(--ease) both; }
@keyframes fadeup { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { main.shell > * { animation: none; } }

/* ============================================================== mobile ---- */
@media (max-width: 760px) {
  .brand .word { display: none; }
  .nav { overflow-x: auto; scrollbar-width: none; }
  .nav::-webkit-scrollbar { display: none; }
  .nav a { padding: 0 11px; }
  .ticker { display: none; }
  .searchwrap { flex: 1 1 120px; }
  .themebtn { margin-right: 6px; }

  .toolbar { position: static; }
  thead th { position: static; }
  .nm { max-width: 96px; }
  .kpis { grid-template-columns: repeat(2, 1fr); }
  .kpi .v { font-size: 17px; }
  .clock { grid-template-columns: repeat(2, 1fr); }
  .clock > div { border-right: none; border-bottom: 1px solid var(--line); }
  .sgrid { grid-template-columns: repeat(2, 1fr); }

  /* observatory: overlays flow below the canvas instead of covering it */
  .overdict { position: static; padding: 10px 14px 0; max-width: none; }
  .onums { position: static; flex-direction: row; flex-wrap: wrap; gap: 16px; text-align: left; padding: 8px 14px 0; }
  .onums > div b { font-size: 19px; }
  .olegend { position: static; background: none; padding: 8px 14px 12px; }
  .oword img { width: 26px; height: 26px; }
  .oword b { font-size: 14px; }

  .tok2 { flex-wrap: wrap; }
  .tok2 .tstats { margin-left: 54px; justify-content: flex-start; }
  .heatgrid a { width: 11px; height: 11px; }
  .pulseread { font-size: 12px; }
  .dhead h1 { font-size: 17px; }
  .addr code { font-size: 10px; }
  .addr .k { width: 64px; }
  .vgrid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; padding: 10px; }
  .mbody { padding: 12px; }
  #net { height: 340px; }
}

/* ============================================================ backdrop fx -- */
#fx { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
header.top, main.shell, footer.foot { position: relative; z-index: 1; }

/* =============================================================== treemap -- */
.tm rect { transition: opacity .15s var(--ease); cursor: pointer; }
.tm a:hover rect { opacity: 1 !important; stroke: var(--text-2); }
.tm text { pointer-events: none; font-family: var(--sans); }

/* ================================================================= vault -- */
/* hero: three bounded blocks that flex — nothing can balloon or clip */
.vhero {
  display: flex; flex-wrap: wrap; gap: 24px 30px;
  justify-content: center; align-items: center;
  padding: 22px 22px 20px; overflow: hidden;
}
.vheroleft { flex: 1 1 320px; max-width: 500px; min-width: 280px; }
.vheroright { flex: 0 1 360px; min-width: 280px; }
.vheroright .cert { max-width: 360px; margin: 0 auto; }

/* featured mini-grid, hard-capped */
.vfeat { flex: 0 1 400px; min-width: 260px; max-width: 420px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.vfeat .vfcard { border-radius: 10px; overflow: hidden; border: 1px solid var(--line-2); transition: transform .2s var(--ease), border-color .2s var(--ease); }
.vfeat .vfcard:hover { transform: scale(1.05) rotate(-1deg); border-color: rgba(76,141,255,.55); z-index: 2; }
.vfeat img { display: block; width: 100%; }
.vkicker { font-size: 10px; letter-spacing: .16em; color: var(--text-4); font-weight: 700; margin-bottom: 10px; }
.vhero h1 { font-size: 30px; font-weight: 800; letter-spacing: -.02em; }
.vlede { color: var(--text-2); font-size: 13.5px; line-height: 1.65; margin-top: 10px; max-width: 58ch; }
.vtags { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; margin-top: 18px; max-width: 380px; }
.vtags span { font-size: 11px; color: var(--text-3); letter-spacing: .05em; text-transform: uppercase; font-weight: 600; display: flex; align-items: center; gap: 7px; }
.vtags b { font-family: var(--mono); font-size: 15px; color: var(--brand-2); font-weight: 800; }
.vctas { display: flex; gap: 10px; margin-top: 18px; align-items: center; flex-wrap: wrap; }
.vghost { border: 1px solid var(--line-2); padding: 9px 14px; border-radius: 10px; font-size: 12px; color: var(--text-2); }
.vghost:hover { border-color: var(--brand); color: var(--brand-2); }

/* the certificate */
.cert {
  position: relative; background: linear-gradient(160deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line-3); border-radius: 10px; padding: 20px 18px 16px;
  box-shadow: 0 24px 60px -18px rgba(0,0,0,.8), inset 0 0 0 5px var(--bg-1), inset 0 0 0 6px var(--line-2);
  text-align: center; will-change: transform; transition: transform .18s var(--ease);
}
.cert.r-Legendary { border-color: rgba(226,183,89,.55); box-shadow: 0 24px 60px -18px rgba(0,0,0,.8), inset 0 0 0 5px var(--bg-1), inset 0 0 0 6px rgba(226,183,89,.4), 0 0 42px -8px rgba(226,183,89,.35); }
.cstamp {
  position: absolute; top: 14px; right: -8px; transform: rotate(9deg);
  font-size: 9.5px; font-weight: 800; letter-spacing: .14em; color: var(--bad);
  border: 1.5px solid var(--bad); border-radius: 3px; padding: 2px 7px; opacity: .85;
}
.cserial { font-family: var(--mono); font-size: 9px; letter-spacing: .12em; color: var(--text-4); text-align: left; }
.cert .cart { width: 132px; height: 132px; border-radius: 50%; margin: 14px auto 4px; display: block; }
.cert .cart2 { width: 82%; border-radius: 10px; margin: 14px auto 4px; display: block; }
.ctitle { font-size: 17px; font-weight: 800; margin-top: 8px; }
.csub { font-size: 8.5px; letter-spacing: .16em; color: var(--text-3); font-weight: 700; margin-top: 3px; }
.cbody { font-size: 11px; color: var(--text-3); line-height: 1.55; margin: 10px auto 0; max-width: 34ch; }
.cvitals { display: flex; justify-content: center; gap: 16px; margin-top: 12px; flex-wrap: wrap; }
.cvitals span, .csigs span { display: flex; flex-direction: column; }
.cvitals b { font-size: 11.5px; font-weight: 700; font-style: italic; }
.cvitals u, .csigs u { text-decoration: none; font-size: 7.5px; letter-spacing: .12em; color: var(--text-4); font-weight: 700; margin-top: 2px; }
.csigs { display: flex; justify-content: space-between; margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--line-2); }
.csigs b { font-size: 12px; font-style: italic; font-weight: 650; }

/* sealed cards */
.csealed { position: relative; overflow: hidden; border-radius: 50%; }
.vcard .csealed { border-radius: 50%; }
.csealed img { width: 100%; display: block; filter: blur(10px) grayscale(.9) brightness(.5); transform: scale(1.06); border-radius: 50%; }
.cert .csealed { width: 132px; height: 132px; margin: 14px auto 4px; }
.cert .csealed img { width: 132px; height: 132px; }
.csealed b {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; letter-spacing: .22em; color: var(--text-2);
  text-shadow: 0 1px 6px rgba(0,0,0,.8);
}

/* mechanics strip */
.vmech { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); border-bottom: 1px solid var(--line); background: var(--bg-1); }
.vmech > div { padding: 16px 18px; border-right: 1px solid var(--line); }
.vmech b { display: block; font-family: var(--mono); font-size: 22px; font-weight: 800; letter-spacing: -.02em; color: var(--brand-2); }
.vmech span { font-size: 11.5px; color: var(--text-3); line-height: 1.55; display: block; margin-top: 5px; }

/* waves */
.vwaves { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1px; background: var(--line); }
.vwave { background: var(--bg-1); padding: 14px 16px; opacity: .65; }
.vwave.on { opacity: 1; }
.vwave b { font-size: 11px; letter-spacing: .12em; font-weight: 800; color: var(--text-2); }
.vwave.on b { color: var(--ok); }
.vwave i { font-style: normal; font-family: var(--mono); font-size: 20px; font-weight: 700; display: block; margin-top: 2px; }
.vwave span { font-size: 10.5px; color: var(--text-4); display: block; margin-top: 2px; }
.vwbar { height: 3px; border-radius: 2px; background: var(--bg-3); margin-top: 9px; overflow: hidden; }
.vwbar span { display: block; height: 100%; background: var(--brand); border-radius: 2px; }
.vwave.on .vwbar span { background: var(--ok); }

.rolled { max-width: 400px; }

/* agent skill sheets */
.skills { display: flex; flex-direction: column; gap: 5px; margin-top: 10px; text-align: left; }
.skill { display: flex; align-items: center; gap: 8px; font-size: 10.5px; }
.skill .sk { width: 118px; flex: none; color: var(--text-3); letter-spacing: .03em; }
.skill .strack { flex: 1; height: 4px; border-radius: 2px; background: var(--bg-3); overflow: hidden; }
.skill .strack i { display: block; height: 100%; border-radius: 2px; }
.skill b { font-family: var(--mono); font-size: 10.5px; width: 22px; text-align: right; font-weight: 700; }
.skills.compact { gap: 3px; margin-top: 8px; }
.skills.compact .skill { font-size: 9px; gap: 5px; }
.skills.compact .sk { width: 24px; font-family: var(--mono); font-weight: 700; color: var(--text-4); }
.skills.compact b { width: 18px; font-size: 9px; }

.vaulthead { padding: 16px 14px 4px; }
.vaulthead h1 { font-size: 19px; font-weight: 700; letter-spacing: -.02em; }
.vaulthead p { color: var(--text-3); font-size: 12.5px; max-width: 88ch; margin-top: 4px; }
.vgrid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px; padding: 14px;
}
.vcard {
  background: var(--bg-1); border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 12px 10px; text-align: center; position: relative;
  transform-style: preserve-3d; will-change: transform;
  transition: transform .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.vcard img { width: 100%; border-radius: 50%; display: block; }
.dexgrid .vcard img { border-radius: 9px; }
.vcard .vname { font-weight: 650; font-size: 12.5px; margin-top: 9px; }
.vcard .vtraits { font-size: 10.5px; color: var(--text-4); margin-top: 2px; }
.vcard .pill { margin-top: 7px; }
.vcard:hover { z-index: 3; }
.vcard.r-Legendary { border-color: rgba(226,183,89,.5); }
.vcard.r-Legendary:hover { box-shadow: 0 0 40px -6px rgba(226,183,89,.45); }
.vcard.r-Epic { border-color: rgba(155,142,196,.45); }
.vcard.r-Epic:hover { box-shadow: 0 0 34px -6px rgba(155,142,196,.4); }
.vcard.r-Rare:hover { box-shadow: 0 0 30px -8px rgba(76,141,255,.4); }
.pill.r-Legendary { color: #e2b759; border-color: rgba(226,183,89,.4); background: rgba(226,183,89,.07); }
.pill.r-Epic { color: #9b8ec4; border-color: rgba(155,142,196,.4); background: rgba(155,142,196,.07); }
.pill.r-Rare { color: var(--brand-2); border-color: rgba(76,141,255,.4); background: rgba(76,141,255,.07); }

/* ================================================================== gate -- */
#gate[hidden] { display: none; }
#gate {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(6,9,17,.6);
  backdrop-filter: blur(13px) saturate(.85);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s var(--ease);
}
#gate.fade { opacity: 0; pointer-events: none; }
.gatebox { text-align: center; max-width: 430px; padding: 24px; }
.gatebox .gmark { width: 110px; height: 110px; border-radius: 50%; margin: 0 auto 18px; display: block;
  box-shadow: 0 0 0 1px rgba(76,141,255,.35), 0 0 60px rgba(76,141,255,.35);
  animation: gatepulse 3.2s var(--ease) infinite; }
@keyframes gatepulse {
  0%,100% { box-shadow: 0 0 0 1px rgba(76,141,255,.35), 0 0 40px rgba(76,141,255,.25); }
  50%     { box-shadow: 0 0 0 1px rgba(76,141,255,.6),  0 0 90px rgba(76,141,255,.5); }
}
.gatebox h1 { font-size: 21px; font-weight: 700; letter-spacing: .1em; }
.gatebox p { color: var(--text-3); font-size: 13px; margin: 10px 0 18px; line-height: 1.6; }
.gatebox p b { color: var(--text); font-family: var(--mono); }
.gatebtn {
  padding: 10px 26px; border-radius: 10px; font-weight: 650; font-size: 14px;
  background: var(--brand); color: #fff; border: none;
  box-shadow: 0 0 24px rgba(76,141,255,.4);
  transition: transform .15s var(--ease), box-shadow .15s var(--ease);
}
.gatebtn:hover { transform: translateY(-1px); box-shadow: 0 0 36px rgba(76,141,255,.6); }
.gatestatus { margin-top: 14px; font-size: 12.5px; color: var(--text-3); min-height: 18px; font-family: var(--mono); }
.gatestatus.err { color: var(--bad); }
.gatestatus.ok { color: var(--ok); }

/* ══ the lock screen is the landing page ══ */
#gate { flex-direction: column; align-items: stretch; justify-content: flex-start; padding: 0; overflow-y: auto; }

.gmarq { overflow: hidden; border-bottom: 1px solid var(--line-2); background: rgba(7,10,18,.85); flex: none; }
.gmarq-in { display: flex; gap: 0; white-space: nowrap; animation: marq 48s linear infinite; width: max-content; }
.gmarq-in span {
  padding: 8px 26px; font-size: 10px; letter-spacing: .18em; font-weight: 700;
  color: var(--text-3); font-family: var(--mono); border-right: 1px solid var(--line);
}
.gmarq-in span:nth-child(4n+1) { color: var(--brand-2); }
.gmarq-in span:nth-child(4n+3) { color: var(--warn); }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.gwrap {
  flex: 1; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(340px, 460px);
  gap: 40px; align-items: center; width: 100%; max-width: 1280px; margin: 0 auto;
  padding: 44px 40px 56px;
}
@media (max-width: 980px) { .gwrap { grid-template-columns: 1fr; padding: 28px 18px 40px; } }

.gbrand { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.gbrand img { width: 40px; height: 40px; border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(76,141,255,.4), 0 0 30px rgba(76,141,255,.35);
  animation: gatepulse 3.2s var(--ease) infinite; }
.gbrand b { display: block; font-size: 16px; letter-spacing: .18em; font-weight: 800; }
.gbrand i { display: block; font-style: normal; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); }

.ghead { font-size: clamp(34px, 4.6vw, 58px); line-height: 1.04; font-weight: 800; letter-spacing: -.03em; }
.ghead em { font-style: normal; color: var(--brand-2); text-shadow: 0 0 34px rgba(76,141,255,.4); }
.glede { color: var(--text-2); font-size: 14.5px; line-height: 1.7; max-width: 60ch; margin-top: 16px; }

.gvitals {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); border-radius: 12px;
  overflow: hidden; margin-top: 24px;
}
.gvitals .gv { background: rgba(10,14,24,.92); padding: 12px 14px; }
.gvitals b { display: block; font-family: var(--mono); font-size: 19px; font-weight: 750; letter-spacing: -.02em; }
.gvitals b.ok { color: var(--ok); } .gvitals b.bad { color: var(--bad); } .gvitals b.warn { color: var(--warn); }
.gvitals span { font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-4); font-weight: 650; }

.gbenefits2 { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 22px; margin-top: 22px; max-width: 640px; }
@media (max-width: 700px) { .gbenefits2 { grid-template-columns: 1fr; } }
.gbenefits2 span { font-size: 12.5px; color: var(--text-2); line-height: 1.55; }
.gbenefits2 b { color: var(--brand-2); margin-right: 4px; }

.gfeed { margin-top: 22px; min-height: 0; }
.gfhead { font-size: 9.5px; letter-spacing: .16em; color: var(--ok); font-weight: 800; margin-bottom: 7px; }
.gfrow { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-3); padding: 3px 0; animation: tickin .35s var(--ease); }
.gfrow i { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 8px rgba(52,209,124,.7); }
.gfrow b { color: var(--text); font-weight: 650; }
.gfrow u { text-decoration: none; margin-left: auto; font-family: var(--mono); font-size: 10px; color: var(--text-4); }

.gcard {
  background: rgba(10,14,24,.92); border: 1px solid var(--line-2); border-radius: 18px;
  padding: 28px 28px 24px; text-align: center;
  box-shadow: 0 40px 120px -20px rgba(0,0,0,.9), 0 0 80px -30px rgba(76,141,255,.5);
}
.gcard-k { font-size: 10px; letter-spacing: .22em; color: var(--warn); font-weight: 800; }
.gcard h2 { font-size: 22px; font-weight: 800; letter-spacing: -.01em; margin: 8px 0 20px; }
.greqs { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.greq2 {
  display: flex; align-items: center; gap: 12px; text-align: left;
  background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 12px; padding: 12px 14px;
  transition: border-color .15s var(--ease), transform .15s var(--ease);
}
a.greq2:hover { border-color: rgba(76,141,255,.55); transform: translateY(-1px); }
.greq2 img { width: 34px; height: 34px; border-radius: 10px; flex: none; }
.greq2 b { display: block; font-family: var(--mono); font-size: 14px; font-weight: 750; letter-spacing: -.01em; }
.greq2 i { display: block; font-style: normal; font-size: 10.5px; color: var(--text-3); margin-top: 2px; }
.greq2 u {
  text-decoration: none; margin-left: auto; font-size: 9px; letter-spacing: .14em; font-weight: 800;
  padding: 3px 8px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--text-4);
}
.greq2 u.ok { color: var(--ok); border-color: rgba(52,209,124,.4); background: rgba(52,209,124,.07); }
.gatebtn.wide { width: 100%; padding: 13px 0; font-size: 15px; border-radius: 12px; }
.gfine { font-size: 10.5px; color: var(--text-4); line-height: 1.6; margin-top: 14px; }
