/* frontend/styles/tokens.css */
:root {
  --color-bg: #f4f7fb;
  --color-surface: #ffffff;
  --color-surface-subtle: #f8fafc;
  --color-surface-muted: #eef3f8;
  --color-border: #dbe4ee;
  --color-border-strong: #c7d3e0;
  --color-text: #172033;
  --color-text-muted: #68758a;
  --color-brand: #10233f;
  --color-brand-hover: #17365f;
  --color-info: #2563eb;
  --color-info-subtle: #eaf1ff;
  --color-success: #15803d;
  --color-success-subtle: #eaf8ef;
  --color-warning: #c86b0a;
  --color-warning-subtle: #fff4e6;
  --color-danger: #c43d3d;
  --color-danger-subtle: #fff0f0;
  --font-sans:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(16, 35, 63, 0.05), 0 2px 8px rgba(16, 35, 63, 0.04);
  --shadow-md: 0 10px 30px rgba(16, 35, 63, 0.08);
}
