:root,
.darkscope {
  color-scheme: dark;
  --bg:#07090d;
  --bg2:#0a0d12;
  --sunken:#0d1218;
  --panel:#11151c;
  --panel2:#161b24;
  --panel3:#1c222d;
  --line:#1e2530;
  --line2:#2b3441;
  --line3:#3a4553;
  --txt:#c3cddb;
  --bright:#eef3f8;
  --dim:#68737f;
  --dim2:#8b97a5;
  --grn:#4ade80;
  --grn2:#22c55e;
  --grnbg:#0f1c14;
  --grnline:#255339;
  --cyan:#38bdf8;
  --cyanbg:#0c1a22;
  --cyanline:#1d4457;
  --amber:#fbbf24;
  --ambbg:#16120b;
  --ambline:#5a4718;
  --red:#f87171;
  --redbg:#1c1010;
  --redline:#5a2323;
  --violet:#a78bfa;
  --vibg:#120f1c;
  --viline:#3f2f66;
  --mag:#e879f9;
  --pristine:#7dd3fc;
  --luminous:#4ade80;
  --neutral:#8c98a6;
  --tarnished:#fbbf24;
  --corrupt:#f87171;
  --void:#b91c1c;
  --ok:#4ade80;
  --warn:#fbbf24;
  --bad:#f87171;
  --na:#5b6673;
  --overlay:rgba(11,15,20,.90);
  --overlay2:rgba(9,13,18,.97);
  --overlayTxt:#eef3f8;
  --overlayDim:#8b97a5;
  --shadow:rgba(0,0,0,.6);
  --mono:ui-monospace,"SF Mono",Menlo,Consolas,"DejaVu Sans Mono",monospace;
  --rail:352px;
  --navh:50px;
}
:root[data-theme=light] {
  color-scheme: light;
  --bg:#f7f9fb;
  --bg2:#eef2f6;
  --sunken:#e6ebf1;
  --panel:#ffffff;
  --panel2:#f2f5f9;
  --panel3:#e8edf3;
  --line:#dde4ec;
  --line2:#c5cfdb;
  --line3:#a7b4c4;
  --txt:#2b3a4a;
  --bright:#0d1620;
  --dim:#67737f;
  --dim2:#4a5866;
  --grn:#15803d;
  --grn2:#166534;
  --grnbg:#e8f6ed;
  --grnline:#a7dcbb;
  --cyan:#0369a1;
  --cyanbg:#e4f2fb;
  --cyanline:#a8d6f0;
  --amber:#a16207;
  --ambbg:#fdf6e3;
  --ambline:#e8cf94;
  --red:#c02626;
  --redbg:#fdeaea;
  --redline:#f0b4b4;
  --violet:#6d28d9;
  --vibg:#f1ecfd;
  --viline:#c9b6f5;
  --mag:#a21caf;
  --pristine:#0369a1;
  --luminous:#15803d;
  --neutral:#5b6673;
  --tarnished:#a16207;
  --corrupt:#c02626;
  --void:#7f1d1d;
  --ok:#15803d;
  --warn:#a16207;
  --bad:#c02626;
  --na:#8b97a5;
  --shadow:rgba(15,30,50,.16);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
}
body {
  background: var(--bg);
  color: var(--txt);
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.5;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}
::-webkit-scrollbar-thumb {
  background: var(--line2);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--line3);
}
::-webkit-scrollbar-track {
  background: transparent;
}
button,
input,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
a {
  color: var(--cyan);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
code {
  font-family: inherit;
  background: var(--sunken);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0 4px;
  color: var(--dim2);
}
.sp {
  flex: 1 1 auto;
}
.mut {
  color: var(--dim);
}
.br {
  color: var(--bright);
}
.gr {
  color: var(--grn);
}
.cy {
  color: var(--cyan);
}
.am {
  color: var(--amber);
}
.rd {
  color: var(--red);
}
.vi {
  color: var(--violet);
}
.mono {
  font-variant-numeric: tabular-nums;
}
.nowrap {
  white-space: nowrap;
}
#nav {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-inline: 14px;
  height: var(--navh);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  z-index: 40;
}
#nav .logo {
  color: var(--bright);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  white-space: nowrap;
  flex: 0 0 auto;
}
#nav .logo span {
  font-weight: 700;
  letter-spacing: .5px;
  font-size: 12.5px;
}
#nav .logo b {
  color: var(--grn);
  font-weight: 700;
}
#nav .logo i {
  font-style: normal;
  font-weight: 400;
  font-size: 7.5px;
  letter-spacing: 1.9px;
  color: var(--dim);
  text-transform: uppercase;
}
#tabs {
  display: flex;
  gap: 2px;
}
.tab {
  background: none;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 5px 10px;
  color: var(--dim);
  cursor: pointer;
  font-size: 11.5px;
  letter-spacing: .3px;
  transition: .12s;
  white-space: nowrap;
}
.tab:hover {
  color: var(--txt);
  background: var(--sunken);
}
.tab.on {
  color: var(--bright);
  background: var(--panel2);
  border-color: var(--line2);
}
#nav .chip {
  border: 1px solid var(--line2);
  border-radius: 3px;
  padding: 3px 8px;
  font-size: 10.5px;
  color: var(--dim2);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
