﻿/* ============================================================
   Regency Analytics LLC — Design Tokens
   Single source of truth for all CSS custom properties.
   Load this FIRST on every page.
   ============================================================ */
:root {
  /* Brand colours */
  --navy-900:    #081225;
  --brand-navy:  #081225;
  --navy-800:    #0F1B2D;
  --navy-700:    #1A2B45;

  /* --blue-600 is the DARK nav/active colour throughout the site.
     --blue-500 is the BRIGHT accent used for links, kickers, highlights. */
  --blue-600:    #0F2B5B;
  --blue-500:    #3B6FE8;

  /* Gold */
  --gold-700:    #5A4010;
  --gold-600:    #6B4C12;
  --gold-500:    #C9A96E;
  --gold-400:    #D4BA85;
  --gold-300:    #E0CC9D;

  /* Neutrals */
  --white:       #FFFFFF;
  --gray-50:     #F8F9FA;
  --gray-100:    #F0F2F5;
  --gray-200:    #D1D5DB;
  --gray-300:    #A0AEC0;
  --gray-400:    #718096;
  --gray-500:    #4A5568;
  --gray-800:    #081225;

  /* Page background (used by secondary content pages) */
  --bg-page: linear-gradient(180deg, #f5f5f5 0%, #ededee 45%, #e4e4e6 100%);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}
