/* UI v2 Tokens */
:root {
  /* Surfaces */
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-2: #f3f5f9;

  /* Text */
  --text: #0f172a;
  --text-muted: #64748b;

  /* Borders / shadows */
  --border: #e6eaf2;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);

  /* Brand */
  --primary: #2563eb;
  --primary-contrast: #ffffff;

  /* Status */
  --success-bg: #e9f8ef;
  --success-border: #bdeacc;
  --success-text: #0b5d2a;

  --warning-bg: #fff6e6;
  --warning-border: #ffe0a3;
  --warning-text: #7a4b00;

  --danger-bg: #ffe9e9;
  --danger-border: #ffb8b8;
  --danger-text: #7a0b0b;

  /* Spacing scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;

  /* Radius */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 18px;

  /* Typography */
  --fs-sm: 12px;
  --fs-base: 14px;
  --fs-lg: 18px;
  --fs-xl: 26px;
}