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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.statusbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.65rem;
  background: var(--status-bg, var(--bg));
  border-top: 1px solid var(--rule);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.status-ticker {
  display: flex;
  width: max-content;
  animation: tick 32s linear infinite;
}

.status-ticker span {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  color: var(--muted);
  padding: 0 1rem;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.status-ticker .sep {
  color: var(--status-sep, var(--rule));
  padding: 0 !important;
}

@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
