HassanB4 commited on
Commit
5ceb264
Β·
verified Β·
1 Parent(s): 0454e22

Fix hero: brand green wordmark, remove figures section, fix icon fallback

Browse files
Files changed (1) hide show
  1. index.html +124 -168
index.html CHANGED
@@ -12,6 +12,8 @@
12
  --border: #2e3149;
13
  --accent: #6366f1;
14
  --accent2: #8b5cf6;
 
 
15
  --gold: #f59e0b;
16
  --text: #e2e8f0;
17
  --muted: #94a3b8;
@@ -31,9 +33,9 @@
31
 
32
  /* ── Hero ────────────────────────────────── */
33
  .hero {
34
- background: linear-gradient(135deg, #0f1117 0%, #1a1037 50%, #0f1117 100%);
35
  border-bottom: 1px solid var(--border);
36
- padding: 64px 24px 48px;
37
  text-align: center;
38
  position: relative;
39
  overflow: hidden;
@@ -42,41 +44,59 @@
42
  content: '';
43
  position: absolute;
44
  inset: 0;
45
- background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(99,102,241,0.15) 0%, transparent 70%);
46
  pointer-events: none;
47
  }
48
- .hero-logo {
 
 
 
 
 
 
 
 
49
  display: flex;
50
  align-items: center;
51
  justify-content: center;
52
- gap: 16px;
53
- margin-bottom: 16px;
54
  }
55
- .hero-logo img {
56
- height: 60px;
 
57
  object-fit: contain;
 
58
  }