#nav .chip b {
  color: var(--bright);
  font-weight: 400;
}
#liveChip .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dim);
  flex: 0 0 auto;
}
#liveChip.on .dot {
  background: var(--grn);
  box-shadow: 0 0 7px var(--grn);
  animation: pulse 2s infinite;
}
#liveChip.err .dot {
  background: var(--red);
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .35;
  }
}
.senti {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  letter-spacing: .8px;
  color: var(--dim);
}
.senti .sl {
  color: var(--corrupt);
}
.senti .sr {
  color: var(--pristine);
}
.strack {
  position: relative;
  width: 132px;
  height: 7px;
  border-radius: 4px;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      var(--redline),
      var(--ambline) 32%,
      var(--line2) 50%,
      var(--grnline) 68%,
      var(--cyanline));
}
.sfill {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 0;
  background: rgba(255, 255, 255, .10);
}
.sneedle {
  position: absolute;
  inset-block: -3px;
  inline-size: 2px;
  background: var(--bright);
  box-shadow: 0 0 6px rgba(255, 255, 255, .85);
  inset-inline-start: 50%;
  transition: inset-inline-start .8s cubic-bezier(.2, .8, .2, 1);
}
.szero {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 50%;
  inline-size: 1px;
  background: rgba(255, 255, 255, .28);
}
.senti .sval {
  color: var(--bright);
  font-size: 11px;
  min-width: 38px;
  text-align: end;
  font-variant-numeric: tabular-nums;
}
#ticker {
  flex: 0 0 auto;
  height: 26px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--bg2);
  position: relative;
  z-index: 30;
}
#tickerRun {
  display: flex;
  gap: 22px;
  align-items: center;
  height: 100%;
  padding-inline: 14px;
  font-size: 10.5px;
  white-space: nowrap;
  will-change: transform;
}
.tk {
  display: flex;
  gap: 6px;
  align-items: center;
  color: var(--dim2);
}
.tk b {
  color: var(--bright);
  font-weight: 400;
}
.tk .ty {
  font-size: 9px;
  letter-spacing: .6px;
  padding: 1px 5px;
  border-radius: 2px;
  border: 1px solid;
}
.tk .ty.buy {
  color: var(--grn);
  border-color: var(--grnline);
  background: var(--grnbg);
}
.tk .ty.sell {
  color: var(--red);
  border-color: var(--redline);
  background: var(--redbg);
}
.tk .ty.launch {
  color: var(--bright);
  border-color: var(--ambline);
  background: var(--ambbg);
}
.tk .ty.post {
  color: var(--cyan);
  border-color: var(--cyanline);
  background: var(--cyanbg);
}
#body {
  flex: 1 1 auto;
  display: flex;
  min-height: 0;
  position: relative;
}
#stage {
  flex: 1 1 auto;
  position: relative;
  min-width: 0;
  overflow: hidden;
}
.view {
  position: absolute;
  inset: 0;
  display: none;
  overflow: hidden;
}
.view.on {
  display: block;
}
#view-terminal.on,
#view-fleets.on,
#view-agents.on,
#view-method.on {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.vhead {
  flex: 0 0 auto;
  padding: 16px 18px 12px;
}
.vhead h1 {
  font-size: 16px;
  letter-spacing: 1.2px;
  color: var(--bright);
  font-weight: 700;
  margin-bottom: 5px;
}
.sub {
  color: var(--dim);
  font-size: 11.5px;
  max-width: 98ch;
  line-height: 1.65;
}
.sub em {
  color: var(--dim2);
  font-style: italic;
}
#sky {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
  touch-action: none;
}
#sky.drag {
  cursor: grabbing;
}
#mapHud {
  position: absolute;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 262px;
}
.hudrow {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  align-items: center;
}
.hlab {
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--dim);
}
.mbtn {
  background: var(--overlay);
  border: 1px solid var(--line2);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 10px;
  color: var(--dim);
  cursor: pointer;
  letter-spacing: .3px;
  transition: .12s;
}
.mbtn:hover {
  border-color: var(--line3);
  color: var(--txt);
}
.mbtn[data-on="1"] {
  color: var(--grn);
  border-color: var(--grnline);
  background: var(--grnbg);
}
.msel {
  background: var(--overlay);
  border: 1px solid var(--line2);
  border-radius: 4px;
  padding: 3px 6px;
  font-size: 10px;
  color: var(--txt);
  cursor: pointer;
  flex: 1;
}
.msearch {
  background: var(--overlay);
  border: 1px solid var(--line2);
  border-radius: 4px;
  padding: 6px 9px;
  font-size: 11px;
  color: var(--bright);
  outline: none;
  width: 100%;
}
.msearch:focus {
  border-color: var(--grnline);
}
.msearchout {
  display: none;
  flex-direction: column;
  background: var(--overlay2);
  border: 1px solid var(--line2);
  border-radius: 4px;
  max-height: 240px;
  overflow-y: auto;
}
.msearchout.on {
  display: flex;
}
.msearchout .sr {
  padding: 5px 9px;
  font-size: 10.5px;
  cursor: pointer;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 7px;
  align-items: center;
}
.msearchout .sr:hover {
  background: var(--panel2);
}
.msearchout .sr b {
  color: var(--bright);
  font-weight: 400;
}
.msearchout .k {
  font-size: 8.5px;
  letter-spacing: .6px;
  color: var(--dim);
  border: 1px solid var(--line2);
  border-radius: 2px;
  padding: 0 4px;
}
#legend {
  position: absolute;
  inset-block-end: 12px;
  inset-inline-start: 12px;
  z-index: 6;
  width: 262px;
  background: var(--overlay);
  border: 1px solid var(--line);
  border-radius: 6px;
  backdrop-filter: blur(6px);
  overflow: hidden;
}
.lgH {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 9px;
  font-size: 9px;
  letter-spacing: 1.4px;
  color: var(--dim2);
  border-bottom: 1px solid var(--line);
  background: var(--bg2);
}
.lgH button {
  background: none;
  border: 1px solid var(--line2);
  border-radius: 3px;
  width: 17px;
  height: 17px;
  line-height: 1;
  color: var(--dim);
  cursor: pointer;
  font-size: 11px;
}
.lgBody {
  padding: 7px 9px 9px;
  max-height: min(50vh, 420px);
  overflow-y: auto;
}
#legend.min .lgBody {
  display: none;
}
.lgSec {
  font-size: 8.5px;
  letter-spacing: 1.3px;
  color: var(--dim);
  margin: 8px 0 4px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line);
}
.lgSec:first-child {
  margin-top: 0;
}
.lgRow {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9.5px;
  color: var(--dim2);
  line-height: 1.7;
}
.lgRow > span:first-child,
.lgRow > i {
  flex: 0 0 auto;
}
.lgRow b {
  color: var(--txt);
  font-weight: 400;
}
.lgRow i.sw {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--c);
  flex: 0 0 auto;
}
.lgStar,
.lgSun,
.lgPlanet,
.lgRing,
.lgCore,
.lgBelt,
.lgRug,
.lgShip,
.lgOrbit,
.lgDerelict,
.lgFleet,
.lgHold,
.lgAct {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border-radius: 50%;
  position: relative;
}
.lgStar {
  background:
    radial-gradient(
      circle,
      #fff8d8,
      #c9a227 55%,
      transparent 72%);
}
.lgSun {
  background:
    radial-gradient(
      circle at 40% 38%,
      #fffdf4,
      #ffd591 45%,
      #e08a2c 75%,
      transparent 85%);
  box-shadow: 0 0 7px rgba(255, 183, 94, .6);
}
.lgShip {
  border-radius: 0;
  background: none;
  clip-path: polygon(100% 50%, 10% 100%, 35% 50%, 10% 0);
  background-color: #7f8b9c;
}
.lgOrbit {
  border-radius: 50%;
  border: 1px solid rgba(150, 170, 195, .45);
  background: none;
}
.lgDerelict {
  background: var(--na);
  opacity: .55;
}
.lgFleet {
  border-radius: 0;
  height: 0;
  border-top: 2px solid #ffb066;
  box-shadow: 0 0 5px rgba(255, 176, 102, .8);
}
.lgHold {
  border-radius: 0;
  height: 0;
  border-top: 2px dashed var(--pristine);
}
.lgPlanet {
  background:
    radial-gradient(
      circle at 35% 32%,
      #8fd6ff,
      #2b6d96);
  box-shadow: 0 0 5px rgba(56, 189, 248, .5);
}
.lgRing {
  border: 1px solid #3fae8c;
  background: rgba(63, 174, 140, .10);
}
.lgCore {
  background:
    radial-gradient(
      circle,
      rgba(167, 139, 250, .85),
      rgba(167, 139, 250, .07) 70%);
}
.lgBelt {
  border: 1px dashed var(--na);
}
.lgRug {
  border: 1.5px solid #dc2626;
  background: rgba(220, 38, 38, .12);
}
.lgHull {
  width: 15px;
  height: 14px;
  flex: 0 0 auto;
  background-color: #8fa2b8;
}
.lgHull.skiff {
  clip-path: polygon(100% 50%, 12% 100%, 32% 50%, 12% 0);
}
.lgHull.lancer {
  clip-path: polygon(100% 50%, 56% 62%, 20% 100%, 32% 60%, 6% 50%, 32% 40%, 20% 0, 56% 38%);
}
.lgHull.bulwark {
  clip-path: polygon(100% 50%, 78% 92%, 26% 100%, 4% 62%, 4% 38%, 26% 0, 78% 8%);
}
.lgNote {
  font-size: 9px;
  color: var(--dim);
  line-height: 1.55;
  margin: 5px 0 2px;
  padding-inline-start: 7px;
  border-inline-start: 1px solid var(--line2);
}
.lgAct.buy {
  border: 2px solid var(--grn);
  background: rgba(74, 222, 128, .14);
}
.lgAct.sell {
  border: 2px solid var(--red);
  background: rgba(248, 113, 113, .14);
}
.lgAct.launch {
  background:
    radial-gradient(
      circle,
      #fff,
      rgba(255, 255, 255, .05) 70%);
}
.lgAct.post {
  border: 2px solid var(--cyan);
  background: rgba(56, 189, 248, .12);
}
.lgAct.route {
  border-radius: 0;
  height: 0;
  border-top: 2px dotted var(--violet);
}
#mapZoom {
  position: absolute;
  inset-block-end: 12px;
  inset-inline-end: 12px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#mapZoom button {
  width: 30px;
  height: 30px;
  padding: 0;
  font-size: 14px;
  line-height: 1;
  background: var(--overlay);
  border: 1px solid var(--line2);
  color: var(--txt);
  border-radius: 5px;
  cursor: pointer;
}
#mapZoom button:hover {
  background: var(--panel3);
  color: #fff;
}
#mapStat {
  position: absolute;
  inset-block-start: 12px;
  inset-inline-end: 12px;
  z-index: 6;
  background: var(--overlay);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 6px 9px;
  font-size: 9.5px;
  color: var(--dim);
  line-height: 1.7;
  text-align: end;
  pointer-events: none;
}
#mapStat b {
  color: var(--txt);
  font-weight: 400;
}
#tooltip {
  position: absolute;
  z-index: 9;
  pointer-events: none;
  display: none;
  max-width: 262px;
  background: var(--overlay2);
  border: 1px solid var(--line2);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 10.5px;
  line-height: 1.6;
  box-shadow: 0 8px 26px var(--shadow);
}
#tooltip.on {
  display: block;
}
#tooltip .tt {
  color: var(--bright);
  font-size: 12px;
  margin-bottom: 2px;
}
#tooltip .tr {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--dim);
}
#tooltip .tr b {
  color: var(--txt);
  font-weight: 400;
}
#tooltip .vd {
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid var(--line);
  font-size: 9.5px;
  letter-spacing: .6px;
}
.tbar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--bg2);
  flex-wrap: wrap;
}
.tbar input[type=search] {
  background: var(--sunken);
  border: 1px solid var(--line2);
  border-radius: 4px;
  padding: 5px 9px;
  font-size: 11px;
  color: var(--bright);
  outline: none;
  width: 250px;
}
.tbar input[type=search]:focus {
  border-color: var(--grnline);
}
.tbar input[type=number] {
  background: var(--sunken);
  border: 1px solid var(--line2);
  border-radius: 4px;
  padding: 4px 6px;
  font-size: 10.5px;
  color: var(--bright);
  outline: none;
  width: 74px;
}
.mini {
  font-size: 9.5px;
  letter-spacing: .6px;
  color: var(--dim);
  display: flex;
  align-items: center;
  gap: 5px;
}
.tfilters {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
}
.ff {
  background: var(--sunken);
  border: 1px solid var(--line2);
  border-radius: 3px;
  padding: 3px 8px;
  font-size: 10px;
  color: var(--dim);
  cursor: pointer;
  transition: .12s;
  white-space: nowrap;
}
.ff:hover {
  color: var(--txt);
  border-color: var(--line3);
}
.ff.on {
  color: var(--grn);
  border-color: var(--grnline);
  background: var(--grnbg);
}
.tcount {
  font-size: 10px;
  color: var(--dim);
  white-space: nowrap;
}
.tscroll {
  flex: 1 1 auto;
  overflow: auto;
  min-height: 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}
