/*
 * 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: #f43f5e;
  --foreground: #fdf6f7;
  --muted-foreground: #bfa4aa;
  --cta-from: #fb7185;
  --cta-to: #e11d48;
  --title-brand: #e70d3d;
  --title-vip: #e8bf4f;

  --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);
}
