/* Myth Maker — shared design tokens (sibling engines) */
:root {
  --void: #07080a;
  --surface-0: #0c0e12;
  --surface-1: #12151c;
  --surface-2: #1a1f2a;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #e8eaef;
  --text-muted: #8b93a7;
  --text-faint: #5c6478;

  /* Engine accents */
  --accent-memory: #5b8def;   /* The Memory — Archive Blue */
  --accent-draft: #c4a46c;    /* The Frame — Manuscript Gold */
  --accent-render: #a78bfa;   /* The Projection — Signal Violet */
  --accent: var(--accent-draft);

  --success: #3dcf8e;
  --warning: #e8b84a;
  --danger: #e85d5d;

  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-8: 48px;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 120ms;
  --dur-med: 220ms;
  --dur-slow: 400ms;
  --dur-melt: 900ms;
}
