/* Galaxy design system entry — import once per page */
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500&display=swap");
@import url("tokens.css");

@import url("components.css");

/* Legacy aliases used by components.css (from confluence-galaxy artifact).
   MUST come after all @import rules: an @import that follows a style rule is
   invalid per the CSS spec and silently dropped (that bug previously stopped
   components.css from loading). Custom properties resolve at use-time, so
   declaring the aliases last does not affect them applying to components.css. */
:root {
  --bg: var(--surface-base);
  --surface: var(--surface-deep);
  --card: var(--surface-panel);
  --border: var(--border-quiet);
  --gold: var(--accent-gold);
  --gold2: var(--accent-gold-bright);
  --teal: var(--accent-teal);
  --violet: var(--accent-violet);
  --red: var(--signal-red);
  --text: var(--content-primary);
  --muted: var(--content-soft);
}
