/*
 * Design tokens — single source of truth for all visual values.
 * Override these in a theme layer; never hard-code values elsewhere.
 */
:root {
  /* ── Colour: Brand ──────────────────────────────── */
  --color-primary:         #3b82f6;
  --color-primary-hover:   #2563eb;
  --color-primary-subtle:  #eff6ff;
  --color-primary-border:  #bfdbfe;

  --color-danger:          #ef4444;
  --color-danger-hover:    #dc2626;
  --color-danger-subtle:   #fef2f2;

  --color-success:         #22c55e;
  --color-success-hover:   #16a34a;
  --color-success-subtle:  #f0fdf4;

  --color-warning:         #f59e0b;
  --color-warning-hover:   #d97706;
  --color-warning-subtle:  #fffbeb;

  --color-info:            #06b6d4;
  --color-info-hover:      #0891b2;
  --color-info-subtle:     #ecfeff;

  /* ── Colour: Neutral surface ──────────────────── */
  --color-bg:              #ffffff;
  --color-bg-subtle:       #f9fafb;
  --color-surface:         #f3f4f6;
  --color-border:          #e5e7eb;
  --color-border-strong:   #d1d5db;

  /* ── Colour: Text ─────────────────────────────── */
  --color-text:            #111827;
  --color-text-muted:      #6b7280;
  --color-text-placeholder:#9ca3af;
  --color-text-inverse:    #ffffff;

  /* ── Colour: Sidebar ──────────────────────────── */
  --color-sidebar-bg:          #1e293b;
  --color-sidebar-text:        #94a3b8;
  --color-sidebar-text-active: #f8fafc;
  --color-sidebar-link-hover:  rgba(255 255 255 / 0.07);
  --color-sidebar-link-active: #3b82f6;
  --color-sidebar-border:      #334155;
  --color-sidebar-brand:       #f8fafc;

  /* ── Typography ────────────────────────────────── */
  --font-sans: system-ui, -apple-system, sans-serif;
  --font-mono: ui-monospace, "Cascadia Code", monospace;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;

  --font-normal:   400;
  --font-medium:   500;
  --font-semibold: 600;
  --font-bold:     700;

  --leading-none:    1;
  --leading-tight:   1.25;
  --leading-snug:    1.375;
  --leading-normal:  1.5;
  --leading-relaxed: 1.625;

  /* ── Spacing ───────────────────────────────────── */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* ── Layout ────────────────────────────────────── */
  --container-max:  72rem;
  --sidebar-width:  15rem;
  --header-height:  3.5rem;

  /* ── Border radius ─────────────────────────────── */
  --radius-sm:   0.25rem;
  --radius:      0.375rem;
  --radius-md:   0.5rem;
  --radius-lg:   0.75rem;
  --radius-xl:   1rem;
  --radius-full: 9999px;

  /* ── Shadows ───────────────────────────────────── */
  --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow:    0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.15), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* ── Z-index scale ─────────────────────────────── */
  --z-base:     0;
  --z-raised:   10;
  --z-dropdown: 100;
  --z-header:   200;
  --z-overlay:  300;
  --z-sidebar:  400;
  --z-modal:    500;
  --z-toast:    600;

  /* ── Transitions ───────────────────────────────── */
  --transition:      150ms ease;
  --transition-slow: 300ms ease;
}
