/* ==========================================================================
   tokens.css — Design tokens for dash1x.research.my
   Family: research.my Palantir-inspired dark theme (matches kai/pm1)
   ========================================================================== */

:root {
  /* ---- Backgrounds ---- */
  --bg-black:    #000000;
  --bg-dark:     #0C0C0C;
  --bg-card:     #111111;
  --bg-elevated: #1A1A1A;
  --bg-hover:    #1F1F1F;

  /* ---- Text ---- */
  --text-white: #FFFFFF;
  --text-gray:  #BBBBBB;
  --text-soft:  #999999;
  --text-muted: #666666;
  --text-dim:   #444444;

  /* ---- Borders ---- */
  --border:        #222222;
  --border-light:  #333333;
  --border-strong: #555555;

  /* ---- Accents ---- */
  --accent-teal:  #1D9E75;
  --accent-blue:  #4B7BF5;
  --accent-amber: #D4A024;

  /* ---- Status ---- */
  --color-error:   #FF6666;
  --color-success: #22C55E;
  --color-warn:    #F59E0B;

  /* ---- Fonts ---- */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;

  /* ---- Spacing ---- */
  --space-4:  4px;
  --space-8:  8px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;
  --space-40: 40px;
  --space-48: 48px;
  --space-64: 64px;
  --space-80: 80px;

  /* ---- Layout ---- */
  --docs-max:     760px;
  --table-max:    1100px;

  /* ---- Transitions ---- */
  --transition-fast: 120ms ease;
  --transition-base: 200ms ease;

  /* ---- Z-index ---- */
  --z-sticky: 50;
  --z-modal:  200;
  --z-toast:  300;
}
