* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
body {
  font-family: var(--ui);
  background: var(--bg);
  color: var(--text);
  font-size: 12px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
button:disabled {
  opacity: 0.4;
  cursor: default;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea,
a {
  outline: none;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
button {
  transition:
    color 0.15s,
    background 0.15s,
    border-color 0.15s;
}
button:hover {
  color: var(--accent);
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h2,
h3,
h4 {
  font-weight: 500;
}
h2 {
  font-size: 16px;
}
h3 {
  font-size: 13px;
}
small {
  font-weight: 400;
}
svg {
  display: block;
  flex-shrink: 0;
}
.icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
span[data-icon] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
input,
select,
textarea {
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
}
select {
  cursor: pointer;
}
option {
  background: var(--surface);
}
[hidden] {
  display: none !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.muted {
  color: var(--muted);
}
.mono,
.money,
time,
.numeric {
  font-family: var(--number);
  font-variant-numeric: tabular-nums;
}
.eyebrow,
.section-eyebrow {
  font-size: 9px;
  letter-spacing: 1.9px;
  font-weight: 500;
  color: var(--muted);
}
.section-eyebrow {
  display: flex;
  justify-content: space-between;
}
.section-eyebrow > span {
  font-family: var(--number);
  letter-spacing: 1px;
  font-size: 9px;
  color: var(--faint);
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px 0 22px;
}
.section-title .muted {
  font-size: 10px;
}
.status-dot,
.live-status i,
.status-bar i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -60px;
  z-index: 100;
  background: var(--accent);
  color: var(--bg);
  padding: 12px;
}
.skip-link:focus {
  top: 10px;
}
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
::-webkit-scrollbar-thumb {
  background: var(--surface);
  border-radius: 3px;
}
::selection {
  background: var(--surface);
  color: var(--text);
}
.empty-state {
  padding: 32px 12px;
  text-align: center;
  color: var(--muted);
  line-height: 1.9;
}
.empty-state .icon {
  width: 24px;
  height: 24px;
  margin: 0 auto 14px;
}
.empty-state small {
  display: block;
  color: var(--faint);
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
