/*
 * Orbem colour override — served per-deployment as /branding.css
 * (ANDROMEDA_BRANDING_CSS_PATH points here; the file ships in the deploy
 * tarball at /opt/andromeda/deploy/customers/orbem.css). Restores Orbem's
 * warm-cream + Tekkr-blue palette over the in-code Unicorp default.
 *
 * `:root:root` (specificity 0,2,0) beats the bundle's `:root` regardless of
 * <link> order — Vite appends the bundle CSS after the branding.css link.
 * Colours only: the logo comes from the hostname fallback / Branding settings.
 * To recolour Orbem, edit this file + redeploy config — no frontend rebuild.
 */
:root:root {
  /* brand-palette vars the Unicorp default retinted */
  --brand-punch: #ff5327;
  --brand-punch-hover: #de4119;
  --brand-dark-choco: #201618;
  --brand-ash-taupe: #766965;
  --brand-warm-linen: #e3ded5;

  /* role tokens */
  --background: #fffdfa;
  --foreground: #201618;
  --card: #ffffff;
  --card-foreground: #201618;
  --popover: #ffffff;
  --popover-foreground: #201618;
  --primary: #433dec;
  --primary-foreground: #fffdfa;
  --secondary: #f1efea;
  --secondary-foreground: #201618;
  --muted: #f1efea;
  --muted-foreground: #766965;
  --accent: #ececfd;
  --accent-foreground: #433dec;
  --destructive: #ff5327;
  --ring: #433dec;
  --signal: #ff5327;
  --signal-subtle: #ffeee9;

  /* sidebar */
  --sidebar-accent: #f1efea;
  --sidebar-accent-foreground: #201618;
  --sidebar-ring: #433dec;

  /* categorical chart palette */
  --chart-1: #433dec;
  --chart-2: #ff5327;
  --chart-3: #eda617;
  --chart-4: #766965;
  --chart-5: #a19ef5;
  --chart-6: #f6d38b;
  --chart-7: #ffa993;
  --chart-8: #bbcdd3;

  /* domain palette (historical default set) */
  --chart-domain-software: #3b82f6;
  --chart-domain-hardware: #f97316;
  --chart-domain-data-ml: #06b6d4;
  --chart-domain-sales: #f43f5e;
  --chart-domain-marketing: #eab308;
  --chart-domain-operations: #8b5cf6;
  --chart-domain-science: #10b981;
  --chart-domain-learning: #ec4899;
  --chart-domain-personal: #f59e0b;
  --chart-domain-other: #14b8a6;

  /* value/adoption ramp (green / amber / grey) */
  --value-execution: #22c55e;
  --value-research: #eab308;
  --value-chat: #766965;

  --radius: 0.75rem;
}
