/* Single source of truth for the Ofyz brand colour.
 *
 * Every tool's light-theme accent references var(--brand, #176b58): change the
 * value here to rebrand the whole suite's primary colour in ONE place. The
 * #176b58 fallback means nothing breaks if this file fails to load, and the
 * change is visually identical today (--brand IS #176b58).
 *
 * Served same-origin at /shared/brand.css (scripts/copy-shared-css.mjs → site/shared/,
 * linked from every tool's <head>). Dark-mode accent tints stay per-tool for now
 * (they genuinely diverge — see the memory note on the 13 stylesheets). */
:root {
  --brand: #176b58; /* primary teal */
  --brand-hover: #105747; /* darker teal for hover / pressed */
  --brand-soft: rgba(23, 107, 88, 0.11); /* faint accent wash */
}
