-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeployment-roadmap.html
More file actions
1109 lines (1048 loc) · 54.6 KB
/
deployment-roadmap.html
File metadata and controls
1109 lines (1048 loc) · 54.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">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>FERROS — Technical Deployment Roadmap</title>
<style>
/* =====================================================================
FERROS DEPLOYMENT ROADMAP
7-home cluster deployment planning document.
Standalone, no external dependencies.
===================================================================== */
:root {
--bg-base: #0a0c10;
--bg-panel: #111520;
--bg-card: #161b28;
--bg-card-alt: #1a2035;
--bg-highlight: #1e2840;
--border-dim: #1e2a3a;
--border-accent: #2a3f5f;
--border-bright: #3a5a8f;
--text-primary: #e8edf5;
--text-secondary: #8fa0b8;
--text-dim: #5a6a80;
--text-code: #7eb8e8;
--accent-blue: #4a90d9;
--accent-cyan: #2dd4bf;
--accent-green: #34d399;
--accent-amber: #f59e0b;
--accent-red: #f87171;
--accent-purple: #a78bfa;
--accent-orange: #fb923c;
--gradient-header: linear-gradient(135deg, #0d1b35 0%, #0a1525 50%, #091020 100%);
--gradient-card: linear-gradient(145deg, #161b28 0%, #111520 100%);
--gradient-accent: linear-gradient(90deg, #4a90d9 0%, #2dd4bf 100%);
--shadow-panel: 0 4px 24px rgba(0, 0, 0, 0.6);
--shadow-card: 0 2px 12px rgba(0, 0, 0, 0.4);
--radius-panel: 12px;
--radius-card: 8px;
--font-mono: 'Courier New', Courier, monospace;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
background-color: var(--bg-base);
color: var(--text-primary);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
font-size: 15px;
line-height: 1.6;
min-height: 100vh;
padding-bottom: 64px;
}
/* ---- Typography ---- */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: 2.2rem; }
h2 { font-size: 1.45rem; }
h3 { font-size: 1.1rem; }
h4 { font-size: 0.95rem; font-weight: 600; }
p { margin-bottom: 0.75rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--accent-blue); text-decoration: none; }
a:hover { color: var(--accent-cyan); text-decoration: underline; }
code, .mono { font-family: var(--font-mono); font-size: 0.88em; color: var(--text-code); background: rgba(74,144,217,0.08); padding: 1px 5px; border-radius: 3px; }
/* ---- Header ---- */
.site-header {
background: var(--gradient-header);
border-bottom: 1px solid var(--border-accent);
padding: 16px 24px;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 12px;
}
.logo-mark { font-family: var(--font-mono); font-size: 1.3rem; font-weight: 900; color: var(--accent-cyan); letter-spacing: 2px; text-shadow: 0 0 10px rgba(45,212,191,0.5); }
.logo-sub { color: var(--text-secondary); font-size: 0.85rem; }
.nav-links { font-size: 0.85rem; color: var(--text-secondary); }
.nav-links a { color: var(--accent-blue); }
/* ---- Summary Banner ---- */
.summary-banner {
background: linear-gradient(90deg, rgba(74,144,217,0.08), rgba(45,212,191,0.05));
border-bottom: 1px solid var(--border-accent);
padding: 12px 24px;
display: flex;
gap: 32px;
flex-wrap: wrap;
align-items: center;
}
.summary-stat { text-align: center; min-width: 80px; }
.summary-stat .val { font-size: 1.4rem; font-weight: 900; color: var(--accent-cyan); line-height: 1; }
.summary-stat .lbl { font-size: 0.7rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }
/* ---- Layout ---- */
.container { max-width: 1300px; margin: 0 auto; padding: 0 20px; }
.page-body { padding: 28px 0; display: flex; flex-direction: column; gap: 28px; }
/* ---- Section ---- */
.section { }
.section-title {
font-size: 0.7rem;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--accent-cyan);
margin-bottom: 14px;
padding-bottom: 8px;
border-bottom: 1px solid var(--border-accent);
display: flex;
align-items: center;
gap: 10px;
}
.section-title::before { content: "//"; color: var(--text-dim); font-family: var(--font-mono); }
/* ---- Panel ---- */
.panel {
background: var(--bg-panel);
border: 1px solid var(--border-accent);
border-radius: var(--radius-panel);
overflow: hidden;
box-shadow: var(--shadow-panel);
}
.panel-header {
background: linear-gradient(90deg, rgba(74,144,217,0.1), transparent);
border-bottom: 1px solid var(--border-accent);
padding: 14px 20px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
flex-wrap: wrap;
}
.panel-header h2, .panel-header h3 { font-size: 1rem; font-weight: 700; color: var(--text-primary); display: flex; align-items: center; gap: 8px; }
.panel-body { padding: 20px; }
/* ---- Badge ---- */
.badge {
display: inline-flex; align-items: center; gap: 4px;
font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
padding: 3px 8px; border-radius: 4px;
background: rgba(74,144,217,0.15); color: var(--accent-blue); border: 1px solid rgba(74,144,217,0.3);
}
.badge.green { background: rgba(52,211,153,0.15); color: var(--accent-green); border-color: rgba(52,211,153,0.3); }
.badge.amber { background: rgba(245,158,11,0.15); color: var(--accent-amber); border-color: rgba(245,158,11,0.3); }
.badge.purple { background: rgba(167,139,250,0.15); color: var(--accent-purple); border-color: rgba(167,139,250,0.3); }
.badge.red { background: rgba(248,113,113,0.15); color: var(--accent-red); border-color: rgba(248,113,113,0.3); }
.badge.cyan { background: rgba(45,212,191,0.15); color: var(--accent-cyan); border-color: rgba(45,212,191,0.3); }
.badge.orange { background: rgba(251,146,60,0.15); color: var(--accent-orange); border-color: rgba(251,146,60,0.3); }
/* ---- Two-col split ---- */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.split-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
@media (max-width: 860px) { .split-2, .split-3 { grid-template-columns: 1fr; } }
/* ---- Card ---- */
.card {
background: var(--bg-card);
border: 1px solid var(--border-dim);
border-radius: var(--radius-card);
padding: 16px;
transition: border-color 0.2s;
}
.card:hover { border-color: var(--border-accent); }
.card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.card h4 { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 6px; }
/* ---- Status checklist ---- */
.status-list { list-style: none; padding: 0; }
.status-list li { display: flex; align-items: flex-start; gap: 8px; padding: 6px 0; border-bottom: 1px solid var(--border-dim); font-size: 0.85rem; }
.status-list li:last-child { border-bottom: none; }
.status-list .dot { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.status-list .exists { color: var(--accent-green); }
.status-list .needed { color: var(--accent-amber); }
.status-list .future { color: var(--text-dim); }
/* ---- Hardware diagram ---- */
.hw-diagram {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}
@media (max-width: 700px) { .hw-diagram { grid-template-columns: 1fr; } }
.hw-node {
background: var(--bg-card);
border: 1px solid var(--border-accent);
border-radius: var(--radius-card);
padding: 14px;
}
.hw-node.command { border-color: var(--accent-cyan); }
.hw-node.edge { border-color: var(--border-bright); }
.hw-node-title { font-size: 0.85rem; font-weight: 800; color: var(--accent-cyan); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.06em; }
.hw-node.edge .hw-node-title { color: var(--accent-blue); }
.hw-item { display: flex; align-items: flex-start; gap: 8px; font-size: 0.8rem; padding: 5px 0; border-bottom: 1px solid var(--border-dim); color: var(--text-secondary); }
.hw-item:last-child { border-bottom: none; }
.hw-item .hw-icon { font-size: 1rem; flex-shrink: 0; }
.hw-item .hw-label { flex: 1; }
.hw-item .hw-price { color: var(--accent-amber); font-weight: 700; white-space: nowrap; flex-shrink: 0; font-size: 0.75rem; }
/* ═══════════════════════════════════════════
Gantt / Timeline
═══════════════════════════════════════════ */
.gantt-wrap { overflow-x: auto; padding-bottom: 8px; }
.gantt {
min-width: 800px;
display: grid;
grid-template-columns: 180px 1fr;
gap: 0;
}
.gantt-header {
grid-column: 2;
display: grid;
grid-template-columns: repeat(20, 1fr);
gap: 0;
border-bottom: 1px solid var(--border-accent);
margin-bottom: 2px;
}
.gantt-week {
text-align: center;
font-size: 0.65rem;
color: var(--text-dim);
padding: 4px 2px;
border-right: 1px solid var(--border-dim);
}
.gantt-week:last-child { border-right: none; }
.gantt-row { display: contents; }
.gantt-label {
display: flex;
align-items: center;
gap: 8px;
font-size: 0.78rem;
color: var(--text-secondary);
padding: 6px 8px;
border-bottom: 1px solid var(--border-dim);
border-right: 1px solid var(--border-accent);
}
.gantt-bar-row {
display: grid;
grid-template-columns: repeat(20, 1fr);
align-items: center;
border-bottom: 1px solid var(--border-dim);
height: 38px;
position: relative;
}
.gantt-bar {
height: 22px;
border-radius: 4px;
display: flex;
align-items: center;
padding: 0 8px;
font-size: 0.68rem;
font-weight: 700;
white-space: nowrap;
overflow: hidden;
cursor: default;
transition: filter 0.2s;
}
.gantt-bar:hover { filter: brightness(1.2); }
.gantt-bar.blue { background: linear-gradient(90deg, rgba(74,144,217,0.7), rgba(74,144,217,0.4)); color: #e8edf5; border: 1px solid rgba(74,144,217,0.5); }
.gantt-bar.green { background: linear-gradient(90deg, rgba(52,211,153,0.7), rgba(52,211,153,0.4)); color: #e8edf5; border: 1px solid rgba(52,211,153,0.5); }
.gantt-bar.amber { background: linear-gradient(90deg, rgba(245,158,11,0.7), rgba(245,158,11,0.4)); color: #e8edf5; border: 1px solid rgba(245,158,11,0.5); }
.gantt-bar.purple { background: linear-gradient(90deg, rgba(167,139,250,0.7), rgba(167,139,250,0.4)); color: #e8edf5; border: 1px solid rgba(167,139,250,0.5); }
.gantt-bar.cyan { background: linear-gradient(90deg, rgba(45,212,191,0.7), rgba(45,212,191,0.4)); color: #e8edf5; border: 1px solid rgba(45,212,191,0.5); }
.gantt-bar.orange { background: linear-gradient(90deg, rgba(251,146,60,0.7), rgba(251,146,60,0.4)); color: #e8edf5; border: 1px solid rgba(251,146,60,0.5); }
/* ── Phase Detail Cards ── */
.phase-cards { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.phase-card {
background: var(--bg-card);
border: 1px solid var(--border-dim);
border-left: 4px solid var(--accent-blue);
border-radius: 0 var(--radius-card) var(--radius-card) 0;
padding: 14px 16px;
display: grid;
grid-template-columns: 60px 1fr auto;
gap: 12px;
align-items: start;
cursor: pointer;
transition: border-color 0.2s, background 0.2s;
}
.phase-card:hover { background: var(--bg-card-alt); border-color: var(--border-accent); }
.phase-card.active { background: var(--bg-card-alt); border-left-color: var(--accent-cyan); }
.phase-id { font-size: 1.6rem; font-weight: 900; color: var(--accent-cyan); font-family: var(--font-mono); line-height: 1; }
.phase-id.d0 { color: var(--accent-green); }
.phase-id.d1 { color: var(--accent-cyan); }
.phase-id.d2 { color: var(--accent-blue); }
.phase-id.d3 { color: var(--accent-amber); }
.phase-id.d4 { color: var(--accent-orange); }
.phase-id.d5 { color: var(--accent-purple); }
.phase-id.d6 { color: var(--accent-pink, #f472b6); }
.phase-id.d7 { color: var(--accent-red); }
.phase-body h4 { font-size: 0.9rem; margin-bottom: 4px; }
.phase-body p { font-size: 0.8rem; color: var(--text-secondary); margin: 0; }
.phase-body .blocks { font-size: 0.75rem; color: var(--text-dim); margin-top: 6px; }
.phase-body .blocks span { color: var(--accent-amber); }
.phase-meta { text-align: right; white-space: nowrap; }
.phase-meta .timeline { font-size: 0.75rem; color: var(--accent-cyan); font-weight: 700; }
.phase-meta .status { margin-top: 4px; }
@media (max-width: 600px) {
.phase-card { grid-template-columns: 48px 1fr; }
.phase-meta { display: none; }
}
/* ─── Cost Calculator ─── */
.cost-section { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
@media (max-width: 700px) { .cost-section { grid-template-columns: 1fr; } }
.cost-table { width: 100%; border-collapse: collapse; font-size: 0.83rem; }
.cost-table th, .cost-table td { padding: 8px 12px; text-align: left; border-bottom: 1px solid var(--border-dim); }
.cost-table th { color: var(--text-dim); font-weight: 600; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.05em; }
.cost-table .cost-val { font-weight: 700; color: var(--accent-amber); text-align: right; }
.cost-table tr.total td { border-top: 2px solid var(--border-accent); color: var(--text-primary); font-weight: 800; }
.cost-table tr.total .cost-val { color: var(--accent-cyan); font-size: 1.05rem; }
.cost-input-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border-dim); font-size: 0.83rem; }
.cost-input-row:last-child { border-bottom: none; }
.cost-input-row label { flex: 1; color: var(--text-secondary); }
.cost-input-row input[type=number] {
width: 70px;
background: var(--bg-card);
border: 1px solid var(--border-accent);
border-radius: 6px;
color: var(--text-primary);
padding: 5px 8px;
font-size: 0.83rem;
text-align: right;
}
.cost-input-row .unit-price { font-size: 0.75rem; color: var(--text-dim); min-width: 55px; text-align: right; }
.cost-input-row .line-total { font-weight: 700; color: var(--accent-amber); min-width: 64px; text-align: right; }
.total-display {
background: linear-gradient(135deg, #0d1b35, #091020);
border: 1px solid var(--accent-cyan);
border-radius: var(--radius-card);
padding: 16px;
text-align: center;
margin-top: 12px;
box-shadow: 0 0 16px rgba(45,212,191,0.15);
}
.total-display .lbl { font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; }
.total-display .amt { font-size: 2.4rem; font-weight: 900; color: var(--accent-cyan); line-height: 1.1; }
.total-display .note { font-size: 0.72rem; color: var(--text-dim); margin-top: 6px; }
/* ─── Integration table ─── */
.int-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.int-table th, .int-table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--border-dim); vertical-align: top; }
.int-table th { color: var(--text-dim); font-weight: 600; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.05em; background: var(--bg-card); }
.int-table tbody tr:hover td { background: var(--bg-card-alt); }
.int-table .effort { white-space: nowrap; }
/* ─── Risk Register ─── */
.risk-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.risk-table th, .risk-table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--border-dim); vertical-align: top; }
.risk-table th { color: var(--text-dim); font-weight: 600; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.05em; background: var(--bg-card); }
.risk-table tbody tr:hover td { background: var(--bg-card-alt); }
.severity-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 6px; vertical-align: middle; }
.sev-critical { background: var(--accent-red); box-shadow: 0 0 6px rgba(248,113,113,0.5); }
.sev-high { background: var(--accent-orange); }
.sev-medium { background: var(--accent-amber); }
.sev-low { background: var(--accent-green); }
/* ─── Decision block ─── */
.decision-block {
background: linear-gradient(135deg, #0d1b35, #091825);
border: 1px solid var(--border-bright);
border-left: 4px solid var(--accent-cyan);
border-radius: 0 var(--radius-card) var(--radius-card) 0;
padding: 16px 20px;
margin-bottom: 12px;
}
.decision-block h4 { color: var(--accent-cyan); font-size: 0.95rem; margin-bottom: 8px; }
.decision-block p { font-size: 0.85rem; color: var(--text-secondary); }
/* ─── Footer ─── */
.site-footer { margin-top: 48px; border-top: 1px solid var(--border-dim); padding: 20px 24px; text-align: center; font-size: 0.78rem; color: var(--text-dim); }
.site-footer a { color: var(--text-secondary); }
</style>
</head>
<body>
<!-- Header -->
<header class="site-header">
<div style="display:flex;align-items:center;gap:12px;">
<span class="logo-mark">FERROS</span>
<div>
<div style="font-weight:700;font-size:1rem;">Technical Deployment Roadmap</div>
<div class="logo-sub">7-home cluster — concrete timelines, hardware plans, cost calculator</div>
</div>
</div>
<nav class="nav-links">
<a href="../ferros-blueprint.html">← Blueprint</a> |
<a href="./personal-profile.html">Profile</a> |
<a href="./agent-command-center.html">Agent Center</a>
</nav>
</header>
<!-- Summary Banner -->
<div class="summary-banner">
<div class="summary-stat">
<div class="val">7</div>
<div class="lbl">Homes</div>
</div>
<div class="summary-stat">
<div class="val">8</div>
<div class="lbl">Deploy Phases</div>
</div>
<div class="summary-stat">
<div class="val" id="banner-total">$4,390</div>
<div class="lbl">Est. Total Cost</div>
</div>
<div class="summary-stat">
<div class="val">~20 wks</div>
<div class="lbl">Full Rollout</div>
</div>
<div class="summary-stat">
<div class="val">D-0</div>
<div class="lbl">Current Phase</div>
</div>
</div>
<!-- Main Content -->
<div class="container">
<div class="page-body">
<!-- ════════════════════════════════════════════════════
SECTION 1 — CURRENT STATE
════════════════════════════════════════════════════ -->
<section class="section">
<div class="section-title">01 Current State Assessment</div>
<div class="split-2">
<div class="panel">
<div class="panel-header">
<h2>✅ What Exists Now</h2>
<span class="badge green">Available</span>
</div>
<div class="panel-body">
<ul class="status-list">
<li><span class="dot exists">●</span> Ubuntu dev desktop (command node hardware)</li>
<li><span class="dot exists">●</span> <code>botgen-rust</code> codebase — AI agent hosting</li>
<li><span class="dot exists">●</span> <code>ferros-blueprint.html</code> — founding architecture board</li>
<li><span class="dot exists">●</span> <code>docs/agent-command-center.html</code> — agent governance UI</li>
<li><span class="dot exists">●</span> <code>docs/legacy/home-hud-dashboard.html</code> — archived home kiosk UI prototype</li>
<li><span class="dot exists">●</span> <code>docs/schedule-ledger.html</code> — schedule system prototype</li>
<li><span class="dot exists">●</span> <code>docs/personal-profile.html</code> — progression dashboard prototype</li>
<li><span class="dot exists">●</span> Basic internet connectivity at command home</li>
<li><span class="dot exists">●</span> FERROS architecture documentation and ADR process</li>
</ul>
</div>
</div>
<div class="panel">
<div class="panel-header">
<h2>⚠️ What's Needed</h2>
<span class="badge amber">Procurement / Build</span>
</div>
<div class="panel-body">
<ul class="status-list">
<li><span class="dot needed">●</span> Raspberry Pi 5 + display for first HUD deployment</li>
<li><span class="dot needed">●</span> PoE switch + cameras (home surveillance layer)</li>
<li><span class="dot needed">●</span> API bridge between botgen-rust agents and HTML interfaces</li>
<li><span class="dot needed">●</span> Jetson Orin Nano for edge AI inference</li>
<li><span class="dot needed">●</span> Edge node hardware kits for 6 additional homes</li>
<li><span class="dot needed">●</span> GPU upgrade (RTX 4090 or A6000) for AI cluster</li>
<li><span class="dot needed">●</span> UPS backup for command node</li>
<li><span class="dot future">◌</span> FERROS kernel (QEMU + bare-metal) — long term</li>
<li><span class="dot future">◌</span> Custom FERROS HUD hardware — post Phase 7</li>
</ul>
</div>
</div>
</div>
</section>
<!-- ════════════════════════════════════════════════════
SECTION 2 — ARCHITECTURE DECISION
════════════════════════════════════════════════════ -->
<section class="section">
<div class="section-title">02 Architecture Decision: Linux Now, FERROS Later</div>
<div class="panel">
<div class="panel-body">
<div class="decision-block">
<h4>🐧 Phase D-0 through D-6: Linux on All Nodes</h4>
<p>
All home lab nodes (Raspberry Pi 5, Jetson Orin Nano) run <strong>Ubuntu or Debian ARM</strong> from day one.
This is practical: driver support is mature, deployment is fast, and all FERROS HTML interfaces run without modification
inside any modern browser on Linux. The command node Ubuntu desktop is the primary development machine.
</p>
</div>
<div class="decision-block">
<h4>🦀 Parallel Track: FERROS Kernel in QEMU</h4>
<p>
FERROS kernel development happens entirely in <strong>QEMU on the dev box</strong>, in parallel with
the live deployment. This keeps risky kernel work isolated. There is no requirement to boot FERROS on
real hardware until the kernel is stable enough to replace Linux on a node (Phase D-7+).
</p>
</div>
<div class="decision-block">
<h4>🔄 Migration Path (Phase D-7+)</h4>
<p>
When the FERROS kernel reaches a stable HTML-rendering milestone (Phase 0 of the kernel roadmap),
a single edge node is converted from Linux to FERROS as a proof-of-concept. Rollout to additional nodes
follows as each subsystem (storage, networking, display) reaches production quality.
</p>
</div>
<div style="background:var(--bg-card);border:1px solid var(--border-dim);border-radius:var(--radius-card);padding:14px;font-family:var(--font-mono);font-size:0.8rem;color:var(--text-secondary);line-height:2;">
<div style="color:var(--text-dim);margin-bottom:6px;">// Runtime matrix</div>
<div><span style="color:var(--accent-cyan);">Command Node</span> → Ubuntu 24.04 LTS (dev + QEMU host)</div>
<div><span style="color:var(--accent-blue);">Pi 5 Nodes </span> → Ubuntu Server 24.04 ARM (HUD display, schedule)</div>
<div><span style="color:var(--accent-purple);">Jetson Nodes </span> → JetPack 6 / Ubuntu ARM (camera AI, inference)</div>
<div><span style="color:var(--accent-amber);">FERROS Kernel </span> → QEMU/KVM only until Phase D-7+</div>
</div>
</div>
</div>
</section>
<!-- ════════════════════════════════════════════════════
SECTION 3 — HARDWARE PLAN
════════════════════════════════════════════════════ -->
<section class="section">
<div class="section-title">03 Hardware Plan</div>
<div class="hw-diagram">
<!-- Command Node -->
<div class="hw-node command">
<div class="hw-node-title">⚡ Command Node — Your Home</div>
<div class="hw-item">
<span class="hw-icon">🖥️</span>
<span class="hw-label">Ubuntu Desktop (existing dev machine)</span>
<span class="hw-price">—</span>
</div>
<div class="hw-item">
<span class="hw-icon">🎮</span>
<span class="hw-label">Commercial GPU (RTX 4090 or A6000)</span>
<span class="hw-price">$1,200–$4,000</span>
</div>
<div class="hw-item">
<span class="hw-icon">🧠</span>
<span class="hw-label">64 GB+ RAM</span>
<span class="hw-price">$120–$300</span>
</div>
<div class="hw-item">
<span class="hw-icon">💾</span>
<span class="hw-label">NVMe storage (2 TB+)</span>
<span class="hw-price">$80–$180</span>
</div>
<div class="hw-item">
<span class="hw-icon">🔋</span>
<span class="hw-label">UPS backup (1500 VA)</span>
<span class="hw-price">$120–$250</span>
</div>
<div class="hw-item" style="border-top:1px solid var(--border-accent);margin-top:6px;padding-top:10px;">
<span class="hw-icon">🚀</span>
<span class="hw-label"><strong>Runs:</strong> AI cluster, agent host, FERROS dev (QEMU)</span>
<span class="hw-price"></span>
</div>
</div>
<!-- Edge Node per Home -->
<div class="hw-node edge">
<div class="hw-node-title">🏠 Per-Edge-Home Kit (×6)</div>
<div class="hw-item">
<span class="hw-icon">🤖</span>
<span class="hw-label">Jetson Orin Nano — camera AI, edge inference</span>
<span class="hw-price">$249</span>
</div>
<div class="hw-item">
<span class="hw-icon">🍓</span>
<span class="hw-label">Raspberry Pi 5 — HUD display, schedule feed</span>
<span class="hw-price">$80</span>
</div>
<div class="hw-item">
<span class="hw-icon">📺</span>
<span class="hw-label">HDMI display (7" or 10" touchscreen)</span>
<span class="hw-price">$40–$90</span>
</div>
<div class="hw-item">
<span class="hw-icon">📷</span>
<span class="hw-label">4× PoE cameras (indoor/outdoor)</span>
<span class="hw-price">$200</span>
</div>
<div class="hw-item">
<span class="hw-icon">🔌</span>
<span class="hw-label">8-port PoE switch</span>
<span class="hw-price">$60</span>
</div>
<div class="hw-item" style="border-top:1px solid var(--border-accent);margin-top:6px;padding-top:10px;">
<span class="hw-icon">💰</span>
<span class="hw-label"><strong>Estimated total per home</strong></span>
<span class="hw-price" style="color:var(--accent-cyan);font-size:0.85rem;">~$629–$679</span>
</div>
</div>
</div>
</section>
<!-- ════════════════════════════════════════════════════
SECTION 4 — DEPLOYMENT PHASES + GANTT
════════════════════════════════════════════════════ -->
<section class="section">
<div class="section-title">04 Deployment Phases & Timeline</div>
<div class="panel">
<div class="panel-header">
<h2>📅 Gantt Chart — 20-Week Rollout</h2>
<span class="badge cyan">Weeks 1–20+</span>
</div>
<div class="panel-body">
<div class="gantt-wrap">
<div class="gantt">
<!-- Header spacer -->
<div></div>
<div class="gantt-header">
<div class="gantt-week">W1</div><div class="gantt-week">W2</div><div class="gantt-week">W3</div>
<div class="gantt-week">W4</div><div class="gantt-week">W5</div><div class="gantt-week">W6</div>
<div class="gantt-week">W7</div><div class="gantt-week">W8</div><div class="gantt-week">W9</div>
<div class="gantt-week">W10</div><div class="gantt-week">W11</div><div class="gantt-week">W12</div>
<div class="gantt-week">W13</div><div class="gantt-week">W14</div><div class="gantt-week">W15</div>
<div class="gantt-week">W16</div><div class="gantt-week">W17</div><div class="gantt-week">W18</div>
<div class="gantt-week">W19</div><div class="gantt-week">W20</div>
</div>
<!-- D-0 -->
<div class="gantt-label">🟢 D-0 Serve HTML</div>
<div class="gantt-bar-row">
<div class="gantt-bar green" style="grid-column:1/3;margin:8px 2px;">D-0 Local Serve</div>
</div>
<!-- D-1 -->
<div class="gantt-label">🔵 D-1 Pi HUD Deploy</div>
<div class="gantt-bar-row">
<div class="gantt-bar cyan" style="grid-column:2/4;margin:8px 2px;">D-1 Pi Screen</div>
</div>
<!-- D-2 -->
<div class="gantt-label">🔵 D-2 Agent Bridge</div>
<div class="gantt-bar-row">
<div class="gantt-bar blue" style="grid-column:3/7;margin:8px 2px;">D-2 API Bridge</div>
</div>
<!-- D-3 -->
<div class="gantt-label">🟡 D-3 Jetson Cameras</div>
<div class="gantt-bar-row">
<div class="gantt-bar amber" style="grid-column:4/9;margin:8px 2px;">D-3 Camera Setup</div>
</div>
<!-- D-4 -->
<div class="gantt-label">🟠 D-4 Beta Homes</div>
<div class="gantt-bar-row">
<div class="gantt-bar orange" style="grid-column:6/13;margin:8px 2px;">D-4 2× Beta Homes</div>
</div>
<!-- D-5 -->
<div class="gantt-label">🟣 D-5 AI Cluster</div>
<div class="gantt-bar-row">
<div class="gantt-bar purple" style="grid-column:8/15;margin:8px 2px;">D-5 AI Inference Online</div>
</div>
<!-- D-6 -->
<div class="gantt-label">⚪ D-6 Scale to 7</div>
<div class="gantt-bar-row">
<div class="gantt-bar blue" style="grid-column:12/21;margin:8px 2px;opacity:0.7;">D-6 All 7 Homes</div>
</div>
</div>
</div>
<!-- Phase Detail Cards -->
<div class="phase-cards">
<div class="phase-card active">
<div class="phase-id d0">D-0</div>
<div class="phase-body">
<h4>Serve HTML interfaces on dev box, test locally</h4>
<p>All five HTML prototype documents running on <code>localhost</code>. Validate layout, localStorage, and interactivity. No hardware needed beyond existing dev machine.</p>
<div class="blocks">Blockers: <span>None — start immediately</span></div>
</div>
<div class="phase-meta">
<div class="timeline">Week 1–2</div>
<div class="status"><span class="badge green">Active</span></div>
</div>
</div>
<div class="phase-card">
<div class="phase-id d1">D-1</div>
<div class="phase-body">
<h4>Deploy HUD to a Pi screen in your home</h4>
<p>Raspberry Pi 5 running the archived <code>docs/legacy/home-hud-dashboard.html</code> prototype alongside <code>schedule-ledger.html</code> in a kiosk browser (Chromium). Mounted display, auto-boot, read-only SD card.</p>
<div class="blocks">Blockers: <span>Raspberry Pi 5 + HDMI display procurement</span></div>
</div>
<div class="phase-meta">
<div class="timeline">Week 2–3</div>
<div class="status"><span class="badge cyan">Planned</span></div>
</div>
</div>
<div class="phase-card">
<div class="phase-id d2">D-2</div>
<div class="phase-body">
<h4>Get botgen-rust agents communicating with command center</h4>
<p>Build a REST/WebSocket bridge between existing botgen-rust agent processes and the <code>agent-command-center.html</code> frontend. Agents post status and receive tasks via the UI.</p>
<div class="blocks">Blockers: <span>API bridge design and implementation (Rust backend work)</span></div>
</div>
<div class="phase-meta">
<div class="timeline">Week 3–6</div>
<div class="status"><span class="badge">Planned</span></div>
</div>
</div>
<div class="phase-card">
<div class="phase-id d3">D-3</div>
<div class="phase-body">
<h4>Set up Jetson Orin Nano with cameras at your home</h4>
<p>Jetson running camera AI inference (object detection, motion alerts). Feeds data to HUD dashboard device panel. PoE switch connects cameras and Jetson.</p>
<div class="blocks">Blockers: <span>Jetson Orin Nano + PoE cameras + switch procurement; JetPack setup time</span></div>
</div>
<div class="phase-meta">
<div class="timeline">Week 4–8</div>
<div class="status"><span class="badge amber">Hardware</span></div>
</div>
</div>
<div class="phase-card">
<div class="phase-id d4">D-4</div>
<div class="phase-body">
<h4>Deploy edge node kit to 2 beta homes</h4>
<p>Ship pre-configured Pi 5 + Jetson edge node kits to 2 trusted homes. Remote SSH management from command node. VPN tunnel (WireGuard) for secure inter-home networking.</p>
<div class="blocks">Blockers: <span>Hardware kits (×2), consent and access from home occupants, network setup</span></div>
</div>
<div class="phase-meta">
<div class="timeline">Week 6–12</div>
<div class="status"><span class="badge orange">Logistics</span></div>
</div>
</div>
<div class="phase-card">
<div class="phase-id d5">D-5</div>
<div class="phase-body">
<h4>AI cluster online — dev desktop as inference server</h4>
<p>GPU upgrade complete. Ollama or custom inference stack running local LLMs. Edge nodes offload inference requests to command node via secure tunnel. Model governance tracked in agent-command-center.</p>
<div class="blocks">Blockers: <span>GPU procurement ($1,200–$4,000), model selection and quantization, inference server setup</span></div>
</div>
<div class="phase-meta">
<div class="timeline">Week 8–14</div>
<div class="status"><span class="badge purple">GPU Dep.</span></div>
</div>
</div>
<div class="phase-card">
<div class="phase-id d6">D-6</div>
<div class="phase-body">
<h4>Scale deployment to all 7 homes</h4>
<p>Remaining 4 homes receive edge node kits based on lessons learned from beta. WireGuard mesh network connecting all 7 nodes. Centralized agent management from command center.</p>
<div class="blocks">Blockers: <span>Hardware for 4 more homes (~$2,500), coordination with all occupants, logistics bandwidth</span></div>
</div>
<div class="phase-meta">
<div class="timeline">Week 12–20</div>
<div class="status"><span class="badge">Future</span></div>
</div>
</div>
<div class="phase-card">
<div class="phase-id d7">D-7</div>
<div class="phase-body">
<h4>FERROS kernel boots in QEMU (parallel track)</h4>
<p>Rust-native kernel boots in QEMU on the dev box, renders <code>ferros-blueprint.html</code> as the Phase 0 conformance test. This is a kernel engineering milestone, not a deployment milestone — it runs in parallel with D-0 through D-6.</p>
<div class="blocks">Blockers: <span>Rust systems programming: bootloader, kernel, HTML parser, CSS engine — months of engineering effort</span></div>
</div>
<div class="phase-meta">
<div class="timeline">Month 3–12</div>
<div class="status"><span class="badge red">Long Term</span></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ════════════════════════════════════════════════════
SECTION 5 — COST CALCULATOR
════════════════════════════════════════════════════ -->
<section class="section">
<div class="section-title">05 Cost Calculator</div>
<div class="panel">
<div class="panel-header">
<h2>💰 Interactive Cost Breakdown</h2>
<span class="badge amber">Editable Quantities</span>
</div>
<div class="panel-body">
<div class="cost-section">
<div>
<h3 style="font-size:0.85rem;color:var(--text-secondary);margin-bottom:12px;text-transform:uppercase;letter-spacing:.05em;">Per-Home Edge Kit Components</h3>
<div id="cost-rows">
<!-- populated by JS -->
</div>
<div class="total-display" style="margin-top:16px;">
<div class="lbl">Per-Home Edge Kit Total</div>
<div class="amt" id="per-home-total">$629</div>
<div class="note">Excludes internet connectivity costs</div>
</div>
</div>
<div>
<h3 style="font-size:0.85rem;color:var(--text-secondary);margin-bottom:12px;text-transform:uppercase;letter-spacing:.05em;">Full Deployment Summary</h3>
<table class="cost-table">
<thead>
<tr><th>Item</th><th style="text-align:right;">Cost</th></tr>
</thead>
<tbody>
<tr>
<td>GPU upgrade (RTX 4090)</td>
<td class="cost-val">$1,599</td>
</tr>
<tr>
<td>RAM upgrade (64 GB)</td>
<td class="cost-val">$180</td>
</tr>
<tr>
<td>NVMe storage (2 TB)</td>
<td class="cost-val">$120</td>
</tr>
<tr>
<td>UPS backup</td>
<td class="cost-val">$160</td>
</tr>
<tr>
<td>Edge kits — 6 homes</td>
<td class="cost-val" id="six-home-total">$3,774</td>
</tr>
<tr>
<td>Your home: Pi 5 + display (D-1)</td>
<td class="cost-val">$160</td>
</tr>
<tr class="total">
<td><strong>Estimated Total (hardware)</strong></td>
<td class="cost-val" id="grand-total">$5,993</td>
</tr>
</tbody>
</table>
<div class="card" style="margin-top:14px;">
<div style="font-size:0.78rem;color:var(--text-dim);margin-bottom:8px;">⚡ Monthly Operating Costs (estimated)</div>
<div style="font-size:0.82rem;color:var(--text-secondary);">
<div style="display:flex;justify-content:space-between;padding:4px 0;border-bottom:1px solid var(--border-dim);">
<span>GPU + desktop electricity (~400W avg)</span><span style="color:var(--accent-amber);">~$35/mo</span>
</div>
<div style="display:flex;justify-content:space-between;padding:4px 0;border-bottom:1px solid var(--border-dim);">
<span>Pi 5 nodes × 7 (~8W each)</span><span style="color:var(--accent-amber);">~$4/mo</span>
</div>
<div style="display:flex;justify-content:space-between;padding:4px 0;border-bottom:1px solid var(--border-dim);">
<span>Jetson nodes × 6 (~20W avg)</span><span style="color:var(--accent-amber);">~$10/mo</span>
</div>
<div style="display:flex;justify-content:space-between;padding:4px 0;">
<span>Internet (existing plans)</span><span style="color:var(--text-dim);">existing</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ════════════════════════════════════════════════════
SECTION 6 — OLD PROJECTS INTEGRATION
════════════════════════════════════════════════════ -->
<section class="section">
<div class="section-title">06 Existing Projects Integration</div>
<div class="panel">
<div class="panel-header">
<h2>🔌 Projects to Integrate as Applets or Schedule Items</h2>
<span class="badge purple">Integration Registry</span>
</div>
<div class="panel-body" style="overflow-x:auto;">
<table class="int-table">
<thead>
<tr>
<th>Project</th>
<th>Current State</th>
<th>Integration Plan</th>
<th>Priority</th>
<th class="effort">Effort</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>botgen-rust</strong></td>
<td>Active — Discord-based AI agent host</td>
<td>API bridge → agent-command-center.html. Replace Discord dependency with FERROS-native agent console. Phase D-2.</td>
<td><span class="badge red">P0</span></td>
<td class="effort">3–6 weeks</td>
</tr>
<tr>
<td><strong>HeroProtagonist.dao</strong></td>
<td>Identity/workspace system (planning)</td>
<td>Become the identity layer for personal-profile.html. User DID / credential verification hash. Phase 2 kernel roadmap.</td>
<td><span class="badge amber">P1</span></td>
<td class="effort">2–4 weeks</td>
</tr>
<tr>
<td><strong>Fitness / Habit tracker</strong></td>
<td>Spreadsheet or app (if exists)</td>
<td>Import as Discipline + Wellness XP source in personal-profile.html. Expose via schedule-ledger.html daily tasks.</td>
<td><span class="badge amber">P1</span></td>
<td class="effort">1–2 weeks</td>
</tr>
<tr>
<td><strong>Home automation scripts</strong></td>
<td>Ad-hoc shell/Python scripts</td>
<td>Wrap as FERROS agents. Surface status in the archived <code>docs/legacy/home-hud-dashboard.html</code> device panel. Earn Craft + Governance XP.</td>
<td><span class="badge">P2</span></td>
<td class="effort">2–3 weeks</td>
</tr>
<tr>
<td><strong>Research / reading notes</strong></td>
<td>Markdown files, browser bookmarks</td>
<td>Index into personal-profile.html Learning Journal. Each doc read = Knowledge XP event logged.</td>
<td><span class="badge">P2</span></td>
<td class="effort">1 week</td>
</tr>
<tr>
<td><strong>Add project here</strong></td>
<td><em style="color:var(--text-dim);">Describe current state</em></td>
<td><em style="color:var(--text-dim);">Which HTML interface, which XP category, which phase</em></td>
<td>—</td>
<td class="effort">—</td>
</tr>
</tbody>
</table>
</div>
</div>
</section>
<!-- ════════════════════════════════════════════════════
SECTION 7 — RISK REGISTER
════════════════════════════════════════════════════ -->
<section class="section">
<div class="section-title">07 Risk Register</div>
<div class="panel">
<div class="panel-header">
<h2>⚠️ Risks, Severity, & Mitigations</h2>
<span class="badge red">13 Identified Risks</span>
</div>
<div class="panel-body" style="overflow-x:auto;">
<table class="risk-table">
<thead>
<tr>
<th>Risk</th>
<th>Category</th>
<th>Severity</th>
<th>Mitigation</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>GPU availability / cost spike</strong></td>
<td>Hardware</td>
<td><span class="severity-dot sev-high"></span>High</td>
<td>Use existing desktop GPU initially; defer AI cluster to D-5. Plan for RTX 4090 alternative (A6000 refurb).</td>
</tr>
<tr>
<td><strong>botgen-rust API bridge complexity</strong></td>
<td>Timeline</td>
<td><span class="severity-dot sev-high"></span>High</td>
<td>Scope D-2 to a minimal read-only status feed first. Bidirectional control can follow in D-3.</td>
</tr>
<tr>
<td><strong>Jetson JetPack driver friction</strong></td>
<td>Hardware</td>
<td><span class="severity-dot sev-medium"></span>Medium</td>
<td>Follow NVIDIA JetPack 6 official docs. Budget 1–2 weeks for driver setup. Use pre-tested Ubuntu image.</td>
</tr>
<tr>
<td><strong>Home network / ISP variability across 7 homes</strong></td>
<td>Network</td>
<td><span class="severity-dot sev-medium"></span>Medium</td>
<td>WireGuard VPN mesh tolerates varied ISPs. Use dynamic DNS. Graceful offline mode for all HTML interfaces.</td>
</tr>
<tr>
<td><strong>Physical deployment coordination (6 remote homes)</strong></td>
<td>Logistics</td>
<td><span class="severity-dot sev-medium"></span>Medium</td>
<td>Pre-configure hardware before shipping. Remote SSH + WireGuard for post-deployment support. Ship to 1 beta home first.</td>
</tr>
<tr>
<td><strong>Command node as single point of failure</strong></td>
<td>Resilience</td>
<td><span class="severity-dot sev-high"></span>High</td>
<td>UPS backup for command node. Edge nodes operate in local-only mode if command node is offline. Implement health checks.</td>
</tr>
<tr>
<td><strong>SD card corruption on Pi nodes</strong></td>
<td>Hardware</td>
<td><span class="severity-dot sev-medium"></span>Medium</td>
<td>Use read-only SD card mount for HUD. Maintain NFS-boot or USB-SSD fallback. Keep reflash script.</td>
</tr>
<tr>
<td><strong>FERROS kernel timeline slippage</strong></td>
<td>Timeline</td>
<td><span class="severity-dot sev-low"></span>Low (isolated)</td>
<td>Kernel work is parallel track. D-0 through D-6 are fully independent of kernel status. No deployment blockers.</td>
</tr>
<tr>
<td><strong>Privacy / consent at other homes</strong></td>
<td>Governance</td>
<td><span class="severity-dot sev-critical"></span>Critical</td>