/* Memoria design tokens — source of truth for brand color, type, and motion. */

:root {
  --color-brand: #406766;
  --color-brand-dark: #2d4d4c;
  --color-brand-hover: #355453;
  --color-brand-soft: rgba(64, 103, 102, 0.2);
  --color-bg: #f0f6ff;
  --color-surface: #ffffff;
  --color-text: #333333;
  --color-text-muted: #666666;
  --color-border: #e1e8ed;
  --color-error: #e74c3c;
  --color-focus-ring: rgba(64, 103, 102, 0.25);
  --radius-md: 8px;
  --radius-lg: 12px;
  --font-sans: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --sidebar-width: 260px;
  --sidebar-width-collapsed: 85px;
  --header-height: 70px;
}

:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
