/**
 * CertifyDZ brand overrides. Loaded AFTER @trycompai/design-system/globals.css
 * so these win the cascade. The design-system package is an external npm dep
 * (its own --primary is the upstream vendor's green), so overriding the CSS
 * custom properties here is the single supported brand-color hook.
 * #0E7C5B expressed in the token system's oklch space.
 */
:root {
  --primary: oklch(0.53 0.11 165);
  --primary-foreground: oklch(0.985 0.01 165);
  --sidebar-primary: oklch(0.53 0.11 165);
}
.dark {
  --primary: oklch(0.53 0.11 165);
  --primary-foreground: oklch(0.985 0.01 165);
  --sidebar-primary: oklch(0.53 0.11 165);
}

