/* ============================================================================
   AVFX CRM — BRAND TOKENS
   ----------------------------------------------------------------------------
   THIS IS THE ONE FILE.

   Every colour in the entire product is derived from the values below.
   Change a value here and it updates everywhere, in both themes, automatically.

   You do NOT need to pick hover shades, tints, borders or disabled states.
   Those are calculated in _derived.css by mixing these values.

   See docs/decisions/ADR-0009-colour-controlled-from-one-file.md
   ========================================================================== */

:root {

  /* --- BRAND ------------------------------------------------------------
     Measured from assets/img/logo-on-light.png                            */

  --seed-charcoal:   #303030;   /* the "AV" letters and the tagline        */
  --seed-red:        #D80010;   /* the "FX" letters — IDENTITY ONLY.
                                   Never used for ordinary buttons.
                                   See ADR-0006.                           */

  /* --- INTERACTION ------------------------------------------------------
     Buttons, links, focus, selected rows. Material Blue 800.
     Chosen over Blue 700 because white text on it reaches 5.7:1 contrast
     rather than 4.55:1 — margin survives a brand override.                */

  --seed-primary:    #1565C0;

  /* --- STATUS -----------------------------------------------------------
     Material values. Meanings fixed in docs/02-DESIGN-SYSTEM.md §3.4      */

  --seed-success:    #2E7D32;   /* approved · verified · profit            */
  --seed-danger:     #B71C1C;   /* rejected · failed · loss · destructive
                                   deliberately DARKER than --seed-red so
                                   the two can never be confused           */
  --seed-warning:    #E65100;   /* pending · deadline at risk · expiring   */
  --seed-info:       #1565C0;   /* in review · informational               */
  --seed-neutral:    #546E7A;   /* draft · closed · archived · N/A         */
  --seed-purple:     #5E35B1;   /* on hold · escalated · special handling  */

  /* --- NEUTRAL BASE -----------------------------------------------------
     The grey family that surfaces, borders and text are built from.
     A slight blue cast reads as more professional than pure grey.         */

  --seed-grey:       #5F6368;

  /* --- GEOMETRY ---------------------------------------------------------
     Every radius and every spacing value is a multiple of these.          */

  --seed-radius:     4px;
  --seed-space:      4px;

  /* --- TYPE -------------------------------------------------------------
     One typeface for the whole product. See ADR-0007.                     */

  --seed-font:       "Inter";
  --seed-font-size:  14px;      /* body default; the whole scale derives from it.
                                   Raised from 13px on 2026-08-08 — the product
                                   owner found the interface too tight.        */
}
