:root {
  /* Colors — Lavender default */
  --bg: #0a0a0b;
  --bg-soft: #121214;
  --text-primary: #f5f5f7;
  --text-dimmed: #8a8a92;
  --text-dimmer: #4a4a52;
  --accent: #a8b4e0;
  --accent-soft: rgba(168, 180, 224, 0.2);
  --accent-glow: rgba(168, 180, 224, 0.15);
  --line: rgba(245, 245, 247, 0.08);
  --line-bright: rgba(245, 245, 247, 0.18);

  /* Typography */
  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 64px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 800ms;
}
