/* === MyVoice Design Tokens v1 === */
:root {
  /* Surfaces */
  --bg: #faf7f2;
  --surface: #ffffff;
  --surface-2: #f3efe8;
  --border: #eae3d8;

  /* Text */
  --text: #2b2620;
  --text-muted: #6b6157;
  --text-soft: #9b8f82;

  /* Categories (Fitzgerald) */
  --cat-people: #f5c84b;
  --cat-people-bg: #fdf3d4;
  --cat-action: #6fbf73;
  --cat-action-bg: #e1f2df;
  --cat-thing: #f2a65a;
  --cat-thing-bg: #fce8d4;
  --cat-place: #c58ce0;
  --cat-place-bg: #efe0f5;

  /* Accent */
  --accent: #e8794a;
  --accent-hover: #d86838;
  --accent-text: #ffffff;

  /* States */
  --success: #6fbf73;
  --danger: #e06d5c;
  --danger-bg: #fbe7e3;

  /* Type scale */
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 22px;
  --text-2xl: 28px;

  /* Leading (пара с размером из ТЗ — для утилит) */
  --leading-xs: 16px;
  --leading-sm: 20px;
  --leading-base: 24px;
  --leading-lg: 26px;
  --leading-xl: 30px;
  --leading-2xl: 36px;

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

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(43, 38, 32, 0.04);
  --shadow-md: 0 2px 8px rgba(43, 38, 32, 0.06);
  --shadow-lg: 0 8px 24px rgba(43, 38, 32, 0.08);

  /* Motion */
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --dur-fast: 120ms;
  --dur: 200ms;
  --dur-slow: 320ms;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family:
    'Nunito',
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 400;
}
