/* فلوسنا — توكنز الجناح كله (راتبي، قسمها، جمعيتنا)
   الفاتح هو الأساس؛ الداكن عبر تفضيل النظام أو data-theme صريح.
   قواعد عربية ملزمة: لا letter-spacing، line-height ≥ 1.4، لا وزن فوق 700. */

:root {
  --font: 'IBM Plex Sans Arabic', system-ui, -apple-system, sans-serif;

  --bg: #f5f8f6;
  --surface: #ffffff;
  --surface-2: #ecf1ee;
  --text: #0f1713;
  --text-2: #566660;
  --line: rgba(15, 23, 19, 0.1);

  --primary: #0b7a5c;
  --primary-strong: #07523e;
  --on-primary: #ffffff;
  --mint: #12b98a;
  --gold: #b8905a;
  --danger: #c0392b;

  --ring-track: #e2eae6;
  --shadow: 0 10px 30px rgba(15, 23, 19, 0.08);
  --r: 18px;
  --r-sm: 12px;
}

:root[data-theme='dark'] {
  --bg: #07100d;
  --surface: #0e1b15;
  --surface-2: #13241c;
  --text: #ecf4f0;
  --text-2: #94a79f;
  --line: rgba(255, 255, 255, 0.09);

  --primary: #2fd6a5;
  --primary-strong: #6ae6c2;
  --on-primary: #06110d;
  --mint: #2fd6a5;
  --gold: #e7c185;
  --danger: #ef7a6a;

  --ring-track: #17281f;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme='light']):not([data-theme='dark']) {
    --bg: #07100d;
    --surface: #0e1b15;
    --surface-2: #13241c;
    --text: #ecf4f0;
    --text-2: #94a79f;
    --line: rgba(255, 255, 255, 0.09);

    --primary: #2fd6a5;
    --primary-strong: #6ae6c2;
    --on-primary: #06110d;
    --mint: #2fd6a5;
    --gold: #e7c185;
    --danger: #ef7a6a;

    --ring-track: #17281f;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  }
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* الأرقام داخل RTL: اتجاه لاتيني + أعمدة ثابتة حتى لا تهتز العدادات */
.num {
  direction: ltr;
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
  display: inline-block;
}

button { font-family: inherit; }
a { color: inherit; }
