:root {
  /* ─── brand ─── */
  --color-cyan:        #00d4ff;
  --color-cyan-dim:    rgba(0, 212, 255, 0.18);
  --color-violet:      #9d6fff;
  --color-violet-dim:  rgba(157, 111, 255, 0.18);

  /* ─── surfaces ─── */
  --color-bg:           #020206;
  --color-bg-fog:       #020206;
  --color-surface:      rgba(255, 255, 255, 0.07);
  --color-surface-hover:rgba(255, 255, 255, 0.11);

  /* ─── text ─── */
  --color-text:       #e8e8f4;
  --color-text-dim:   #9091a6;
  --color-text-muted: #52536b;

  /* ─── borders ─── */
  --color-border:       rgba(255, 255, 255, 0.07);
  --color-border-hover: rgba(255, 255, 255, 0.14);

  /* ─── typography ─── */
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --text-xs:   0.6875rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;

  /* ─── spacing ─── */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 5rem;

  /* ─── radius ─── */
  --radius-sm:   0.5rem;
  --radius-md:   1rem;
  --radius-lg:   1.25rem;
  --radius-full: 9999px;

  /* ─── shadow ─── */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);

  /* ─── z-index ─── */
  --z-canvas:  0;
  --z-content: 10;
  --z-nav:     100;
}
