/* Design System - Clean & Minimal */

:root {
  /* Colors - Clean white */
  --color-bg: #ffffff;           /* White background */
  --color-text: #0a0a0a;         /* Near black text */
  --color-text-muted: #737373;   /* Medium gray */
  --color-border: #e5e5e5;       /* Light gray borders */
  --color-accent: #0066cc;       /* Blue accents */
  --color-accent-hover: #0052a3; /* Darker blue */
  --color-code-bg: #f5f5f5;      /* Light gray for code */
  --color-code-border: #e5e5e5;  /* Light gray */

  /* Spacing - Compact scale */
  --space-2xs: 0.125rem;  /* 2px */
  --space-xs: 0.25rem;    /* 4px */
  --space-sm: 0.375rem;   /* 6px */
  --space-md: 0.5rem;     /* 8px */
  --space-base: 0.75rem;  /* 12px */
  --space-lg: 1rem;       /* 16px */
  --space-xl: 1.5rem;     /* 24px */
  --space-2xl: 2rem;      /* 32px */

  /* Typography - Thin & clean */
  --font-mono: "IBM Plex Mono", "SF Mono", "Monaco", "Cascadia Code", monospace;
  --font-weight-normal: 400;  /* Thin */
  --font-weight-medium: 400;  /* Keep thin */
  --font-weight-semibold: 500; /* Only slightly heavier for headings */

  --font-size-xs: 11px;
  --font-size-sm: 12px;
  --font-size-base: 13px;
  --font-size-md: 14px;
  --font-size-lg: 15px;
  --font-size-xl: 17px;
  --font-size-2xl: 19px;

  --line-height-tight: 1.2;
  --line-height-base: 1.5;
  --line-height-relaxed: 1.6;

  /* Layout - Compact */
  --max-width: 760px;
  --page-padding: 12px;
  --border-width: 1px;
  --border-radius: 0;

  /* Transitions */
  --transition-fast: 0.15s;
}
