/* stylelint-disable value-keyword-case declaration-block-single-line-max-declarations */

/* Evident Technologies LLC - Design Tokens (single source of truth) */
:root {
  /* Primary Branding Colors */
  --color-primary: #0b73d2; /* Evident core blue */
  --color-accent: #e07a5f; /* Accent orange */
  --color-neutral: #f6f7f9; /* Light neutral */
  --color-bg: #fff; /* White background */
  --color-text: #1a1a2e; /* Dark text */
  --color-text-muted: #6b7280; /* Muted gray */

  /* Typography */
  --font-sans:
    'Inter', 'system-ui', '-apple-system', 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', 'sans-serif';

  /* Layout */
  --max-width: 1200px;
  --spacing-base: 1rem;
}

/* Utility classes for layout components */
.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
