/*
 * Shared design tokens — loaded on BOTH the Bootstrap shell (a_base.html) and
 * the modern shell (a_base_2026.html). Deliberately minimal and additive.
 *
 * NOTE: the earlier Bootstrap button/link recolouring was removed — recolouring
 * the app's primary buttons green clashed with the Bootstrap pages. The app now
 * keeps its default blue buttons/links; only the typeface and a namespaced
 * palette (for our own components) are shared here. The modern 2026 pages get
 * their look from the Agenthon stylesheet + agenthon2026_shell.css, not from here.
 *
 * Inter is listed first but not bundled (matches the upstream Agenthon site).
 */

:root {
  /* Agenthon palette, namespaced so it can't collide with --bs-* */
  --a-page: #f6f8fb;
  --a-surface: #ffffff;
  --a-ink: #18202a;
  --a-muted: #5f6b78;
  --a-line: #d9e1e7;
  --a-green: #0a9f7d;
  --a-green-deep: #08745c;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, sans-serif;
}
