-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
1278 lines (1148 loc) · 58 KB
/
index.html
File metadata and controls
1278 lines (1148 loc) · 58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>Riksdagsmonitor | Swedish Election 2026 Intelligence Platform | Parliament Monitoring</title>
<meta charset="UTF-8">
<meta http-equiv="Content-Security-Policy" content="default-src 'self' https:; script-src 'self' 'unsafe-inline' https:; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com; img-src 'self' data: https:; connect-src 'self' https:; base-uri 'self'; form-action 'self'">
<script>(function(){var key='riksdagsmonitor-theme';var t=null;try{t=localStorage.getItem(key);}catch(e){/* storage unavailable */}if(t!=='dark'&&t!=='light'){if(t!==null){try{localStorage.removeItem(key);}catch(e){/* storage unavailable */}}t=(window.matchMedia&&window.matchMedia('(prefers-color-scheme: dark)').matches)?'dark':'light';}document.documentElement.setAttribute('data-theme',t);}());</script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="canonical" href="https://riksdagsmonitor.com/index.html">
<link rel="manifest" href="site.webmanifest">
<meta name="description" content="Riksdagsmonitor: Swedish Election 2026 intelligence platform. Real-time monitoring of 349 MPs across 8 parties, coalition predictions, 45 risk rules, and 50+ years of parliamentary data from the Citizen Intelligence Agency (CIA) OSINT platform.">
<meta name="keywords" content="Swedish election 2026, riksdagsmonitor, riksdag monitoring, coalition prediction, political intelligence, OSINT platform, parliamentary analysis, Citizen Intelligence Agency, Swedish politics, election monitoring, riksdagsval 2026, valövervakning, Sveriges riksdag, politisk intelligens, parlamentsanalys, koalitionsförutsägelse, riskbedömning, svensk politik, demokratisk insyn, 349 MPs, 45 risk rules, parliamentary transparency, Sweden democracy, election forecasting 2026">
<meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1">
<meta name="author" content="James Pether Sörling, CISSP, CISM">
<!-- Geographic Meta Tags -->
<meta name="geo.region" content="SE">
<meta name="geo.placename" content="Gothenburg">
<meta name="geo.position" content="57.708870;11.974560">
<meta name="ICBM" content="57.708870, 11.974560">
<!-- Mobile Web App Tags -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="Riksdagsmonitor">
<meta name="HandheldFriendly" content="true">
<meta name="MobileOptimized" content="320">
<!-- Open Graph / Social Media -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://riksdagsmonitor.com/index.html">
<meta property="og:site_name" content="Riksdagsmonitor">
<meta property="og:title" content="Riksdagsmonitor | Swedish Election 2026 Intelligence Platform">
<meta property="og:description" content="Real-time monitoring · Coalition predictions · Systematic transparency. 45 risk rules tracking 349 MPs (2494 historical politicians in database).">
<meta property="og:image" content="https://riksdagsmonitor.com/images/og-image.webp">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:image:alt" content="Riksdagsmonitor - Swedish Parliament Intelligence Platform">
<meta property="og:locale" content="en_US">
<meta property="og:locale:alternate" content="ar_SA">
<meta property="og:locale:alternate" content="da_DK">
<meta property="og:locale:alternate" content="de_DE">
<meta property="og:locale:alternate" content="es_ES">
<meta property="og:locale:alternate" content="fi_FI">
<meta property="og:locale:alternate" content="fr_FR">
<meta property="og:locale:alternate" content="he_IL">
<meta property="og:locale:alternate" content="ja_JP">
<meta property="og:locale:alternate" content="ko_KR">
<meta property="og:locale:alternate" content="nl_NL">
<meta property="og:locale:alternate" content="nb_NO">
<meta property="og:locale:alternate" content="sv_SE">
<meta property="og:locale:alternate" content="zh_CN">
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Riksdagsmonitor | Swedish Election 2026 Intelligence Platform">
<meta name="twitter:description" content="Real-time monitoring of 349 MPs across 8 parties · Coalition predictions with 45 risk rules · Election forecasting · Track Swedish politics 24/7 · 2494 historical politicians tracked">
<meta name="twitter:image" content="https://riksdagsmonitor.com/images/og-image.webp">
<meta name="twitter:image:alt" content="Riksdagsmonitor - Swedish Parliament Intelligence Platform">
<meta name="twitter:site" content="@riksdagsmonitor">
<meta name="twitter:creator" content="@jamessorling">
<meta name="twitter:domain" content="riksdagsmonitor.com">
<!-- DNS Prefetch & Preconnect for Performance -->
<link rel="dns-prefetch" href="https://fonts.googleapis.com">
<link rel="dns-prefetch" href="https://fonts.gstatic.com">
<link rel="dns-prefetch" href="https://cia.sourceforge.io">
<link rel="dns-prefetch" href="https://raw.githubusercontent.com">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Orbitron:wght@500;600;700&family=Share+Tech+Mono&display=swap" media="print" onload="this.media='all'">
<noscript><link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Orbitron:wght@500;600;700&family=Share+Tech+Mono&display=swap"></noscript>
<meta name="application-name" content="Riksdagsmonitor">
<meta name="theme-color" content="#0a0e27">
<!-- Favicons -->
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="96x96" href="/images/favicon-96x96.png">
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon.png">
<link rel="icon" href="/favicon.ico" sizes="48x48">
<!-- Schema.org structured data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Organization",
"@id": "https://riksdagsmonitor.com/#organization",
"name": "Riksdagsmonitor",
"legalName": "Hack23 AB",
"url": "https://riksdagsmonitor.com",
"logo": {
"@type": "ImageObject",
"url": "https://riksdagsmonitor.com/images/android-chrome-512x512.png",
"width": 512,
"height": 512
},
"description": "Swedish Parliament monitoring platform providing real-time intelligence, election forecasting, and political transparency through CIA OSINT analysis.",
"foundingDate": "2008",
"founder": {
"@type": "Person",
"@id": "https://riksdagsmonitor.com/#founder",
"name": "James Pether Sörling",
"jobTitle": "Founder & Chief Intelligence Officer",
"hasCredential": ["CISSP", "CISM"],
"sameAs": [
"https://www.linkedin.com/in/jamessorling/",
"https://github.com/Hack23"
]
},
"address": {
"@type": "PostalAddress",
"addressCountry": "SE",
"addressLocality": "Gothenburg"
},
"contactPoint": {
"@type": "ContactPoint",
"contactType": "Technical Support",
"availableLanguage": ["en", "sv", "da", "no", "fi", "de", "fr", "es", "nl", "ar", "he", "ja", "ko", "zh"]
},
"sameAs": [
"https://github.com/Hack23/riksdagsmonitor",
"https://github.com/Hack23/cia"
]
},
{
"@type": "WebSite",
"@id": "https://riksdagsmonitor.com/#website",
"url": "https://riksdagsmonitor.com",
"name": "Riksdagsmonitor - Swedish Parliament Intelligence Platform",
"description": "Real-time monitoring of Swedish Parliament with CIA OSINT analysis, election forecasting, coalition predictions, and comprehensive political transparency.",
"publisher": {
"@id": "https://riksdagsmonitor.com/#organization"
},
"inLanguage": ["en", "sv", "da", "no", "fi", "de", "fr", "es", "nl", "ar", "he", "ja", "ko", "zh"]
},
{
"@type": "WebPage",
"@id": "https://riksdagsmonitor.com/#webpage",
"url": "https://riksdagsmonitor.com/index.html",
"name": "Riksdagsmonitor | Swedish Election 2026 Intelligence Platform",
"description": "Real-time monitoring of Swedish Parliament with Citizen Intelligence Agency (CIA) OSINT analysis. 349 MPs tracked across 8 parties with 45 risk rules, coalition predictions, and 50+ years of historical data.",
"isPartOf": {
"@id": "https://riksdagsmonitor.com/#website"
},
"about": {
"@id": "https://riksdagsmonitor.com/#event"
},
"primaryImageOfPage": {
"@type": "ImageObject",
"url": "https://riksdagsmonitor.com/images/og-image.webp",
"width": 1200,
"height": 630
},
"datePublished": "2008-01-01T00:00:00+00:00",
"dateModified": "2026-02-13T00:00:00+00:00",
"breadcrumb": {
"@id": "https://riksdagsmonitor.com/#breadcrumb"
},
"inLanguage": "en",
"potentialAction": [
{
"@type": "ReadAction",
"target": "https://riksdagsmonitor.com/index.html"
}
]
},
{
"@type": "BreadcrumbList",
"@id": "https://riksdagsmonitor.com/#breadcrumb",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://riksdagsmonitor.com/"
},
{
"@type": "ListItem",
"position": 2,
"name": "Swedish Election 2026",
"item": "https://riksdagsmonitor.com/index.html"
}
]
},
{
"@type": "Event",
"@id": "https://riksdagsmonitor.com/#event",
"name": "Swedish Parliamentary Election 2026",
"description": "Swedish Parliamentary Election scheduled for 13 September 2026. Live intelligence platform monitoring 349 MPs across 8 parties with CIA OSINT capabilities, coalition predictions, and comprehensive risk assessment. Track voting patterns, committee activities, and political transparency in real-time. Historical database: 2494 politicians tracked since 1971.",
"image": {
"@type": "ImageObject",
"url": "https://riksdagsmonitor.com/images/og-image.webp",
"width": 1200,
"height": 630
},
"startDate": "2026-09-13",
"endDate": "2026-09-13",
"eventStatus": "https://schema.org/EventScheduled",
"eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
"location": {
"@type": "Place",
"name": "Sweden",
"address": {
"@type": "PostalAddress",
"addressCountry": "SE",
"addressRegion": "Sweden"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": 59.329323,
"longitude": 18.068581
}
},
"organizer": {
"@id": "https://riksdagsmonitor.com/#organization"
},
"performer": {
"@type": "Organization",
"name": "Swedish Riksdag",
"sameAs": "https://www.riksdagen.se"
}
},
{
"@type": "FAQPage",
"@id": "https://riksdagsmonitor.com/#faq",
"mainEntity": [
{
"@type": "Question",
"name": "What is Riksdagsmonitor?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Riksdagsmonitor is a comprehensive Swedish Parliament monitoring platform that provides real-time intelligence, election forecasting, and political transparency through CIA OSINT analysis. It tracks 349 MPs across 8 parties with 45 risk rules and comprehensive parliamentary analysis. Historical database includes 2494 politicians from 1971-2024."
}
},
{
"@type": "Question",
"name": "When is the Swedish Election 2026?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The Swedish Parliamentary Election 2026 is scheduled for September 13, 2026 (second Sunday in September). This is a nationwide election to determine the composition of the Riksdag (Swedish Parliament) with 349 seats. Riksdagsmonitor tracks current and historical politicians (2494 total since 1971)."
}
},
{
"@type": "Question",
"name": "How many MPs are tracked by Riksdagsmonitor?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Riksdagsmonitor tracks all 349 Members of Parliament (MPs) in the Swedish Riksdag, monitoring their voting patterns, attendance, committee work, and debate performance in real-time. Historical database includes 2494 politicians tracked since 1971."
}
},
{
"@type": "Question",
"name": "What are the 45 risk rules?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The 45 risk rules are behavioral assessment criteria across 4 domains: Politician-level (20 rules covering attendance, voting consistency, role conflicts, productivity), Party-level (12 rules for coalition discipline, ideological drift, internal conflicts), Committee-level (8 rules for legislative productivity, partisan deadlock), and Ministry-level (5 rules for budget overruns, policy failures, accountability)."
}
},
{
"@type": "Question",
"name": "Is Riksdagsmonitor free to use?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes, Riksdagsmonitor is completely free to use. It provides open access to Swedish Parliament monitoring, election forecasting, and political transparency data in 14 languages."
}
},
{
"@type": "Question",
"name": "What languages does Riksdagsmonitor support?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Riksdagsmonitor supports 14 languages: English, Swedish, Danish, Norwegian, Finnish, German, French, Spanish, Dutch, Arabic, Hebrew, Japanese, Korean, and Chinese, making Swedish political intelligence accessible to a global audience."
}
},
{
"@type": "Question",
"name": "How does coalition prediction work?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Coalition prediction uses algorithms analyzing voting patterns, committee behavior, party discipline scores, and historical coalition formation data across 50+ years. The system evaluates ideological compatibility, seat distribution, and stability indicators to forecast likely government formations."
}
},
{
"@type": "Question",
"name": "What is the Citizen Intelligence Agency (CIA) platform?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The Citizen Intelligence Agency (CIA) is an open-source OSINT platform for political transparency, developed by Hack23 AB. It processes thousands of votes annually, analyzes parliamentary documents, and provides real-time monitoring with comprehensive risk assessment dashboards."
}
}
]
},
{
"@type": "GovernmentOrganization",
"name": "Sveriges riksdag",
"alternateName": "Swedish Parliament",
"url": "https://www.riksdagen.se",
"address": {
"@type": "PostalAddress",
"streetAddress": "100 12 Stockholm",
"addressLocality": "Stockholm",
"addressCountry": "SE"
},
"numberOfEmployees": 349,
"foundingDate": "1866"
}
]
}
</script>
<link rel="alternate" hreflang="ar" href="https://riksdagsmonitor.com/index_ar.html">
<link rel="alternate" hreflang="da" href="https://riksdagsmonitor.com/index_da.html">
<link rel="alternate" hreflang="de" href="https://riksdagsmonitor.com/index_de.html">
<link rel="alternate" hreflang="en" href="https://riksdagsmonitor.com/index.html">
<link rel="alternate" hreflang="es" href="https://riksdagsmonitor.com/index_es.html">
<link rel="alternate" hreflang="fi" href="https://riksdagsmonitor.com/index_fi.html">
<link rel="alternate" hreflang="fr" href="https://riksdagsmonitor.com/index_fr.html">
<link rel="alternate" hreflang="he" href="https://riksdagsmonitor.com/index_he.html">
<link rel="alternate" hreflang="ja" href="https://riksdagsmonitor.com/index_ja.html">
<link rel="alternate" hreflang="ko" href="https://riksdagsmonitor.com/index_ko.html">
<link rel="alternate" hreflang="nl" href="https://riksdagsmonitor.com/index_nl.html">
<link rel="alternate" hreflang="nb" href="https://riksdagsmonitor.com/index_no.html">
<link rel="alternate" hreflang="sv" href="https://riksdagsmonitor.com/index_sv.html">
<link rel="alternate" hreflang="zh" href="https://riksdagsmonitor.com/index_zh.html">
<link rel="alternate" hreflang="x-default" href="https://riksdagsmonitor.com/index.html">
</head>
<body>
<!-- Skip to Content Link for Accessibility -->
<a href="#main-content" class="skip-to-content">Skip to main content</a>
<!-- Breadcrumb Navigation -->
<nav aria-label="Breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a href="index.html">Home</a>
</li>
<li class="breadcrumb-item" aria-current="page">
Swedish Election 2026
</li>
</ol>
</nav>
<header>
<button id="theme-toggle" class="theme-toggle-btn" type="button"
aria-pressed="false"
aria-label="Switch to dark theme"
title="Switch to dark theme"
data-label-dark="Switch to light theme"
data-label-light="Switch to dark theme">
<span class="theme-icon" aria-hidden="true">🌙</span>
</button>
<!-- Hero Banner -->
<div class="hero-banner">
<img src="images/riksdagsmonitor-banner.webp" alt="" class="hero-banner-bg" width="1536" height="1024" loading="eager" aria-hidden="true">
</div>
<!-- Hero Title -->
<div class="hero-header-text">
<h1>Riksdagsmonitor<br><span class="h1-subtitle">Swedish Election 2026 Intelligence Platform</span></h1>
<p class="tagline">Real-time parliamentary monitoring · Coalition predictions · 45 risk rules · 50+ years of data</p>
</div>
<div class="election-countdown">
<h2>Election in: <span id="countdown">13 September 2026</span></h2>
<p>13 September 2026 (Second Sunday in September)</p>
</div>
<div class="hero-stats">
<div class="stat">
<span class="number" data-stat-id="stat-historical-persons">2,494</span>
<span class="label">Politicians Tracked</span>
</div>
<div class="stat">
<span class="number" data-stat-id="stat-against-proposals">6M+</span>
<span class="label">Parliamentary Ballots</span>
</div>
<div class="stat">
<span class="number" data-stat-id="stat-total-documents">500K+</span>
<span class="label">Documents Processed</span>
</div>
<div class="stat">
<span class="number" data-stat-id="stat-government-proposals">10K+</span>
<span class="label">Government Bills</span>
</div>
<div class="stat">
<span class="number" data-stat-id="stat-committee-decisions">20K+</span>
<span class="label">Committee Decisions</span>
</div>
</div>
</header>
<!-- News Navigation -->
<nav class="news-navigation" aria-label="News">
<p class="news-navigation-heading"><span aria-hidden="true">📰</span> AI-Disrupted Political Journalism</p>
<p class="news-navigation-description">AI-generated political intelligence coverage of Sweden's Riksdag produced daily by AI agents using Citizen Intelligence Agency OSINT data. Automated analysis of government propositions, committee reports, opposition motions, parliamentary questions, and evening deep-dives — published in 14 languages.</p>
<ul class="news-navigation-features" aria-label="News coverage types">
<li>📋 Committee Reports</li>
<li>📜 Government Propositions</li>
<li>✊ Opposition Motions</li>
<li>❓ Parliamentary Questions</li>
<li>🌙 Evening Analysis</li>
<li>🌍 14 Languages</li>
</ul>
<a href="news/index.html" class="news-navigation-link" aria-label="Read the latest news">
<span class="news-navigation-link-icon" aria-hidden="true">📰</span>
<span>Read Latest News</span>
</a>
</nav>
<!-- Intelligence Dashboard CTA -->
<nav class="dashboard-cta" aria-label="Intelligence Dashboard">
<h2 class="dashboard-cta-heading"><span aria-hidden="true">📊</span> Intelligence Dashboard</h2>
<p class="dashboard-cta-description">Explore interactive visualizations powered by Citizen Intelligence Agency — election 2026 forecasts, party performance analytics, 45-rule risk assessment across 349 MPs, coalition stability tracking, and committee network analysis.</p>
<ul class="dashboard-cta-features" aria-label="Dashboard highlights">
<li>🗳️ Election 2026 Predictions</li>
<li>📈 Party Performance</li>
<li>⚠️ Risk Assessment</li>
<li>🤝 Coalition Analysis</li>
<li>🏛️ Committee Networks</li>
<li>👥 MP Rankings</li>
</ul>
<a href="dashboard/index.html" class="dashboard-cta-link" aria-label="Open Intelligence Dashboard">
<span class="dashboard-cta-link-icon" aria-hidden="true">📊</span>
<span>Open Dashboard</span>
</a>
</nav>
<main id="main-content" role="main">
<section id="coalition-status">
<h2>Current Coalition: Tidö Agreement</h2>
<p>Formation: October 2022 | Status: Active | Majority: 176 seats (of 349 total)</p>
<div class="cards">
<!-- Coalition party cards dynamically loaded from CIA data -->
<p class="loading-message"></p>
</div>
<div class="coalition-stability">
<h3>Coalition Stability Assessment</h3>
<div class="stability-info">
<p><strong>Majority Margin:</strong> 1 seat (narrow)</p>
<p><strong>CIA Risk Assessment:</strong> 12 MAJOR alerts, 5 CRITICAL alerts detected (last 90 days)</p>
<p><strong>Fragility Indicators:</strong> Ideological tensions between SD and L, vulnerable to defections</p>
<p><strong>Stability Score:</strong> Moderate Risk (72%)</p>
</div>
</div>
</section>
<!-- Risk Assessment & Anomaly Detection Dashboard -->
<section id="election-cycle-dashboard" class="dashboard-section">
<h2>🗳️ Election Cycle Intelligence (1994-2034)</h2>
<p>Comprehensive analysis of 40 years of Swedish Parliament election cycles with party performance evolution, decision-making effectiveness, predictive risk forecasting, and temporal voting patterns across 9+ election cycles.</p>
<div class="dashboard-loader">
Loading data...
</div>
<div class="dashboard-error">
Failed to load data
</div>
<!-- Filters -->
<div class="dashboard-filters">
<div class="filter-group">
<label for="election-cycle-filter">Election Cycle:</label>
<select id="election-cycle-filter">
<option value="all">All Cycles</option>
</select>
</div>
<div class="filter-group">
<label for="election-party-filter">Party:</label>
<select id="election-party-filter">
<option value="all">All Parties</option>
</select>
</div>
<div class="filter-group">
<label for="election-metric-filter">Metric:</label>
<select id="election-metric-filter">
<option value="performance">Performance</option>
<option value="decisions">Decisions</option>
<option value="risk">Risk</option>
<option value="attendance">Attendance</option>
</select>
</div>
</div>
<!-- Visualizations Grid -->
<div class="dashboard-grid">
<!-- Chart 1: Election Cycle Timeline -->
<div class="chart-card wide">
<h3>Election Cycle Performance Timeline</h3>
<div class="chart-container">
<canvas id="cycle-timeline-chart"></canvas>
</div>
<p class="chart-description">
Party performance evolution across 9 election cycles (1994-2034)
</p>
</div>
<!-- Chart 2: Decision Effectiveness Matrix -->
<div class="chart-card">
<h3>Decision Effectiveness Heatmap</h3>
<div id="decision-heatmap" class="chart-container chart-container--scrollable"></div>
<p class="chart-description">
Legislative approval rates by party and cycle
</p>
</div>
<!-- Chart 3: Risk Forecasting -->
<div class="chart-card">
<h3>Predictive Risk Forecasting</h3>
<div class="chart-container">
<canvas id="risk-forecast-chart"></canvas>
</div>
<p class="chart-description">
Risk trajectory and confidence levels (2022-2034)
</p>
</div>
<!-- Chart 4: Temporal Trends -->
<div class="chart-card wide">
<h3>Temporal Voting Patterns</h3>
<div class="chart-container">
<canvas id="temporal-trends-chart"></canvas>
</div>
<p class="chart-description">
Attendance, ballots, and volatility trends
</p>
</div>
<!-- Chart 5: Party Comparative Analysis -->
<div class="chart-card">
<h3>Party Tier Distribution</h3>
<div class="chart-container">
<canvas id="party-tier-chart"></canvas>
</div>
<p class="chart-description">
Performance tiers (ntile_party_tier: 1-4)
</p>
</div>
</div>
<p class="note dashboard-attribution">
<strong>Data by Citizen Intelligence Agency Platform</strong> | Updated from GitHub sample data | 24-hour caching
</p>
</section>
<section id="party-dashboard" class="dashboard-container">
<h2><span aria-hidden="true">🗳️</span> Party Performance & Effectiveness</h2>
<p>Comprehensive analysis of Swedish political parties using 50+ years of CIA platform data. Track effectiveness trends, coalition dynamics, and momentum indicators across 8 parties.</p>
<div class="dashboard-grid">
<div class="chart-card">
<h3>Effectiveness Trends (1990-2026)</h3>
<p>Historical party effectiveness scores showing legislative productivity, voting consistency, and policy impact over time.</p>
<canvas id="partyEffectivenessChart" role="img" aria-label="Party effectiveness line chart showing trends from 1990 to 2026 for all 8 Swedish political parties"></canvas>
<span class="sr-only">Line chart displaying effectiveness scores for Social Democrats, Moderates, Sweden Democrats, Centre Party, Left Party, Christian Democrats, Liberals, and Green Party from 1990 to 2026.</span>
</div>
<div class="chart-card">
<h3>Party Comparison (Current Period)</h3>
<p>Comparative analysis of party performance metrics for the current legislative period.</p>
<canvas id="partyComparisonChart" role="img" aria-label="Bar chart comparing current performance scores across all 8 Swedish political parties"></canvas>
<span class="sr-only">Horizontal bar chart showing comparative performance scores for all parties in the current legislative period, sorted by score.</span>
</div>
<div class="chart-card">
<h3>Coalition Alignment</h3>
<p>Coalition patterns and inter-party collaboration networks.</p>
<div id="coalitionAlignmentChart" role="region" aria-label="Coalition alignment visualization showing collaboration strength between political parties"></div>
<span class="sr-only">Visual representation of coalition patterns showing collaboration strength percentages between different party combinations.</span>
</div>
<div class="chart-card">
<h3>Momentum Indicators</h3>
<p>Party momentum scores with percentile benchmarks (P50, P90) indicating electoral trajectory.</p>
<canvas id="partyMomentumChart" role="img" aria-label="Doughnut chart showing momentum scores for all 8 Swedish political parties"></canvas>
<span class="sr-only">Doughnut chart displaying momentum indicator scores for each party with percentile benchmarks.</span>
</div>
</div>
</section>
<section id="committee-dashboard" class="dashboard-container">
<h2>🏛️ Committee Performance & Network Analytics</h2>
<div class="dashboard-grid">
<!-- Network Diagram (Full Width) -->
<div class="chart-card wide">
<h3>Committee Network Diagram</h3>
<p>Interactive visualization of committee relationships and productivity. Drag nodes to explore connections.</p>
<div id="committeeNetwork" role="img" aria-label="Committee network connections diagram showing relationships between 15 Swedish Riksdag committees"></div>
<table class="sr-only" id="committeeNetworkTable" aria-label="Committee network connections data table">
<!-- Accessible fallback table populated by JavaScript -->
</table>
</div>
<!-- Productivity Heat Map (Full Width) -->
<div class="chart-card wide">
<h3>Productivity Matrix (2020-2026)</h3>
<p>Heat map showing committee productivity scores over time. Hover over cells for detailed information.</p>
<div id="productivityMatrix" role="img" aria-label="Committee productivity matrix showing performance over time from 2020 to 2026"></div>
<table class="sr-only" id="productivityMatrixTable" aria-label="Committee productivity matrix data table">
<!-- Accessible fallback table populated by JavaScript -->
</table>
</div>
<!-- Committee Comparison -->
<div class="chart-card">
<h3>Committee Comparison</h3>
<p>Compare productivity scores across all 15 committees.</p>
<canvas id="committeeComparisonChart" role="img" aria-label="Bar chart comparing productivity scores across committees"></canvas>
</div>
<!-- Decision Effectiveness -->
<div class="chart-card">
<h3>Decision Effectiveness</h3>
<p>Track decision outcomes (approved, rejected, pending) over time.</p>
<canvas id="decisionEffectivenessChart" role="img" aria-label="Stacked bar chart showing decision effectiveness over years"></canvas>
</div>
<!-- Seasonal Patterns (Full Width) -->
<div class="chart-card wide">
<h3>Seasonal Activity Patterns</h3>
<p>Quarterly activity trends showing how committee work varies across the year.</p>
<canvas id="seasonalPatternsChart" role="img" aria-label="Line chart displaying seasonal activity patterns by quarter"></canvas>
</div>
</div>
<div class="dashboard-attribution">
<p><small>📊 Data powered by <a href="https://www.hack23.com/cia" target="_blank" rel="noopener noreferrer">CIA Platform</a> | Updated: <span id="committeeLastUpdated">Loading...</span></small></p>
</div>
</section>
<section id="coalition-dashboard" class="dashboard-container">
<h2>🤝 Coalition & Voting Pattern Analysis</h2>
<p>Interactive analysis of coalition dynamics, party alignments, and voting behavior patterns in the Swedish Riksdag.</p>
<div class="dashboard-grid">
<div class="chart-card wide">
<h3>Coalition Network (Interactive)</h3>
<p>Force-directed graph showing coalition strength between Swedish political parties. Drag nodes, zoom, and click for details.</p>
<div id="coalitionNetwork" role="img" aria-label="Coalition network diagram showing relationships between 8 Swedish political parties"></div>
<table class="sr-only" id="coalitionNetworkTable">
<!-- Accessible table fallback populated by JavaScript -->
</table>
</div>
<div class="chart-card">
<h3>Voting Anomalies (Last 5 Years)</h3>
<p>Scatter plot highlighting unusual voting patterns and party defections from expected behavior.</p>
<canvas id="votingAnomalyChart" role="img" aria-label="Voting anomaly scatter plot showing deviation scores for all parties"></canvas>
</div>
<div class="chart-card">
<h3>Party Alignment Heat Map</h3>
<p>Matrix visualization showing cross-party voting agreement levels based on historical voting records.</p>
<div id="alignmentHeatMap" role="img" aria-label="Party alignment heat map showing voting agreement percentages between all party pairs"></div>
</div>
<div class="chart-card">
<h3>Behavioral Patterns</h3>
<p>Party voting consistency scores measuring adherence to party line across all votes.</p>
<canvas id="behavioralPatternsChart" role="img" aria-label="Behavioral patterns bar chart showing voting consistency percentages for all parties"></canvas>
</div>
<div class="chart-card wide">
<h3>Decision Trends (1990-2026)</h3>
<p>Historical timeline showing annual voting activity trends for all parties over 36 years.</p>
<canvas id="decisionTrendsChart" role="img" aria-label="Decision trends timeline showing annual voting volumes from 1990 to 2026"></canvas>
</div>
</div>
<p class="note dashboard-attribution">
<strong>Data Attribution:</strong> Visualizations powered by CIA Platform intelligence exports. Data updates weekly from Swedish Parliament open data APIs.
</p>
</section>
<section id="seasonal-patterns-dashboard">
<h2>📅 Seasonal Activity Patterns (2002-2025)</h2>
<p class="subtitle">Quarterly Analysis with Z-Score Anomaly Detection</p>
<!-- Filters -->
<div class="dashboard-filters">
<select id="seasonal-year-filter" aria-label="Filter by year">
<option value="all">All Years</option>
</select>
<select id="seasonal-quarter-filter" aria-label="Filter by quarter">
<option value="all">All Quarters</option>
<option value="1">Q1 - Winter Session</option>
<option value="2">Q2 - Spring Session</option>
<option value="3">Q3 - Summer Recess</option>
<option value="4">Q4 - Autumn Session</option>
</select>
<select id="seasonal-election-filter" aria-label="Filter by election status">
<option value="all">All</option>
<option value="election">Election Years</option>
<option value="non-election">Non-Election Years</option>
</select>
<select id="classification-filter" aria-label="Filter by activity classification">
<option value="all">All Classifications</option>
</select>
</div>
<!-- Visualizations -->
<div class="dashboard-grid">
<!-- Chart 1: Quarterly Activity Heat Map -->
<div class="chart-card wide">
<h3>Quarterly Activity Heat Map (2002-2025)</h3>
<div id="seasonal-heatmap"></div>
<p class="chart-description">Ballot volume by year and quarter with Z-score overlay. Red circles indicate statistical anomalies (|Z| ≥ 2.0).</p>
</div>
<!-- Chart 2: Z-Score Anomaly Timeline -->
<div class="chart-card">
<h3>Z-Score Anomaly Detection</h3>
<canvas id="zscore-timeline-chart" role="img" aria-label="Line chart showing Z-score timeline for ballot, document, and attendance metrics"></canvas>
<p class="chart-description">Statistical outliers (|Z| ≥ 2.0) are flagged in red based on anomaly thresholds.</p>
</div>
<!-- Chart 3: Cross-Year Quarter Comparison -->
<div class="chart-card">
<h3>Average Activity by Quarter (All Years)</h3>
<canvas id="quarter-comparison-chart" role="img" aria-label="Bar chart showing average ballots by quarter across all years"></canvas>
<p class="chart-description">Q1–Q4 baselines across all years. Shows typical activity patterns across seasons.</p>
</div>
<!-- Chart 4: Activity Classification Distribution -->
<div class="chart-card wide">
<h3>Seasonal Pattern Classification</h3>
<canvas id="classification-chart" role="img" aria-label="Stacked bar chart showing distribution of activity classifications by year"></canvas>
<p class="chart-description">Distribution of NORMAL, ELEVATED, REDUCED, and ANOMALY patterns across years.</p>
</div>
<!-- Chart 5: QoQ Change Waterfall -->
<div class="chart-card">
<h3>Quarter-over-Quarter Changes</h3>
<canvas id="qoq-change-chart" role="img" aria-label="Bar chart showing quarter-over-quarter ballot changes as percentages"></canvas>
<p class="chart-description">Sequential ballot changes (% and absolute). Green indicates increase, red indicates decrease.</p>
</div>
</div>
<p class="data-attribution">📊 Data by CIA Platform | Updated Daily</p>
</section>
<section id="pre-election-dashboard" class="dashboard-section">
<h2><span aria-hidden="true">🗳️</span> Pre-Election Monitoring Dashboard (Q4 2023-2025)</h2>
<p class="dashboard-intro">Track Q4 parliamentary activity in the critical 12-15 months before the 2026 election. Compare current activity against historical baselines and election-year patterns.</p>
<!-- Real-Time Status Cards -->
<div class="status-cards">
<div class="status-card" data-metric="ballots">
<h3><span aria-hidden="true">📊</span> Ballot Activity</h3>
<p class="current-value">16,750</p>
<p class="baseline-comparison">+4.34% vs baseline</p>
<span class="status-badge normal">NORMAL</span>
</div>
<div class="status-card" data-metric="documents">
<h3><span aria-hidden="true">📄</span> Document Production</h3>
<p class="current-value">3,451</p>
<p class="baseline-comparison">+25.55% vs baseline</p>
<span class="status-badge normal">NORMAL</span>
</div>
<div class="status-card" data-metric="attendance">
<h3><span aria-hidden="true">✅</span> Attendance Rate</h3>
<p class="current-value">85.75%</p>
<p class="baseline-comparison">+0.75% vs baseline</p>
<span class="status-badge normal">STABLE</span>
</div>
<div class="status-card" data-metric="party-performance">
<h3><span aria-hidden="true">🎯</span> Party Win Rate</h3>
<p class="current-value">59.72%</p>
<p class="baseline-comparison">+3.55% YoY</p>
<span class="status-badge improving">IMPROVING</span>
</div>
</div>
<!-- Visualizations -->
<div class="dashboard-grid">
<!-- Chart 1: Q4 Activity Timeline (2023-2025) -->
<div class="chart-card wide">
<h3>Q4 Activity Timeline (2023-2025)</h3>
<div class="chart-container">
<canvas id="q4-timeline-chart" aria-label="Q4 Activity Timeline showing ballots, documents, and attendance trends from 2023 to 2025"></canvas>
</div>
<p class="chart-description">Ballots, documents, attendance trends with baseline overlay</p>
</div>
<!-- Chart 2: Election Year Comparison -->
<div class="chart-card">
<h3>Election vs. Non-Election Q4 Patterns</h3>
<div class="chart-container">
<canvas id="election-comparison-chart" aria-label="Comparison of Q4 ballot activity in election years versus non-election years from 2002 to 2025"></canvas>
</div>
<p class="chart-description">Historical Q4 activity (2002-2025): Election years vs. Non-election years</p>
</div>
<!-- Chart 3: Baseline Deviation Radar -->
<div class="chart-card">
<h3>Deviation from Baseline (2025 Q4)</h3>
<div class="chart-container">
<canvas id="deviation-radar-chart" aria-label="Radar chart showing 2025 Q4 metrics compared to historical baselines"></canvas>
</div>
<p class="chart-description">Multi-metric deviation analysis</p>
</div>
<!-- Chart 4: Party Performance Shifts -->
<div class="chart-card wide">
<h3>Party Performance Trends (2023-2025)</h3>
<div class="chart-container">
<canvas id="party-trends-chart" aria-label="Line chart showing party win rate, absence rate, and document production from 2023 to 2025"></canvas>
</div>
<p class="chart-description">Win rate, absence rate, document production by year</p>
</div>
<!-- Chart 5: YoY Change Waterfall -->
<div class="chart-card">
<h3>Year-over-Year Changes</h3>
<div class="chart-container">
<canvas id="yoy-waterfall-chart" aria-label="Waterfall chart showing year-over-year ballot activity changes from 2023 to 2025"></canvas>
</div>
<p class="chart-description">Ballot activity changes: 2023 → 2024 → 2025</p>
</div>
<!-- Chart 6: Early Warning Indicators -->
<div class="chart-card">
<h3>Early Warning Indicator Matrix</h3>
<div id="warning-matrix" role="region" aria-label="Early warning indicator matrix showing status of 4 monitored metrics: ballots, documents, attendance, and year-over-year change"></div>
<p class="chart-description">Real-time status of 4 monitored metrics (ballots, documents, attendance, YoY change)</p>
</div>
</div>
<p class="data-attribution">📊 Data by CIA Platform | Updated Daily</p>
</section>
<section id="anomaly-detection-dashboard">
<h2>🚨 Anomaly Detection & Early Warning System</h2>
<p>Statistical outlier identification in Swedish Parliament activity (2002-2026) using Z-score analysis</p>
<!-- Alert Banner (for active anomalies) -->
<div id="anomaly-alert-banner" class="alert-banner critical hidden">
<span class="alert-icon">🔴</span>
<p><strong id="alert-prefix">CRITICAL ANOMALY DETECTED:</strong> <span id="alert-message"></span></p>
<button class="dismiss-alert">Dismiss</button>
</div>
<!-- Filters -->
<div class="dashboard-filters">
<select id="anomaly-severity-filter" aria-label="Filter by severity">
<option value="all">All Severities</option>
<option value="CRITICAL">🔴 Critical</option>
<option value="HIGH">🟠 High</option>
<option value="MODERATE">🟡 Moderate</option>
<option value="LOW">🟢 Low</option>
</select>
<select id="anomaly-type-filter" aria-label="Filter by anomaly type">
<option value="all">All Types</option>
<option value="BALLOT_ANOMALY">Ballot Anomaly</option>
<option value="DOCUMENT_ANOMALY">Document Anomaly</option>
<option value="ATTENDANCE_ANOMALY">Attendance Anomaly</option>
<option value="NO_ANOMALY">No Anomaly</option>
</select>
<select id="anomaly-direction-filter" aria-label="Filter by direction">
<option value="all">All Directions</option>
<option value="UNUSUALLY_HIGH">Unusually High</option>
<option value="UNUSUALLY_LOW">Unusually Low</option>
<option value="WITHIN_NORMAL_RANGE">Within Normal Range</option>
</select>
<select id="anomaly-year-filter" aria-label="Filter by year">
<option value="all">All Years</option>
</select>
</div>
<!-- Visualizations -->
<div class="dashboard-grid">
<!-- Chart 1: Anomaly Timeline -->
<div class="chart-card wide">
<h3>Anomaly Timeline (2002-2026)</h3>
<canvas id="anomaly-timeline-chart" role="img" aria-label="Scatter plot showing anomalies over time"></canvas>
<p class="chart-description">Chronological view of detected anomalies with severity coding</p>
</div>
<!-- Chart 2: Z-Score Distribution -->
<div class="chart-card">
<h3>Z-Score Distribution</h3>
<canvas id="zscore-distribution-chart" role="img" aria-label="Histogram of Z-score distribution"></canvas>
<p class="chart-description">Normal curve with outlier markers (|Z| ≥ 2.0)</p>
</div>
<!-- Chart 3: Anomaly Type Breakdown -->
<div class="chart-card">
<h3>Anomaly Type Distribution</h3>
<canvas id="anomaly-type-chart" role="img" aria-label="Doughnut chart showing anomaly types"></canvas>
<p class="chart-description">Ballot vs. Document anomaly distribution</p>
</div>
<!-- Chart 4: Severity Heat Map -->
<div class="chart-card wide">
<h3>Severity Heat Map (Year × Quarter)</h3>
<div id="severity-heatmap" role="img" aria-label="Heat map showing severity by year and quarter"></div>
<p class="chart-description">Grid showing anomaly severity by year and quarter</p>
</div>
<!-- Chart 5: Quarterly Anomaly Frequency -->
<div class="chart-card">
<h3>Anomaly Frequency by Quarter</h3>
<canvas id="quarterly-frequency-chart" role="img" aria-label="Bar chart showing anomaly frequency by quarter"></canvas>
<p class="chart-description">Q1-Q4 anomaly counts across all years</p>
</div>
<!-- Chart 6: Recent Anomalies Feed -->
<div class="chart-card">
<h3>Recent Anomalies (Last 5)</h3>
<div id="recent-anomalies-feed" role="feed" aria-label="Feed of recent anomalies"></div>
<p class="chart-description">Most recent anomalies with details</p>
</div>
</div>
</section>
<section id="ministry-dashboard" class="dashboard-container">
<h2>🎖️ Government Minister Risk & Influence</h2>
<div class="dashboard-grid">
<div class="chart-card wide">
<h3>Ministry Risk Heat Map</h3>
<div id="ministryRiskHeatMap" role="img" aria-label="Ministry Risk Heat Map showing risk levels across government departments"></div>
</div>
<div class="chart-card">
<h3>Top 10 Most Influential Ministers</h3>
<canvas id="ministerInfluenceChart" role="img" aria-label="Bar chart showing top 10 most influential ministers"></canvas>
</div>
<div class="chart-card">
<h3>Ministry Productivity Matrix</h3>
<canvas id="ministryProductivityChart" role="img" aria-label="Bar chart comparing ministry productivity across quarters"></canvas>
</div>
<div class="chart-card">
<h3>Decision Impact Trends</h3>
<canvas id="decisionImpactChart" role="img" aria-label="Line chart showing decision impact trends over time"></canvas>
</div>
</div>
<!-- Alternative data table for screen readers -->
<details class="sr-only-alternative">
<summary>View data as accessible table</summary>
<table id="ministryDataTable">
<!-- Populated by JavaScript -->
</table>
</details>
</section>
<section id="risk-dashboard" class="dashboard-container">
<h2><span aria-hidden="true">⚠️</span> Risk Assessment & Anomaly Detection</h2>
<p class="dashboard-description">Comprehensive intelligence analysis using 45 risk rules across 349 MPs with statistical anomaly detection (P90/P99 thresholds). Historical analysis includes 2494 politicians (1971-2024).</p>
<div class="alert-banner" id="earlyWarnings" role="alert" aria-live="polite" aria-atomic="true">
<!-- Alerts populated by JavaScript -->
</div>
<div class="dashboard-grid">
<div class="chart-card full-width">
<h3>Risk Level Heat Map (45 Rules × 349 MPs)</h3>
<p class="chart-description">Interactive heat map showing risk scores for each MP across all 45 transparency rules. Click cells for details.</p>
<div class="controls">
<label class="control-label">
<input type="checkbox" id="filterHighRisk" aria-label="Show only high-risk MPs (score ≥6.0)" aria-describedby="filterHighRiskDesc">
<span id="filterHighRiskDesc">Show only high-risk (≥6.0)</span>
</label>
<label class="control-label">
<span>Filter by rule:</span>
<select id="riskRuleFilter" aria-label="Filter by risk rule">
<option value="">All Rules</option>
</select>
</label>
<button id="resetZoom" class="btn btn-sm" aria-label="Reset zoom">Reset Zoom</button>
</div>
<div id="riskHeatMap" role="img" aria-label="Risk assessment heat map showing 45 rules by 349 MPs"></div>
<div id="heatMapLegend" class="legend" role="img" aria-label="Heat map color legend"></div>