/* ============================================================
   Economic Stats Bar — Liquid Glass
   ============================================================ */

.econ-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 8px;
  padding: var(--space-xs) var(--space-xs);
  flex-shrink: 0;
}

.econ-bar__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
}

.econ-bar__stat:hover {
  background: rgba(255,255,255,0.10);
}

.econ-bar__label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 400;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
}

.econ-bar__value {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

/* First stat (nTON) — nanoton gold */
.econ-bar__stat:first-child .econ-bar__value {
  color: var(--col-nanoton);
}

/* Second stat (Channels) — teal */
.econ-bar__stat:nth-child(2) .econ-bar__value {
  color: var(--sys-teal);
}

/* Third stat — green */
.econ-bar__stat:nth-child(3) .econ-bar__value {
  color: var(--col-join);
}

.econ-bar__unit {
  font-size: 9px;
  font-weight: 500;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
  margin-left: 2px;
  display: inline;
}

.econ-bar__divider {
  display: none;
}
