:root {
  /* Colors — background */
  --color-bg: #faf8f4;
  --color-bg-card: #ffffff;

  /* Colors — text */
  --color-text: #1a1a1a;
  --color-text-secondary: #666666;
  --color-text-muted: #999999;
  --color-text-faint: #cccccc;

  /* Colors — accent */
  --color-accent: #ff5722;
  --color-accent-purple: #8264ff;

  /* Colors — borders & shadows */
  --color-border: #e8e5e0;
  --color-border-hover: #d0cdc8;
  --color-shadow: rgba(0, 0, 0, 0.06);
  --color-shadow-hover: rgba(0, 0, 0, 0.1);

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Fira Code', monospace;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Layout */
  --header-height: 56px;
  --max-width: 1100px;

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 100px;

  /* Transitions */
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 400ms;
  --duration-reveal: 500ms;

  /* Easings */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);

  /* Z-index layers */
  --z-content: 1;
  --z-header: 100;
  --z-dropdown: 110;
  --z-overlay: 200;
}
