/* ─────────────────────────────────────────────
   LicenceMyGun — Design Tokens
   Single source of truth for all pages.
   Link in <head> before any inline <style> block.
───────────────────────────────────────────── */
:root {
  /* Surfaces (near-black neutral scale) */
  --surface-0: #0d1318;   /* page background     */
  --surface-1: #161616;   /* card/panel           */
  --surface-2: #1f1f1f;   /* nested/interactive   */
  --surface-3: #2a2a2a;   /* hover/active surface */

  /* Borders */
  --border:        #2a2a2a;   /* default hairline */
  --border-accent: #d4af5a;   /* gold — complete cards, focus */

  /* Text */
  --text-primary:   #ffffff;
  --text-secondary: #c5c5c5;
  --text-muted:     #8a8a8a;

  /* Accent */
  --accent-gold:      #d4af5a;
  --accent-gold-tint: #3a2f1a;   /* bg tint for gold badges */

  /* Status */
  --success:      #7dc87d;
  --success-tint: rgba(125,200,125,0.12);
  --warning:      #e8a838;
  --warning-tint: rgba(232,168,56,0.12);
  --error:        #f87171;
  --info:         #5b9bd5;
  --info-tint:    rgba(91,155,213,0.12);

  /* Border radius */
  --r-sm:   9999px;   /* pills — buttons, badges */
  --r-md:   16px;     /* cards, modals           */
  --r-lg:   16px;     /* alias for consistency   */

  /* Type scale */
  --text-xs:   0.75rem;    /*  12px */
  --text-sm:   0.8125rem;  /*  13px */
  --text-base: 0.875rem;   /*  14px */
  --text-md:   1rem;       /*  16px */
  --text-lg:   1.25rem;    /*  20px */
  --text-xl:   1.5rem;     /*  24px */

  /* Spacing (4px grid) */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-6:  24px;
  --space-8:  32px;
  --space-12: 48px;
}
