/* ── THETA DIVISION · DESIGN TOKENS ── */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Orbitron:wght@400;700;900&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* palette */
  --void:       #000000;
  --obsidian:   #080808;
  --forge:      #0f0f0f;
  --steel:      #161616;
  --border:     #222222;
  --border-hi:  #333333;
  --ash:        #444444;
  --silver:     #888888;
  --ghost:      #cccccc;
  --white:      #f5f5f5;

  /* accent — ember gold (pulled from logo's militant energy) */
  --gold:       #c9a84c;
  --gold-dim:   rgba(201, 168, 76, 0.08);
  --gold-mid:   rgba(201, 168, 76, 0.20);
  --gold-glow:  rgba(201, 168, 76, 0.06);

  /* semantic */
  --danger:     #cc3333;
  --success:    #3a8a5a;

  /* type */
  --font-display: 'Orbitron', sans-serif;
  --font-ui:      'Rajdhani', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* spacing scale */
  --sp-xs:  4px;
  --sp-sm:  8px;
  --sp-md:  16px;
  --sp-lg:  24px;
  --sp-xl:  40px;
  --sp-2xl: 64px;

  /* radius — sharp, angular */
  --r-sm: 1px;
  --r-md: 2px;
  --r-lg: 3px;

  /* transitions */
  --ease: 0.18s ease;
}
