-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
841 lines (796 loc) · 53.4 KB
/
Copy pathindex.html
File metadata and controls
841 lines (796 loc) · 53.4 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
<!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'; font-src 'self'; 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" 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 parliament intelligence, Riksdagsmonitor, political transparency, parliamentary data, Sweden election 2026, OSINT politics, open democracy">
<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:locale" content="en_US">
<meta property="og:locale:alternate" content="sv_SE">
<meta property="og:locale:alternate" content="da_DK">
<meta property="og:locale:alternate" content="nb_NO">
<meta property="og:locale:alternate" content="fi_FI">
<meta property="og:locale:alternate" content="de_DE">
<meta property="og:locale:alternate" content="fr_FR">
<meta property="og:locale:alternate" content="es_ES">
<meta property="og:locale:alternate" content="nl_NL">
<meta property="og:locale:alternate" content="ar_SA">
<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="zh_CN">
<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 (2499 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">
<!-- 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 · 2499 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://cia.sourceforge.io">
<link rel="dns-prefetch" href="https://raw.githubusercontent.com">
<!-- Fonts: system-ui stack only (see styles.css); no third-party font CDN -->
<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: 2499 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 2499 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 (2499 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 2499 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 class="rm-article-body">
<a class="skip-link" href="#main-content">Skip to main content</a>
<header class="rm-site-header" role="banner">
<div class="rm-site-header-inner">
<a class="rm-logo" href="index.html" aria-label="Riksdagsmonitor Home">
<img class="rm-logo-img" data-rm-logo-img="true" src="images/riksdagsmonitor-logo.webp" srcset="images/riksdagsmonitor-logo-48w.webp 48w, images/riksdagsmonitor-logo-96w.webp 96w, images/riksdagsmonitor-logo-180w.webp 180w" sizes="48px" alt="" width="48" height="48" loading="eager" decoding="async">
<span class="rm-logo-glyph" aria-hidden="true">🇸🇪</span>
<span class="rm-logo-text">
<span class="rm-logo-brand">Riksdagsmonitor</span>
<span class="rm-logo-tagline">Swedish parliamentary intelligence · Open-source · Apache-2.0</span>
</span>
</a>
<nav class="rm-site-nav" aria-label="Main platform">
<a href="index.html">Home</a>
<a href="news/index.html">News</a>
<a href="dashboard/index.html">Dashboard</a>
<a href="politician-dashboard.html">👤 Politicians</a>
<a href="political-intelligence.html">🧠 Political Intelligence</a>
<a href="sitemap.html">Sitemap</a>
<a href="https://riksdagsmonitor.com/docs/api/index.html">API Documentation</a>
</nav>
<details class="rm-lang-switcher">
<summary aria-label="Switch language">
<span aria-hidden="true">🇬🇧</span>
<span class="rm-lang-current-label">English</span>
<span class="rm-lang-switcher-caret" aria-hidden="true">▾</span>
</summary>
<div class="rm-lang-switcher-dropdown" role="menu">
<a href="index_sv.html" lang="sv" title="Svenska" role="menuitem"><span aria-hidden="true">🇸🇪</span> Svenska</a>
<a href="index_da.html" lang="da" title="Dansk" role="menuitem"><span aria-hidden="true">🇩🇰</span> Dansk</a>
<a href="index_no.html" lang="nb" title="Norsk" role="menuitem"><span aria-hidden="true">🇳🇴</span> Norsk</a>
<a href="index_fi.html" lang="fi" title="Suomi" role="menuitem"><span aria-hidden="true">🇫🇮</span> Suomi</a>
<a href="index_de.html" lang="de" title="Deutsch" role="menuitem"><span aria-hidden="true">🇩🇪</span> Deutsch</a>
<a href="index_fr.html" lang="fr" title="Français" role="menuitem"><span aria-hidden="true">🇫🇷</span> Français</a>
<a href="index_es.html" lang="es" title="Español" role="menuitem"><span aria-hidden="true">🇪🇸</span> Español</a>
<a href="index_nl.html" lang="nl" title="Nederlands" role="menuitem"><span aria-hidden="true">🇳🇱</span> Nederlands</a>
<a href="index_ar.html" lang="ar" title="العربية" role="menuitem"><span aria-hidden="true">🇸🇦</span> العربية</a>
<a href="index_he.html" lang="he" title="עברית" role="menuitem"><span aria-hidden="true">🇮🇱</span> עברית</a>
<a href="index_ja.html" lang="ja" title="日本語" role="menuitem"><span aria-hidden="true">🇯🇵</span> 日本語</a>
<a href="index_ko.html" lang="ko" title="한국어" role="menuitem"><span aria-hidden="true">🇰🇷</span> 한국어</a>
<a href="index_zh.html" lang="zh" title="中文" role="menuitem"><span aria-hidden="true">🇨🇳</span> 中文</a>
</div>
</details>
<a class="rm-header-cta rm-header-cta-pi"
href="political-intelligence.html"
title="Deep political analysis and intelligence reports"
aria-label="Deep political analysis and intelligence reports">
<span class="rm-header-cta-icon" aria-hidden="true">🧠</span>
<span class="rm-header-cta-label">Political Intelligence</span>
</a>
<a class="rm-header-cta rm-header-cta-transparency"
href="https://github.com/Hack23/riksdagsmonitor/blob/main/SECURITY.md"
target="_blank" rel="noopener noreferrer"
title="Hack23 commitment to transparency and security"
aria-label="Hack23 commitment to transparency and security">
<span class="rm-header-cta-icon" aria-hidden="true">🔐</span>
<span class="rm-header-cta-label">Transparency & Security</span>
</a>
<a class="rm-header-cta rm-header-cta-sponsor"
href="https://github.com/sponsors/Hack23"
target="_blank" rel="noopener noreferrer"
title="Become a sponsor to Hack23 on GitHub"
aria-label="Become a sponsor to Hack23 on GitHub">
<span class="rm-header-cta-icon" aria-hidden="true">💖</span>
<span class="rm-header-cta-label">Sponsor Hack23</span>
</a>
<button id="theme-toggle" class="rm-theme-toggle" type="button"
aria-pressed="false"
aria-label="Switch theme"
title="Switch theme"
data-label-dark="Switch to light theme"
data-label-light="Switch to dark theme">
<span class="rm-theme-toggle-icon" aria-hidden="true">🌓</span>
<span class="rm-theme-toggle-label">Theme</span>
</button>
</div>
<div class="rm-site-subnav" aria-label="Page context">
<nav class="rm-breadcrumb" aria-label="Breadcrumb">
<ol>
<li><a href="index.html">Home</a></li>
<li aria-current="page">Riksdagsmonitor | Swedish Election 2026 Intelligence Platform | Parliament Monitoring</li>
</ol>
</nav>
</div>
</header>
<div class="hero-banner" aria-hidden="true">
<picture class="hero-banner-picture">
<source type="image/avif" srcset="images/riksdagsmonitor-banner-480w.avif 480w, images/riksdagsmonitor-banner-768w.avif 768w, images/riksdagsmonitor-banner-1024w.avif 1024w, images/riksdagsmonitor-banner-1536w.avif 1536w" sizes="100vw">
<source type="image/webp" srcset="images/riksdagsmonitor-banner-480w.webp 480w, images/riksdagsmonitor-banner-768w.webp 768w, images/riksdagsmonitor-banner-1024w.webp 1024w, images/riksdagsmonitor-banner-1536w.webp 1536w" sizes="100vw">
<img src="images/riksdagsmonitor-banner.webp" alt="" class="hero-banner-bg" width="1536" height="1024" loading="eager" decoding="async" fetchpriority="high">
</picture>
</div>
<nav class="language-switcher rm-lang-bar" role="navigation" aria-label="This page in other languages">
<span class="lang-link active" lang="en" title="English" aria-current="page"><span aria-hidden="true">🇬🇧</span> English</span>
<a href="index_sv.html" class="lang-link" hreflang="sv" lang="sv" title="Svenska"><span aria-hidden="true">🇸🇪</span> Svenska</a>
<a href="index_da.html" class="lang-link" hreflang="da" lang="da" title="Dansk"><span aria-hidden="true">🇩🇰</span> Dansk</a>
<a href="index_no.html" class="lang-link" hreflang="nb" lang="nb" title="Norsk"><span aria-hidden="true">🇳🇴</span> Norsk</a>
<a href="index_fi.html" class="lang-link" hreflang="fi" lang="fi" title="Suomi"><span aria-hidden="true">🇫🇮</span> Suomi</a>
<a href="index_de.html" class="lang-link" hreflang="de" lang="de" title="Deutsch"><span aria-hidden="true">🇩🇪</span> Deutsch</a>
<a href="index_fr.html" class="lang-link" hreflang="fr" lang="fr" title="Français"><span aria-hidden="true">🇫🇷</span> Français</a>
<a href="index_es.html" class="lang-link" hreflang="es" lang="es" title="Español"><span aria-hidden="true">🇪🇸</span> Español</a>
<a href="index_nl.html" class="lang-link" hreflang="nl" lang="nl" title="Nederlands"><span aria-hidden="true">🇳🇱</span> Nederlands</a>
<a href="index_ar.html" class="lang-link" hreflang="ar" lang="ar" title="العربية"><span aria-hidden="true">🇸🇦</span> العربية</a>
<a href="index_he.html" class="lang-link" hreflang="he" lang="he" title="עברית"><span aria-hidden="true">🇮🇱</span> עברית</a>
<a href="index_ja.html" class="lang-link" hreflang="ja" lang="ja" title="日本語"><span aria-hidden="true">🇯🇵</span> 日本語</a>
<a href="index_ko.html" class="lang-link" hreflang="ko" lang="ko" title="한국어"><span aria-hidden="true">🇰🇷</span> 한국어</a>
<a href="index_zh.html" class="lang-link" hreflang="zh" lang="zh" title="中文"><span aria-hidden="true">🇨🇳</span> 中文</a>
</nav>
<div class="hero-header-text">
<h1>Riksdagsmonitor<br><span class="h1-subtitle">Swedish election intelligence platform 2026</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 (Second Sunday in September)</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"><span aria-hidden="true">👥</span> Politicians monitored</span>
</div>
<div class="stat">
<span class="number" data-stat-id="stat-against-proposals">6M+</span>
<span class="label"><span aria-hidden="true">🗳️</span> Riksdag ballots</span>
</div>
<div class="stat">
<span class="number" data-stat-id="stat-total-documents">500K+</span>
<span class="label"><span aria-hidden="true">📄</span> Documents processed</span>
</div>
<div class="stat">
<span class="number" data-stat-id="stat-government-proposals">10K+</span>
<span class="label"><span aria-hidden="true">📜</span> Government bills</span>
</div>
<div class="stat">
<span class="number" data-stat-id="stat-committee-decisions">20K+</span>
<span class="label"><span aria-hidden="true">🏛️</span> Committee decisions</span>
</div>
</div>
<!-- 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>
<section id="political-intelligence-dashboards" class="dashboard-hub" aria-labelledby="dashboard-hub-heading">
<h2 id="dashboard-hub-heading">📊 Political Intelligence Dashboards</h2>
<p class="dashboard-hub-intro">Nine specialised dashboards covering election cycles, party performance, committees, coalitions, seasonal patterns, pre-election monitoring, anomaly detection, ministers and risk — built on Citizen Intelligence Agency OSINT data and the Swedish Riksdag open data API.</p>
<div class="dashboard-tile-grid dashboard-tile-grid--hub">
<a href="dashboards/election-cycle.html" class="dashboard-tile dashboard-tile--hub" data-rm-dashboard-slug="election-cycle"><span class="dashboard-tile-icon" aria-hidden="true">🗳️</span><span class="dashboard-tile-body"><span class="dashboard-tile-label">🗳️ Election Cycle Intelligence (1994-2034)</span><span class="dashboard-tile-cta" aria-hidden="true">Open dashboard →</span></span></a>
<a href="dashboards/parties.html" class="dashboard-tile dashboard-tile--hub" data-rm-dashboard-slug="parties"><span class="dashboard-tile-icon" aria-hidden="true">🏛️</span><span class="dashboard-tile-body"><span class="dashboard-tile-label">🗳️ Party Performance & Effectiveness</span><span class="dashboard-tile-cta" aria-hidden="true">Open dashboard →</span></span></a>
<a href="dashboards/committees.html" class="dashboard-tile dashboard-tile--hub" data-rm-dashboard-slug="committees"><span class="dashboard-tile-icon" aria-hidden="true">👥</span><span class="dashboard-tile-body"><span class="dashboard-tile-label">🏛️ Committee Performance & Network Analytics</span><span class="dashboard-tile-cta" aria-hidden="true">Open dashboard →</span></span></a>
<a href="dashboards/coalitions.html" class="dashboard-tile dashboard-tile--hub" data-rm-dashboard-slug="coalitions"><span class="dashboard-tile-icon" aria-hidden="true">🤝</span><span class="dashboard-tile-body"><span class="dashboard-tile-label">🤝 Coalition & Voting Pattern Analysis</span><span class="dashboard-tile-cta" aria-hidden="true">Open dashboard →</span></span></a>
<a href="dashboards/seasonal-patterns.html" class="dashboard-tile dashboard-tile--hub" data-rm-dashboard-slug="seasonal-patterns"><span class="dashboard-tile-icon" aria-hidden="true">📅</span><span class="dashboard-tile-body"><span class="dashboard-tile-label">📅 Seasonal Activity Patterns (2002-2025)</span><span class="dashboard-tile-cta" aria-hidden="true">Open dashboard →</span></span></a>
<a href="dashboards/pre-election.html" class="dashboard-tile dashboard-tile--hub" data-rm-dashboard-slug="pre-election"><span class="dashboard-tile-icon" aria-hidden="true">⚠️</span><span class="dashboard-tile-body"><span class="dashboard-tile-label">🗳️ Pre-Election Monitoring Dashboard (Q4 2023-2025)</span><span class="dashboard-tile-cta" aria-hidden="true">Open dashboard →</span></span></a>
<a href="dashboards/anomaly-detection.html" class="dashboard-tile dashboard-tile--hub" data-rm-dashboard-slug="anomaly-detection"><span class="dashboard-tile-icon" aria-hidden="true">🚨</span><span class="dashboard-tile-body"><span class="dashboard-tile-label">🚨 Anomaly Detection & Early Warning System</span><span class="dashboard-tile-cta" aria-hidden="true">Open dashboard →</span></span></a>
<a href="dashboards/ministers.html" class="dashboard-tile dashboard-tile--hub" data-rm-dashboard-slug="ministers"><span class="dashboard-tile-icon" aria-hidden="true">🎖️</span><span class="dashboard-tile-body"><span class="dashboard-tile-label">🎖️ Government Minister Risk & Influence</span><span class="dashboard-tile-cta" aria-hidden="true">Open dashboard →</span></span></a>
<a href="dashboards/risk.html" class="dashboard-tile dashboard-tile--hub" data-rm-dashboard-slug="risk"><span class="dashboard-tile-icon" aria-hidden="true">⚠️</span><span class="dashboard-tile-body"><span class="dashboard-tile-label">⚠️ Risk Assessment & Anomaly Detection</span><span class="dashboard-tile-cta" aria-hidden="true">Open dashboard →</span></span></a>
</div>
</section>
<!-- Risk Assessment & Anomaly Detection Dashboard -->
<section id="intelligence-capabilities">
<h2>Comprehensive Intelligence Platform</h2>
<p>CIA delivers systematic political transparency through 45 risk rules across 4 domains and 5 analytical frameworks.</p>
<div class="cards">
<div class="card">
<div class="scanner-effect"></div>
<h3>🔍 Real-Time Monitoring</h3>
<ul>
<li>349 MPs tracked (<span data-stat-id="stat-historical-persons">—</span> historical) automatically</li>
<li><span data-stat-id="stat-total-votes">—</span> individual ballot records analyzed</li>
<li><span data-stat-id="stat-total-documents">—</span> documents processed</li>
<li><span data-stat-id="stat-member-proposals">—</span> member proposals tracked</li>
<li><span data-stat-id="stat-government-proposals">—</span> government proposals monitored</li>
<li>Committee work quantified (<span data-stat-id="stat-committee-documents">—</span> documents)</li>
</ul>
</div>
<div class="card">
<div class="scanner-effect"></div>
<h3>📊 Coalition Prediction</h3>
<ul>
<li>4 election scenarios modeled</li>
<li>Historical pattern analysis (1971-2024)</li>
<li>Party discipline tracking</li>
<li>Defection probability estimation</li>
<li>Government formation simulation</li>
</ul>
</div>
<div class="card">
<div class="scanner-effect"></div>
<h3>✅ Fact-Checking Infrastructure</h3>
<ul>
<li>Politician claims vs. voting records</li>
<li>Party platform consistency analysis</li>
<li>Campaign promise tracking</li>
<li>Real-time debate verification</li>
<li>Historical accountability metrics</li>
</ul>
</div>
<div class="card">
<div class="scanner-effect"></div>
<h3>⚠️ Risk Assessment</h3>
<ul>
<li>45 behavioral risk rules active</li>
<li>MINOR/MAJOR/CRITICAL severity levels</li>
<li>Automated alert system</li>
<li>Trend analysis for context</li>
<li>Transparent methodology</li>
</ul>
</div>
</div>
<div class="risk-rules-breakdown">
<h3>45 Risk Rules Across 4 Domains</h3>
<ul>
<li><strong>Politician-Level (20 rules):</strong> Attendance, voting consistency, role conflicts, productivity</li>
<li><strong>Party-Level (12 rules):</strong> Coalition discipline, ideological drift, internal conflicts</li>
<li><strong>Committee-Level (8 rules):</strong> Legislative productivity, partisan deadlock, expert testimony</li>
<li><strong>Ministry-Level (5 rules):</strong> Budget overruns, policy failures, accountability lapses</li>
</ul>
<h3>5 Analytical Frameworks</h3>
<ul>
<li><strong>Temporal Analysis:</strong> Trend detection across time periods</li>
<li><strong>Comparative Analysis:</strong> Cross-party/MP benchmarking</li>
<li><strong>Pattern Recognition:</strong> Behavioral anomaly detection</li>
<li><strong>Predictive Intelligence:</strong> Election outcome forecasting, coalition modeling</li>
<li><strong>Network Analysis:</strong> Influence mapping, collaboration patterns</li>
</ul>
</div>
</section>
<section id="data-sources">
<h2><span aria-hidden="true">📊</span> Citizen Intelligence Agency Data Products</h2>
<p>Riksdagsmonitor is powered by the <a href="https://www.hack23.com/cia" target="_blank" rel="noopener noreferrer">Citizen Intelligence Agency (CIA)</a> — an open-source OSINT platform that processes Swedish parliamentary data into actionable intelligence products.</p>
<div class="cards">
<div class="card">
<div class="scanner-effect"></div>
<h3><span aria-hidden="true">📈</span> Risk Assessment Reports</h3>
<p>45 risk rules across 4 domains analyze politician behavior, party discipline, committee effectiveness, and ministry accountability in real-time.</p>
</div>
<div class="card">
<div class="scanner-effect"></div>
<h3><span aria-hidden="true">📅</span> Seasonal Activity Analysis</h3>
<p>Z-score anomaly detection identifies unusual parliamentary activity patterns by quarter, with historical baselines from 2002 to present.</p>
</div>
<div class="card">
<div class="scanner-effect"></div>
<h3><span aria-hidden="true">🎯</span> Election Cycle Intelligence</h3>
<p>Performance tracking across 9+ election cycles (1994–2034) with predictive risk forecasting, party tier analysis, and coalition probability modeling.</p>
</div>
<div class="card">
<div class="scanner-effect"></div>
<h3><span aria-hidden="true">🔗</span> Open Data Integration</h3>
<p>All intelligence products are derived from official open data sources. Visualizations update automatically via nightly data pipelines with 24-hour caching.</p>
</div>
</div>
<p class="note">All data products available through the Citizen Intelligence Agency platform with real-time updates from Swedish Parliament open data APIs.</p>
</section>
<section id="data-integration">
<h2><span aria-hidden="true">🔗</span> Data Sources & Integration</h2>
<p>Riksdagsmonitor integrates multiple authoritative Swedish and international data sources:</p>
<div class="cards">
<div class="card">
<div class="scanner-effect"></div>
<h3>Swedish Parliament (Riksdagen)</h3>
<p>Official parliamentary data including votes, documents, committee work, and MP information.</p>
<a href="https://data.riksdagen.se/" target="_blank" rel="noopener noreferrer">data.riksdagen.se</a>
</div>
<div class="card">
<div class="scanner-effect"></div>
<h3>Swedish Election Authority</h3>
<p>Historical election results, voter turnout, and electoral statistics for all national elections.</p>
<a href="https://www.val.se/" target="_blank" rel="noopener noreferrer">val.se</a>
</div>
<div class="card">
<div class="scanner-effect"></div>
<h3>Financial Management Authority (ESV)</h3>
<p>Government budget data, public spending analysis, and financial accountability reporting.</p>
<a href="https://www.esv.se/psidata/" target="_blank" rel="noopener noreferrer">esv.se/psidata</a>
</div>
<div class="card">
<div class="scanner-effect"></div>
<h3>World Bank Open Data</h3>
<p>Country-level economic and development indicators for international comparative analysis.</p>
<a href="https://data.worldbank.org/" target="_blank" rel="noopener noreferrer">data.worldbank.org</a>
</div>
</div>
</section>
<section class="ai-newsroom-section" aria-labelledby="ai-newsroom-heading">
<div class="container">
<h2 id="ai-newsroom-heading"><span aria-hidden="true">🤖</span> AI-Disrupted News Generation</h2>
<p>Riksdagsmonitor's agentic news generation pipeline is the world's first fully AI-driven political intelligence newsroom for parliamentary monitoring. Powered by Claude Opus via GitHub Copilot Coding Agent, our 10 specialized workflows (9 scheduled + 1 on-demand) autonomously produce deep political analysis — not shallow summaries, but structured intelligence products with source verification, multi-party balance, and GDPR-compliant OSINT methodology.</p>
</div>
</section>
<section class="political-intelligence-cta" aria-labelledby="pi-cta-heading">
<h2 class="political-intelligence-cta-heading" id="pi-cta-heading"><span aria-hidden="true">🕵️</span> Political Intelligence</h2>
<p class="political-intelligence-cta-description">Deep-dive analysis of Swedish parliamentary dynamics, party strategies, and legislative trends.</p>
<ul class="political-intelligence-cta-features">
<li><span aria-hidden="true">🧭</span> Navigate party dynamics</li>
<li><span aria-hidden="true">📚</span> Track legislative proposals</li>
<li><span aria-hidden="true">⚠️</span> Monitor risk indicators</li>
<li><span aria-hidden="true">🔎</span> Investigate voting patterns</li>
</ul>
<a class="political-intelligence-cta-link" href="political-intelligence.html">Explore Intelligence Products →</a>
</section>
</main>
<footer role="contentinfo" class="site-footer" data-rm-static-footer="true">
<div class="footer-content">
<div class="footer-section">
<a href="index.html" aria-label="Riksdagsmonitor Home">
<img src="images/riksdagsmonitor-logo.webp" srcset="images/riksdagsmonitor-logo-96w.webp 96w, images/riksdagsmonitor-logo-180w.webp 180w" sizes="80px" alt="Riksdagsmonitor" class="footer-logo" width="80" height="80" loading="lazy">
</a>
<h3><span aria-hidden="true">📖</span> About Riksdagsmonitor</h3>
<p>Live intelligence platform for Swedish Parliament monitoring using CIA OSINT capabilities. Ongoing improvements — please report any issues on GitHub.</p>
<p>Swedish cybersecurity consultancy specializing in political transparency and open-source intelligence.</p>
<ul class="footer-stats">
<li><strong>349 MPs</strong> tracked</li>
<li><strong>45 risk rules</strong> active</li>
<li><strong>14 languages</strong> supported</li>
<li><strong>50+ years</strong> historical data</li>
</ul>
</div>
<div class="footer-section">
<h3><span aria-hidden="true">🔗</span> Quick Links</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="news/index.html">News</a></li>
<li><a href="dashboard/index.html">Dashboard</a></li>
<li><a href="politician-dashboard.html"><span aria-hidden="true">👤</span> Politicians</a></li>
<li><a href="political-intelligence.html"><span aria-hidden="true">🧠</span> Political Intelligence</a></li>
<li><a href="sitemap.html"><span aria-hidden="true">🗺️</span> Sitemap</a></li>
<li><a href="https://riksdagsmonitor.com/docs/api/index.html"><span aria-hidden="true">📚</span> API Documentation (TypeDoc)</a></li>
<li><a href="https://github.com/Hack23/cia" target="_blank" rel="noopener noreferrer">CIA Platform</a></li>
<li><a href="https://github.com/Hack23/riksdagsmonitor" target="_blank" rel="noopener noreferrer">GitHub Repository</a></li>
<li><a href="https://www.riksdagen.se" target="_blank" rel="noopener noreferrer">Sveriges Riksdag</a></li>
</ul>
</div>
<div class="footer-section">
<h3><span aria-hidden="true">🏢</span> Built by Hack23 AB</h3>
<p>Swedish cybersecurity consultancy specializing in political transparency and open-source intelligence.</p>
<ul>
<li><a href="https://www.hack23.com" target="_blank" rel="noopener noreferrer">Hack23.com</a></li>
<li><a href="https://www.hack23.com/riksdagsmonitor.html" target="_blank" rel="noopener noreferrer">Hack23 · Riksdagsmonitor</a></li>
<li><a href="https://www.hack23.com/riksdagsmonitor-features.html" target="_blank" rel="noopener noreferrer">Hack23 · Features</a></li>
<li><a href="https://github.com/sponsors/Hack23" target="_blank" rel="noopener noreferrer"><span aria-hidden="true">💖</span> Sponsor Hack23</a></li>
<li><a href="https://www.linkedin.com/company/hack23/" target="_blank" rel="noopener noreferrer">Company LinkedIn</a></li>
<li><a href="https://github.com/Hack23" target="_blank" rel="noopener noreferrer">Hack23 GitHub Org</a></li>
<li><a href="mailto:info@hack23.com">Contact Us</a></li>
<li><a href="https://github.com/Hack23/riksdagsmonitor/issues/new/choose" target="_blank" rel="noopener noreferrer">Report a GitHub issue</a></li>
</ul>
</div>
<div class="footer-section rm-footer-isms">
<h3><span aria-hidden="true">🛡️</span> Hack23 ISMS</h3>
<p>Public ISMS aligned with ISO 27001:2022, NIST CSF 2.0, CIS Controls v8.1, EU CRA & NIS2.</p>
<ul>
<li><a href="https://github.com/Hack23/ISMS-PUBLIC" target="_blank" rel="noopener noreferrer">Public ISMS repository</a></li>
<li><a href="https://github.com/Hack23/ISMS-PUBLIC/blob/main/Information_Security_Policy.md" target="_blank" rel="noopener noreferrer">Information Security Policy</a></li>
<li><a href="https://github.com/Hack23/ISMS-PUBLIC/blob/main/Privacy_Policy.md" target="_blank" rel="noopener noreferrer">Privacy Policy</a></li>
<li><a href="https://github.com/Hack23/ISMS-PUBLIC/blob/main/Secure_Development_Policy.md" target="_blank" rel="noopener noreferrer">Secure Development Policy</a></li>
<li><a href="https://github.com/Hack23/ISMS-PUBLIC/blob/main/AI_Policy.md" target="_blank" rel="noopener noreferrer">AI Policy</a></li>
<li><a href="https://github.com/Hack23/ISMS-PUBLIC/blob/main/Threat_Modeling.md" target="_blank" rel="noopener noreferrer">Threat Modeling</a></li>
<li><a href="https://github.com/Hack23/ISMS-PUBLIC/blob/main/Vulnerability_Management.md" target="_blank" rel="noopener noreferrer">Vulnerability Management</a></li>
<li><a href="https://github.com/Hack23/ISMS-PUBLIC/blob/main/Incident_Response_Plan.md" target="_blank" rel="noopener noreferrer">Incident Response Plan</a></li>
<li><a href="https://github.com/Hack23/ISMS-PUBLIC/blob/main/Access_Control_Policy.md" target="_blank" rel="noopener noreferrer">Access Control Policy</a></li>
<li><a href="https://github.com/Hack23/ISMS-PUBLIC/blob/main/Cryptography_Policy.md" target="_blank" rel="noopener noreferrer">Cryptography Policy</a></li>
<li><a href="https://github.com/Hack23/ISMS-PUBLIC/blob/main/Open_Source_Policy.md" target="_blank" rel="noopener noreferrer">Open Source Policy</a></li>
<li><a href="https://github.com/Hack23/ISMS-PUBLIC/blob/main/Change_Management.md" target="_blank" rel="noopener noreferrer">Change Management</a></li>
<li><a href="https://github.com/Hack23/ISMS-PUBLIC/blob/main/CLASSIFICATION.md" target="_blank" rel="noopener noreferrer">Classification</a></li>
<li><a href="https://github.com/Hack23/ISMS-PUBLIC/blob/main/Security_Metrics.md" target="_blank" rel="noopener noreferrer">Security Metrics</a></li>
</ul>
</div>
<div class="footer-section">
<h3><span aria-hidden="true">🌍</span> Languages</h3>
<div class="language-grid">
<a href="index.html" lang="en" hreflang="en" title="English" aria-label="Switch language: English" aria-current="page" class="active"><span aria-hidden="true">🇬🇧</span> EN</a>
<a href="index_sv.html" lang="sv" hreflang="sv" title="Svenska" aria-label="Switch language: Swedish"><span aria-hidden="true">🇸🇪</span> SV</a>
<a href="index_da.html" lang="da" hreflang="da" title="Dansk" aria-label="Switch language: Danish"><span aria-hidden="true">🇩🇰</span> DA</a>
<a href="index_no.html" lang="nb" hreflang="nb" title="Norsk" aria-label="Switch language: Norwegian"><span aria-hidden="true">🇳🇴</span> NO</a>
<a href="index_fi.html" lang="fi" hreflang="fi" title="Suomi" aria-label="Switch language: Finnish"><span aria-hidden="true">🇫🇮</span> FI</a>
<a href="index_de.html" lang="de" hreflang="de" title="Deutsch" aria-label="Switch language: German"><span aria-hidden="true">🇩🇪</span> DE</a>
<a href="index_fr.html" lang="fr" hreflang="fr" title="Français" aria-label="Switch language: French"><span aria-hidden="true">🇫🇷</span> FR</a>
<a href="index_es.html" lang="es" hreflang="es" title="Español" aria-label="Switch language: Spanish"><span aria-hidden="true">🇪🇸</span> ES</a>
<a href="index_nl.html" lang="nl" hreflang="nl" title="Nederlands" aria-label="Switch language: Dutch"><span aria-hidden="true">🇳🇱</span> NL</a>
<a href="index_ar.html" lang="ar" hreflang="ar" title="العربية" aria-label="Switch language: Arabic"><span aria-hidden="true">🇸🇦</span> AR</a>
<a href="index_he.html" lang="he" hreflang="he" title="עברית" aria-label="Switch language: Hebrew"><span aria-hidden="true">🇮🇱</span> HE</a>
<a href="index_ja.html" lang="ja" hreflang="ja" title="日本語" aria-label="Switch language: Japanese"><span aria-hidden="true">🇯🇵</span> JA</a>
<a href="index_ko.html" lang="ko" hreflang="ko" title="한국어" aria-label="Switch language: Korean"><span aria-hidden="true">🇰🇷</span> KO</a>
<a href="index_zh.html" lang="zh" hreflang="zh" title="中文" aria-label="Switch language: Chinese"><span aria-hidden="true">🇨🇳</span> ZH</a>
</div>
</div>
</div>
<nav class="rm-footer-trust-badges" aria-label="Open trust, quality and security badges">
<a href="https://www.npmjs.com/package/riksdagsmonitor" target="_blank" rel="noopener noreferrer" aria-label="Riksdagsmonitor on npmjs"><img src="https://img.shields.io/npm/v/riksdagsmonitor.svg?logo=npm&label=npm" alt="Riksdagsmonitor on npmjs" width="100" height="20" loading="lazy" decoding="async"></a>
<a href="https://scorecard.dev/viewer/?uri=github.com/Hack23/riksdagsmonitor" target="_blank" rel="noopener noreferrer" aria-label="OpenSSF Scorecard"><img src="https://api.securityscorecards.dev/projects/github.com/Hack23/riksdagsmonitor/badge" alt="OpenSSF Scorecard" width="120" height="20" loading="lazy" decoding="async"></a>
<a href="https://www.bestpractices.dev/projects/12069" target="_blank" rel="noopener noreferrer" aria-label="OpenSSF Best Practices"><img src="https://www.bestpractices.dev/projects/12069/badge" alt="OpenSSF Best Practices" width="124" height="20" loading="lazy" decoding="async"></a>
<a href="https://github.com/Hack23/riksdagsmonitor/actions/workflows/codeql.yml" target="_blank" rel="noopener noreferrer" aria-label="CodeQL workflow status"><img src="https://github.com/Hack23/riksdagsmonitor/actions/workflows/codeql.yml/badge.svg" alt="CodeQL workflow status" width="120" height="20" loading="lazy" decoding="async"></a>
<a href="https://github.com/Hack23/riksdagsmonitor/actions/workflows/quality-checks.yml" target="_blank" rel="noopener noreferrer" aria-label="Quality checks workflow status"><img src="https://github.com/Hack23/riksdagsmonitor/actions/workflows/quality-checks.yml/badge.svg" alt="Quality checks workflow status" width="160" height="20" loading="lazy" decoding="async"></a>
<a href="https://github.com/Hack23/riksdagsmonitor/actions/workflows/dependency-review.yml" target="_blank" rel="noopener noreferrer" aria-label="Dependency review workflow status"><img src="https://github.com/Hack23/riksdagsmonitor/actions/workflows/dependency-review.yml/badge.svg" alt="Dependency review workflow status" width="170" height="20" loading="lazy" decoding="async"></a>
<a href="https://github.com/Hack23/riksdagsmonitor/blob/main/LICENSE" target="_blank" rel="noopener noreferrer" aria-label="Apache-2.0 License"><img src="https://img.shields.io/github/license/Hack23/riksdagsmonitor" alt="Apache-2.0 License" width="120" height="20" loading="lazy" decoding="async"></a>
<a href="https://github.com/Hack23/ISMS-PUBLIC" target="_blank" rel="noopener noreferrer" aria-label="Hack23 ISMS-PUBLIC"><img src="https://img.shields.io/badge/Hack23-ISMS-blue?logo=shield" alt="Hack23 ISMS-PUBLIC" width="100" height="20" loading="lazy" decoding="async"></a>
<a href="https://github.com/Hack23/ISMS-PUBLIC/blob/main/Secure_Development_Policy.md" target="_blank" rel="noopener noreferrer" aria-label="ISO 27001:2022 alignment"><img src="https://img.shields.io/badge/ISO-27001:2022-purple" alt="ISO 27001:2022 alignment" width="110" height="20" loading="lazy" decoding="async"></a>
<a href="https://github.com/Hack23/ISMS-PUBLIC/blob/main/Secure_Development_Policy.md" target="_blank" rel="noopener noreferrer" aria-label="NIST CSF 2.0 alignment"><img src="https://img.shields.io/badge/NIST-CSF_2.0-orange" alt="NIST CSF 2.0 alignment" width="100" height="20" loading="lazy" decoding="async"></a>
<a href="https://github.com/Hack23/ISMS-PUBLIC/blob/main/Secure_Development_Policy.md" target="_blank" rel="noopener noreferrer" aria-label="CIS Controls v8.1 alignment"><img src="https://img.shields.io/badge/CIS-Controls_v8.1-red" alt="CIS Controls v8.1 alignment" width="120" height="20" loading="lazy" decoding="async"></a>
<a href="https://riksdagsmonitor.com" target="_blank" rel="noopener noreferrer" aria-label="Riksdagsmonitor.com website status"><img src="https://img.shields.io/website?url=https%3A%2F%2Friksdagsmonitor.com" alt="Riksdagsmonitor.com website status" width="120" height="20" loading="lazy" decoding="async"></a>
</nav>
<div class="footer-bottom">
<p>© 2008-<time datetime="2026">2026</time> <a href="https://www.hack23.com" target="_blank" rel="noopener noreferrer">Hack23 AB</a> (Org.nr 5595347807) | Gothenburg, Sweden</p>
<p class="footer-disclaimer">⚠️ <a href="https://github.com/Hack23/riksdagsmonitor/issues/new/choose" target="_blank" rel="noopener noreferrer">Report a GitHub issue</a></p>
</div>
</footer>
<!-- Back to Top Button -->
<button id="back-to-top" class="back-to-top" aria-label="Back to top" title="Back to top">
<span aria-hidden="true">↑</span>
</button>
<!-- Main application entry point -->
<script type="module" src="/src/browser/main.ts"></script>
<!-- Mermaid + back-to-top + theme toggle bootstrap.
Imperatively assembled so Vite's HTML transformer does not try to
bundle / hash / re-emit the underlying modules. -->
<script>
(function () {
function inject(src, isModule) {
var s = document.createElement('script');
if (isModule) s.type = 'module';
else s.defer = true;
s.src = src;
document.head.appendChild(s);
}
if (document.querySelector('pre.mermaid')) inject('/js/lib/mermaid-init.mjs', true);
inject('/js/back-to-top.js', true);
inject('/js/theme-toggle.js', false);
})();
</script>
</body>
</html>