/**
 * Homeunity design tokens — evolution (Path 2 + Path 1)
 * Accent: original cyan. Lock: docs/design/DESIGN.md
 */
:root {
  --hu-dark: #07090d;
  --hu-card: #0f131a;
  --hu-accent: #00f2ff;
  --hu-accent-rgb: 0, 242, 255;
  --hu-text: #ffffff;
  --hu-muted: rgba(255, 255, 255, 0.45);
  --hu-border: rgba(255, 255, 255, 0.05);
  --hu-font-sans: "DM Sans", system-ui, sans-serif;
  --hu-font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --hu-radius-sm: 8px;
  --hu-radius-md: 12px;
  --hu-radius-pill: 999px;
  --hu-shadow-card: 0 24px 48px rgba(0, 0, 0, 0.4);
  --hu-motion-fast: 0.2s ease;
  --hu-motion-med: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --hu-motion-fast: 0.01ms;
    --hu-motion-med: 0.01ms;
  }
}
