/* ── STUDIO MOON — DESIGN TOKENS ── */

:root {
  /* Colors */
  --color-bg: #0a0a0a;
  --color-surface: rgba(255, 255, 255, 0.01);
  --color-text: #e8e8e8;
  --color-text-mid: #999;
  --color-text-dim: #777;
  --color-accent: #ff6b35;
  --color-line: rgba(255, 255, 255, 0.1);

  /* Grid overlay */
  --color-grid: rgba(255, 255, 255, 0.04);
  --color-grid-accent: rgba(255, 255, 255, 0.08);

  /* Typography — Families */
  --font-mono: 'JetBrains Mono', monospace;
  --font-serif: 'Instrument Serif', serif;

  /* Typography — Scale */
  --text-micro: 8px;
  --text-xs: 9px;
  --text-sm: 10px;
  --text-base: 11px;
  --text-md: 13px;
  --text-lg: 16px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 32px;
  --text-hero: clamp(40px, 8vw, 120px);

  /* Typography — Weights */
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-bold: 700;

  /* Typography — Line heights */
  --leading-tight: 0.95;
  --leading-snug: 1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;
  --leading-loose: 1.8;

  /* Typography — Letter spacing */
  --tracking-tight: -2px;
  --tracking-normal: 0;
  --tracking-wide: 1.5px;
  --tracking-wider: 2px;
  --tracking-widest: 3px;
  --tracking-ultra: 4px;

  /* Spacing — 4px base unit */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 40px;
  --space-9: 48px;
  --space-10: 60px;
  --space-11: 80px;

  /* Layout */
  --content-max: 1200px;
  --content-narrow: 750px;
  --page-gutter: 40px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.3s;
  --duration-normal: 0.6s;
  --duration-slow: 0.8s;

  /* Z-index */
  --z-base: 1;
  --z-header: 100;
  --z-overlay: 9999;
}
