:root {
  /* Notion-inspired Neutral Colors */
  --white: #ffffff;
  --gray-bg: #f7f6f3;
  --gray-bg-hover: #f1f0ed;
  --gray-border: #e9e9e7;
  --gray-border-dark: #d3d3d1;
  --gray-text: #787774;
  --text-primary: #37352f;
  --text-secondary: #787774;
  --text-tertiary: #9b9a97;

  /* Accent Color - Notion Blue */
  --accent-blue: #2383e2;
  --accent-blue-hover: #1a6fc7;
  --accent-blue-light: #e7f3ff;

  /* Semantic Colors - Muted */
  --success: #0f7b6c;
  --success-light: #e6f6f4;
  --warning: #f5a623;
  --warning-light: #fef5e7;
  --error: #e03e3e;
  --error-light: #fdeaea;
  --info: #2383e2;
  --info-light: #e7f3ff;

  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-heading: var(--font-family);

  /* Line Heights - Notion style */
  --line-height-tight: 1.3;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.7;
  --line-height-loose: 1.8;

  /* Font Sizes */
  --text-xs: 0.75rem;      /* 12px */
  --text-sm: 0.875rem;     /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg: 1.125rem;     /* 18px */
  --text-xl: 1.25rem;      /* 20px */
  --text-2xl: 1.5rem;      /* 24px */
  --text-3xl: 1.875rem;    /* 30px */
  --text-4xl: 2.25rem;     /* 36px */
  --text-5xl: 3rem;        /* 48px */
  --text-6xl: 3.75rem;     /* 60px */

  /* Font Weights */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Spacing - Generous */
  --space-0: 0;
  --space-1: 0.25rem;    /* 4px */
  --space-2: 0.5rem;     /* 8px */
  --space-3: 0.75rem;    /* 12px */
  --space-4: 1rem;       /* 16px */
  --space-5: 1.25rem;    /* 20px */
  --space-6: 1.5rem;     /* 24px */
  --space-8: 2rem;       /* 32px */
  --space-10: 2.5rem;    /* 40px */
  --space-12: 3rem;      /* 48px */
  --space-16: 4rem;      /* 64px */
  --space-20: 5rem;      /* 80px */
  --space-24: 6rem;      /* 96px */
  --space-32: 8rem;      /* 128px */

  /* Container */
  --container-max-width: 1280px;
  --container-padding: var(--space-6);

  /* Border Radius - Minimal */
  --radius-none: 0;
  --radius-sm: 3px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --radius-xl: 8px;
  --radius-2xl: 12px;
  --radius-full: 9999px;

  /* Shadows - Extremely Subtle */
  --shadow-none: none;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.05);

  /* Borders - Notion style */
  --border-width: 1px;
  --border-width-thick: 2px;
  --border: 1px solid var(--gray-border);
  --border-dark: 1px solid var(--gray-border-dark);

  /* Transitions - Smooth */
  --transition-fast: 120ms ease;
  --transition-normal: 200ms ease;
  --transition-slow: 300ms ease;

  /* Z-index Scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}