thead th {
  position: sticky;
  inset-block-start: 0;
  z-index: 2;
  background: var(--sunken);
  text-align: end;
  padding: 7px 9px;
  font-size: 9px;
  letter-spacing: .9px;
  color: var(--dim);
  font-weight: 400;
  border-bottom: 1px solid var(--line2);
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}
thead th:hover {
  color: var(--txt);
}
thead th.first {
  text-align: start;
}
thead th.sorted {
  color: var(--grn);
}
thead th .ar {
  font-size: 8px;
  margin-inline-start: 3px;
}
tbody td {
  padding: 6px 9px;
  border-bottom: 1px solid var(--panel2);
  text-align: end;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
tbody td.first {
  text-align: start;
}
tbody tr {
  cursor: pointer;
  transition: background .1s;
}
tbody tr:hover {
  background: var(--panel);
}
tbody tr.sel {
  background: var(--grnbg);
  box-shadow: inset 3px 0 0 var(--grn);
}
tbody tr.flash {
  animation: rowflash 1.1s ease-out;
}
@keyframes rowflash {
  from {
    background: var(--grnbg);
  }
  to {
    background: transparent;
  }
}
.cSym {
  display: flex;
  align-items: center;
  gap: 7px;
}
.cSym img {
  width: 17px;
  height: 17px;
  border-radius: 3px;
  background: var(--sunken);
  flex: 0 0 auto;
  object-fit: cover;
}
.cSym .ph {
  width: 17px;
  height: 17px;
  border-radius: 3px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  font-size: 8px;
  color: var(--bg2);
  font-weight: 700;
}
.cSym b {
  color: var(--bright);
  font-weight: 400;
}
.cSym span {
  color: var(--dim);
  font-size: 9.5px;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pill {
  display: inline-block;
  font-size: 9px;
  letter-spacing: .5px;
  padding: 1px 5px;
  border-radius: 2px;
  border: 1px solid;
  white-space: nowrap;
}
.pill.CLEAN {
  color: var(--grn);
  border-color: var(--grnline);
  background: var(--grnbg);
}
.pill.WATCH {
  color: var(--cyan);
  border-color: var(--cyanline);
  background: var(--cyanbg);
}
.pill.CAUTION {
  color: var(--amber);
  border-color: var(--ambline);
  background: var(--ambbg);
}
.pill.AVOID {
  color: var(--red);
  border-color: var(--redline);
  background: var(--redbg);
}
.pill.RUGGED {
  color: #fff;
  border-color: var(--redline);
  background: var(--redline);
}
.pill.DEAD {
  color: var(--dim);
  border-color: var(--line2);
  background: var(--sunken);
}
.pill.na {
  color: var(--dim);
  border-color: var(--line);
  background: transparent;
}
.rep {
  font-variant-numeric: tabular-nums;
  font-weight: 400;
}
.repbar {
  display: inline-block;
  width: 34px;
  height: 4px;
  border-radius: 2px;
  background: var(--panel3);
  position: relative;
  margin-inline-end: 6px;
  vertical-align: middle;
}
.repbar i {
  position: absolute;
  inset-block: 0;
  width: 2px;
  background: var(--c);
  border-radius: 1px;
}
.spark {
  display: block;
}
#tMore,
#aMore {
  padding: 13px;
  text-align: center;
  color: var(--dim);
  font-size: 10.5px;
}
#tMore button,
#aMore button {
  background: var(--panel2);
  border: 1px solid var(--line2);
  border-radius: 4px;
  padding: 6px 16px;
  color: var(--txt);
  cursor: pointer;
  font-size: 10.5px;
}
#tMore button:hover {
  border-color: var(--line3);
  color: var(--bright);
}
#fleetGrid {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 0 14px 18px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(316px, 1fr));
  gap: 10px;
  grid-auto-rows: min-content;
  align-content: start;
  align-items: start;
}
.fcard {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px;
  cursor: pointer;
  transition: .13s;
  position: relative;
  overflow: hidden;
}
.fcard:hover {
  border-color: var(--line3);
  background: var(--panel2);
  transform: translateY(-1px);
}
.fcard:before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 2px;
  background: var(--fc,var(--neutral));
}
.fcard .fr {
  position: absolute;
  inset-block-start: 9px;
  inset-inline-end: 11px;
  font-size: 17px;
  color: var(--line2);
  font-weight: 700;
}
.fcard .fn {
  color: var(--bright);
  font-size: 13px;
  letter-spacing: .4px;
  margin-bottom: 1px;
  max-width: 82%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fcard .fm {
  font-size: 9.5px;
  color: var(--dim);
  margin-bottom: 9px;
}
.fcard .fstats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 7px;
  margin-bottom: 9px;
}
.fcard .fs {
  background: var(--sunken);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 5px 7px;
}
.fcard .fs u {
  display: block;
  font-size: 8.5px;
  letter-spacing: .8px;
  color: var(--dim);
  text-decoration: none;
  margin-bottom: 1px;
}
.fcard .fs b {
  font-size: 12.5px;
  color: var(--bright);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}
