/* GoldStar Empire — Brand Tokens v1.0
 * Canonical source of truth for all web properties.
 * Load FIRST via: <link rel="stylesheet" href="/brand/tokens.css">
 * Reference: goldstar-brand-guide.pdf
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Gold family */
  --gold: #C8A951;
  --gold-light: #E0C878;
  --gold-dim: #A08040;
  --gold-alpha-10: rgba(200, 169, 81, 0.1);
  --gold-alpha-25: rgba(200, 169, 81, 0.25);

  /* Backgrounds */
  --bg-primary: #0A0A0A;
  --bg-surface: #111111;
  --bg-elevated: #1A1A1A;

  /* Text */
  --text-primary: #F5F5F5;
  --text-muted: #999999;
  --text-dim: #555555;

  /* Borders */
  --border: #1F1F1F;
  --border-gold: rgba(200, 169, 81, 0.25);

  /* Semantic */
  --success: #22C55E;
  --error: #EF4444;
  --warning: #F59E0B;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}
