/* ============================================================
   NTM Recovery — Design Tokens
   ============================================================ */
:root {
  /* Colors — Steel & Blue palette */
  --bg-dark:        #0F1419;
  --bg-card:        #1A2332;
  --bg-alt:         #1E3A5F;
  --accent:         #3B82F6;
  --accent-light:   #60A5FA;
  --text-primary:   #E2E8F0;
  --text-muted:     #94A3B8;
  --sage:           #4ADE80;
  --border:         rgba(59, 130, 246, 0.2);
  --border-strong:  rgba(59, 130, 246, 0.45);

  /* Typography */
  --font-display:   'Teko', system-ui, sans-serif;
  --font-label:     'Oswald', system-ui, sans-serif;
  --font-body:      'Roboto', system-ui, sans-serif;

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;

  /* Radii — hard-edged = rugged */
  --radius-sm: 2px;
  --radius-md: 4px;

  /* Shadows */
  --shadow-glow:      0 4px 20px rgba(59, 130, 246, 0.3);
  --shadow-glow-soft: 0 4px 20px rgba(96, 165, 250, 0.2);

  /* Transitions */
  --transition-fast: 0.2s ease;
}
