/* ═══════════════════════════════════════════════════════════════
   NEXBRIDGE GRC ADVISORY — Design tokens
   Single source of truth for colors, easing, and typography.
   ═══════════════════════════════════════════════════════════════ */
:root {
  /* Brand colour system — locked per Nexbridge brand guidelines */
  --authority: #0B2C5F;   /* Authority Blue · Governance · primary surface */
  --trust:     #1E5AA8;   /* Trust Blue · Risk · secondary accent */
  --depth:     #0E3D7A;   /* Depth Blue · Compliance · tertiary surface */
  --growth:    #2ECC71;   /* Growth Green · accent ONLY (one per composition) */

  /* Neutrals */
  --cloud:     #EBF2FC;
  --mist:      #D0DCF0;
  --slate:     #4A5568;
  --surface:   #F6F8FB;
  --ink:       #0A1E3F;
  --white:     #FFFFFF;

  /* Easing */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}
