/* NavBoost.com — Design Tokens */

:root {
  /* Primary palette */
  --charcoal: #1e1e2e;
  --slate: #5c6370;
  --fog: #8b95a5;

  /* Accent */
  --signal-orange: #e85d26;
  --signal-orange-light: #fff0eb;
  --signal-orange-hover: #d14e1c;

  /* Backgrounds */
  --paper: #fafaf8;
  --white: #ffffff;
  --ink: #151520;
  --ink-light: #1e1e30;

  /* Borders */
  --border: #e2e4e8;
  --border-light: #eeeff2;

  /* Data visualization */
  --data-blue: #3b82f6;
  --data-green: #22c55e;
  --data-red: #ef4444;

  /* Semantic text */
  --text-primary: var(--charcoal);
  --text-secondary: var(--slate);
  --text-muted: var(--fog);
  --text-on-dark: #e0e4ec;
  --text-on-dark-muted: #8b90a0;

  /* Typography scale */
  --font-heading: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-mono: 'IBM Plex Mono', 'SFMono-Regular', Consolas, monospace;

  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1.125rem; /* 18px */
  --text-lg: 1.25rem;    /* 20px */
  --text-xl: 1.5rem;     /* 24px */
  --text-2xl: 2rem;      /* 32px */
  --text-3xl: 2.5rem;    /* 40px */
  --text-4xl: 3rem;      /* 48px */

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;
  --space-section: 88px;

  /* Layout */
  --max-width: 1180px;
  --content-width: 720px;
  --sidebar-width: 240px;
  --container-padding: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(30, 30, 46, 0.05);
  --shadow-md: 0 4px 12px rgba(30, 30, 46, 0.08);
  --shadow-lg: 0 8px 24px rgba(30, 30, 46, 0.1);
  --shadow-card: 0 2px 8px rgba(30, 30, 46, 0.06);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;

  /* Nav */
  --nav-height: 60px;
}
