/*
  ValtricBot - global brand colors
  ----------------------------------
  Edit the values here to recolor the whole site (landing, auth pages and panel).
  This file is loaded after each page's own <style>, so these win.

  Only brand/accent colors live here. The dark "neutrals" (page background,
  card surfaces, borders, text) stay per-page on purpose, because the panel
  and the marketing site use slightly different shades.
*/
:root{
  /* Core palette - change these three to rebrand everything */
  --c1:#6366f1;   /* primary (indigo)  - buttons, links, logos */
  --c2:#22d3ee;   /* secondary (cyan)  - accents, gradient highlight */
  --c3:#a855f7;   /* tertiary (purple) - gradient tail */

  /* Brand gradient (used on buttons, badges, logos). Auto-follows c1/c2/c3. */
  --grad:linear-gradient(105deg,var(--c2),var(--c1) 55%,var(--c3));

  /* Panel aliases - kept in sync with the palette above */
  --accent:var(--c1);          /* solid accent / primary buttons */
  --accent2:var(--c2);         /* cyan accent used in small gradients */
  --accent-text:#a5b4fc;       /* link / accent text (light indigo) */
  --accent-hover:#7c83f5;      /* button hover - lighter indigo, never cyan */
}
