/*
 * Editable colours. Written by the Awake panel — edits here are replaced
 * the next time someone saves in the panel, and by the next deploy.
 *
 * :root:root so this wins on specificity rather than on load order.
 */
:root:root {
  --primary: #b55dff;
  --foreground: #f9f8fb;
  --muted-foreground: #a7a1b5;
  --cta-from: #cb7aff;
  --cta-to: #a24aff;

  --accent: color-mix(in oklab, var(--primary) 45%, black);
  --border: color-mix(in oklab, color-mix(in oklab, var(--primary) 52%, black) 55%, transparent);

  --gradient-cta: linear-gradient(100deg, var(--cta-from), var(--cta-to));
  --shadow-glow: 0 0 40px color-mix(in oklab, var(--cta-to) 55%, transparent);
}