.fcard .fbar {
  height: 5px;
  border-radius: 3px;
  background: var(--panel2);
  position: relative;
  overflow: hidden;
  margin-bottom: 7px;
}
.fcard .fbar i {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  background: var(--fc);
  border-radius: 3px;
}
.fcard .fcrew {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
}
.fcard .fa {
  font-size: 9px;
  padding: 1px 5px;
  border-radius: 2px;
  background: var(--sunken);
  border: 1px solid var(--line);
  color: var(--dim2);
  max-width: 104px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#rail {
  flex: 0 0 var(--rail);
  border-inline-start: 1px solid var(--line);
  background: var(--panel);
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0;
  transition: flex-basis .2s;
}
#rail.empty {
  flex-basis: 0;
  border-inline-start: none;
}
#railBody {
  padding: 0 0 26px;
}
.rhead {
  position: sticky;
  inset-block-start: 0;
  z-index: 3;
  background: var(--sunken);
  border-bottom: 1px solid var(--line2);
  padding: 11px 13px;
}
.rhead .rx {
  position: absolute;
  inset-block-start: 9px;
  inset-inline-end: 10px;
  background: none;
  border: 1px solid var(--line2);
  border-radius: 3px;
  width: 20px;
  height: 20px;
  line-height: 1;
  color: var(--dim);
  cursor: pointer;
  font-size: 12px;
}
.rhead .rx:hover {
  color: var(--bright);
  border-color: var(--line3);
}
.rid {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  padding-inline-end: 26px;
}
.rid img,
.rid .ph {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  flex: 0 0 auto;
  background: var(--sunken);
  object-fit: cover;
}
.rid .ph {
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--bg2);
}
.rid h2 {
  font-size: 14.5px;
  color: var(--bright);
  letter-spacing: .3px;
  font-weight: 700;
  line-height: 1.25;
}
.rid .rsub {
  font-size: 10px;
  color: var(--dim);
  margin-top: 2px;
}
.rprice {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 9px;
}
.rprice .pv {
  font-size: 19px;
  color: var(--bright);
  font-variant-numeric: tabular-nums;
}
.rprice .pu {
  font-size: 10px;
  color: var(--dim);
}
.rsec {
  padding: 11px 13px;
  border-bottom: 1px solid var(--line);
}
.rsec h3 {
  font-size: 9px;
  letter-spacing: 1.4px;
  color: var(--dim);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.rsec h3:after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.rsec h3 .tagx {
  font-size: 8px;
  letter-spacing: .6px;
  color: var(--violet);
  border: 1px solid var(--viline);
  border-radius: 2px;
  padding: 0 4px;
  background: var(--vibg);
}
.rsec h3 .tagx.inspector {
  color: var(--cyan);
  border-color: var(--cyanline);
  background: var(--cyanbg);
}
.kv {
  display: flex;
  justify-content: space-between;
  gap: 11px;
  padding: 3px 0;
  font-size: 11px;
}
.kv u {
  text-decoration: none;
  color: var(--dim);
}
.kv b {
  color: var(--txt);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  text-align: end;
}
.kv b.g {
  color: var(--grn);
}
.kv b.r {
  color: var(--red);
}
.kv b.a {
  color: var(--amber);
}
.agrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
}
.af {
  background: var(--sunken);
  padding: 6px 8px;
  cursor: help;
  position: relative;
}
.af u {
  display: block;
  font-size: 8.5px;
  letter-spacing: .7px;
  color: var(--dim);
  text-decoration: none;
  margin-bottom: 2px;
}
.af b {
  font-size: 12px;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: center;
  gap: 5px;
}
.af b:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex: 0 0 auto;
}
.af.ok b {
  color: var(--ok);
}
.af.ok b:before {
  background: var(--ok);
}
.af.warn b {
  color: var(--warn);
}
.af.warn b:before {
  background: var(--warn);
}
.af.bad b {
  color: var(--bad);
}
.af.bad b:before {
  background: var(--bad);
}
.af.na b {
  color: var(--na);
}
.af.na b:before {
  background: var(--na);
}
.af.info b {
  color: var(--cyan);
}
.af.info b:before {
  background: var(--cyan);
}
.af.orig {
  background: var(--vibg);
}
.af.orig u:after {
  content: " \2605";
  color: var(--violet);
}
.averdict {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px;
  padding: 8px 10px;
  border-radius: 5px;
  border: 1px solid;
}
.averdict .vt {
  font-size: 13px;
  letter-spacing: 1.1px;
}
.averdict .vn {
  font-size: 10px;
  line-height: 1.45;
  color: var(--dim2);
}
.averdict.CLEAN {
  border-color: var(--grnline);
  background: var(--grnbg);
}
.averdict.CLEAN .vt {
  color: var(--grn);
}
.averdict.WATCH {
  border-color: var(--cyanline);
  background: var(--cyanbg);
}
.averdict.WATCH .vt {
  color: var(--cyan);
}
.averdict.CAUTION {
  border-color: var(--ambline);
  background: var(--ambbg);
}
.averdict.CAUTION .vt {
  color: var(--amber);
}
.averdict.AVOID {
  border-color: var(--redline);
  background: var(--redbg);
}
.averdict.AVOID .vt {
  color: var(--red);
}
.averdict.RUGGED {
  border-color: var(--redline);
  background: var(--redbg);
}
.averdict.RUGGED .vt {
  color: #fca5a5;
}
.averdict.DEAD {
  border-color: var(--line2);
  background: var(--sunken);
}
.averdict.DEAD .vt {
  color: var(--dim2);
}
.repwrap {
  margin-bottom: 4px;
}
.repmeter {
  position: relative;
  height: 9px;
  border-radius: 5px;
  overflow: hidden;
  margin: 6px 0 4px;
  background:
    linear-gradient(
      90deg,
      var(--redline),
      var(--ambline) 32%,
      var(--line2) 50%,
      var(--grnline) 68%,
      var(--cyanline));
}
.repmeter i {
  position: absolute;
  inset-block: -2px;
  width: 2.5px;
  background: #fff;
  box-shadow: 0 0 6px rgba(255, 255, 255, .9);
  border-radius: 2px;
}
.repmeter u {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 50%;
  width: 1px;
  background: rgba(255, 255, 255, .3);
}
.repscale {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  letter-spacing: .7px;
  color: var(--dim);
}
.repparts {
  margin-top: 8px;
}
.pbar {
  display: grid;
  grid-template-columns: 74px 1fr 34px;
  gap: 7px;
  align-items: center;
  font-size: 9.5px;
  padding: 2px 0;
  color: var(--dim2);
}
.pbar .pt {
  height: 5px;
  border-radius: 3px;
  background: var(--panel2);
  position: relative;
  overflow: hidden;
}
.pbar .pt i {
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  border-radius: 3px;
}
.pbar .pv {
  text-align: end;
  color: var(--txt);
  font-variant-numeric: tabular-nums;
}
.pbar.neg .pt i {
  background: var(--red);
}
.pbar.pos .pt i {
  background: var(--grn);
}
.hrow {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 3px 0;
  font-size: 10.5px;
  border-bottom: 1px solid var(--panel2);
}
.hrow:last-child {
  border-bottom: none;
}
.hrow .hn {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--txt);
}
.hrow .hp {
  color: var(--dim2);
  font-variant-numeric: tabular-nums;
  width: 48px;
  text-align: end;
}
.hrow .tg {
  font-size: 8px;
  letter-spacing: .5px;
  padding: 0 4px;
  border-radius: 2px;
  border: 1px solid;
}
.tg.dev {
  color: var(--amber);
  border-color: var(--ambline);
}
.tg.fleet {
  color: var(--violet);
  border-color: var(--viline);
}
.tg.snipe {
  color: var(--red);
  border-color: var(--redline);
}
.tg.ins {
  color: var(--mag);
  border-color: var(--viline);
}
.tg.bun {
  color: var(--cyan);
  border-color: var(--cyanline);
}
.rbtns {
  display: flex;
  gap: 6px;
  padding: 11px 13px;
}
.rbtns a {
  flex: 1;
  text-align: center;
  background: var(--panel2);
  border: 1px solid var(--line2);
  border-radius: 4px;
  padding: 6px;
  font-size: 10px;
  color: var(--txt);
  text-decoration: none;
}
.rbtns a:hover {
  border-color: var(--line3);
  color: var(--bright);
  text-decoration: none;
}
.feedrow {
  display: flex;
  gap: 7px;
  align-items: baseline;
  font-size: 10px;
  padding: 3px 0;
  border-bottom: 1px solid var(--panel2);
}
.feedrow .ft {
  font-size: 8.5px;
  letter-spacing: .5px;
  padding: 0 4px;
  border-radius: 2px;
  border: 1px solid;
  flex: 0 0 auto;
}
.feedrow .fw {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--dim2);
}
.feedrow .fv {
  color: var(--txt);
  font-variant-numeric: tabular-nums;
  flex: 0 0 auto;
}
.desc {
  font-size: 10.5px;
  color: var(--dim2);
  line-height: 1.6;
  max-height: 112px;
  overflow-y: auto;
}
.prose {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 0 18px 40px;
  max-width: 104ch;
}
.prose h2 {
  font-size: 12.5px;
  letter-spacing: 1.1px;
  color: var(--grn);
  margin: 20px 0 7px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line);
}
.prose h3 {
  font-size: 11.5px;
  color: var(--bright);
  margin: 14px 0 5px;
}
.prose p {
  font-size: 11.5px;
  color: var(--dim2);
  line-height: 1.72;
  margin-bottom: 9px;
}
.prose ul {
  margin: 0 0 10px;
  padding-inline-start: 17px;
}
.prose li {
  font-size: 11.5px;
  color: var(--dim2);
  line-height: 1.7;
  margin-bottom: 3px;
}
.prose b {
  color: var(--txt);
  font-weight: 400;
}
.prose table {
  margin: 8px 0 14px;
  font-size: 10.5px;
  border: 1px solid var(--line);
  table-layout: auto;
}
.prose th,
.prose td {
  white-space: normal;
  vertical-align: top;
  line-height: 1.55;
  padding: 5px 8px;
}
.prose td code {
  white-space: normal;
  display: inline-block;
}
.prose th {
  text-align: start;
  cursor: default;
  background: var(--sunken);
}
.prose th:hover {
  color: var(--dim);
}
.prose td {
  text-align: start;
  color: var(--dim2);
}
.prose td:first-child {
  color: var(--txt);
}
.prose .lede {
  font-size: 12px;
  color: var(--dim);
  line-height: 1.75;
  border-inline-start: 2px solid var(--grn);
  padding-inline-start: 11px;
  margin: 12px 0 4px;
}
.prose code {
  font-family: inherit;
  font-size: 10.5px;
  color: var(--bright);
  background: var(--sunken);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 1px 5px;
  white-space: nowrap;
}
.prose sub {
  font-size: 8px;
  color: var(--dim);
}
.math {
  margin: 9px 0 13px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--bg);
  padding: 3px 0;
  overflow-x: auto;
}
.mrow {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
  padding: 6px 12px;
}
.mrow + .mrow {
  border-top: 1px solid var(--panel);
}
.mrow code {
  background: none;
  border: none;
  padding: 0;
  color: var(--grn);
  font-size: 11px;
  letter-spacing: .2px;
  flex: 0 0 auto;
  white-space: pre-wrap;
}
.mrow span {
  font-size: 10.5px;
  color: var(--dim);
  line-height: 1.5;
  flex: 1 1 22ch;
  min-width: 0;
  text-align: end;
  white-space: normal;
}
.mrow span code {
  color: var(--dim2);
  font-size: 10px;
}
@media (max-width: 760px) {
  .mrow span {
    text-align: start;
    flex-basis: 100%;
  }
}
.callout {
  border: 1px solid var(--ambline);
  background: var(--ambbg);
  border-radius: 5px;
  padding: 9px 11px;
  margin: 10px 0;
}
.callout b {
  color: var(--amber);
}
.callout.good {
  border-color: var(--grnline);
  background: var(--grnbg);
}
.callout.good b {
  color: var(--grn);
}
#boot {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  display: grid;
  place-items: center;
  transition: opacity .35s;
  font-size: 11px;
  color: var(--dim);
}
#boot.done {
  opacity: 0;
  pointer-events: none;
}
.bootbox {
  text-align: center;
}
.bspin {
  width: 34px;
  height: 34px;
  margin: 0 auto 13px;
  border-radius: 50%;
  border: 2px solid var(--line2);
  border-top-color: var(--grn);
  animation: spin .85s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.err {
  color: var(--red);
}
.chipbtn {
  background: none;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.4;
  min-height: 24px;
  transition: .12s;
}
.chipbtn:hover {
  border-color: var(--line3);
  color: var(--bright);
}
#navMore {
  display: none;
  font-size: 13px;
  padding-inline: 9px;
}
.mbtn-mobile {
  display: none;
}
#mLegend {
  display: none;
}
.hudrow-mobile {
  display: none;
}
@media (max-width: 1180px) {
  :root {
    --rail:308px;
  }
  #legend {
    display: none;
    position: absolute;
    inset-inline-start: 12px;
    inset-block-end: 12px;
    inset-block-start: auto;
    width: 288px;
    max-height: 62vh;
    z-index: 22;
  }
  #legend.show {
    display: block;
  }
  .lgBody {
    max-height: calc(62vh - 32px);
  }
  #mLegend {
    display: block;
    align-self: start;
  }
  .hudrow-mobile {
    display: flex;
  }
}
@media (max-width: 900px) {
  :root {
    --rail:0px;
  }
  #rail {
    position: absolute;
    inset-block: 0;
    inset-inline-end: 0;
    flex-basis: auto;
    width: min(94vw, 352px);
    z-index: 20;
    box-shadow: -14px 0 34px var(--shadow);
  }
  #rail.empty {
    display: none;
  }
  #mapHud {
    width: 180px;
  }
  #tabs .tab {
    padding: 5px 7px;
    font-size: 10.5px;
  }
  .senti {
    display: none;
  }
}
@media (max-width: 680px) {
  html,
  body {
    height: 100dvh;
  }
  body {
    font-size: 12px;
  }
  #nav {
    padding-inline-start: max(10px, env(safe-area-inset-left));
    padding-inline-end: max(10px, env(safe-area-inset-right));
  }
  #rail {
    padding-block-end: env(safe-area-inset-bottom);
  }
  #mapZoom {
    inset-inline-end: max(8px, env(safe-area-inset-right));
  }
  #nav {
    gap: 8px;
    padding-inline: 10px;
    height: auto;
    min-height: var(--navh);
    padding-block: 5px;
    flex-wrap: wrap;
  }
  #nav .logo i {
    display: none;
  }
  #nav .logo span {
    font-size: 11.5px;
  }
  #themeBtn {
    order: 3;
    margin-inline-start: auto;
  }
  #navMore {
    display: block;
    order: 4;
  }
  #tabs {
    order: 5;
    flex-basis: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-block: 2px;
  }
  #tabs::-webkit-scrollbar {
    display: none;
  }
  #tabs .tab {
    flex: 0 0 auto;
    min-height: 32px;
    font-size: 11.5px;
    padding: 6px 11px;
  }
  #nav #scanChip,
  #nav #tiaChip,
  #nav #liveChip {
    display: none;
  }
  #nav.more #scanChip,
  #nav.more #tiaChip,
  #nav.more #liveChip {
    display: flex;
  }
  #nav.more {
    padding-block-end: 7px;
  }
  .chip {
    min-height: 26px;
  }
  #ticker {
    height: 24px;
  }
  #tickerRun {
    gap: 16px;
    padding-inline: 10px;
  }
  .vhead {
    padding: 12px 12px 9px;
  }
  .vhead h1 {
    font-size: 14px;
  }
  .sub {
    font-size: 11px;
  }
  .tbar {
    flex-wrap: wrap;
    gap: 7px;
    padding: 8px 10px;
  }
  .tbar input[type=search] {
    flex: 1 1 100%;
    min-height: 34px;
  }
  .tfilters {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    max-width: 100%;
  }
  .tfilters::-webkit-scrollbar {
    display: none;
  }
  .ff {
    min-height: 30px;
    flex: 0 0 auto;
  }
  .mini {
    min-height: 30px;
  }
  .tscroll {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #tTable,
  #aTable {
    min-width: 760px;
  }
  #tTable th:first-child,
  #tTable td:first-child,
  #aTable th:first-child,
  #aTable td:first-child {
    position: sticky;
    inset-inline-start: 0;
    z-index: 2;
    background: var(--bg2);
  }
  #tTable thead th {
    position: sticky;
    inset-block-start: 0;
    z-index: 3;
  }
  #tTable thead th:first-child {
    z-index: 4;
  }
  #rail {
    inset-inline: 0;
    inset-block: auto 0;
    width: auto;
    height: 72dvh;
    border-inline-start: none;
    border-block-start: 1px solid var(--line2);
    border-start-start-radius: 12px;
    border-start-end-radius: 12px;
    box-shadow: 0 -16px 40px var(--shadow);
  }
  #mapHud {
    width: auto;
    inset-inline: 8px 92px;
    inset-block-start: 8px;
    gap: 5px;
  }
  #hudRows {
    display: none;
    flex-direction: column;
    gap: 5px;
  }
  #mapHud.open #hudRows {
    display: flex;
  }
  #mapHud .hudrow {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    max-width: 100%;
  }
  #mapHud .hudrow::-webkit-scrollbar {
    display: none;
  }
  #mapHud .msel {
    width: 100%;
  }
  .mbtn {
    min-height: 30px;
    flex: 0 0 auto;
  }
  .mbtn-mobile {
    display: block;
    align-self: start;
  }
  .hudrow-mobile {
    display: flex;
    gap: 5px;
  }
  .msel {
    min-height: 30px;
  }
  .msearch {
    min-height: 34px;
    font-size: 12px;
  }
  .hlab {
    display: none;
  }
  #mapZoom {
    inset-block-end: auto;
    inset-block-start: 8px;
    inset-inline-end: 8px;
    flex-direction: row;
  }
  #mapZoom button {
    width: 34px;
    height: 34px;
  }
  #mapStat {
    inset-block-start: auto;
    inset-block-end: 8px;
    inset-inline-end: 8px;
    font-size: 9px;
    padding: 5px 7px;
  }
  #tooltip {
    display: none !important;
  }
  #legend {
    inset-inline: 8px;
    width: auto;
    max-height: 56dvh;
  }
  .lgBody {
    max-height: calc(56dvh - 32px);
  }
  .fgrid {
    grid-template-columns: 1fr;
    padding: 0 10px 24px;
  }
  .prose {
    padding: 0 12px 32px;
  }
  .prose table {
    font-size: 10px;
  }
  #boot {
    font-size: 10.5px;
  }
}
@media (max-height: 460px) and (orientation: landscape) {
  #ticker {
    display: none;
  }
  #rail {
    height: 88dvh;
  }
  #legend {
    max-height: 80dvh;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: .01ms !important;
  }
  #tickerRun {
    animation: none !important;
  }
  #liveChip.on .dot {
    animation: none;
  }
}
