/**
 * Harmonia shared design tokens — SINGLE SOURCE OF TRUTH.
 *
 * This exact file is copied into all three apps (Creator, Player, Web).
 * Do not fork the values. If a token changes, change it here and re-sync to
 * all three (the weekly overseer audit checks these stay identical).
 *
 * Derived from the established Creator/Player look: dark theme, gold accent.
 */
:root {
  color-scheme: dark;
  accent-color: #c9a45c;

  /* Surfaces */
  --bg: #15181e;
  --panel: #1d212a;
  --panel-2: #262b35;
  --input-bg: #2a2f3a;
  --border: #333a46;
  --border-light: #404856;

  /* Brand gold */
  --gold: #c9a45c;
  --gold-hi: #dcc080;
  --gold-dim: rgba(201, 164, 92, 0.14);

  /* Text */
  --cream: #ece7da;
  --text: #d6d2c6;
  --muted: #8b929e;

  /* Semantic */
  --danger: #c4564e;
  --danger-hi: #d6685f;
  --green: #4e9a78;
  --green-hi: #5cad88;

  /* Typography — Acumin Pro (Adobe). Loaded via harmonia-fonts.css.
     Fallbacks keep the UI readable if the licensed font isn't present. */
  --font-ui: 'acumin-pro', 'Acumin Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  /* Radii & elevation */
  --radius-sm: 5px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-modal: 0 8px 32px rgba(0, 0, 0, 0.5);

  /* Spacing scale (used loosely across apps) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 28px;
}
