:root {
  /* Surfaces */
  --bg: #f8f9fb;
  --bg-subtle: #f1f3f6;
  --surface: #ffffff;
  --surface-hover: #fafbfc;
  --surface-dark: #111827;
  --surface-dark-hover: #1f2937;

  /* Ink */
  --ink: #111827;
  --ink-secondary: #4b5563;
  --ink-tertiary: #9ca3af;
  --ink-inverse: #f9fafb;
  --ink-inverse-secondary: rgba(255, 255, 255, 0.7);

  /* Borders */
  --border: #e5e7eb;
  --border-hover: #d1d5db;
  --border-focus: #6366f1;

  /* Accent — warm coral */
  --accent: #e07a4f;
  --accent-hover: #c96a42;
  --accent-soft: rgba(224, 122, 79, 0.1);
  --accent-border: rgba(224, 122, 79, 0.25);

  /* Indigo — primary actions */
  --primary: #6366f1;
  --primary-hover: #4f46e5;
  --primary-soft: rgba(99, 102, 241, 0.08);

  /* Semantic */
  --success: #059669;
  --success-soft: rgba(5, 150, 105, 0.08);
  --warn: #d97706;
  --warn-soft: rgba(217, 119, 6, 0.08);
  --danger: #dc2626;
  --danger-soft: rgba(220, 38, 38, 0.08);
  --teal: #0d9488;
  --teal-soft: rgba(13, 148, 136, 0.08);

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  /* Timing */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 0.15s;
  --duration-normal: 0.25s;
  --duration-slow: 0.4s;

  /* Sidebar */
  --sidebar-width: 280px;
}

/* --- Reset & base -------------------------------------------------- */
