/* Токены, сброс, типографика. Цвета и шрифты живут только здесь. */
:root {
  --bg: #05080f;
  --line: #16202e;
  --accent: #5fe3ff;
  --text: #e8eef5;
  --muted: #6b7d93;
  --row-me: #0d1826;
  --hover: rgba(232, 238, 245, 0.03);
  --radius: 6px;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mono {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
  letter-spacing: 0;
}

table,
th,
td,
input {
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
}

button {
  margin: 0;
  padding: 0;
  border: 0;
  color: inherit;
  background: none;
  font: inherit;
  line-height: inherit;
}

b {
  font-weight: 500;
}

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

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

::selection {
  background: rgba(95, 227, 255, 0.22);
  color: var(--text);
}

:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 2px;
}
