-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontrol-panel.html
More file actions
1619 lines (1521 loc) · 81.8 KB
/
control-panel.html
File metadata and controls
1619 lines (1521 loc) · 81.8 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>
<!--
═══════════════════════════════════════════════════════════════════════════
VeritasCore™ Deployment Control Panel
Copyright © 2026 DAPR (Dale Associate Public Relations). All Rights Reserved.
PROPRIETARY AND CONFIDENTIAL
This file is part of the VeritasCore™ Autonomous Self-Modifying AI Agent System.
Unauthorized copying, distribution, modification, or use of this file,
via any medium, is strictly prohibited without express written permission
from DAPR.
VeritasCore™ is a trademark of DAPR.
Contact: dapr.team@gmail.com
License: See LICENSE.txt for terms of use.
═══════════════════════════════════════════════════════════════════════════
-->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VeritasCore™ — Deployment Control</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Rajdhani:wght@400;500;600;700&family=Exo+2:ital,wght@0,300;0,400;0,600;0,800;1,300&display=swap');
:root {
--navy: #050e1a;
--navy2: #0a1628;
--navy3: #0f1f38;
--card: #0d1b2e;
--teal: #00d4c8;
--teal2: #00a89e;
--teal3: rgba(0,212,200,0.12);
--gold: #f0b429;
--gold2: rgba(240,180,41,0.15);
--red: #ff4d6d;
--red2: rgba(255,77,109,0.12);
--green: #00e676;
--green2: rgba(0,230,118,0.12);
--mid: #4a6080;
--text: #c8d8e8;
--mono: 'Share Tech Mono', monospace;
--head: 'Rajdhani', sans-serif;
--body: 'Exo 2', sans-serif;
}
* { margin:0; padding:0; box-sizing:border-box; }
body {
background: var(--navy);
color: var(--text);
font-family: var(--body);
min-height: 100vh;
overflow-x: hidden;
}
/* Scanline overlay */
body::before {
content: '';
position: fixed; inset: 0;
background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
pointer-events: none;
z-index: 1000;
}
/* Grid bg */
body::after {
content: '';
position: fixed; inset: 0;
background-image:
linear-gradient(rgba(0,212,200,0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(0,212,200,0.03) 1px, transparent 1px);
background-size: 40px 40px;
pointer-events: none;
z-index: 0;
}
/* ── HEADER ───────────────────────────────────────────────────────────────── */
header {
position: relative; z-index: 10;
display: flex; align-items: center; justify-content: space-between;
padding: 14px 28px;
background: var(--navy2);
border-bottom: 1px solid rgba(0,212,200,0.2);
box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.logo {
display: flex; align-items: center; gap: 12px;
}
.logo-icon {
width: 36px; height: 36px;
border: 2px solid var(--teal);
display: flex; align-items: center; justify-content: center;
clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
background: var(--teal3);
animation: hexPulse 3s ease-in-out infinite;
}
@keyframes hexPulse {
0%,100% { box-shadow: 0 0 8px var(--teal); }
50% { box-shadow: 0 0 20px var(--teal), 0 0 40px rgba(0,212,200,0.3); }
}
.logo-icon svg { width: 18px; height: 18px; fill: var(--teal); }
.logo-text { font-family: var(--head); font-size: 22px; font-weight: 700; color: #fff; letter-spacing: 2px; }
.logo-sub { font-family: var(--mono); font-size: 10px; color: var(--teal); letter-spacing: 3px; margin-top: 2px; }
.header-stats {
display: flex; gap: 24px;
}
.hstat {
text-align: center;
}
.hstat-val { font-family: var(--mono); font-size: 18px; color: var(--teal); }
.hstat-lbl { font-family: var(--mono); font-size: 9px; color: var(--mid); letter-spacing: 2px; }
.status-pill {
display: flex; align-items: center; gap: 8px;
font-family: var(--mono); font-size: 11px; color: var(--green);
border: 1px solid var(--green);
padding: 6px 14px; border-radius: 2px;
background: var(--green2);
}
.pulse-dot {
width: 7px; height: 7px; border-radius: 50%;
background: var(--green);
animation: pulseDot 1.4s ease-in-out infinite;
}
@keyframes pulseDot {
0%,100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.4; transform: scale(0.6); }
}
/* ── MAIN LAYOUT ─────────────────────────────────────────────────────────── */
.app {
position: relative; z-index: 1;
display: grid;
grid-template-columns: 260px 1fr;
grid-template-rows: auto 1fr;
height: calc(100vh - 65px);
}
/* ── SIDEBAR ─────────────────────────────────────────────────────────────── */
.sidebar {
grid-row: 1 / 3;
background: var(--navy2);
border-right: 1px solid rgba(0,212,200,0.15);
display: flex; flex-direction: column;
overflow-y: auto;
}
.sidebar-title {
font-family: var(--mono); font-size: 9px; color: var(--mid);
letter-spacing: 3px; padding: 18px 20px 10px;
border-bottom: 1px solid rgba(255,255,255,0.04);
}
.vertical-btn {
display: flex; align-items: center; gap: 14px;
padding: 16px 20px;
cursor: pointer;
border-left: 3px solid transparent;
transition: all 0.2s;
border-bottom: 1px solid rgba(255,255,255,0.03);
}
.vertical-btn:hover { background: rgba(0,212,200,0.05); }
.vertical-btn.active {
background: rgba(0,212,200,0.08);
border-left-color: var(--teal);
}
.vertical-btn.active .vb-name { color: #fff; }
.vb-icon {
width: 38px; height: 38px; border-radius: 6px;
display: flex; align-items: center; justify-content: center;
font-size: 18px;
flex-shrink: 0;
}
.vb-text {}
.vb-name { font-family: var(--head); font-size: 15px; font-weight: 600; color: var(--text); }
.vb-tag { font-family: var(--mono); font-size: 9px; letter-spacing: 2px; margin-top: 2px; }
.sidebar-footer {
margin-top: auto;
padding: 16px 20px;
border-top: 1px solid rgba(0,212,200,0.1);
}
.integrity-bar-wrap { margin-top: 8px; }
.integrity-label { font-family: var(--mono); font-size: 9px; color: var(--mid); letter-spacing: 2px; margin-bottom: 5px; }
.integrity-bar {
height: 4px; background: rgba(255,255,255,0.05); border-radius: 2px; overflow: hidden;
}
.integrity-fill {
height: 100%; border-radius: 2px;
background: linear-gradient(90deg, var(--teal), var(--gold));
animation: integrityAnim 4s ease-in-out infinite alternate;
}
@keyframes integrityAnim { from { width: 94%; } to { width: 100%; } }
/* ── TOP BAR ─────────────────────────────────────────────────────────────── */
.top-bar {
padding: 16px 24px;
border-bottom: 1px solid rgba(0,212,200,0.1);
display: flex; align-items: center; justify-content: space-between;
background: rgba(13,27,46,0.5);
}
.section-title {
font-family: var(--head); font-size: 22px; font-weight: 700; color: #fff;
}
.section-subtitle { font-family: var(--mono); font-size: 10px; color: var(--teal); letter-spacing: 2px; margin-top: 2px; }
.tag-row { display: flex; gap: 8px; }
.tag {
font-family: var(--mono); font-size: 9px; letter-spacing: 2px;
padding: 4px 10px; border-radius: 2px;
}
/* ── CONTENT ─────────────────────────────────────────────────────────────── */
.content {
overflow-y: auto;
padding: 20px 24px;
display: flex; flex-direction: column; gap: 20px;
}
/* ── WORKFLOW ─────────────────────────────────────────────────────────────── */
.workflow-panel {
background: var(--card);
border: 1px solid rgba(0,212,200,0.12);
border-radius: 4px;
}
.panel-header {
padding: 12px 18px;
border-bottom: 1px solid rgba(0,212,200,0.1);
display: flex; align-items: center; justify-content: space-between;
font-family: var(--mono); font-size: 10px; letter-spacing: 2px; color: var(--teal);
}
.panel-header-right { color: var(--mid); font-size: 9px; }
.workflow-canvas {
padding: 20px;
position: relative;
overflow-x: auto;
}
.wf-row {
display: flex; align-items: center; gap: 0;
margin-bottom: 12px;
}
.wf-row:last-child { margin-bottom: 0; }
.wf-node {
display: flex; flex-direction: column; align-items: center; gap: 4px;
position: relative;
flex-shrink: 0;
}
.wf-box {
width: 88px; height: 54px;
border-radius: 6px;
border: 1px solid rgba(255,255,255,0.1);
display: flex; flex-direction: column; align-items: center; justify-content: center;
gap: 4px;
cursor: pointer;
transition: all 0.25s;
position: relative;
overflow: hidden;
}
.wf-box::before {
content: '';
position: absolute; top: 0; left: 0; right: 0; height: 2px;
}
.wf-box:hover { transform: translateY(-2px); }
.wf-box.active { animation: nodeGlow 2s ease-in-out infinite; }
@keyframes nodeGlow {
0%,100% { box-shadow: 0 0 8px rgba(0,212,200,0.3); }
50% { box-shadow: 0 0 20px rgba(0,212,200,0.6), 0 0 40px rgba(0,212,200,0.2); }
}
.wf-box-icon { font-size: 18px; }
.wf-box-name { font-family: var(--mono); font-size: 8px; text-align: center; color: #fff; line-height: 1.2; padding: 0 4px; }
.wf-box-sub { font-family: var(--mono); font-size: 7px; color: var(--mid); text-align: center; }
.wf-arrow {
width: 32px; flex-shrink: 0;
display: flex; align-items: center; justify-content: center;
}
.wf-arrow-line {
width: 100%; height: 1px;
background: linear-gradient(90deg, var(--teal2), transparent);
position: relative;
}
.wf-arrow-line::after {
content: '▶';
position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
font-size: 8px; color: var(--teal2);
}
.wf-label {
font-family: var(--mono); font-size: 8px; color: var(--mid);
text-align: center; max-width: 88px; line-height: 1.3;
}
/* Crypto badge */
.crypto-badge {
position: absolute; bottom: -6px; right: -6px;
width: 16px; height: 16px;
background: var(--gold);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
font-size: 8px;
z-index: 2;
}
/* ── METRICS ROW ──────────────────────────────────────────────────────────── */
.metrics-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 12px;
}
.metric-card {
background: var(--card);
border: 1px solid rgba(255,255,255,0.06);
border-radius: 4px;
padding: 14px 16px;
position: relative;
overflow: hidden;
}
.metric-card::before {
content: '';
position: absolute; top: 0; left: 0; right: 0; height: 2px;
}
.metric-val {
font-family: var(--mono); font-size: 26px; font-weight: 700;
line-height: 1; margin-bottom: 4px;
}
.metric-lbl { font-family: var(--mono); font-size: 9px; color: var(--mid); letter-spacing: 2px; }
.metric-delta { font-family: var(--mono); font-size: 9px; margin-top: 6px; }
/* ── INFO GRID ────────────────────────────────────────────────────────────── */
.info-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}
.info-card {
background: var(--card);
border: 1px solid rgba(255,255,255,0.06);
border-radius: 4px;
padding: 16px;
}
.info-card-title {
font-family: var(--head); font-size: 13px; font-weight: 600;
color: var(--teal); letter-spacing: 1px; margin-bottom: 12px;
text-transform: uppercase;
}
.use-case-list { display: flex; flex-direction: column; gap: 8px; }
.use-case-item {
display: flex; align-items: flex-start; gap: 10px;
padding: 8px 10px;
background: rgba(255,255,255,0.02);
border-radius: 3px;
border-left: 2px solid transparent;
transition: all 0.2s;
}
.use-case-item:hover { background: rgba(0,212,200,0.05); border-left-color: var(--teal); }
.uc-icon { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.uc-text {}
.uc-title { font-family: var(--head); font-size: 13px; font-weight: 600; color: #fff; }
.uc-desc { font-family: var(--body); font-size: 11px; color: var(--mid); margin-top: 2px; line-height: 1.4; }
.compliance-list { display: flex; flex-direction: column; gap: 6px; }
.compliance-item {
display: flex; align-items: center; justify-content: space-between;
padding: 7px 10px;
background: rgba(255,255,255,0.02);
border-radius: 3px;
}
.ci-name { font-family: var(--mono); font-size: 10px; color: var(--text); }
.ci-status {
font-family: var(--mono); font-size: 9px; letter-spacing: 1px;
padding: 2px 8px; border-radius: 2px;
}
.ci-native { background: var(--green2); color: var(--green); }
.ci-partial { background: var(--gold2); color: var(--gold); }
.ci-roadmap { background: rgba(74,96,128,0.3); color: var(--mid); }
/* ── AUDIT LOG ────────────────────────────────────────────────────────────── */
.audit-panel {
background: var(--card);
border: 1px solid rgba(0,212,200,0.12);
border-radius: 4px;
}
.audit-scroll { max-height: 160px; overflow-y: auto; }
.audit-scroll::-webkit-scrollbar { width: 4px; }
.audit-scroll::-webkit-scrollbar-track { background: transparent; }
.audit-scroll::-webkit-scrollbar-thumb { background: var(--teal2); border-radius: 2px; }
.audit-line {
display: flex; gap: 14px; align-items: flex-start;
padding: 7px 16px;
border-bottom: 1px solid rgba(255,255,255,0.03);
font-family: var(--mono); font-size: 10px;
animation: fadeInLine 0.3s ease;
}
@keyframes fadeInLine { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; } }
.al-time { color: var(--mid); flex-shrink: 0; width: 60px; }
.al-hash { color: var(--teal); flex-shrink: 0; width: 72px; }
.al-event { color: var(--text); flex: 1; }
.al-status { flex-shrink: 0; font-size: 9px; }
/* ── VERTICAL PANELS ──────────────────────────────────────────────────────── */
.vertical-panel { display: none; }
.vertical-panel.active { display: flex; flex-direction: column; gap: 20px; }
/* ── SCROLLBAR ────────────────────────────────────────────────────────────── */
.content::-webkit-scrollbar { width: 4px; }
.content::-webkit-scrollbar-track { background: transparent; }
.content::-webkit-scrollbar-thumb { background: var(--teal2); border-radius: 2px; }
.sidebar::-webkit-scrollbar { width: 3px; }
.sidebar::-webkit-scrollbar-track { background: transparent; }
.sidebar::-webkit-scrollbar-thumb { background: var(--mid); border-radius: 2px; }
/* ── NODE TOOLTIP ─────────────────────────────────────────────────────────── */
.tooltip {
position: fixed; z-index: 9999;
background: var(--navy2);
border: 1px solid var(--teal);
border-radius: 4px;
padding: 10px 14px;
font-family: var(--mono); font-size: 10px;
max-width: 220px;
pointer-events: none;
opacity: 0;
transition: opacity 0.15s;
box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.tooltip.show { opacity: 1; }
.tt-title { color: var(--teal); font-size: 11px; margin-bottom: 5px; }
.tt-desc { color: var(--text); line-height: 1.5; }
.tt-badge { margin-top: 6px; color: var(--gold); font-size: 9px; }
/* Clock/version display */
.version-bar {
display: flex; gap: 20px; align-items: center;
}
.vb-item { font-family: var(--mono); font-size: 10px; color: var(--mid); }
.vb-item span { color: var(--teal); }
</style>
</head>
<body>
<!-- HEADER -->
<header>
<div class="logo">
<div class="logo-icon">
<svg viewBox="0 0 24 24"><path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4z"/></svg>
</div>
<div>
<div class="logo-text">VERITASCORE</div>
<div class="logo-sub">DEPLOYMENT CONTROL · v1.0</div>
</div>
</div>
<div class="header-stats">
<div class="hstat">
<div class="hstat-val" id="clock">--:--:--</div>
<div class="hstat-lbl">SYSTEM TIME</div>
</div>
<div class="hstat">
<div class="hstat-val">6.8MB</div>
<div class="hstat-lbl">RAM USAGE</div>
</div>
<div class="hstat">
<div class="hstat-val" id="ver-counter">v4.2.1</div>
<div class="hstat-lbl">SIGNED VER</div>
</div>
<div class="hstat">
<div class="hstat-val" id="uptime">99.99%</div>
<div class="hstat-lbl">UPTIME</div>
</div>
</div>
<div class="status-pill">
<div class="pulse-dot"></div>
SYSTEM NOMINAL · AIR-GAPPED
</div>
</header>
<div class="app">
<!-- SIDEBAR -->
<aside class="sidebar">
<div class="sidebar-title">// TARGET VERTICALS</div>
<div class="vertical-btn active" onclick="switchVertical('defense')" data-v="defense">
<div class="vb-icon" style="background:rgba(240,180,41,0.1); border:1px solid rgba(240,180,41,0.3)">🛡️</div>
<div class="vb-text">
<div class="vb-name">Defense & Intel</div>
<div class="vb-tag" style="color:#f0b429">PRIORITY 01 · CLASSIFIED</div>
</div>
</div>
<div class="vertical-btn" onclick="switchVertical('finance')" data-v="finance">
<div class="vb-icon" style="background:rgba(0,212,200,0.1); border:1px solid rgba(0,212,200,0.3)">🏦</div>
<div class="vb-text">
<div class="vb-name">Financial Services</div>
<div class="vb-tag" style="color:#00d4c8">PRIORITY 02 · FINRA 2026</div>
</div>
</div>
<div class="vertical-btn" onclick="switchVertical('manufacturing')" data-v="manufacturing">
<div class="vb-icon" style="background:rgba(255,77,109,0.1); border:1px solid rgba(255,77,109,0.3)">⚙️</div>
<div class="vb-text">
<div class="vb-name">Manufacturing / ICS</div>
<div class="vb-tag" style="color:#ff4d6d">PRIORITY 03 · SCADA/OT</div>
</div>
</div>
<div class="vertical-btn" onclick="switchVertical('healthcare')" data-v="healthcare">
<div class="vb-icon" style="background:rgba(0,230,118,0.1); border:1px solid rgba(0,230,118,0.3)">🏥</div>
<div class="vb-text">
<div class="vb-name">Healthcare</div>
<div class="vb-tag" style="color:#00e676">PRIORITY 04 · HIPAA</div>
</div>
</div>
<div class="vertical-btn" onclick="switchVertical('sovereign')" data-v="sovereign">
<div class="vb-icon" style="background:rgba(180,120,255,0.1); border:1px solid rgba(180,120,255,0.3)">🌍</div>
<div class="vb-text">
<div class="vb-name">EU Sovereign AI</div>
<div class="vb-tag" style="color:#b478ff">PRIORITY 05 · €480B</div>
</div>
</div>
<div style="flex:1"></div>
<div class="sidebar-footer">
<div style="font-family:var(--mono);font-size:9px;color:var(--mid);letter-spacing:2px;margin-bottom:8px">// CRYPTOGRAPHIC INTEGRITY</div>
<div class="integrity-bar-wrap">
<div class="integrity-label">CHAIN VERIFICATION</div>
<div class="integrity-bar"><div class="integrity-fill"></div></div>
</div>
<div style="font-family:var(--mono);font-size:8px;color:var(--teal);margin-top:6px" id="hash-display">HASH: 0x4f3a...e921</div>
</div>
</aside>
<!-- MAIN -->
<main>
<div class="top-bar">
<div>
<div class="section-title" id="v-title">Defense & Intelligence</div>
<div class="section-subtitle" id="v-subtitle">TACTICAL EDGE DEPLOYMENT · SCIFs · DoDIN ENCLAVES · CMMC COMPLIANT</div>
</div>
<div class="tag-row" id="v-tags">
<span class="tag" style="background:var(--gold2);color:var(--gold);border:1px solid rgba(240,180,41,0.3)">AIR-GAPPED</span>
<span class="tag" style="background:var(--teal3);color:var(--teal);border:1px solid rgba(0,212,200,0.3)">6.8MB FOOTPRINT</span>
<span class="tag" style="background:var(--green2);color:var(--green);border:1px solid rgba(0,230,118,0.3)">CRYPTO-VERIFIED</span>
</div>
</div>
<div class="content">
<!-- ═══════════════════ DEFENSE ═══════════════════ -->
<div class="vertical-panel active" id="panel-defense">
<div class="metrics-grid">
<div class="metric-card" style="border-top:2px solid var(--gold)">
<div class="metric-val" style="color:var(--gold)">$13.4B</div>
<div class="metric-lbl">DoD FY2026 AI Budget</div>
<div class="metric-delta" style="color:var(--green)">▲ Largest single-year investment</div>
</div>
<div class="metric-card" style="border-top:2px solid var(--teal)">
<div class="metric-val" style="color:var(--teal)">$200M</div>
<div class="metric-lbl">Max Contract Size</div>
<div class="metric-delta" style="color:var(--mid)">Pentagon agentic workflow awards</div>
</div>
<div class="metric-card" style="border-top:2px solid var(--red)">
<div class="metric-val" style="color:var(--red)">ZERO</div>
<div class="metric-lbl">Attack Surface</div>
<div class="metric-delta" style="color:var(--green)">▲ No ports · No cloud · No vectors</div>
</div>
<div class="metric-card" style="border-top:2px solid var(--green)">
<div class="metric-val" style="color:var(--green)">CMMC</div>
<div class="metric-lbl">Compliance Status</div>
<div class="metric-delta" style="color:var(--gold)">RBAC module → Level 2+</div>
</div>
</div>
<div class="workflow-panel">
<div class="panel-header">
<span>// TACTICAL FIELD WORKFLOW — SCIF DEPLOYMENT</span>
<span class="panel-header-right">NODES: 7 · CRYPTO-SIGNED · AIR-GAPPED</span>
</div>
<div class="workflow-canvas">
<div class="wf-row">
<div class="wf-node">
<div class="wf-box active" style="background:rgba(240,180,41,0.1);border-color:rgba(240,180,41,0.4)"
data-tip="Sensor Trigger" data-desc="Edge sensor or field operator initiates mission intelligence request. Runs entirely on local hardware — no connectivity required.">
<div class="wf-box-icon">📡</div>
<div class="wf-box-name">Field Trigger</div>
</div>
<div class="wf-label">Sensor / Operator</div>
</div>
<div class="wf-arrow"><div class="wf-arrow-line"></div></div>
<div class="wf-node">
<div class="wf-box" style="background:rgba(0,212,200,0.08);border-color:rgba(0,212,200,0.3)"
data-tip="Intel Ingest" data-desc="Collects multi-source intelligence: sensor feeds, comms intercepts, satellite imagery metadata. All processed locally on edge hardware.">
<div class="wf-box-icon">🗂️</div>
<div class="wf-box-name">Intel Ingest</div>
</div>
<div class="wf-label">Multi-source data</div>
</div>
<div class="wf-arrow"><div class="wf-arrow-line"></div></div>
<div class="wf-node">
<div class="wf-box" style="background:rgba(0,212,200,0.08);border-color:rgba(0,212,200,0.3)"
data-tip="Threat Analysis" data-desc="Local AI model analyzes patterns, anomalies, threat signatures. All inference runs on-device. Model weights never leave the SCIF.">
<div class="wf-box-icon">🧠</div>
<div class="wf-box-name">AI Analysis</div>
<div class="wf-box-sub">Local Model</div>
</div>
<div class="wf-label">Threat detection</div>
</div>
<div class="wf-arrow"><div class="wf-arrow-line"></div></div>
<div class="wf-node">
<div class="wf-box" style="background:rgba(240,180,41,0.08);border-color:rgba(240,180,41,0.4)"
data-tip="Crypto Sign" data-desc="Every decision is cryptographically signed before execution. Hash recorded to immutable audit log. Provides mathematical proof of what AI decided, when, and why." data-crypto="true">
<div class="wf-box-icon">🔐</div>
<div class="wf-box-name">Sign & Log</div>
<div class="crypto-badge">⬡</div>
</div>
<div class="wf-label">Hash + timestamp</div>
</div>
<div class="wf-arrow"><div class="wf-arrow-line"></div></div>
<div class="wf-node">
<div class="wf-box" style="background:rgba(0,212,200,0.08);border-color:rgba(0,212,200,0.3)"
data-tip="Human Gate" data-desc="Commander review checkpoint. Autonomous action requires human approval at this node. Rollback available instantly if decision is rejected.">
<div class="wf-box-icon">👁️</div>
<div class="wf-box-name">Cmd Review</div>
<div class="wf-box-sub">Human gate</div>
</div>
<div class="wf-label">Oversight hook</div>
</div>
<div class="wf-arrow"><div class="wf-arrow-line"></div></div>
<div class="wf-node">
<div class="wf-box" style="background:rgba(0,230,118,0.08);border-color:rgba(0,230,118,0.3)"
data-tip="Execute" data-desc="Approved action executed. Self-healing monitors the outcome in real-time. Any anomaly triggers automatic rollback to the last verified signed state.">
<div class="wf-box-icon">⚡</div>
<div class="wf-box-name">Execute</div>
<div class="wf-box-sub">Self-healing</div>
</div>
<div class="wf-label">Verified action</div>
</div>
<div class="wf-arrow"><div class="wf-arrow-line"></div></div>
<div class="wf-node">
<div class="wf-box" style="background:rgba(240,180,41,0.08);border-color:rgba(240,180,41,0.3)"
data-tip="Audit Store" data-desc="Full signed chain written to tamper-evident local store. Satisfies CMMC, FedRAMP, and DoD audit requirements. No data ever leaves the air-gap.">
<div class="wf-box-icon">📦</div>
<div class="wf-box-name">Audit Store</div>
<div class="wf-box-sub">Tamper-evident</div>
</div>
<div class="wf-label">Local only</div>
</div>
</div>
</div>
</div>
<div class="info-grid">
<div class="info-card">
<div class="info-card-title">⚔️ Defense Use Cases</div>
<div class="use-case-list">
<div class="use-case-item">
<div class="uc-icon">🛩️</div>
<div class="uc-text">
<div class="uc-title">Autonomous Field Systems</div>
<div class="uc-desc">UAV swarm coordination, autonomous targeting support, mission planning — all offline, all cryptographically logged for post-mission review.</div>
</div>
</div>
<div class="use-case-item">
<div class="uc-icon">🏗️</div>
<div class="uc-text">
<div class="uc-title">SCIF Intelligence Analysis</div>
<div class="uc-desc">Air-gapped AI for classified document analysis, pattern recognition, threat scoring inside secure compartmented facilities.</div>
</div>
</div>
<div class="use-case-item">
<div class="uc-icon">📟</div>
<div class="uc-text">
<div class="uc-title">Tactical Edge Hardware</div>
<div class="uc-desc">6.8MB footprint runs on ruggedized field hardware, embedded systems, PLCs — hardware where Devin and LangChain physically cannot run.</div>
</div>
</div>
<div class="use-case-item">
<div class="uc-icon">🔄</div>
<div class="uc-text">
<div class="uc-title">Self-Healing Comms</div>
<div class="uc-desc">Detects node failure or corruption, repairs and verifies its own code, resumes mission without human intervention or reconnection.</div>
</div>
</div>
</div>
</div>
<div class="info-card">
<div class="info-card-title">🔒 Compliance & Certification</div>
<div class="compliance-list">
<div class="compliance-item">
<span class="ci-name">FedRAMP Authorization</span>
<span class="ci-status ci-roadmap">ROADMAP · $500K-5M</span>
</div>
<div class="compliance-item">
<span class="ci-name">CMMC Level 2+</span>
<span class="ci-status ci-partial">PARTIAL · RBAC needed</span>
</div>
<div class="compliance-item">
<span class="ci-name">NIST MAESTRO</span>
<span class="ci-status ci-partial">PARTIAL · hooks present</span>
</div>
<div class="compliance-item">
<span class="ci-name">Cryptographic Integrity</span>
<span class="ci-status ci-native">NATIVE</span>
</div>
<div class="compliance-item">
<span class="ci-name">Air-Gap Operation</span>
<span class="ci-status ci-native">NATIVE</span>
</div>
<div class="compliance-item">
<span class="ci-name">Tamper-Evident Audit Log</span>
<span class="ci-status ci-native">NATIVE</span>
</div>
<div class="compliance-item">
<span class="ci-name">SOC 2 Type II</span>
<span class="ci-status ci-roadmap">PURSUE FIRST · 6-9mo</span>
</div>
</div>
<div style="margin-top:12px;padding:10px;background:var(--gold2);border-radius:3px;border:1px solid rgba(240,180,41,0.2)">
<div style="font-family:var(--mono);font-size:9px;color:var(--gold);letter-spacing:1px">⚡ FIRST SALES TARGET</div>
<div style="font-family:var(--body);font-size:11px;color:var(--text);margin-top:4px;line-height:1.5">Target defense <em>subcontractors</em> first. CMMC mandate = active pain. $50K–$500K budgets. Weeks-long procurement cycles vs. years for primes.</div>
</div>
</div>
</div>
<div class="audit-panel">
<div class="panel-header">
<span>// LIVE CRYPTOGRAPHIC AUDIT LOG</span>
<span class="panel-header-right" style="color:var(--green)">WRITING TO LOCAL STORE · NO EGRESS</span>
</div>
<div class="audit-scroll" id="audit-log-defense"></div>
</div>
</div>
<!-- ═══════════════════ FINANCE ═══════════════════ -->
<div class="vertical-panel" id="panel-finance">
<div class="metrics-grid">
<div class="metric-card" style="border-top:2px solid var(--teal)">
<div class="metric-val" style="color:var(--teal)">325%</div>
<div class="metric-lbl">Insurance AI Adoption Growth</div>
<div class="metric-delta" style="color:var(--green)">▲ 8% → 34% in one year (2024–25)</div>
</div>
<div class="metric-card" style="border-top:2px solid var(--gold)">
<div class="metric-val" style="color:var(--gold)">$500B</div>
<div class="metric-lbl">AI Insurance Market by 2030</div>
<div class="metric-delta" style="color:var(--teal)">Crypto audit = lower premiums</div>
</div>
<div class="metric-card" style="border-top:2px solid var(--green)">
<div class="metric-val" style="color:var(--green)">NATIVE</div>
<div class="metric-lbl">FINRA 2026 Compliance</div>
<div class="metric-delta" style="color:var(--mid)">Logged · supervised · reversible</div>
</div>
<div class="metric-card" style="border-top:2px solid var(--red)">
<div class="metric-val" style="color:var(--red)">ZERO</div>
<div class="metric-lbl">Market Data Egress Risk</div>
<div class="metric-delta" style="color:var(--green)">▲ Central banks confirmed use case</div>
</div>
</div>
<div class="workflow-panel">
<div class="panel-header">
<span>// AUTONOMOUS TRADING COMPLIANCE WORKFLOW</span>
<span class="panel-header-right">FINRA RULE 4511 · REVERSIBLE · LOGGED</span>
</div>
<div class="workflow-canvas">
<div class="wf-row">
<div class="wf-node">
<div class="wf-box active" style="background:rgba(0,212,200,0.1);border-color:rgba(0,212,200,0.4)"
data-tip="Market Feed" data-desc="Live market data ingested from internal feeds. Zero external API calls — all data stays within the institution's air-gapped network.">
<div class="wf-box-icon">📊</div>
<div class="wf-box-name">Market Feed</div>
</div>
<div class="wf-label">Internal data</div>
</div>
<div class="wf-arrow"><div class="wf-arrow-line"></div></div>
<div class="wf-node">
<div class="wf-box" style="background:rgba(0,212,200,0.08);border-color:rgba(0,212,200,0.3)"
data-tip="Anomaly Detection" data-desc="AI model monitors for fraud patterns, unusual transaction volumes, suspicious sequences. All inference local — market-moving data never leaves the perimeter.">
<div class="wf-box-icon">🔍</div>
<div class="wf-box-name">Anomaly AI</div>
<div class="wf-box-sub">Local model</div>
</div>
<div class="wf-label">Fraud detection</div>
</div>
<div class="wf-arrow"><div class="wf-arrow-line"></div></div>
<div class="wf-node">
<div class="wf-box" style="background:rgba(240,180,41,0.08);border-color:rgba(240,180,41,0.4)"
data-tip="Crypto Sign Decision" data-desc="Every AI decision is signed with private key and timestamped before any action. Creates reconstructable activity chain required by FINRA Rule 4511." data-crypto="true">
<div class="wf-box-icon">🔐</div>
<div class="wf-box-name">Sign Decision</div>
<div class="crypto-badge">⬡</div>
</div>
<div class="wf-label">FINRA 4511</div>
</div>
<div class="wf-arrow"><div class="wf-arrow-line"></div></div>
<div class="wf-node">
<div class="wf-box" style="background:rgba(0,212,200,0.08);border-color:rgba(0,212,200,0.3)"
data-tip="Compliance Check" data-desc="Automated compliance gate: checks decision against regulatory rules before execution. Flags violations before they happen, not after.">
<div class="wf-box-icon">⚖️</div>
<div class="wf-box-name">Compliance</div>
<div class="wf-box-sub">Auto-check</div>
</div>
<div class="wf-label">Pre-execution</div>
</div>
<div class="wf-arrow"><div class="wf-arrow-line"></div></div>
<div class="wf-node">
<div class="wf-box" style="background:rgba(0,230,118,0.08);border-color:rgba(0,230,118,0.3)"
data-tip="Execute + Monitor" data-desc="Action executes with real-time monitoring. Self-healing detects if outcome deviates from expected parameters and rolls back automatically.">
<div class="wf-box-icon">💹</div>
<div class="wf-box-name">Execute</div>
<div class="wf-box-sub">+ Monitor</div>
</div>
<div class="wf-label">Self-healing</div>
</div>
<div class="wf-arrow"><div class="wf-arrow-line"></div></div>
<div class="wf-node">
<div class="wf-box" style="background:rgba(240,180,41,0.08);border-color:rgba(240,180,41,0.3)"
data-tip="Reversible Log" data-desc="Complete reconstructable audit trail. Regulator can request any decision chain and receive mathematical proof of the exact AI state that produced it. Satisfies FINRA Rule 4511 natively.">
<div class="wf-box-icon">📋</div>
<div class="wf-box-name">Audit Trail</div>
<div class="wf-box-sub">Reversible</div>
</div>
<div class="wf-label">Reg-ready</div>
</div>
</div>
</div>
</div>
<div class="info-grid">
<div class="info-card">
<div class="info-card-title">💹 Finance Use Cases</div>
<div class="use-case-list">
<div class="use-case-item">
<div class="uc-icon">🏦</div>
<div class="uc-text">
<div class="uc-title">Central Bank AI</div>
<div class="uc-desc">Sovereign wealth funds and central banks where cloud is "a non-starter" due to market-moving data exfiltration risk. Fully air-gapped by design.</div>
</div>
</div>
<div class="use-case-item">
<div class="uc-icon">🔎</div>
<div class="uc-text">
<div class="uc-title">Real-Time Fraud Detection</div>
<div class="uc-desc">AI monitors transaction streams for anomalous patterns. Every detection decision is signed and reversible — satisfying FINRA's "logged, supervised, reversible" requirement natively.</div>
</div>
</div>
<div class="use-case-item">
<div class="uc-icon">📉</div>
<div class="uc-text">
<div class="uc-title">Risk Model Self-Repair</div>
<div class="uc-desc">When risk model drifts or degrades, system diagnoses, applies code-level fix, verifies improvement, then signs the new version — or rolls back to the previous signed state.</div>
</div>
</div>
<div class="use-case-item">
<div class="uc-icon">🛡️</div>
<div class="uc-text">
<div class="uc-title">AI Liability Defense</div>
<div class="uc-desc">When regulators or courts ask what the AI decided: produce the exact signed hash of the model state that made the decision. Mathematical proof, not testimony.</div>
</div>
</div>
</div>
</div>
<div class="info-card">
<div class="info-card-title">🔒 Compliance Coverage</div>
<div class="compliance-list">
<div class="compliance-item">
<span class="ci-name">FINRA Rule 4511</span>
<span class="ci-status ci-native">NATIVE</span>
</div>
<div class="compliance-item">
<span class="ci-name">FINRA 2026 Agentic AI Rules</span>
<span class="ci-status ci-native">NATIVE</span>
</div>
<div class="compliance-item">
<span class="ci-name">SOC 2 (CC7)</span>
<span class="ci-status ci-native">NATIVE</span>
</div>
<div class="compliance-item">
<span class="ci-name">SEC Recordkeeping</span>
<span class="ci-status ci-native">NATIVE</span>
</div>
<div class="compliance-item">
<span class="ci-name">DORA (EU Digital Resilience)</span>
<span class="ci-status ci-partial">PARTIAL</span>
</div>
<div class="compliance-item">
<span class="ci-name">Basel III Operational Risk</span>
<span class="ci-status ci-partial">PARTIAL</span>
</div>
</div>
<div style="margin-top:12px;padding:10px;background:var(--teal3);border-radius:3px;border:1px solid rgba(0,212,200,0.2)">
<div style="font-family:var(--mono);font-size:9px;color:var(--teal);letter-spacing:1px">💡 INSURANCE EDGE</div>
<div style="font-family:var(--body);font-size:11px;color:var(--text);margin-top:4px;line-height:1.5">Crypto audit trail = lower AI insurance premiums. AIG and W.R. Berkley actively exclude autonomous AI liabilities. Your system is the exception they'll cover.</div>
</div>
</div>
</div>
<div class="audit-panel">
<div class="panel-header">
<span>// LIVE CRYPTOGRAPHIC AUDIT LOG</span>
<span class="panel-header-right" style="color:var(--green)">FINRA 4511 COMPLIANT · RECONSTRUCTABLE</span>
</div>
<div class="audit-scroll" id="audit-log-finance"></div>
</div>
</div>
<!-- ═══════════════════ MANUFACTURING ═══════════════════ -->
<div class="vertical-panel" id="panel-manufacturing">
<div class="metrics-grid">
<div class="metric-card" style="border-top:2px solid var(--red)">
<div class="metric-val" style="color:var(--red)">3,083h</div>
<div class="metric-lbl">Downtime Before AI</div>
<div class="metric-delta" style="color:var(--green)">▲ Siemens case: reduced to 15.4h</div>
</div>
<div class="metric-card" style="border-top:2px solid var(--green)">
<div class="metric-val" style="color:var(--green)">23%</div>
<div class="metric-lbl">Edge AI Segment CAGR</div>
<div class="metric-delta" style="color:var(--teal)">Fastest growing AI vertical</div>
</div>
<div class="metric-card" style="border-top:2px solid var(--teal)">
<div class="metric-val" style="color:var(--teal)">70%</div>
<div class="metric-lbl">Incident Frequency Reduction</div>
<div class="metric-delta" style="color:var(--mid)">AI self-healing vs. manual repair</div>
</div>
<div class="metric-card" style="border-top:2px solid var(--gold)">
<div class="metric-val" style="color:var(--gold)"><2min</div>
<div class="metric-lbl">Mean Time to Recovery</div>
<div class="metric-delta" style="color:var(--green)">▲ Down from 18 minutes avg</div>
</div>
</div>
<div class="workflow-panel">
<div class="panel-header">
<span>// SCADA/ICS PREDICTIVE MAINTENANCE WORKFLOW</span>
<span class="panel-header-right">PURDUE MODEL · PLC COMPATIBLE · NO GPU</span>
</div>
<div class="workflow-canvas">
<div class="wf-row">
<div class="wf-node">
<div class="wf-box active" style="background:rgba(255,77,109,0.1);border-color:rgba(255,77,109,0.4)"
data-tip="PLC Sensor Array" data-desc="Reads directly from industrial PLCs and sensor arrays. 6.8MB footprint runs alongside existing PLC workloads without any resource contention — no extra hardware required.">
<div class="wf-box-icon">⚙️</div>
<div class="wf-box-name">PLC Sensors</div>
</div>
<div class="wf-label">OT layer</div>
</div>
<div class="wf-arrow"><div class="wf-arrow-line"></div></div>
<div class="wf-node">
<div class="wf-box" style="background:rgba(0,212,200,0.08);border-color:rgba(0,212,200,0.3)"
data-tip="OT/IT Bridge" data-desc="Secure boundary between operational technology (OT) and IT. Data flows in one direction. Maintains Purdue Model security architecture — no inbound connections from IT to OT.">
<div class="wf-box-icon">🌉</div>
<div class="wf-box-name">OT/IT Bridge</div>
<div class="wf-box-sub">One-way</div>
</div>
<div class="wf-label">Purdue model</div>
</div>
<div class="wf-arrow"><div class="wf-arrow-line"></div></div>
<div class="wf-node">
<div class="wf-box" style="background:rgba(0,212,200,0.08);border-color:rgba(0,212,200,0.3)"
data-tip="Predictive AI" data-desc="Edge AI model analyzes vibration, temperature, pressure, current draw patterns to predict failures 72-hours before they occur. All inference local on edge controller.">
<div class="wf-box-icon">🧠</div>
<div class="wf-box-name">Predict AI</div>
<div class="wf-box-sub">Edge model</div>
</div>
<div class="wf-label">Failure forecast</div>
</div>
<div class="wf-arrow"><div class="wf-arrow-line"></div></div>
<div class="wf-node">
<div class="wf-box" style="background:rgba(240,180,41,0.08);border-color:rgba(240,180,41,0.4)"
data-tip="Sign & Version" data-desc="Diagnosis and recommended action is cryptographically signed. Versioned so the exact model state that predicted the failure can be reconstructed for post-incident analysis." data-crypto="true">
<div class="wf-box-icon">🔐</div>
<div class="wf-box-name">Sign Action</div>
<div class="crypto-badge">⬡</div>
</div>
<div class="wf-label">Versioned</div>
</div>
<div class="wf-arrow"><div class="wf-arrow-line"></div></div>
<div class="wf-node">