-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1597 lines (1499 loc) · 94.6 KB
/
index.html
File metadata and controls
1597 lines (1499 loc) · 94.6 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" data-theme="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OSM — Organisation Service Management | osm.dev</title>
<meta name="description" content="Organisation Service Management (OSM) — standards-aligned automation and configuration for Governance, Risk, Compliance, IT Operations, and Business Continuity." />
<meta name="keywords" content="OSM, organisation service management, GRC, ISO 27001, compliance, risk management, osm.dev" />
<meta property="og:title" content="OSM — Organisation Service Management" />
<meta property="og:description" content="Standards-aligned automation for Governance, Risk, Compliance, IT Operations, and Business Continuity." />
<meta property="og:url" content="https://osm.dev" />
<meta property="og:type" content="website" />
<link rel="canonical" href="https://osm.dev" />
<!-- Fonts: Space Grotesk as Nokio-style fallback -->
<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=Space+Grotesk:wght@300;400;500;600;700&display=swap" rel="stylesheet" />
<style>
/* ─── OSM Branding Tokens ─────────────────────────────────────────── */
:root {
--color-background: #FFFFFF;
--color-surface: #F6F6F6;
--color-primary: #F27459;
--color-secondary: #F6F6F6;
--color-accent: #63C5F6;
--color-text-primary: #000000;
--color-text-secondary: #555555;
--color-border: #DDDDDD;
--color-error: #D64545;
--color-success: #3FB950;
--color-focus: #FFD580;
--color-info: #5BC0EB;
--color-card: #FFFFFF;
--shadow-sm: 0 1px 3px rgba(0,0,0,.08);
--shadow-md: 0 4px 16px rgba(0,0,0,.10);
--shadow-lg: 0 8px 32px rgba(0,0,0,.14);
--radius: 12px;
--repo-card-height: 260px;
--transition: .3s cubic-bezier(.4,0,.2,1);
}
[data-theme='dark'] {
--color-background: #0D0D0D;
--color-surface: #1A1A1A;
--color-primary: #F27459;
--color-secondary: #333333;
--color-accent: #63C5F6;
--color-text-primary: #FFFFFF;
--color-text-secondary: #CCCCCC;
--color-border: #444444;
--color-error: #F08080;
--color-success: #2ECC71;
--color-focus: #FFD580;
--color-info: #5BC0EB;
--color-card: #1A1A1A;
--shadow-sm: 0 1px 3px rgba(0,0,0,.3);
--shadow-md: 0 4px 16px rgba(0,0,0,.4);
--shadow-lg: 0 8px 32px rgba(0,0,0,.5);
}
/* ─── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background: var(--color-background);
color: var(--color-text-primary);
transition: background var(--transition), color var(--transition);
line-height: 1.6;
}
a { color: var(--color-primary); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }
img, svg { max-width: 100%; }
::selection { background: var(--color-primary); color: #fff; }
/* ─── Scrollbar ────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-background); }
::-webkit-scrollbar-thumb { background: var(--color-primary); border-radius: 99px; }
/* ─── Typography ───────────────────────────────────────────────────── */
h1,h2,h3,h4 { font-weight: 700; line-height: 1.2; letter-spacing: -.02em; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { color: var(--color-text-secondary); }
/* ─── Layout helpers ───────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section-title {
text-align: center; margin-bottom: 3.5rem;
}
.section-title span {
display: inline-block;
background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pill {
display: inline-block; padding: .25rem .75rem; border-radius: 99px;
font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
background: rgba(242,116,89,.15); color: var(--color-primary); margin-bottom: .75rem;
}
/* ─── Navigation ───────────────────────────────────────────────────── */
#nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
padding: .875rem 0;
background: rgba(255,255,255,.8);
backdrop-filter: blur(16px) saturate(1.5);
-webkit-backdrop-filter: blur(16px) saturate(1.5);
border-bottom: 1px solid var(--color-border);
transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
[data-theme='dark'] #nav { background: rgba(13,13,13,.85); }
#nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.nav-logo img { width: 36px; height: 36px; object-fit: contain; }
.nav-logo-text { font-size: 1.05rem; font-weight: 700; color: var(--color-text-primary); letter-spacing: -.01em; }
.nav-logo-text span { color: var(--color-primary); }
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--color-text-secondary); transition: color .2s; }
.nav-links a:hover { color: var(--color-primary); opacity: 1; }
.nav-links a.active { color: var(--color-primary); }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
/* Theme toggle */
#themeToggle {
display: flex; align-items: center; justify-content: center;
width: 2.5rem; height: 2.5rem; border-radius: 50%; border: 1.5px solid var(--color-border);
background: var(--color-surface); cursor: pointer; transition: all var(--transition);
color: var(--color-text-secondary);
}
#themeToggle:hover { border-color: var(--color-primary); color: var(--color-primary); transform: rotate(20deg); }
/* Mobile nav */
#menuToggle { display: none; background: none; border: none; cursor: pointer; padding: .4rem; color: var(--color-text-primary); }
@media (max-width: 768px) {
.nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
background: var(--color-card); border-bottom: 1px solid var(--color-border);
padding: 1rem 1.5rem; gap: 1rem; box-shadow: var(--shadow-md); }
.nav-links.open { display: flex; }
#menuToggle { display: flex; align-items: center; }
}
/* ─── Hero ─────────────────────────────────────────────────────────── */
#hero {
min-height: 100svh; display: flex; flex-direction: column; align-items: center;
justify-content: center; text-align: center; padding: 7rem 1.5rem 4rem;
position: relative; overflow: hidden;
}
.hero-bg {
position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-bg::before {
content: ''; position: absolute; width: 700px; height: 700px;
border-radius: 50%; background: radial-gradient(ellipse, rgba(242,116,89,.18), transparent 65%);
top: -200px; right: -200px; animation: pulse-bg 8s ease-in-out infinite;
}
.hero-bg::after {
content: ''; position: absolute; width: 500px; height: 500px;
border-radius: 50%; background: radial-gradient(ellipse, rgba(99,197,246,.12), transparent 65%);
bottom: -100px; left: -100px; animation: pulse-bg 10s ease-in-out infinite reverse;
}
@keyframes pulse-bg { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.15); opacity: .6; } }
.hero-inner { position: relative; z-index: 1; max-width: 1100px; }
.hero-logo {
width: min(900px, 70vw); height: auto; max-width: 900px; max-height: 900px;
margin-bottom: 2rem; animation: fadeInUp .8s ease both; filter: drop-shadow(0 8px 24px rgba(242,116,89,.3));
}
.hero-eyebrow { animation: fadeInUp .8s .1s ease both; }
.hero-title { animation: fadeInUp .8s .2s ease both; margin: .75rem 0 1.25rem; }
.hero-subtitle {
font-size: clamp(1rem, 2vw, 1.2rem); color: var(--color-text-secondary);
animation: fadeInUp .8s .3s ease both; max-width: 620px; margin: 0 auto 2rem;
}
.typewriter { display: inline-block; border-right: 3px solid var(--color-primary); padding-right: 4px; white-space: nowrap; overflow: hidden; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeInUp .8s .4s ease both; }
.btn {
display: inline-flex; align-items: center; gap: .5rem; padding: .7rem 1.6rem;
border-radius: var(--radius); font-weight: 600; font-size: .95rem; cursor: pointer;
transition: all var(--transition); border: 2px solid transparent; font-family: inherit;
}
.btn-primary {
background: linear-gradient(135deg, var(--color-primary), #f5956e);
color: #fff; box-shadow: 0 4px 16px rgba(242,116,89,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(242,116,89,.5); opacity: 1; }
.btn-outline {
border-color: var(--color-border); color: var(--color-text-primary); background: transparent;
}
.btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); transform: translateY(-2px); opacity: 1; }
.btn-accent {
background: rgba(99,197,246,.15); color: var(--color-accent); border: 1.5px solid var(--color-accent);
}
.btn-accent:hover { background: rgba(99,197,246,.25); transform: translateY(-2px); opacity: 1; }
/* Scroll hint */
.scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); animation: bounce 2s infinite; opacity: .5; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
/* ─── Stats strip ──────────────────────────────────────────────────── */
#stats { background: var(--color-surface); padding: 3rem 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 2rem; text-align: center; }
.stat-num { font-size: 2.8rem; font-weight: 700; color: var(--color-primary); line-height: 1; }
.stat-label { font-size: .85rem; color: var(--color-text-secondary); margin-top: .3rem; }
/* ─── About ────────────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
#why .about-grid { align-items: start; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }
.about-banner img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }
.about-content p { margin-bottom: 1rem; }
.philosophy-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.philosophy-list li { display: flex; align-items: flex-start; gap: .75rem; }
.check-icon { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: linear-gradient(135deg, var(--color-primary), var(--color-accent)); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.check-icon svg { width: 11px; height: 11px; }
/* ─── Modules ──────────────────────────────────────────────────────── */
#modules { background: var(--color-surface); }
.modules-filter { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
padding: .4rem 1rem; border-radius: 99px; border: 1.5px solid var(--color-border);
background: transparent; cursor: pointer; font-family: inherit; font-size: .85rem; font-weight: 500;
color: var(--color-text-secondary); transition: all .2s;
}
.filter-btn.active, .filter-btn:hover { border-color: var(--color-primary); color: var(--color-primary); background: rgba(242,116,89,.08); }
.modules-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.module-card {
background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius);
padding: 1.75rem; transition: all var(--transition); position: relative; overflow: hidden;
}
.module-card::before {
content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.module-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.module-card:hover::before { transform: scaleX(1); }
.module-card[data-hidden='true'] { display: none; }
.module-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(242,116,89,.12); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.module-icon svg { width: 24px; height: 24px; color: var(--color-primary); }
.module-card h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.module-card p { font-size: .9rem; }
.module-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: 1rem; }
.module-tag { padding: .2rem .6rem; border-radius: 99px; font-size: .7rem; font-weight: 600; background: var(--color-surface); color: var(--color-accent); border: 1px solid var(--color-border); }
.module-badge { font-size: .7rem; font-weight: 700; padding: .15rem .55rem; border-radius: 99px; background: rgba(99,197,246,.15); color: var(--color-accent); border: 1px solid rgba(99,197,246,.3); margin-left: .5rem; vertical-align: middle; }
/* ─── Standards ────────────────────────────────────────────────────── */
.standards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }
.standard-card {
background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius);
padding: 1.5rem; transition: all var(--transition); display: flex; flex-direction: column; gap: .75rem;
}
.standard-card:hover { border-color: var(--color-primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.standard-code { font-size: .75rem; font-weight: 700; color: var(--color-accent); letter-spacing: .08em; text-transform: uppercase; }
.standard-name { font-size: 1rem; font-weight: 600; color: var(--color-text-primary); line-height: 1.3; }
.standard-desc { font-size: .85rem; color: var(--color-text-secondary); }
.standard-status { display: flex; align-items: center; gap: .4rem; font-size: .75rem; font-weight: 600; margin-top: auto; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; }
.status-dot.aligned { background: var(--color-success); }
.status-dot.partial { background: var(--color-focus); }
/* ─── Repos ────────────────────────────────────────────────────────── */
.repos-grid {
display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem;
transition: opacity .45s ease, transform .45s ease;
}
.repos-grid.is-fading { opacity: 0; transform: translateY(12px); }
@media (max-width: 980px) { .repos-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .repos-grid { grid-template-columns: 1fr; } }
.repo-card {
background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius);
padding: 1.5rem; transition: all var(--transition); display: flex; flex-direction: column;
width: 100%; height: var(--repo-card-height); overflow: hidden;
}
.repo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--color-primary); }
.repo-links {
display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem;
margin: 1.5rem 0 2rem;
}
.repo-links a {
display: inline-flex; align-items: center; justify-content: center; gap: .5rem; width: 100%;
font-size: .85rem; font-weight: 600; color: var(--color-text-secondary);
padding: .45rem .8rem; border-radius: 12px; border: 1px solid transparent;
transition: all var(--transition); background: transparent;
}
.repo-links a:hover {
color: var(--color-primary); border-color: var(--color-primary);
background: rgba(242,116,89,.08); transform: translateY(-1px); opacity: 1;
}
.repo-link-icon { width: 16px; height: 16px; }
.repo-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: .75rem; }
.repo-source {
display: inline-flex; align-items: center; align-self: flex-start;
font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
color: var(--color-accent); background: rgba(99,197,246,.12); border: 1px solid rgba(99,197,246,.3);
padding: .2rem .55rem; border-radius: 999px; margin-bottom: .85rem;
}
.repo-name {
font-weight: 600; color: var(--color-text-primary); font-size: 1rem;
display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2;
line-clamp: 2; overflow: hidden;
}
.repo-lang { display: flex; align-items: center; gap: .35rem; font-size: .8rem; color: var(--color-text-secondary); }
.lang-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--color-primary); }
.repo-desc {
font-size: .875rem; color: var(--color-text-secondary); flex: 1; margin-bottom: 1rem;
display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3;
line-clamp: 3; overflow: hidden;
}
.repo-footer { display: flex; align-items: center; gap: 1rem; margin-top: auto; }
.repo-stat { display: flex; align-items: center; gap: .3rem; font-size: .8rem; color: var(--color-accent); }
#reposLoading, #reposError { text-align: center; color: var(--color-text-secondary); padding: 2rem; }
/* ─── Widgets strip ────────────────────────────────────────────────── */
#widgets { background: var(--color-surface); }
.widgets-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.widget {
background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--radius);
padding: 1.75rem; display: flex; flex-direction: column; gap: .75rem;
}
.widget-title { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--color-accent); font-weight: 600; }
/* Clock widget */
#clock-display { font-size: 2.8rem; font-weight: 700; font-variant-numeric: tabular-nums; color: var(--color-text-primary); line-height: 1; }
#clock-date { font-size: .9rem; color: var(--color-text-secondary); }
#clock-tz { font-size: .75rem; color: var(--color-accent); }
/* Compliance tip widget */
.tip-text { font-size: .95rem; color: var(--color-text-secondary); min-height: 80px; }
#tipNum { font-size: .75rem; color: var(--color-accent); }
.tip-nav { display: flex; gap: .5rem; margin-top: .5rem; }
.tip-btn { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 8px; cursor: pointer; padding: .4rem .75rem; font-size: .8rem; color: var(--color-text-secondary); transition: all .2s; font-family: inherit; }
.tip-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
/* OSM schema widget */
.osm-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.osm-tag { padding: .3rem .7rem; border-radius: 8px; font-size: .8rem; font-weight: 600; background: rgba(242,116,89,.1); color: var(--color-primary); border: 1px solid rgba(242,116,89,.2); cursor: default; transition: background .2s; }
.osm-tag:hover { background: rgba(242,116,89,.22); transform: scale(1.05); }
.osm-link { font-size: .85rem; color: var(--color-primary); font-weight: 600; margin-top: .25rem; }
/* Compliance gauge */
.gauge-wrap { display: flex; flex-direction: column; gap: .5rem; margin-top: .25rem; }
.gauge-row { display: flex; align-items: center; gap: .75rem; font-size: .82rem; }
.gauge-label { flex: 0 0 120px; color: var(--color-text-secondary); font-size: .8rem; }
.gauge-bar { flex: 1; height: 6px; border-radius: 99px; background: var(--color-border); overflow: hidden; }
.gauge-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--color-primary), var(--color-accent)); transition: width 1.2s cubic-bezier(.4,0,.2,1); width: 0; }
.gauge-pct { font-size: .78rem; font-weight: 700; color: var(--color-primary); flex: 0 0 36px; text-align: right; }
/* OSM schema graph widget */
.schema-canvas { width: 100%; height: 120px; position: relative; overflow: hidden; border-radius: 8px; background: rgba(99,197,246,.04); border: 1px solid var(--color-border); }
/* ─── Contact ──────────────────────────────────────────────────────── */
#contact { text-align: center; }
.contact-inner { max-width: 640px; margin: 0 auto; }
.contact-links { display: flex; justify-content: center; gap: 1.25rem; flex-wrap: wrap; margin-top: 2rem; }
.contact-link {
display: flex; align-items: center; gap: .6rem; padding: .9rem 1.5rem;
border-radius: var(--radius); border: 1.5px solid var(--color-border);
background: var(--color-card); color: var(--color-text-primary); font-weight: 500;
transition: all var(--transition); font-size: .95rem;
}
.contact-link svg { color: var(--color-primary); }
.contact-link:hover { border-color: var(--color-primary); transform: translateY(-2px); box-shadow: var(--shadow-md); opacity: 1; }
/* ─── Footer ───────────────────────────────────────────────────────── */
footer {
background: var(--color-surface); border-top: 1px solid var(--color-border);
padding: 2.5rem 0; text-align: center;
}
.footer-logo { display: flex; align-items: center; justify-content: center; gap: .75rem; margin-bottom: 1rem; }
.footer-logo img { width: 28px; height: 28px; object-fit: contain; }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin: 1rem 0; }
.footer-links a { font-size: .85rem; color: var(--color-text-secondary); }
.footer-links a:hover { color: var(--color-primary); opacity: 1; }
.footer-copy { font-size: .8rem; color: var(--color-accent); }
.footer-partner { font-size: .78rem; color: var(--color-text-secondary); margin-top: .5rem; }
.footer-partner a { color: var(--color-text-secondary); }
.footer-partner a:hover { color: var(--color-primary); opacity: 1; }
/* ─── Reveal animation ─────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
/* ─── Gradient bar accent ──────────────────────────────────────────── */
.accent-bar {
display: block; width: 48px; height: 4px; border-radius: 99px;
background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
margin: .75rem auto 0;
}
/* ─── Misc ─────────────────────────────────────────────────────────── */
.text-gradient {
background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
/* ─── Schema ticker ────────────────────────────────────────────────── */
.ticker-wrap { overflow: hidden; white-space: nowrap; padding: .6rem 0; }
.ticker-inner { display: inline-block; animation: ticker 28s linear infinite; }
.ticker-inner span { margin: 0 1.5rem; font-size: .78rem; font-weight: 600; color: var(--color-accent); letter-spacing: .06em; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 900px) { #techWidget { grid-column: span 1 !important; } }
</style>
</head>
<body>
<!-- ─── Navigation ──────────────────────────────────────────────────── -->
<nav id="nav">
<div class="container nav-inner">
<a href="#hero" class="nav-logo" aria-label="OSM home">
<img src="assets/osm-logo.svg"
alt="OSM logo" width="36" height="36" />
<span class="nav-logo-text"><span>osm</span>.dev</span>
</a>
<div class="nav-links" id="navLinks">
<a href="#about">About</a>
<a href="#modules">Modules</a>
<a href="#standards">Standards</a>
<a href="#repos">Open Source</a>
<a href="#widgets">More Info</a>
<a href="#contact">Contact</a>
</div>
<div class="nav-actions">
<button id="themeToggle" aria-label="Toggle dark/light mode" title="Toggle theme">
<svg id="iconSun" xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="4"/><path d="M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M6.34 17.66l-1.41 1.41M19.07 4.93l-1.41 1.41"/></svg>
<svg id="iconMoon" xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="display:none"><path d="M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9z"/></svg>
</button>
<button id="menuToggle" aria-label="Toggle menu" aria-expanded="false">
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="3" y1="6" x2="21" y2="6"/><line x1="3" y1="12" x2="21" y2="12"/><line x1="3" y1="18" x2="21" y2="18"/></svg>
</button>
</div>
</div>
</nav>
<!-- ─── Schema Ticker ───────────────────────────────────────────────── -->
<div style="position:fixed;top:60px;left:0;right:0;z-index:999;background:rgba(242,116,89,.08);border-bottom:1px solid rgba(242,116,89,.15);backdrop-filter:blur(8px)">
<div class="ticker-wrap" aria-hidden="true">
<div class="ticker-inner" id="tickerInner"></div>
</div>
</div>
<!-- ─── Hero ──────────────────────────────────────────────────────────── -->
<section id="hero">
<div class="hero-bg"></div>
<div class="hero-inner">
<img src="assets/osm-logo.svg"
alt="OSM logo" class="hero-logo" width="270" height="270" />
<div class="hero-eyebrow">
<span class="pill">osm.dev · Open Standards</span>
</div>
<h1 class="hero-title">
<span id="typewriter" class="typewriter"></span>
</h1>
<p class="hero-subtitle">
A framework, methodology, and toolset for aligning organisational governance, risk, compliance,
IT operations, and business continuity into a single cohesive system.
</p>
<div class="hero-cta">
<a href="#modules" class="btn btn-primary">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><path d="M13 2L3 14h9l-1 8 10-12h-9l1-8z"/></svg>
Explore Modules
</a>
<a href="#about" class="btn btn-outline">Learn More</a>
<a href="https://github.com/OrganisationServiceManagement" target="_blank" rel="noopener" class="btn btn-accent">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="currentColor"><path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0 0 24 12c0-6.63-5.37-12-12-12z"/></svg>
GitHub
</a>
</div>
</div>
<div class="scroll-hint" aria-hidden="true">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 5v14M5 12l7 7 7-7"/></svg>
</div>
</section>
<!-- ─── Stats ──────────────────────────────────────────────────────────── -->
<section id="stats">
<div class="container">
<div class="stats-grid">
<div class="reveal">
<div class="stat-num" data-target="5" data-suffix="+">0</div>
<div class="stat-label">Core Modules</div>
</div>
<div class="reveal reveal-delay-1">
<div class="stat-num" data-target="12" data-suffix="+">0</div>
<div class="stat-label">Supported Standards</div>
</div>
<div class="reveal reveal-delay-2">
<div class="stat-num" data-target="100" data-suffix="%">0</div>
<div class="stat-label">Configuration as Code</div>
</div>
<div class="reveal reveal-delay-3">
<div class="stat-num" data-target="0" data-suffix=" Lock-in">0</div>
<div class="stat-label">Vendor Independence</div>
</div>
</div>
</div>
</section>
<!-- ─── Why OSM ──────────────────────────────────────────────────────────── -->
<section id="why" class="section">
<div class="container">
<div class="about-grid-header">
<span class="pill">Defined, Shared, and Codified</span>
<h2>Automation scales safely only with a defined operating model.</h2>
<span class="accent-bar" style="margin-left:0;"></span>
</div>
<div class="about-grid">
<!-- Left column -->
<div class="about-banner reveal">
<div class="about-content">
<p style="margin-top:1.25rem;">
Without a defined <strong>data</strong> and <strong>operating model</strong>, increasing automation,
data flow, and AI utilisation can lead to:
</p>
<!-- Risks -->
<ul class="philosophy-list" style="margin-top:.75rem;">
<li>
<span class="check-icon" aria-hidden="true">
<!-- alert icon -->
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2.6" stroke-linecap="round" stroke-linejoin="round">
<path d="M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"></path>
<line x1="12" y1="9" x2="12" y2="13"></line>
<line x1="12" y1="17" x2="12.01" y2="17"></line>
</svg>
</span>
<span>🔻 decreased efficiency</span>
</li>
<li>
<span class="check-icon" aria-hidden="true">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2.6" stroke-linecap="round" stroke-linejoin="round">
<path d="M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"></path>
<line x1="12" y1="9" x2="12" y2="13"></line>
<line x1="12" y1="17" x2="12.01" y2="17"></line>
</svg>
</span>
<span>⛔ inability to continuously improve</span>
</li>
<li>
<span class="check-icon" aria-hidden="true">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2.6" stroke-linecap="round" stroke-linejoin="round">
<path d="M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"></path>
<line x1="12" y1="9" x2="12" y2="13"></line>
<line x1="12" y1="17" x2="12.01" y2="17"></line>
</svg>
</span>
<span>🕳️ loss of organisational knowledge</span>
</li>
<li>
<span class="check-icon" aria-hidden="true">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="2.6" stroke-linecap="round" stroke-linejoin="round">
<path d="M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"></path>
<line x1="12" y1="9" x2="12" y2="13"></line>
<line x1="12" y1="17" x2="12.01" y2="17"></line>
</svg>
</span>
<span>🧰 blind dependency on tools</span>
</li>
</ul>
<p style="margin-top:1rem;">
Without a defined data and operating model, organisations fail to leverage the exponential growth
in data ingestion, automation, and AI. Ever-increasing complexity—paired with reduced
“in-the-loop” organisational knowledge—limits efficiency gains and can ultimately lead to failure.
</p>
<blockquote cite="https://dl.acm.org/doi/10.1145/3708478" style="margin-top:1rem;">
<p>
<em>
An Ontology-driven Knowledge Graph (OKG) is a knowledge representation system where a formal ontology
(defining concepts, relations, and rules) guides the construction, validation, and querying of a knowledge graph.
Unlike data-only graphs, OKGs use an explicit semantic schema to ensure data consistency, enabling advanced AI reasoning
and automated knowledge management.
</em>
</p>
<p style="margin-top:.5rem;">
— “An Ontology-driven Knowledge Graph (OKG) …”
(<a href="https://dl.acm.org/doi/10.1145/3708478">ACM</a>)
</p>
</blockquote>
<p style="margin-top:1rem;">
Primarily, <strong>OSM</strong> provides a flexible, extensible, open-source <strong>schema-as-code</strong>:
<code>schema.OSM</code>, defined in alignment with <a href="https://osm.dev/#standards">industry standards</a>.
OSM addresses these failure modes by providing <strong>type safety for organisational management</strong> via an
<strong>Ontology-driven Knowledge Graph (OKG)</strong>:
</p>
</div>
</div>
<!-- Right column -->
<div class="about-banner reveal reveal-delay-1">
<div class="about-content">
<ul class="philosophy-list" style="margin-top:.75rem;">
<li>
<span class="check-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round">
<polyline points="20 6 9 17 4 12"></polyline>
</svg>
</span>
<span><strong>Efficiency:</strong> typed entities/relationships reduce ambiguity and rework.</span>
</li>
<li>
<span class="check-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round">
<polyline points="20 6 9 17 4 12"></polyline>
</svg>
</span>
<span><strong>Continuous improvement:</strong> consistent semantics make performance measurable and comparable over time.</span>
</li>
<li>
<span class="check-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round">
<polyline points="20 6 9 17 4 12"></polyline>
</svg>
</span>
<span><strong>Knowledge retention:</strong> ontology + graph capture operating context as versioned, queryable knowledge.</span>
</li>
<li>
<span class="check-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round">
<polyline points="20 6 9 17 4 12"></polyline>
</svg>
</span>
<span><strong>Tool independence:</strong> automation/AI are schema-constrained; tools can change without losing meaning.</span>
</li>
<li>
<span class="check-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round">
<polyline points="20 6 9 17 4 12"></polyline>
</svg>
</span>
<span><strong>Controlled complexity:</strong> constraints/validation prevent inconsistent models from accumulating.</span>
</li>
<li>
<span class="check-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round">
<polyline points="20 6 9 17 4 12"></polyline>
</svg>
</span>
<span><strong>Safer AI use:</strong> explicit types/relations improve reasoning, traceability, and auditability.</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- ─── About ──────────────────────────────────────────────────────────── -->
<section id="about" class="section">
<div class="container">
<div class="about-grid">
<div class="about-banner reveal">
<img
src="https://raw.githubusercontent.com/OrganisationServiceManagement/.github/refs/heads/main/assets/osm-banner.svg"
alt="OSM — Organisation Service Management banner"
loading="lazy"
style="border-radius:12px; box-shadow: var(--shadow-lg);"
/>
</div>
<div class="about-content reveal reveal-delay-1">
<span class="pill">What is OSM?</span>
<h2>Automation-first. Standards-aligned. Yours to own.</h2>
<span class="accent-bar" style="margin-left:0;"></span>
<p style="margin-top:1.25rem;">
<strong>Organisation Service Management (OSM)</strong> is an automation and configuration
suite that integrates Governance, Risk & Compliance (GRC), IT operations, vendor management,
and business continuity into a cohesive, auditable system.
</p>
<p>
Using a <strong>configuration-as-code</strong> approach, OSM ensures repeatability,
auditability, and alignment to international standards — with full tenant ownership and
no vendor lock-in.
</p>
<ul class="philosophy-list">
<li>
<span class="check-icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg></span>
<span>Automates manual repetition across compliance, risk, and IT service management</span>
</li>
<li>
<span class="check-icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg></span>
<span>Centralises and reconciles data from cloud, endpoint, and service providers</span>
</li>
<li>
<span class="check-icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg></span>
<span>Provides executive visibility through structured, machine-readable reporting</span>
</li>
<li>
<span class="check-icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg></span>
<span>Helps organisations evidence compliance and certification efficiently</span>
</li>
<li>
<span class="check-icon"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="#fff" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg></span>
<span>Integrates with existing stacks — no displacement, no additional silos</span>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- ─── Modules ─────────────────────────────────────────────────────────── -->
<section id="modules" class="section">
<div class="container">
<div class="section-title reveal">
<span class="pill">Core Modules</span>
<h2>The OSM <span>Suite</span></h2>
<p style="margin-top:.75rem; max-width:520px; margin-left:auto; margin-right:auto;">
Modular, interconnected components that address every layer of organisational governance and operations.
</p>
</div>
<div class="modules-filter reveal" id="modulesFilter">
<button class="filter-btn active" data-filter="all">All</button>
<button class="filter-btn" data-filter="grc">GRC</button>
<button class="filter-btn" data-filter="people">People</button>
<button class="filter-btn" data-filter="vendor">Vendor</button>
<button class="filter-btn" data-filter="config">Config & Change</button>
<button class="filter-btn" data-filter="automation">Automation</button>
</div>
<div class="modules-grid" id="modulesGrid">
<div class="module-card reveal" data-category="grc">
<div class="module-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/></svg>
</div>
<h3>GRCosm <span class="module-badge">ISO 27001</span></h3>
<p>Information Security & Risk Management aligned to ISO/IEC 27001:2022 and ISO/IEC 27002:2022. Machine-readable risk registers, control frameworks, and Statement of Applicability generation.</p>
<div class="module-tags">
<span class="module-tag">Risk Register</span>
<span class="module-tag">Controls</span>
<span class="module-tag">SoA</span>
<span class="module-tag">Audit Trails</span>
</div>
</div>
<div class="module-card reveal reveal-delay-1" data-category="people">
<div class="module-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M23 21v-2a4 4 0 0 0-3-3.87"/><path d="M16 3.13a4 4 0 0 1 0 7.75"/></svg>
</div>
<h3>HRosm <span class="module-badge">People</span></h3>
<p>People, Roles, Training, and Competence Management. Tracks personnel roles, responsibilities, security awareness training records, and competence evidence against compliance requirements.</p>
<div class="module-tags">
<span class="module-tag">Roles & Responsibilities</span>
<span class="module-tag">Training Records</span>
<span class="module-tag">Competence</span>
</div>
</div>
<div class="module-card reveal reveal-delay-2" data-category="vendor">
<div class="module-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><line x1="2" y1="12" x2="22" y2="12"/><path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"/></svg>
</div>
<h3>VLNosm <span class="module-badge">Supply Chain</span></h3>
<p>Vendor and Third-Party Management. Structured vendor registers, supplier risk assessments, contract tracking, and dependency mapping for supply chain security compliance.</p>
<div class="module-tags">
<span class="module-tag">Vendor Register</span>
<span class="module-tag">Risk Assessment</span>
<span class="module-tag">Contracts</span>
</div>
</div>
<div class="module-card reveal" data-category="config">
<div class="module-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="3" width="20" height="14" rx="2"/><line x1="8" y1="21" x2="16" y2="21"/><line x1="12" y1="17" x2="12" y2="21"/></svg>
</div>
<h3>CMosm <span class="module-badge">Config</span></h3>
<p>Configuration and Change Management. Asset configuration baseline tracking, change advisory workflows, CI/CD integration for configuration drift detection, and impact analysis.</p>
<div class="module-tags">
<span class="module-tag">CMDB</span>
<span class="module-tag">Change Advisory</span>
<span class="module-tag">Drift Detection</span>
</div>
</div>
<div class="module-card reveal reveal-delay-1" data-category="automation">
<div class="module-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"/><polyline points="3.27 6.96 12 12.01 20.73 6.96"/><line x1="12" y1="22.08" x2="12" y2="12"/></svg>
</div>
<h3>OSM Orchestrator <span class="module-badge">Core</span></h3>
<p>Central automation engine for scheduling, synchronisation, and disaster recovery support. Coordinates cross-module workflows, event-driven triggers, and multi-tenant data pipelines.</p>
<div class="module-tags">
<span class="module-tag">Automation</span>
<span class="module-tag">Scheduling</span>
<span class="module-tag">DR Support</span>
<span class="module-tag">Multi-tenant</span>
</div>
</div>
<div class="module-card reveal reveal-delay-2" data-category="grc">
<div class="module-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="22 12 18 12 15 21 9 3 6 12 2 12"/></svg>
</div>
<h3>BCMosm <span class="module-badge">ISO 22301</span></h3>
<p>Business Continuity Management aligned to ISO 22301:2019. Business impact analysis, recovery time objectives, continuity plans, and exercise tracking with automated evidence collection.</p>
<div class="module-tags">
<span class="module-tag">BIA</span>
<span class="module-tag">RTO/RPO</span>
<span class="module-tag">DR Plans</span>
<span class="module-tag">Exercises</span>
</div>
</div>
</div>
</div>
</section>
<!-- ─── Standards ──────────────────────────────────────────────────────── -->
<section id="standards" class="section" style="background:var(--color-surface);">
<div class="container">
<div class="section-title reveal">
<span class="pill">Compliance</span>
<h2>Supported <span>Standards</span></h2>
<p style="margin-top:.75rem; max-width:500px; margin-left:auto; margin-right:auto;">
OSM provides built-in schema mappings and control frameworks for leading international and Australian standards.
</p>
</div>
<div class="standards-grid">
<div class="standard-card reveal">
<div class="standard-code">ISO/IEC 27001:2022</div>
<div class="standard-name">Information Security Management Systems</div>
<div class="standard-desc">Full ISMS framework alignment with Annex A controls, SoA generation, and risk treatment plans.</div>
<div class="standard-status"><span class="status-dot aligned"></span><span style="color:var(--color-success)">Fully Aligned</span></div>
</div>
<div class="standard-card reveal reveal-delay-1">
<div class="standard-code">ISO/IEC 27002:2022</div>
<div class="standard-name">Information Security Controls</div>
<div class="standard-desc">Detailed control implementation guidance mapped to OSM control records and treatment schemas.</div>
<div class="standard-status"><span class="status-dot aligned"></span><span style="color:var(--color-success)">Fully Aligned</span></div>
</div>
<div class="standard-card reveal reveal-delay-2">
<div class="standard-code">ISO 22301:2019</div>
<div class="standard-name">Business Continuity Management</div>
<div class="standard-desc">BCM program management, BIA, continuity plans, and exercise scheduling via BCMosm module.</div>
<div class="standard-status"><span class="status-dot aligned"></span><span style="color:var(--color-success)">Fully Aligned</span></div>
</div>
<div class="standard-card reveal">
<div class="standard-code">ACSC ISM</div>
<div class="standard-name">Australian Govt Information Security Manual</div>
<div class="standard-desc">ISM control mappings for Australian government uplift with PROTECTED baseline coverage.</div>
<div class="standard-status"><span class="status-dot aligned"></span><span style="color:var(--color-success)">Fully Aligned</span></div>
</div>
<div class="standard-card reveal reveal-delay-1">
<div class="standard-code">ASD Essential Eight</div>
<div class="standard-name">Essential Eight Maturity Model</div>
<div class="standard-desc">Maturity level tracking across all eight strategies with automated evidence collection and gap analysis.</div>
<div class="standard-status"><span class="status-dot aligned"></span><span style="color:var(--color-success)">Fully Aligned</span></div>
</div>
<div class="standard-card reveal reveal-delay-2">
<div class="standard-code">SOC 2 Type II</div>
<div class="standard-name">Trust Service Criteria</div>
<div class="standard-desc">Security, availability, and confidentiality criteria mapped to OSM control records for service organisations.</div>
<div class="standard-status"><span class="status-dot partial"></span><span style="color:var(--color-focus)">In Progress</span></div>
</div>
<div class="standard-card reveal">
<div class="standard-code">NIST CSF 2.0</div>
<div class="standard-name">Cybersecurity Framework</div>
<div class="standard-desc">GOVERN, IDENTIFY, PROTECT, DETECT, RESPOND, RECOVER function mappings with OSM schema integration.</div>
<div class="standard-status"><span class="status-dot partial"></span><span style="color:var(--color-focus)">In Progress</span></div>
</div>
<div class="standard-card reveal reveal-delay-1">
<div class="standard-code">auDA Policy</div>
<div class="standard-name">auDA Registrar Compliance</div>
<div class="standard-desc">Automated evidence and reporting for domain registrars under the .au Domain Administration policy framework.</div>
<div class="standard-status"><span class="status-dot aligned"></span><span style="color:var(--color-success)">Fully Aligned</span></div>
</div>
</div>
</div>
</section>
<!-- ─── Open Source Repos ────────────────────────────────────────────────── -->
<section id="repos" class="section">
<div class="container">
<div class="section-title reveal">
<span class="pill">Open Source</span>
<h2>Public <span>Repositories</span></h2>
<p style="margin-top:.75rem; max-width:480px; margin-left:auto; margin-right:auto;">
Schemas, connectors, and tooling published under the OrganisationServiceManagement GitHub organisation.
</p>
</div>
<div id="reposLoading" aria-live="polite">
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" style="animation:spin 1s linear infinite">
<path d="M21 12a9 9 0 1 1-6.219-8.56"/>
</svg>
<p>Loading repositories…</p>
</div>
<div id="reposError" style="display:none"></div>
<nav class="repo-links" id="repoLinks" aria-label="View all repositories from GitHub sources"></nav>
<div class="repos-grid" id="reposGrid"></div>
</div>
</section>
<!-- ─── Widgets ──────────────────────────────────────────────────────────── -->
<section id="widgets" class="section">
<div class="container">
<div class="section-title reveal">
<span class="pill">More Information</span>
<h2>Status and <span>Updates</span></h2>
</div>
<div class="widgets-grid">
<!-- Live Clock (Melbourne AEST/AEDT) -->
<div class="widget reveal">
<div class="widget-title">
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" style="vertical-align:middle;margin-right:4px"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg>
OSM HQ — Melbourne
</div>
<div id="clock-display">--:--:--</div>
<div id="clock-date">Loading…</div>
<div id="clock-tz">Australia/Melbourne (AEST/AEDT)</div>
</div>
<!-- Compliance Coverage Gauges -->
<div class="widget reveal reveal-delay-1">
<div class="widget-title">
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" style="vertical-align:middle;margin-right:4px"><polyline points="22 12 18 12 15 21 9 3 6 12 2 12"/></svg>
Standards Coverage
</div>
<div class="gauge-wrap" id="gaugeWrap">
<div class="gauge-row">
<span class="gauge-label">ISO 27001</span>
<div class="gauge-bar"><div class="gauge-fill" data-width="96"></div></div>
<span class="gauge-pct">96%</span>
</div>
<div class="gauge-row">
<span class="gauge-label">ACSC ISM</span>
<div class="gauge-bar"><div class="gauge-fill" data-width="91"></div></div>
<span class="gauge-pct">91%</span>
</div>
<div class="gauge-row">
<span class="gauge-label">Essential Eight</span>
<div class="gauge-bar"><div class="gauge-fill" data-width="88"></div></div>
<span class="gauge-pct">88%</span>
</div>
<div class="gauge-row">
<span class="gauge-label">ISO 22301</span>
<div class="gauge-bar"><div class="gauge-fill" data-width="82"></div></div>
<span class="gauge-pct">82%</span>
</div>
<div class="gauge-row">
<span class="gauge-label">NIST CSF 2.0</span>
<div class="gauge-bar"><div class="gauge-fill" data-width="74"></div></div>
<span class="gauge-pct">74%</span>
</div>
</div>
</div>
<!-- Compliance Tip -->
<div class="widget reveal reveal-delay-2">
<div class="widget-title">
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" style="vertical-align:middle;margin-right:4px"><circle cx="12" cy="12" r="10"/><line x1="12" y1="8" x2="12" y2="12"/><line x1="12" y1="16" x2="12.01" y2="16"/></svg>
Compliance Tip
</div>
<div id="tipNum" style="font-size:.75rem;color:var(--color-accent)">Tip 1 of 10</div>
<div class="tip-text" id="tipText">Loading tip…</div>
<div class="tip-nav">
<button class="tip-btn" id="tipPrev" aria-label="Previous tip">← Prev</button>
<button class="tip-btn" id="tipNext" aria-label="Next tip">Next →</button>
</div>
</div>
<!-- OSM Schema Widget -->
<div class="widget reveal reveal-delay-1">
<div class="widget-title">
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" style="vertical-align:middle;margin-right:4px"><circle cx="12" cy="12" r="10"/><path d="M12 8v4l3 3"/></svg>
OSM Schema — osm.dev
</div>
<p style="font-size:.875rem;color:var(--color-text-secondary);">
Machine-readable organisational management schemas. Click any entity to explore.
</p>
<div class="osm-tags" id="osmTags">