/*
 * Parloa 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/parloa.css). Restores Parloa's
 * Further-era kit (Pampas / Cod Gray / Pumpkin) over the Unicorp default.
 *
 * `:root:root` beats the bundle's `:root` regardless of <link> order.
 * Colours only — logo via hostname fallback / Branding settings. Pumpkin is
 * the single saturated accent, so destructive routes to true red and the
 * chart palette is explicit (warm/earthy, no near-blacks).
 */
:root:root {
  --background: #f5f4f0;
  --foreground: #201c1b;
  --card: #ffffff;
  --card-foreground: #201c1b;
  --popover: #ffffff;
  --popover-foreground: #201c1b;
  --primary: #fe7615;
  --primary-foreground: #f5f4f0;
  --secondary: #ebe7df;
  --secondary-foreground: #201c1b;
  --muted: #ebe7df;
  --muted-foreground: #5a5147;
  --accent: color-mix(in srgb, #fe7615 12%, #ffffff);
  --accent-foreground: #fe7615;
  --destructive: #dc2626; /* pumpkin is the brand accent → route delete to true red */
  --ring: #fe7615;
  --signal: #fe7615;
  --signal-subtle: color-mix(in srgb, #fe7615 10%, #ffffff);

  /* sidebar */
  --sidebar-accent: #ebe7df;
  --sidebar-accent-foreground: #201c1b;
  --sidebar-ring: #fe7615;

  /* categorical chart palette (warm/earthy; avoids muddy darks) */
  --chart-1: #fe7615;
  --chart-2: #b9533a;
  --chart-3: #c89a3e;
  --chart-4: #7d6a52;
  --chart-5: #ffa97a;
  --chart-6: #8f8a72;
  --chart-7: #d4c4a8;
  --chart-8: #9c8b76;

  /* 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: #5a5147;

  --radius: 0.5rem;
  --font-sans: 'Inter Variable', 'Inter', Arial, sans-serif;
}
