/* ============================================
   Shared Design Tokens
   Stilren, Apple-inspirerad estetik.
   ============================================ */

:root {
  /* Typografi */
  --font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --line-height: 1.5;

  /* Färger — nära monokromt */
  --color-text: #1d1d1f;
  --color-text-secondary: #86868b;
  --color-bg: #f5f5f7;
  --color-surface: #ffffff;
  --color-border: #e5e5e7;
  --color-accent: #1d1d1f;
  --color-accent-hover: #424245;

  /* KSS — diskreta accenter */
  --color-keep: #34c759;
  --color-stop: #ff3b30;
  --color-start: #007aff;
  --color-keep-bg: #f0faf2;
  --color-stop-bg: #fef2f1;
  --color-start-bg: #f0f5ff;

  /* Status */
  --color-success-bg: #f0faf2;
  --color-success-text: #1a7d36;
  --color-error-bg: #fef2f1;
  --color-error-text: #c4302b;
  --color-info-bg: #f0f5ff;
  --color-info-text: #1a5bc4;
  --color-warn-bg: #fff8ed;
  --color-warn-text: #92400e;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;

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

  /* Transitions */
  --transition-fast: 150ms ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-family);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
