/* style.css — identidade visual do blog.
   Do agentops vem a organização (tokens em :root + /ux-catalog). A identidade é
   própria; os valores abaixo são neutros, a refinar. */

:root {
  /* tokens neutros iniciais — refinar a identidade do blog depois */
  --bg: #ffffff;
  --surface: #f6f7f9;
  --border: #e2e4e8;
  --text: #1a1c20;
  --text-muted: #6b7280;
  --accent: #2563eb;
  --ok: #16a34a;
  --warn: #d97706;
  --err: #dc2626;

  --radius: 6px;
  --space: 8px;
  --font-sans: -apple-system, system-ui, "Segoe UI", sans-serif;
  --font-mono: ui-monospace, "SF Mono", monospace;
}

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

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

code {
  font-family: var(--font-mono);
  background: var(--surface);
  padding: 0.1em 0.4em;
  border-radius: 3px;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
