:root {
  /* Brand */
  --brand:       #FF6B35;
  --brand-light: rgba(255, 107, 53, 0.09);
  --brand-hover: #E55A25;

  /* Neutral scale */
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50:  #F9FAFB;
  --white:    #FFFFFF;

  /* Semantic */
  --success:    #059669;
  --success-bg: rgba(5, 150, 105, 0.1);
  --warning:    #D97706;
  --warning-bg: rgba(217, 119, 6, 0.1);
  --danger:     #DC2626;
  --danger-bg:  rgba(220, 38, 38, 0.1);
  --info:       #2563EB;
  --info-bg:    rgba(37, 99, 235, 0.1);

  /* Surfaces */
  --bg-body:    var(--gray-50);
  --bg-sidebar: var(--white);
  --bg-card:    var(--white);

  /* Borders */
  --border:        var(--gray-200);
  --border-strong: var(--gray-300);

  /* Typography */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Border radius */
  --r-sm:   6px;
  --r:      8px;
  --r-lg:  12px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow:    0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);

  /* Transition */
  --t: 150ms ease;
}
