/* PACCO Monitor — tokens e base. Tema claro: branco no fundo, preto nos
   detalhes, vermelho só para o que é crítico. */
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600&family=JetBrains+Mono:wght@400;500&family=Poppins:wght@300;400&display=swap");

:root {
  --bg: #ffffff;
  --ink: #0a0a0a;
  --muted: #6b6b6b;
  --faint: #a3a3a3;
  --line: #e6e6e6;
  --soft: #f5f5f4;
  --ok: #16a34a;
  --warn: #d97706;
  --crit: #dc2626;
  --crit-soft: #fef2f2;
  --sans: "Inter Tight", system-ui, sans-serif;
  --sub: "Poppins", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body { min-height: 100vh; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input { font: inherit; }
[hidden] { display: none !important; }

.label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.sub { font-family: var(--sub); font-weight: 300; }
.mono { font-family: var(--mono); }
.fine { font-family: var(--sub); font-weight: 300; font-size: 12px; color: var(--muted); line-height: 1.6; }

.logo { height: 28px; width: auto; display: block; align-self: flex-start; flex-shrink: 0; mix-blend-mode: multiply; }

.btn { display: inline-flex; align-items: center; justify-content: space-between; gap: 24px; background: var(--ink); color: #fff; padding: 18px 24px; border-radius: 999px; font-weight: 500; }
.btn[disabled] { opacity: .5; cursor: progress; }
.btn-ghost { border: 1px solid var(--ink); border-radius: 999px; padding: 8px 14px; font-size: 13px; }

.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); display: inline-block; }
.dot.crit { background: var(--crit); }
.dot.off { background: var(--faint); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