59
- .hero h1 {
60
- font-size: clamp(2rem, 5vw, 3.2rem);
61
- font-weight: 800;
62
- background: linear-gradient(135deg, #e2e8f0 0%, #a5b4fc 60%, #818cf8 100%);
63
- -webkit-background-clip: text;
64
- -webkit-text-fill-color: transparent;
65
- background-clip: text;
66
- margin-bottom: 8px;
67
  }
 
 
 
 
 
 
 
 
 
 
 
 
68
  .hero-ar {
69
- font-size: 2.2rem;
70
  font-weight: 700;
71
- color: var(--accent);
72
  direction: rtl;
73
- margin-bottom: 16px;
 
74
  }
75
  .hero p {
76
- font-size: 1.15rem;
77
  color: var(--muted);
78
- max-width: 600px;
79
- margin: 0 auto 28px;
80
  }
81
  .hero-links {
82
  display: flex;
@@ -97,21 +117,23 @@
97
  cursor: pointer;
98
  }
99
  .btn-primary {
100
- background: var(--accent);
101
- color: #fff;
 
102
  }
103
- .btn-primary:hover { background: #5457e0; transform: translateY(-1px); }
104
  .btn-outline {
105
  background: transparent;
106
  color: var(--text);
107
  border: 1px solid var(--border);
108
  }
109
- .btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
110
  .btn-dataset {
111
- background: #1c7a4d;
112
- color: #fff;
 
113
  }
114
- .btn-dataset:hover { background: #155f3d; transform: translateY(-1px); }
115
 
116
  /* ── Container ───────────────────────────── */
117
  .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
@@ -133,7 +155,7 @@
133
  /* ── Stats grid ──────────────────────────── */
134
  .stats-grid {
135
  display: grid;
136
- grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
137
  gap: 16px;
138
  }
139
  .stat-card {
@@ -142,18 +164,18 @@
142
  border-radius: var(--radius);
143
  padding: 24px 20px;
144
  text-align: center;
145
- transition: border-color 0.2s;
146
  }
147
- .stat-card:hover { border-color: var(--accent); }
148
  .stat-value {
149
  font-size: 2.2rem;
150
  font-weight: 800;
151
- color: var(--accent);
152
  line-height: 1;
153
  margin-bottom: 6px;
154
  }
155
  .stat-label {
156
- font-size: 0.82rem;
157
  color: var(--muted);
158
  text-transform: uppercase;
159
  letter-spacing: 0.05em;
@@ -211,11 +233,10 @@
211
  .model-org {
212
  color: var(--muted);
213
  font-size: 0.78rem;
214
- margin-right: 4px;
215
  }
216
  .score-val {
217
  font-weight: 700;
218
- color: var(--accent);
219
  font-variant-numeric: tabular-nums;
220
  }
221
  .ci-val {
@@ -233,7 +254,7 @@
233
  color: var(--muted);
234
  }
235
 
236
- /* ── Info cards ──────────────────────────── */
237
  .cards-grid {
238
  display: grid;
239
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
@@ -246,20 +267,10 @@
246
  padding: 24px;
247
  transition: border-color 0.2s, transform 0.2s;
248
  }
249
- .card:hover { border-color: var(--accent); transform: translateY(-2px); }
250
- .card-icon {
251
- font-size: 1.8rem;
252
- margin-bottom: 12px;
253
- }
254
- .card h3 {
255
- font-size: 1rem;
256
- font-weight: 700;
257
- margin-bottom: 8px;
258
- }
259
- .card p {
260
- font-size: 0.88rem;
261
- color: var(--muted);
262
- }
263
  .card-tag {
264
  display: inline-block;
265
  margin-top: 10px;
@@ -267,44 +278,19 @@
267
  border-radius: 99px;
268
  font-size: 0.75rem;
269
  font-weight: 600;
270
- background: rgba(16,185,129,0.15);
271
- color: var(--green);
272
  }
273
  .card-tag-no {
274
  background: rgba(100,116,139,0.15);
275
  color: var(--muted);
276
  }
277
 
278
- /* ── Figure images ───────────────────────── */
279
- .figures-grid {
280
- display: grid;
281
- grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
282
- gap: 20px;
283
- }
284
- .figure-card {
285
- background: var(--surface);
286
- border: 1px solid var(--border);
287
- border-radius: var(--radius);
288
- overflow: hidden;
289
- }
290
- .figure-card img {
291
- width: 100%;
292
- display: block;
293
- background: #fff;
294
- }
295
- .figure-caption {
296
- padding: 12px 16px;
297
- font-size: 0.82rem;
298
- color: var(--muted);
299
- text-align: center;
300
- }
301
-
302
  /* ── Dialect pills ───────────────────────── */
303
  .dialect-list {
304
  display: flex;
305
  flex-wrap: wrap;
306
  gap: 10px;
307
- margin-top: 8px;
308
  }
309
  .dialect-pill {
310
  background: var(--surface2);
@@ -314,16 +300,16 @@
314
  font-size: 0.82rem;
315
  display: flex;
316
  align-items: center;
317
- gap: 6px;
318
  }
319
  .dialect-pill .bar {
320
  height: 4px;
321
  border-radius: 99px;
322
- background: var(--accent);
323
- min-width: 20px;
324
  }
325
 
326
- /* ── Scoring methodology ─────────────────── */
327
  .method-steps {
328
  display: grid;
329
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
@@ -339,8 +325,8 @@
339
  width: 32px;
340
  height: 32px;
341
  border-radius: 50%;
342
- background: var(--accent);
343
- color: #fff;
344
  font-weight: 800;
345
  font-size: 0.9rem;
346
  display: flex;
@@ -348,15 +334,23 @@
348
  justify-content: center;
349
  margin-bottom: 12px;
350
  }
351
- .step h4 {
352
- font-size: 0.92rem;
353
- font-weight: 700;
354
- margin-bottom: 6px;
355
- }
356
- .step p {
357
- font-size: 0.82rem;
358
- color: var(--muted);
 
 
 
 
 
359
  }
 
 
 
360
 
361
  /* ── Team ────────────────────────────────── */
362
  .team-grid {
@@ -372,18 +366,18 @@
372
  text-align: center;
373
  transition: border-color 0.2s;
374
  }
375
- .team-card:hover { border-color: var(--accent); }
376
  .team-avatar {
377
  width: 56px;
378
  height: 56px;
379
  border-radius: 50%;
380
- background: linear-gradient(135deg, var(--accent), var(--accent2));
381
  display: flex;
382
  align-items: center;
383
  justify-content: center;
384
- font-size: 1.4rem;
385
  font-weight: 800;
386
- color: #fff;
387
  margin: 0 auto 14px;
388
  }
389
  .team-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
@@ -393,30 +387,15 @@
393
  align-items: center;
394
  gap: 5px;
395
  font-size: 0.78rem;
396
- color: var(--accent);
397
  text-decoration: none;
398
  }
399
  .team-hf:hover { text-decoration: underline; }
400
 
401
- /* ── Dataset callout ─────────────────────── */
402
- .dataset-callout {
403
- background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(99,102,241,0.08));
404
- border: 1px solid rgba(16,185,129,0.3);
405
- border-radius: var(--radius);
406
- padding: 28px 32px;
407
- display: flex;
408
- align-items: center;
409
- gap: 24px;
410
- flex-wrap: wrap;
411
- }
412
- .dataset-callout .ds-icon { font-size: 2.5rem; }
413
- .dataset-callout h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
414
- .dataset-callout p { font-size: 0.88rem; color: var(--muted); }
415
-
416
- /* ── Score note ──────────────────────────── */
417
  .note-box {
418
- background: rgba(99,102,241,0.08);
419
- border: 1px solid rgba(99,102,241,0.25);
420
  border-radius: 8px;
421
  padding: 14px 18px;
422
  font-size: 0.85rem;
@@ -433,12 +412,11 @@
433
  font-size: 0.82rem;
434
  color: var(--muted);
435
  }
436
- footer a { color: var(--accent); text-decoration: none; }
437
  footer a:hover { text-decoration: underline; }
438
 
439
  @media (max-width: 600px) {
440
- .hero { padding: 40px 16px 32px; }
441
- .figures-grid { grid-template-columns: 1fr; }
442
  .dataset-callout { flex-direction: column; gap: 12px; }
443
  }
444
  </style>
@@ -449,28 +427,32 @@
449
  HERO
450
  ════════════════════════════════════════════════════ -->
451
  <div class="hero">
452
- <div class="hero-logo">
453
- <img src="haakkim-logo-withname.png" alt="Haakkim" onerror="this.style.display='none'" />
 
 
 
 
 
454
  </div>
 
 
 
455
  <div class="hero-ar">Ψ­ΩŽΩƒΩΩ‘Ω…</div>
 
456
  <p>An open arena-style human preference evaluation platform for Arabic large language models β€” built from the ground up for Arabic.</p>
 
457
  <div class="hero-links">
458
- <a href="https://haakkim.tech" class="btn btn-primary">
459
- 🌐 Live Platform
460
- </a>
461
- <a href="https://haakkim.tech/#leaderboard" class="btn btn-outline">
462
- πŸ† Leaderboard
463
- </a>
464
- <a href="https://huggingface.co/datasets/Haakkim/Haakkim-1.0v" class="btn btn-dataset">
465
- πŸ“¦ Dataset v1.0
466
- </a>
467
  </div>
468
  </div>
469
 
470
  <div class="container">
471
 
472
  <!-- ═══════════════════════════════════════════════════
473
- SNAPSHOT STATS
474
  ════════════════════════════════════════════════════ -->
475
  <section>
476
  <div class="section-title">Current Snapshot β€” v1.0</div>
@@ -508,7 +490,7 @@
508
  ════════════════════════════════════════════════════ -->
509
  <section>
510
  <div class="section-title">MSA Leaderboard β€” Top 10</div>
511
- <div class="section-sub">Bradley–Terry scores (1000-centered log-odds). Full 67-model leaderboard at <a href="https://haakkim.tech/#leaderboard" style="color:var(--accent)">haakkim.tech</a></div>
512
  <div class="table-wrap">
513
  <table>
514
  <thead>
@@ -595,33 +577,7 @@
595
  </table>
596
  </div>
597
  <div class="note-box">
598
- <strong>Score scale:</strong> Haakkim uses unscaled log-odds units centered at 1000 β€” a 1-point gap corresponds to win odds of eΒΉ β‰ˆ 2.7:1. This produces a ~4-point spread across 67 models. Chatbot Arena-style Elo scaling (Γ—173.7) would show the same ranking with hundreds-of-points spreads; both conventions encode identical win probabilities.
599
- </div>
600
- </section>
601
-
602
- <!-- ═══════════════════════════════════════════════════
603
- FIGURES
604
- ════════════════════════════════════════════════════ -->
605
- <section>
606
- <div class="section-title">Analysis Figures</div>
607
- <div class="section-sub">Regenerated from the live database β€” v1.0 snapshot</div>
608
- <div class="figures-grid">
609
- <div class="figure-card">
610
- <img src="bt_leaderboard_ci_top20.png" alt="BT Leaderboard Top 20 with Confidence Intervals" />
611
- <div class="figure-caption">BT Leaderboard β€” Top 20 models with 95% bootstrap confidence intervals</div>
612
- </div>
613
- <div class="figure-card">
614
- <img src="dialect_distribution.png" alt="Dialect Distribution" />
615
- <div class="figure-caption">Battle distribution across 11 Arabic dialect varieties</div>
616
- </div>
617
- <div class="figure-card">
618
- <img src="vote_outcome_distribution_ranked.png" alt="Vote Outcome Distribution" />
619
- <div class="figure-caption">Vote outcome distribution for ranked arena battles</div>
620
- </div>
621
- <div class="figure-card">
622
- <img src="haakkim_overview.png" alt="Platform Overview" />
623
- <div class="figure-caption">Haakkim platform overview and evaluation pipeline</div>
624
- </div>
625
  </div>
626
  </section>
627
 
@@ -632,17 +588,17 @@
632
  <div class="section-title">Arabic Dialect Coverage</div>
633
  <div class="section-sub">11 varieties β€” from Modern Standard Arabic to regional dialects across the Arab world</div>
634
  <div class="dialect-list">
635
- <div class="dialect-pill">MSA <div class="bar" style="width:80px;background:#6366f1"></div> 77.5%</div>
636
- <div class="dialect-pill">Tunisian <div class="bar" style="width:22px;background:#8b5cf6"></div> 9.0%</div>
637
- <div class="dialect-pill">Saudi <div class="bar" style="width:16px;background:#a78bfa"></div> 6.5%</div>
638
- <div class="dialect-pill">Egyptian <div class="bar" style="width:9px;background:#c4b5fd"></div> 3.5%</div>
639
- <div class="dialect-pill">Levantine <div class="bar" style="width:6px"></div> 1.7%</div>
640
  <div class="dialect-pill">Sudanese <div class="bar" style="width:4px"></div> 0.9%</div>
641
- <div class="dialect-pill">Omani <div class="bar" style="width:3px"></div> 0.4%</div>
642
- <div class="dialect-pill">Iraqi <div class="bar" style="width:2px"></div> 0.2%</div>
643
- <div class="dialect-pill">Moroccan <div class="bar" style="width:2px"></div> &lt;0.1%</div>
644
- <div class="dialect-pill">Libyan <div class="bar" style="width:2px"></div> &lt;0.1%</div>
645
- <div class="dialect-pill">Algerian <div class="bar" style="width:2px"></div> &lt;0.1%</div>
646
  </div>
647
  </section>
648
 
 
12
  --border: #2e3149;
13
  --accent: #6366f1;
14
  --accent2: #8b5cf6;
15
+ --brand: #4ade80;
16
+ --brand-dark: #22c55e;
17
  --gold: #f59e0b;
18
  --text: #e2e8f0;
19
  --muted: #94a3b8;
 
33
 
34
  /* ── Hero ────────────────────────────────── */
35
  .hero {
36
+ background: linear-gradient(160deg, #0a0f0a 0%, #0d1a10 40%, #0f1117 100%);
37
  border-bottom: 1px solid var(--border);
38
+ padding: 72px 24px 56px;
39
  text-align: center;
40
  position: relative;
41
  overflow: hidden;
 
44
  content: '';
45
  position: absolute;
46
  inset: 0;
47
+ background: radial-gradient(ellipse 70% 60% at 50% -10%, rgba(74,222,128,0.12) 0%, transparent 65%);
48
  pointer-events: none;
49
  }
50
+
51
+ /* Logo mark β€” the small icon on top */
52
+ .hero-icon {
53
+ width: 72px;
54
+ height: 72px;
55
+ margin: 0 auto 20px;
56
+ border-radius: 18px;
57
+ background: linear-gradient(135deg, rgba(74,222,128,0.15), rgba(34,197,94,0.08));
58
+ border: 1.5px solid rgba(74,222,128,0.25);
59
  display: flex;
60
  align-items: center;
61
  justify-content: center;
62
+ overflow: hidden;
 
63
  }
64
+ .hero-icon img {
65
+ width: 52px;
66
+ height: 52px;
67
  object-fit: contain;
68
+ display: block;
69
  }
70
+ /* Fallback icon when image fails */
71
+ .hero-icon-fallback {
72
+ font-size: 2rem;
73
+ color: var(--brand);
 
 
 
 
74
  }
75
+
76
+ /* "Haakkim" wordmark */
77
+ .hero-wordmark {
78
+ font-size: clamp(2.8rem, 7vw, 4.5rem);
79
+ font-weight: 900;
80
+ letter-spacing: -0.02em;
81
+ color: var(--brand);
82
+ line-height: 1;
83
+ margin-bottom: 10px;
84
+ }
85
+
86
+ /* Arabic subtitle */
87
  .hero-ar {
88
+ font-size: 2rem;
89
  font-weight: 700;
90
+ color: rgba(74,222,128,0.7);
91
  direction: rtl;
92
+ margin-bottom: 20px;
93
+ letter-spacing: 0.05em;
94
  }
95
  .hero p {
96
+ font-size: 1.1rem;
97
  color: var(--muted);
98
+ max-width: 580px;
99
+ margin: 0 auto 32px;
100
  }
101
  .hero-links {
102
  display: flex;
 
117
  cursor: pointer;
118
  }
119
  .btn-primary {
120
+ background: var(--brand);
121
+ color: #0a0f0a;
122
+ font-weight: 700;
123
  }
124
+ .btn-primary:hover { background: #22c55e; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(74,222,128,0.3); }
125
  .btn-outline {
126
  background: transparent;
127
  color: var(--text);
128
  border: 1px solid var(--border);
129
  }
130
+ .btn-outline:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-1px); }
131
  .btn-dataset {
132
+ background: rgba(74,222,128,0.12);
133
+ color: var(--brand);
134
+ border: 1px solid rgba(74,222,128,0.3);
135
  }
136
+ .btn-dataset:hover { background: rgba(74,222,128,0.2); transform: translateY(-1px); }
137
 
138
  /* ── Container ───────────────────────────── */
139
  .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
 
155
  /* ── Stats grid ──────────────────────────── */
156
  .stats-grid {
157
  display: grid;
158
+ grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
159
  gap: 16px;
160
  }
161
  .stat-card {
 
164
  border-radius: var(--radius);
165
  padding: 24px 20px;
166
  text-align: center;
167
+ transition: border-color 0.2s, transform 0.2s;
168
  }
169
+ .stat-card:hover { border-color: var(--brand); transform: translateY(-2px); }
170
  .stat-value {
171
  font-size: 2.2rem;
172
  font-weight: 800;
173
+ color: var(--brand);
174
  line-height: 1;
175
  margin-bottom: 6px;
176
  }
177
  .stat-label {
178
+ font-size: 0.8rem;
179
  color: var(--muted);
180
  text-transform: uppercase;
181
  letter-spacing: 0.05em;
 
233
  .model-org {
234
  color: var(--muted);
235
  font-size: 0.78rem;
 
236
  }
237
  .score-val {
238
  font-weight: 700;
239
+ color: var(--brand);
240
  font-variant-numeric: tabular-nums;
241
  }
242
  .ci-val {
 
254
  color: var(--muted);
255
  }
256
 
257
+ /* ── Cards ───────────────────────────────── */
258
  .cards-grid {
259
  display: grid;
260
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 
267
  padding: 24px;
268
  transition: border-color 0.2s, transform 0.2s;
269
  }
270
+ .card:hover { border-color: var(--brand); transform: translateY(-2px); }
271
+ .card-icon { font-size: 1.8rem; margin-bottom: 12px; }
272
+ .card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
273
+ .card p { font-size: 0.88rem; color: var(--muted); }
 
 
 
 
 
 
 
 
 
 
274
  .card-tag {
275
  display: inline-block;
276
  margin-top: 10px;
 
278
  border-radius: 99px;
279
  font-size: 0.75rem;
280
  font-weight: 600;
281
+ background: rgba(74,222,128,0.12);
282
+ color: var(--brand);
283
  }
284
  .card-tag-no {
285
  background: rgba(100,116,139,0.15);
286
  color: var(--muted);
287
  }
288
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
289
  /* ── Dialect pills ───────────────────────── */
290
  .dialect-list {
291
  display: flex;
292
  flex-wrap: wrap;
293
  gap: 10px;
 
294
  }
295
  .dialect-pill {
296
  background: var(--surface2);
 
300
  font-size: 0.82rem;
301
  display: flex;
302
  align-items: center;
303
+ gap: 8px;
304
  }
305
  .dialect-pill .bar {
306
  height: 4px;
307
  border-radius: 99px;
308
+ background: var(--brand);
309
+ min-width: 4px;
310
  }
311
 
312
+ /* ── Scoring steps ───────────────────────── */
313
  .method-steps {
314
  display: grid;
315
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
 
325
  width: 32px;
326
  height: 32px;
327
  border-radius: 50%;
328
+ background: var(--brand);
329
+ color: #0a0f0a;
330
  font-weight: 800;
331
  font-size: 0.9rem;
332
  display: flex;
 
334
  justify-content: center;
335
  margin-bottom: 12px;
336
  }
337
+ .step h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 6px; }
338
+ .step p { font-size: 0.82rem; color: var(--muted); }
339
+
340
+ /* ── Dataset callout ─────────────────────── */
341
+ .dataset-callout {
342
+ background: linear-gradient(135deg, rgba(74,222,128,0.06), rgba(99,102,241,0.06));
343
+ border: 1px solid rgba(74,222,128,0.25);
344
+ border-radius: var(--radius);
345
+ padding: 28px 32px;
346
+ display: flex;
347
+ align-items: center;
348
+ gap: 24px;
349
+ flex-wrap: wrap;
350
  }
351
+ .dataset-callout .ds-icon { font-size: 2.5rem; }
352
+ .dataset-callout h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
353
+ .dataset-callout p { font-size: 0.88rem; color: var(--muted); }
354
 
355
  /* ── Team ────────────────────────────────── */
356
  .team-grid {
 
366
  text-align: center;
367
  transition: border-color 0.2s;
368
  }
369
+ .team-card:hover { border-color: var(--brand); }
370
  .team-avatar {
371
  width: 56px;
372
  height: 56px;
373
  border-radius: 50%;
374
+ background: linear-gradient(135deg, var(--brand), var(--brand-dark));
375
  display: flex;
376
  align-items: center;
377
  justify-content: center;
378
+ font-size: 1.2rem;
379
  font-weight: 800;
380
+ color: #0a0f0a;
381
  margin: 0 auto 14px;
382
  }
383
  .team-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
 
387
  align-items: center;
388
  gap: 5px;
389
  font-size: 0.78rem;
390
+ color: var(--brand);
391
  text-decoration: none;
392
  }
393
  .team-hf:hover { text-decoration: underline; }
394
 
395
+ /* ── Note box ────────────────────────────── */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
396
  .note-box {
397
+ background: rgba(74,222,128,0.05);
398
+ border: 1px solid rgba(74,222,128,0.2);
399
  border-radius: 8px;
400
  padding: 14px 18px;
401
  font-size: 0.85rem;
 
412
  font-size: 0.82rem;
413
  color: var(--muted);
414
  }
415
+ footer a { color: var(--brand); text-decoration: none; }
416
  footer a:hover { text-decoration: underline; }
417
 
418
  @media (max-width: 600px) {
419
+ .hero { padding: 48px 16px 36px; }
 
420
  .dataset-callout { flex-direction: column; gap: 12px; }
421
  }
422
  </style>
 
427
  HERO
428
  ════════════════════════════════════════════════════ -->
429
  <div class="hero">
430
+ <!-- Small icon badge -->
431
+ <div class="hero-icon">
432
+ <img
433
+ src="haakkim-logo-only.png"
434
+ alt=""
435
+ onerror="this.parentElement.innerHTML='<span class=hero-icon-fallback>βš–</span>'"
436
+ />
437
  </div>
438
+
439
+ <!-- Wordmark in brand green -->
440
+ <div class="hero-wordmark">Haakkim</div>
441
  <div class="hero-ar">Ψ­ΩŽΩƒΩΩ‘Ω…</div>
442
+
443
  <p>An open arena-style human preference evaluation platform for Arabic large language models β€” built from the ground up for Arabic.</p>
444
+
445
  <div class="hero-links">
446
+ <a href="https://haakkim.tech" class="btn btn-primary">🌐 Live Platform</a>
447
+ <a href="https://haakkim.tech/#leaderboard" class="btn btn-outline">πŸ† Leaderboard</a>
448
+ <a href="https://huggingface.co/datasets/Haakkim/Haakkim-1.0v" class="btn btn-dataset">πŸ“¦ Dataset v1.0</a>
 
 
 
 
 
 
449
  </div>
450
  </div>
451
 
452
  <div class="container">
453
 
454
  <!-- ═══════════════════════════════════════════════════
455
+ STATS
456
  ════════════════════════════════════════════════════ -->
457
  <section>
458
  <div class="section-title">Current Snapshot β€” v1.0</div>
 
490
  ════════════════════════════════════════════════════ -->
491
  <section>
492
  <div class="section-title">MSA Leaderboard β€” Top 10</div>
493
+ <div class="section-sub">Bradley–Terry scores (1000-centered log-odds). Full 67-model leaderboard at <a href="https://haakkim.tech/#leaderboard" style="color:var(--brand)">haakkim.tech</a></div>
494
  <div class="table-wrap">
495
  <table>
496
  <thead>
 
577
  </table>
578
  </div>
579
  <div class="note-box">
580
+ <strong>Score scale:</strong> Haakkim uses unscaled log-odds units centered at 1000 β€” a 1-point gap corresponds to win odds of eΒΉ β‰ˆ 2.7:1, producing a ~4-point spread across 67 models. Chatbot Arena-style Elo (Γ—173.7) encodes identical win probabilities with hundreds-of-points spreads.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
581
  </div>
582
  </section>
583
 
 
588
  <div class="section-title">Arabic Dialect Coverage</div>
589
  <div class="section-sub">11 varieties β€” from Modern Standard Arabic to regional dialects across the Arab world</div>
590
  <div class="dialect-list">
591
+ <div class="dialect-pill">MSA <div class="bar" style="width:80px"></div> 77.5%</div>
592
+ <div class="dialect-pill">Tunisian <div class="bar" style="width:22px"></div> 9.0%</div>
593
+ <div class="dialect-pill">Saudi <div class="bar" style="width:16px"></div> 6.5%</div>
594
+ <div class="dialect-pill">Egyptian <div class="bar" style="width:9px"></div> 3.5%</div>
595
+ <div class="dialect-pill">Levantine <div class="bar" style="width:5px"></div> 1.7%</div>
596
  <div class="dialect-pill">Sudanese <div class="bar" style="width:4px"></div> 0.9%</div>
597
+ <div class="dialect-pill">Omani <div class="bar" style="width:4px"></div> 0.4%</div>
598
+ <div class="dialect-pill">Iraqi <div class="bar" style="width:4px"></div> 0.2%</div>
599
+ <div class="dialect-pill">Moroccan <div class="bar" style="width:4px"></div> &lt;0.1%</div>
600
+ <div class="dialect-pill">Libyan <div class="bar" style="width:4px"></div> &lt;0.1%</div>
601
+ <div class="dialect-pill">Algerian <div class="bar" style="width:4px"></div> &lt;0.1%</div>
602
  </div>
603
  </section>
604