/* StrataBench accent — distinct from StrataChat (warm orange) to signal a
   separate sub-app. Tuned per theme: a deeper teal on the cream light bg
   so 12px button text + thin borders stay readable, and a brighter teal
   on the near-black dark bg for the same reason. Same hue (~195°) so
   the brand identity is consistent across themes. */
:root {
  --bench-accent: oklch(0.58 0.13 195);
  --bench-accent-soft: oklch(0.58 0.13 195 / 0.12);
  --bench-accent-rgb: 0,124,138;
}
.dark {
  --bench-accent: oklch(0.78 0.14 195);
  --bench-accent-soft: oklch(0.78 0.14 195 / 0.16);
  --bench-accent-rgb: 92,206,212;
}

.text-bench-accent { color: var(--bench-accent); }
.bg-bench-accent { background-color: var(--bench-accent); }
.border-bench-accent { border-color: var(--bench-accent); }
.bg-bench-accent\/10 { background-color: var(--bench-accent-soft); }
