/* ============================================================
   Black Ink Intranet - Design Tokens
   Professional Minimalism: Clean, spacious, intelligent
   ============================================================ */

:root {
  /* ── Colors ── */

  /* Primary */
  --color-black: #000000;
  --color-white: #FFFFFF;

  /* Neutrals */
  --color-gray-dark: #333333;
  --color-gray-medium: #666666;
  --color-gray-light: #999999;
  --color-gray-lightest: #CCCCCC;

  /* Backgrounds */
  --color-bg-light: #F5F5F5;
  --color-bg-lighter: #FAFAFA;

  /* Borders */
  --color-border: #E5E5E5;
  --color-border-focus: #333333;

  /* Accent */
  --color-charcoal: #1A1A1A;

  /* Functional (monochrome — on-brand) */
  --color-error: #333333;
  --color-success: #333333;

  /* Backward-compatible aliases (match existing main.css naming) */
  --color-gray-warm: var(--color-gray-medium);
  --color-off-white: var(--color-bg-lighter);


  /* ── Typography ── */

  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;

  /* Sizes */
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 28px;
  --font-size-4xl: 36px;
  --font-size-5xl: 48px;

  /* Weights */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Line Heights */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.6;
  --line-height-loose: 1.8;


  /* ── Spacing (8px Grid) ── */

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;


  /* ── Shadows ── */

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-base: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);


  /* ── Border Radius ── */

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-full: 9999px;


  /* ── Transitions ── */

  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;


  /* ── Layout ── */

  --header-height: 72px;
  --content-max-width: 1200px;
  --sidebar-width: 280px;
}
