/* =========================================================================
   atrium.k8box.io — per-domain accent override.
   The page-level layout, typography, hero/trust/footer components, and
   font faces all come from `_shared/css/base.css` (materialised at build
   time into `assets/css/base.css`). This file only overrides the
   per-domain accent palette so Atrium reads as violet across hero
   gradients, trust-card rules, sketch strokes, and the sticky CTA.

   Sibling sites follow the same minimal-override pattern:
     k8box.io   → teal
     tally.k8box.io   → amber
     spectrum.k8box.io → indigo-purple
     tcwlab.com  → orange
     atrium.k8box.io  → violet  (this file)
   ========================================================================= */

:root {
  --accent: #7c3aed;
  --accent-soft: #a78bfa;
  --accent-glow: rgba(124, 58, 237, 0.16);
  --accent-tint: rgba(124, 58, 237, 0.06);
  --accent-paper: #f7f4ff;
}

@media (prefers-color-scheme: dark) {
  :root {
    --accent: #a78bfa;
    --accent-soft: #c4b5fd;
    --accent-glow: rgba(167, 139, 250, 0.18);
    --accent-tint: rgba(167, 139, 250, 0.05);
    --accent-paper: #161220;
  }
}
