/* ════════════════════════════════════════════════════════════════
   MoniFi — Design Tokens (V2 — مطابق لتصميم الواجهات)
   3 خطوط: Tajawal (body) + Plus Jakarta Sans (display) + JetBrains Mono (numeric)
   ──────────────────────────────────────────────────────────────── */

:root {
  /* ═══ Brand ═══ */
  --y:           #E8FF5C;
  --y2:          #C9E03C;
  --ink:         #0B0E1A;

  /* ═══ Backgrounds ═══ */
  --bg:          #0A0D1A;
  --bg2:         #0F1428;
  --surface:     #161D3D;
  --surface2:    #1C2447;
  --surface3:    #232C56;

  /* ═══ Lines ═══ */
  --line:        rgba(255,255,255,0.08);
  --line2:       rgba(255,255,255,0.16);

  /* ═══ Text ═══ */
  --text:        #F5F7FB;
  --text2:       #B8C0DA;
  --text3:       #7A85AD;

  /* ═══ Status ═══ */
  --green:       #2BD37C;
  --red:         #FF6B7A;
  --purple:      #9B7BFF;
  --orange:      #FFB052;

  /* ═══ Fonts ═══ */
  --font-body:    "Tajawal", system-ui, -apple-system, sans-serif;
  --font-display: "Plus Jakarta Sans", "Tajawal", sans-serif;
  --font-mono:    "JetBrains Mono", monospace;
}

/* Light theme override (للمستقبل) */
[data-theme="light"] {
  --bg:          #F4F6FB;
  --bg2:         #ECEFF7;
  --surface:     #FFFFFF;
  --surface2:    #F8FAFD;
  --surface3:    #EEF2FA;
  --line:        rgba(11,16,32,0.08);
  --line2:       rgba(11,16,32,0.16);
  --text:        #0B1020;
  --text2:       #3E4869;
  --text3:       #6B7595;
}
