@kage-core/kage-graph-mcp 1.1.36 → 1.1.38

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/viewer/styles.css CHANGED
@@ -40,7 +40,7 @@ body {
40
40
  min-width: 320px;
41
41
  background: #050806;
42
42
  color: var(--text);
43
- font: 13px/1.45 ui-monospace, "SFMono-Regular", "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
43
+ font: 14px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
44
44
  }
45
45
 
46
46
  button, input, select { font: inherit; }
@@ -48,7 +48,7 @@ h1, h2, p { margin: 0; }
48
48
  h1 { font-size: clamp(20px, 2vw, 28px); line-height: 1; letter-spacing: 0; }
49
49
  h2 {
50
50
  color: var(--terminal);
51
- font-size: 13px;
51
+ font-size: 14px;
52
52
  letter-spacing: 0;
53
53
  text-shadow: 0 0 10px rgba(65, 255, 143, 0.18);
54
54
  text-transform: none;
@@ -57,7 +57,7 @@ h2 {
57
57
  .viewer-shell {
58
58
  min-height: 100vh;
59
59
  display: grid;
60
- grid-template-columns: 248px minmax(0, 1fr);
60
+ grid-template-columns: 236px minmax(0, 1fr);
61
61
  background:
62
62
  radial-gradient(circle at 0 0, rgba(65, 255, 143, 0.15), transparent 320px),
63
63
  linear-gradient(180deg, rgba(65, 255, 143, 0.06), transparent 300px),
@@ -70,8 +70,8 @@ h2 {
70
70
  height: 100vh;
71
71
  display: grid;
72
72
  grid-template-rows: auto auto minmax(0, 1fr) auto;
73
- gap: 18px;
74
- padding: 18px 14px;
73
+ gap: 22px;
74
+ padding: 22px 16px;
75
75
  border-right: 1px solid rgba(65, 255, 143, 0.13);
76
76
  background:
77
77
  radial-gradient(circle at 0 0, rgba(65, 255, 143, 0.12), transparent 230px),
@@ -105,8 +105,8 @@ h2 {
105
105
 
106
106
  .repo-card {
107
107
  display: grid;
108
- gap: 6px;
109
- padding: 13px;
108
+ gap: 7px;
109
+ padding: 14px;
110
110
  border: 1px solid rgba(65, 255, 143, 0.12);
111
111
  border-radius: 10px;
112
112
  background: rgba(13, 25, 19, 0.62);
@@ -136,13 +136,13 @@ h2 {
136
136
 
137
137
  .app-header {
138
138
  display: grid;
139
- grid-template-columns: minmax(320px, 1fr) auto auto;
139
+ grid-template-columns: minmax(320px, 1fr) auto;
140
140
  grid-template-areas:
141
- "brand status picker"
142
- "brand autoload picker";
143
- gap: 10px 16px;
141
+ "brand status"
142
+ "brand autoload";
143
+ gap: 10px 20px;
144
144
  align-items: center;
145
- padding: 18px 22px;
145
+ padding: 24px 32px;
146
146
  border-bottom: 1px solid var(--line);
147
147
  background: rgba(5, 8, 6, 0.84);
148
148
  backdrop-filter: blur(16px);
@@ -154,7 +154,7 @@ h2 {
154
154
  .brand-block {
155
155
  grid-area: brand;
156
156
  min-width: 280px;
157
- max-width: 620px;
157
+ max-width: 780px;
158
158
  }
159
159
  .eyebrow {
160
160
  display: inline-flex;
@@ -173,15 +173,15 @@ h2 {
173
173
  text-shadow: 0 0 18px rgba(65, 255, 143, 0.46), 0 0 42px rgba(65, 255, 143, 0.18);
174
174
  }
175
175
  .app-header p {
176
- margin-top: 4px;
176
+ margin-top: 8px;
177
177
  color: var(--muted);
178
- font-size: 12px;
178
+ font-size: 13px;
179
179
  overflow-wrap: anywhere;
180
180
  }
181
181
 
182
182
  .viewer-sections {
183
183
  display: grid;
184
- gap: 4px;
184
+ gap: 8px;
185
185
  align-content: start;
186
186
  }
187
187
 
@@ -189,17 +189,21 @@ h2 {
189
189
  display: inline-flex;
190
190
  align-items: center;
191
191
  justify-content: flex-start;
192
- min-height: 36px;
193
- padding: 0 11px;
192
+ min-height: 40px;
193
+ padding: 0 12px;
194
194
  border: 1px solid transparent;
195
195
  border-radius: 8px;
196
196
  background: transparent;
197
197
  box-shadow: none;
198
198
  color: var(--terminal-dim);
199
- font-size: 13px;
199
+ font-size: 14px;
200
200
  font-weight: 720;
201
201
  text-decoration: none;
202
202
  }
203
+
204
+ .sidebar-secondary {
205
+ display: none;
206
+ }
203
207
  .viewer-section:hover {
204
208
  border-color: rgba(65, 255, 143, 0.30);
205
209
  color: var(--terminal-strong);
@@ -230,7 +234,7 @@ h2 {
230
234
 
231
235
  .status-strip {
232
236
  grid-area: status;
233
- display: flex;
237
+ display: none;
234
238
  flex-wrap: wrap;
235
239
  gap: 8px;
236
240
  justify-content: flex-start;
@@ -238,7 +242,7 @@ h2 {
238
242
 
239
243
  .autoload-status {
240
244
  grid-area: autoload;
241
- display: inline-flex;
245
+ display: none;
242
246
  align-items: center;
243
247
  min-height: 26px;
244
248
  padding: 3px 9px;
@@ -294,6 +298,7 @@ h2 {
294
298
  box-shadow: inset 0 0 0 1px rgba(65, 255, 143, 0.10);
295
299
  }
296
300
  .file-picker { grid-area: picker; }
301
+ .app-header .file-picker { display: none; }
297
302
  .file-picker:hover, button:hover { background: #0d1f15; }
298
303
  .file-picker input {
299
304
  position: absolute;
@@ -315,8 +320,8 @@ h2 {
315
320
  display: grid;
316
321
  grid-template-columns: minmax(0, 1fr);
317
322
  grid-template-areas: "dashboard";
318
- gap: 18px;
319
- padding: 22px;
323
+ gap: 24px;
324
+ padding: 32px;
320
325
  min-height: calc(100vh - 78px);
321
326
  align-items: start;
322
327
  }
@@ -332,7 +337,7 @@ h2 {
332
337
  border-radius: 0;
333
338
  background: transparent;
334
339
  box-shadow: none;
335
- overflow: auto;
340
+ overflow: visible;
336
341
  }
337
342
 
338
343
  body.viewer-section-overview .dashboard-panel { display: block; }
@@ -341,7 +346,7 @@ body.viewer-section-overview .workspace-shell { display: none; }
341
346
  body.viewer-section-graph .dashboard-panel { display: none; }
342
347
  body.viewer-page-overview .layout { grid-template-areas: "dashboard"; }
343
348
  body.viewer-page-graph .layout {
344
- grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
349
+ grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
345
350
  grid-template-areas: "graph workspace";
346
351
  align-items: stretch;
347
352
  }
@@ -421,36 +426,36 @@ body.viewer-page-data .graph-panel {
421
426
 
422
427
  .dashboard-stats {
423
428
  display: grid;
424
- grid-template-columns: repeat(4, minmax(0, 1fr));
425
- gap: 12px;
426
- margin-bottom: 18px;
429
+ grid-template-columns: repeat(3, minmax(0, 1fr));
430
+ gap: 18px;
431
+ margin-bottom: 22px;
427
432
  }
428
433
  .dashboard-stat {
429
- min-height: 118px;
430
- padding: 16px;
434
+ min-height: 142px;
435
+ padding: 22px;
431
436
  border: 1px solid rgba(65, 255, 143, 0.12);
432
- border-radius: 12px;
437
+ border-radius: 10px;
433
438
  background: rgba(8, 17, 13, 0.82);
434
439
  }
435
440
  .dashboard-stat strong {
436
441
  display: block;
437
442
  color: var(--terminal-strong);
438
- margin-top: 9px;
439
- font-size: 22px;
443
+ margin-top: 12px;
444
+ font-size: 28px;
440
445
  line-height: 1.05;
441
446
  }
442
447
  .dashboard-stat span {
443
448
  display: block;
444
449
  color: var(--terminal-dim);
445
- font-size: 11px;
450
+ font-size: 12px;
446
451
  font-weight: 760;
447
452
  text-transform: uppercase;
448
453
  }
449
454
  .dashboard-stat em {
450
455
  display: block;
451
- margin-top: 9px;
456
+ margin-top: 12px;
452
457
  color: var(--muted);
453
- font-size: 11px;
458
+ font-size: 13px;
454
459
  font-style: normal;
455
460
  line-height: 1.35;
456
461
  }
@@ -459,18 +464,157 @@ body.viewer-page-data .graph-panel {
459
464
  .dashboard-stat-warn strong { color: var(--warn); }
460
465
  .dashboard-stat-code strong { color: var(--code); }
461
466
 
462
- .dashboard-charts {
467
+ .repo-xray {
468
+ margin-bottom: 22px;
469
+ padding: 22px;
470
+ border: 1px solid rgba(106, 215, 255, 0.20);
471
+ border-radius: 10px;
472
+ background:
473
+ linear-gradient(135deg, rgba(7, 19, 18, 0.92), rgba(10, 14, 24, 0.76));
474
+ }
475
+
476
+ .repo-xray-head {
477
+ display: flex;
478
+ align-items: start;
479
+ justify-content: space-between;
480
+ gap: 18px;
481
+ margin-bottom: 10px;
482
+ }
483
+
484
+ .repo-xray-head span {
485
+ display: block;
486
+ color: var(--code);
487
+ font-size: 11px;
488
+ font-weight: 820;
489
+ text-transform: uppercase;
490
+ }
491
+
492
+ .repo-xray-head h2 {
493
+ margin-top: 5px;
494
+ color: var(--text);
495
+ font-size: 24px;
496
+ line-height: 1.12;
497
+ }
498
+
499
+ .repo-xray-head strong {
500
+ flex: 0 0 auto;
501
+ color: var(--terminal-strong);
502
+ font-size: 12px;
503
+ text-transform: uppercase;
504
+ }
505
+
506
+ .repo-xray > p {
507
+ max-width: 900px;
508
+ color: var(--muted);
509
+ font-size: 13px;
510
+ line-height: 1.45;
511
+ }
512
+
513
+ .repo-xray-layers {
463
514
  display: grid;
464
- grid-template-columns: repeat(4, minmax(0, 1fr));
515
+ grid-template-columns: repeat(3, minmax(0, 1fr));
465
516
  gap: 12px;
466
- margin-bottom: 18px;
517
+ margin-top: 16px;
518
+ }
519
+
520
+ .repo-xray-layer {
521
+ min-height: 190px;
522
+ padding: 14px;
523
+ border: 1px solid rgba(65, 255, 143, 0.12);
524
+ border-radius: 8px;
525
+ background: rgba(6, 16, 11, 0.76);
526
+ }
527
+
528
+ .repo-xray-layer-head {
529
+ display: flex;
530
+ justify-content: space-between;
531
+ gap: 10px;
532
+ margin-bottom: 12px;
533
+ }
534
+
535
+ .repo-xray-layer-head strong {
536
+ display: block;
537
+ color: var(--terminal-strong);
538
+ font-size: 13px;
539
+ }
540
+
541
+ .repo-xray-layer-head span {
542
+ display: block;
543
+ margin-top: 4px;
544
+ color: var(--terminal-dim);
545
+ font-size: 11px;
546
+ line-height: 1.35;
547
+ }
548
+
549
+ .repo-xray-layer-head em {
550
+ color: var(--code);
551
+ font-size: 16px;
552
+ font-style: normal;
553
+ font-weight: 820;
554
+ }
555
+
556
+ .repo-xray-items {
557
+ display: grid;
558
+ gap: 8px;
559
+ }
560
+
561
+ .repo-xray-item {
562
+ width: 100%;
563
+ min-width: 0;
564
+ display: grid;
565
+ align-items: stretch;
566
+ justify-content: stretch;
567
+ gap: 8px;
568
+ padding: 10px;
569
+ border: 1px solid rgba(65, 255, 143, 0.10);
570
+ border-radius: 6px;
571
+ background: rgba(1, 8, 6, 0.56);
572
+ color: var(--muted);
573
+ text-align: left;
574
+ white-space: normal;
575
+ }
576
+
577
+ .repo-xray-item span { min-width: 0; }
578
+
579
+ .repo-xray-item strong {
580
+ display: block;
581
+ color: var(--text);
582
+ font-size: 12px;
583
+ overflow-wrap: anywhere;
584
+ }
585
+
586
+ .repo-xray-item em {
587
+ display: block;
588
+ margin-top: 3px;
589
+ color: var(--terminal-dim);
590
+ font-size: 10px;
591
+ font-style: normal;
592
+ line-height: 1.35;
593
+ overflow-wrap: anywhere;
594
+ }
595
+
596
+ .repo-xray-item i {
597
+ display: block;
598
+ height: 4px;
599
+ border-radius: 999px;
600
+ background: var(--terminal-strong);
601
+ }
602
+
603
+ .repo-xray-item-watch i { background: var(--warn); }
604
+ .repo-xray-item-risk i { background: var(--danger); }
605
+
606
+ .dashboard-charts {
607
+ display: grid;
608
+ grid-template-columns: repeat(3, minmax(0, 1fr));
609
+ gap: 18px;
610
+ margin-bottom: 22px;
467
611
  }
468
612
 
469
613
  .metric-card {
470
- min-height: 160px;
471
- padding: 13px;
614
+ min-height: 178px;
615
+ padding: 18px;
472
616
  border: 1px solid rgba(65, 255, 143, 0.13);
473
- border-radius: 10px;
617
+ border-radius: 8px;
474
618
  background: rgba(6, 16, 11, 0.86);
475
619
  overflow: hidden;
476
620
  }
@@ -579,17 +723,17 @@ body.viewer-page-data .graph-panel {
579
723
 
580
724
  .dashboard-grid {
581
725
  display: grid;
582
- grid-template-columns: repeat(4, minmax(0, 1fr));
583
- gap: 14px;
726
+ grid-template-columns: repeat(3, minmax(0, 1fr));
727
+ gap: 18px;
584
728
  }
585
729
  .dashboard-card {
586
- min-height: 220px;
730
+ min-height: 238px;
587
731
  display: flex;
588
732
  flex-direction: column;
589
- gap: 10px;
590
- padding: 18px;
733
+ gap: 13px;
734
+ padding: 22px;
591
735
  border: 1px solid rgba(65, 255, 143, 0.12);
592
- border-radius: 12px;
736
+ border-radius: 10px;
593
737
  background: rgba(8, 17, 13, 0.78);
594
738
  }
595
739
  .dashboard-card-head {
@@ -608,7 +752,7 @@ body.viewer-page-data .graph-panel {
608
752
  }
609
753
  .dashboard-card h3 {
610
754
  color: var(--terminal);
611
- font-size: 17px;
755
+ font-size: 19px;
612
756
  line-height: 1.2;
613
757
  text-shadow: 0 0 9px rgba(65, 255, 143, 0.16);
614
758
  }
@@ -629,10 +773,10 @@ body.viewer-page-data .graph-panel {
629
773
  display: flex;
630
774
  justify-content: space-between;
631
775
  gap: 10px;
632
- padding-top: 7px;
776
+ padding-top: 9px;
633
777
  border-top: 1px solid rgba(65, 255, 143, 0.10);
634
778
  color: var(--muted);
635
- font-size: 11px;
779
+ font-size: 12px;
636
780
  }
637
781
  .dashboard-card li strong {
638
782
  color: var(--terminal);
@@ -644,6 +788,10 @@ body.viewer-page-data .graph-panel {
644
788
  overflow-wrap: anywhere;
645
789
  }
646
790
 
791
+ #dashboardReview {
792
+ display: none;
793
+ }
794
+
647
795
  .workspace-shell {
648
796
  grid-area: workspace;
649
797
  position: relative;
@@ -661,6 +809,7 @@ body.viewer-page-data .graph-panel {
661
809
 
662
810
  .workspace-body {
663
811
  min-height: 0;
812
+ height: 100%;
664
813
  display: grid;
665
814
  gap: 14px;
666
815
  }
@@ -819,31 +968,44 @@ body.viewer-page-graph .workspace-body {
819
968
  display: block;
820
969
  }
821
970
  body.viewer-page-graph .control-panel,
822
- body.viewer-page-graph .graph-insights-panel { display: block; }
971
+ body.viewer-page-graph .graph-insights-panel { display: none; }
972
+ body.viewer-page-graph .control-panel { display: block; }
823
973
  body.viewer-page-graph .details-panel { display: flex; }
824
974
  body.viewer-page-graph:not(.has-selection) .details-panel { display: none; }
825
975
  body.viewer-page-graph .workspace-shell {
976
+ min-height: 0;
977
+ height: calc(100vh - 176px);
826
978
  max-height: calc(100vh - 176px);
827
979
  overflow: auto;
828
980
  overscroll-behavior: contain;
829
981
  }
830
982
  body.viewer-page-graph .metrics-grid { display: none; }
831
983
  body.viewer-page-graph .control-panel,
832
- body.viewer-page-graph .graph-insights-panel,
833
- body.viewer-page-graph .details-panel { margin-bottom: 14px; }
984
+ body.viewer-page-graph .details-panel { margin-bottom: 16px; }
985
+ body.viewer-page-graph .graph-panel {
986
+ min-height: 0;
987
+ height: calc(100vh - 176px);
988
+ }
989
+ body.viewer-page-graph .graph-canvas-wrap,
990
+ body.viewer-page-graph #graphCanvas,
991
+ body.viewer-page-graph .three-graph,
992
+ body.viewer-page-graph #graphSvg {
993
+ min-height: 0;
994
+ }
834
995
  body.viewer-page-review .workspace-body {
835
- grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
996
+ grid-template-columns: minmax(0, 1fr);
836
997
  align-items: stretch;
837
998
  }
838
- body.viewer-page-review .review-panel,
839
- body.viewer-page-review .proof-panel {
999
+ body.viewer-page-review .review-panel {
840
1000
  display: block;
841
1001
  }
1002
+ body.viewer-page-review .proof-panel { display: none; }
842
1003
  body.viewer-page-owners .workspace-body,
843
1004
  body.viewer-page-intel .workspace-body { grid-template-columns: minmax(0, 1fr); }
844
1005
  body.viewer-page-memory .workspace-body {
845
1006
  grid-template-columns: minmax(0, 1fr);
846
1007
  align-items: stretch;
1008
+ height: auto;
847
1009
  }
848
1010
  body.viewer-page-memory.has-selection .workspace-body {
849
1011
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
@@ -851,9 +1013,18 @@ body.viewer-page-memory.has-selection .workspace-body {
851
1013
  body.viewer-page-memory .memory-panel,
852
1014
  body.viewer-page-owners .owners-panel,
853
1015
  body.viewer-page-intel .intelligence-panel { display: block; }
854
- body.viewer-page-memory .memory-panel { order: 0; }
1016
+ body.viewer-page-memory .memory-panel {
1017
+ order: 0;
1018
+ min-height: 0;
1019
+ }
855
1020
  body.viewer-page-memory .details-panel { order: 1; display: none; }
856
- body.viewer-page-memory.has-selection .details-panel { display: flex; }
1021
+ body.viewer-page-memory.has-selection .details-panel {
1022
+ display: flex;
1023
+ max-height: calc(100vh - 176px);
1024
+ min-height: 0;
1025
+ position: sticky;
1026
+ top: 146px;
1027
+ }
857
1028
  body.viewer-page-data .workspace-body {
858
1029
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(300px, 360px);
859
1030
  align-items: stretch;
@@ -866,10 +1037,15 @@ body.viewer-page-data .details-panel {
866
1037
  }
867
1038
 
868
1039
  body.viewer-page-memory .workspace-shell,
1040
+ body.viewer-page-intel .workspace-shell,
1041
+ body.viewer-page-owners .workspace-shell,
869
1042
  body.viewer-page-review .workspace-shell,
870
1043
  body.viewer-page-data .workspace-shell {
871
- max-height: calc(100vh - 176px);
872
- overflow: hidden;
1044
+ min-height: calc(100vh - 176px);
1045
+ height: auto;
1046
+ max-height: none;
1047
+ overflow: visible;
1048
+ overscroll-behavior: auto;
873
1049
  }
874
1050
 
875
1051
  .workspace-shell .metrics-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@@ -939,6 +1115,10 @@ input:focus, select:focus, button:focus, .file-picker:focus-within {
939
1115
  border-radius: 4px;
940
1116
  background: rgba(5, 16, 18, 0.58);
941
1117
  }
1118
+
1119
+ .inspector-path-finder {
1120
+ display: none !important;
1121
+ }
942
1122
  .path-finder-header {
943
1123
  display: flex;
944
1124
  align-items: center;
@@ -1349,27 +1529,26 @@ body:not(.has-code-selection) .inspector-path-finder { display: none; }
1349
1529
  }
1350
1530
 
1351
1531
  .table-panel { min-height: 0; overflow: hidden; }
1352
- .review-panel, .proof-panel, .intelligence-panel, .memory-panel, .owners-panel { min-height: 0; overflow: hidden; }
1532
+ .review-panel, .proof-panel, .intelligence-panel, .memory-panel, .owners-panel { min-height: 0; overflow: visible; }
1353
1533
  body.viewer-page-memory .memory-panel,
1354
1534
  body.viewer-page-review .review-panel,
1355
- body.viewer-page-review .proof-panel,
1356
1535
  body.viewer-page-data .table-panel {
1357
1536
  display: flex;
1358
1537
  flex-direction: column;
1359
1538
  }
1360
1539
  .list { height: calc(100% - 48px); overflow: auto; padding: 0 8px 10px; }
1361
1540
  .review-list, .proof-list, .memory-list, .owners-list {
1362
- height: calc(100% - 48px);
1363
- overflow: auto;
1541
+ height: auto;
1542
+ overflow: visible;
1364
1543
  padding: 0 10px 12px;
1365
1544
  }
1366
1545
  .intelligence-list {
1367
- height: calc(100% - 48px);
1368
- overflow: auto;
1369
- padding: 0 10px 12px;
1546
+ height: auto;
1547
+ overflow: visible;
1548
+ padding: 0 14px 16px;
1370
1549
  display: grid;
1371
1550
  grid-template-columns: repeat(3, minmax(0, 1fr));
1372
- gap: 8px;
1551
+ gap: 16px;
1373
1552
  align-content: start;
1374
1553
  }
1375
1554
  .intel-guide {
@@ -1395,8 +1574,37 @@ body.viewer-page-data .table-panel {
1395
1574
  .intel-deep-grid {
1396
1575
  grid-column: 1 / -1;
1397
1576
  display: grid;
1398
- grid-template-columns: repeat(3, minmax(0, 1fr));
1399
- gap: 8px;
1577
+ grid-template-columns: repeat(2, minmax(0, 1fr));
1578
+ gap: 14px;
1579
+ }
1580
+
1581
+ .intel-deep-drawer {
1582
+ grid-column: 1 / -1;
1583
+ border: 1px solid rgba(65, 255, 143, 0.16);
1584
+ border-radius: 8px;
1585
+ background: rgba(4, 13, 8, 0.72);
1586
+ overflow: hidden;
1587
+ }
1588
+
1589
+ .intel-deep-drawer summary {
1590
+ min-height: 46px;
1591
+ display: flex;
1592
+ align-items: center;
1593
+ justify-content: space-between;
1594
+ gap: 12px;
1595
+ padding: 0 14px;
1596
+ color: var(--terminal-strong);
1597
+ cursor: pointer;
1598
+ }
1599
+
1600
+ .intel-deep-drawer summary em {
1601
+ color: var(--terminal-dim);
1602
+ font-size: 12px;
1603
+ font-style: normal;
1604
+ }
1605
+
1606
+ .intel-deep-drawer .intel-deep-grid {
1607
+ padding: 14px;
1400
1608
  }
1401
1609
 
1402
1610
  .proof-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@@ -1416,37 +1624,414 @@ body.viewer-page-data .table-panel {
1416
1624
  grid-template-columns: repeat(2, minmax(0, 1fr));
1417
1625
  }
1418
1626
 
1419
- .memory-overview .metric-card,
1420
- .owners-summary .metric-card,
1421
- .review-overview .metric-card,
1422
- .proof-overview .metric-card {
1423
- min-height: 132px;
1424
- padding: 11px;
1627
+ body.viewer-page-memory .memory-overview {
1628
+ display: none;
1425
1629
  }
1426
1630
 
1427
- .memory-overview .metric-visual,
1428
- .owners-summary .metric-visual,
1429
- .review-overview .metric-visual,
1430
- .proof-overview .metric-visual {
1431
- grid-template-columns: 58px minmax(0, 1fr);
1432
- gap: 10px;
1631
+ body.viewer-page-memory .memory-list {
1632
+ height: auto;
1633
+ min-height: 280px;
1634
+ flex: 0 0 auto;
1635
+ overflow: visible;
1433
1636
  }
1434
1637
 
1435
- .memory-overview .metric-donut,
1436
- .owners-summary .metric-donut,
1437
- .review-overview .metric-donut,
1438
- .proof-overview .metric-donut {
1439
- width: 56px;
1440
- height: 56px;
1638
+ .memory-governance {
1639
+ flex: 0 0 auto;
1640
+ min-height: 0;
1641
+ margin: 0 10px 12px;
1642
+ border: 1px solid rgba(65, 255, 143, 0.18);
1643
+ border-radius: 8px;
1644
+ background: rgba(4, 13, 8, 0.76);
1645
+ overflow: hidden;
1441
1646
  }
1442
1647
 
1443
- .memory-list {
1444
- display: grid;
1445
- gap: 8px;
1446
- align-content: start;
1447
- height: calc(100% - 338px);
1648
+ .memory-governance[open] {
1649
+ max-height: min(56vh, 620px);
1448
1650
  overflow: auto;
1449
- padding: 0 10px 12px;
1651
+ overscroll-behavior: contain;
1652
+ }
1653
+
1654
+ .memory-governance summary {
1655
+ min-height: 40px;
1656
+ display: flex;
1657
+ align-items: center;
1658
+ justify-content: space-between;
1659
+ gap: 12px;
1660
+ padding: 0 12px;
1661
+ cursor: pointer;
1662
+ color: var(--terminal-strong);
1663
+ font-size: 12px;
1664
+ font-weight: 800;
1665
+ }
1666
+
1667
+ .memory-governance summary em {
1668
+ color: var(--terminal-dim);
1669
+ font-size: 10px;
1670
+ font-style: normal;
1671
+ font-weight: 760;
1672
+ text-transform: uppercase;
1673
+ }
1674
+
1675
+ .memory-governance > section {
1676
+ margin: 10px;
1677
+ }
1678
+
1679
+ .memory-lifecycle {
1680
+ margin: 0 10px 12px;
1681
+ padding: 12px;
1682
+ border: 1px solid rgba(65, 255, 143, 0.18);
1683
+ border-radius: 8px;
1684
+ background:
1685
+ linear-gradient(180deg, rgba(65, 255, 143, 0.07), rgba(65, 255, 143, 0.025)),
1686
+ rgba(5, 12, 8, 0.86);
1687
+ box-shadow: inset 0 0 0 1px rgba(65, 255, 143, 0.05);
1688
+ }
1689
+
1690
+ .memory-review-actions {
1691
+ margin: 0 10px 12px;
1692
+ padding: 12px;
1693
+ border: 1px solid rgba(65, 255, 143, 0.22);
1694
+ border-radius: 8px;
1695
+ background:
1696
+ radial-gradient(circle at top right, rgba(65, 255, 143, 0.12), transparent 42%),
1697
+ rgba(4, 13, 8, 0.88);
1698
+ box-shadow: 0 0 26px rgba(65, 255, 143, 0.06), inset 0 0 0 1px rgba(65, 255, 143, 0.05);
1699
+ }
1700
+
1701
+ .memory-action-list {
1702
+ display: grid;
1703
+ grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
1704
+ gap: 10px;
1705
+ margin-top: 12px;
1706
+ }
1707
+
1708
+ .memory-action {
1709
+ border: 1px solid rgba(65, 255, 143, 0.17);
1710
+ border-radius: 8px;
1711
+ background: rgba(2, 10, 6, 0.82);
1712
+ padding: 12px;
1713
+ transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
1714
+ }
1715
+
1716
+ .memory-action[role="button"] { cursor: pointer; }
1717
+
1718
+ .memory-action[role="button"]:hover,
1719
+ .memory-action[role="button"]:focus-visible {
1720
+ border-color: rgba(65, 255, 143, 0.38);
1721
+ box-shadow: 0 0 22px rgba(65, 255, 143, 0.12);
1722
+ transform: translateY(-1px);
1723
+ outline: none;
1724
+ }
1725
+
1726
+ .memory-action-warn { border-color: rgba(255, 209, 102, 0.24); }
1727
+ .memory-action-ok { border-color: rgba(65, 255, 143, 0.26); }
1728
+ .memory-action-info { border-color: rgba(106, 215, 255, 0.22); }
1729
+
1730
+ .memory-action-head {
1731
+ display: flex;
1732
+ align-items: start;
1733
+ justify-content: space-between;
1734
+ gap: 10px;
1735
+ }
1736
+
1737
+ .memory-action-head span {
1738
+ border: 1px solid rgba(65, 255, 143, 0.18);
1739
+ border-radius: 999px;
1740
+ color: var(--accent);
1741
+ font-size: 10px;
1742
+ font-weight: 800;
1743
+ letter-spacing: 0;
1744
+ padding: 3px 7px;
1745
+ text-transform: uppercase;
1746
+ white-space: nowrap;
1747
+ }
1748
+
1749
+ .memory-action-head strong {
1750
+ color: var(--terminal-strong);
1751
+ font-size: 12px;
1752
+ line-height: 1.35;
1753
+ text-align: right;
1754
+ overflow-wrap: anywhere;
1755
+ }
1756
+
1757
+ .memory-action p,
1758
+ .memory-action em {
1759
+ display: block;
1760
+ color: var(--muted);
1761
+ font-size: 11px;
1762
+ line-height: 1.45;
1763
+ margin: 10px 0 0;
1764
+ overflow-wrap: anywhere;
1765
+ }
1766
+
1767
+ .memory-action em {
1768
+ color: var(--terminal-strong);
1769
+ font-style: normal;
1770
+ }
1771
+
1772
+ .session-capture {
1773
+ margin: 0 10px 12px;
1774
+ padding: 12px;
1775
+ border: 1px solid rgba(106, 215, 255, 0.18);
1776
+ border-radius: 8px;
1777
+ background:
1778
+ linear-gradient(180deg, rgba(106, 215, 255, 0.07), rgba(65, 255, 143, 0.02)),
1779
+ rgba(5, 12, 10, 0.86);
1780
+ box-shadow: inset 0 0 0 1px rgba(106, 215, 255, 0.04);
1781
+ }
1782
+
1783
+ .session-capture-list {
1784
+ display: grid;
1785
+ grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
1786
+ gap: 10px;
1787
+ margin-top: 12px;
1788
+ }
1789
+
1790
+ .session-capture-card {
1791
+ border: 1px solid rgba(106, 215, 255, 0.16);
1792
+ border-radius: 8px;
1793
+ background: rgba(3, 11, 10, 0.82);
1794
+ padding: 12px;
1795
+ }
1796
+
1797
+ .session-capture-head {
1798
+ display: flex;
1799
+ align-items: flex-start;
1800
+ justify-content: space-between;
1801
+ gap: 10px;
1802
+ }
1803
+
1804
+ .session-capture-head strong {
1805
+ display: block;
1806
+ color: var(--terminal-strong);
1807
+ font-size: 12px;
1808
+ overflow-wrap: anywhere;
1809
+ }
1810
+
1811
+ .session-capture-head span,
1812
+ .session-capture-card p {
1813
+ color: var(--muted);
1814
+ font-size: 11px;
1815
+ line-height: 1.45;
1816
+ }
1817
+
1818
+ .session-capture-head em {
1819
+ color: var(--accent);
1820
+ font-size: 11px;
1821
+ font-style: normal;
1822
+ white-space: nowrap;
1823
+ }
1824
+
1825
+ .session-capture-meta {
1826
+ display: flex;
1827
+ flex-wrap: wrap;
1828
+ gap: 6px;
1829
+ margin-top: 10px;
1830
+ }
1831
+
1832
+ .session-capture-meta span {
1833
+ border: 1px solid rgba(106, 215, 255, 0.16);
1834
+ border-radius: 999px;
1835
+ background: rgba(106, 215, 255, 0.05);
1836
+ color: var(--muted);
1837
+ font-size: 10px;
1838
+ padding: 4px 6px;
1839
+ overflow-wrap: anywhere;
1840
+ }
1841
+
1842
+ .lifecycle-head {
1843
+ display: flex;
1844
+ align-items: start;
1845
+ justify-content: space-between;
1846
+ gap: 12px;
1847
+ margin-bottom: 10px;
1848
+ }
1849
+
1850
+ .lifecycle-head h3 {
1851
+ margin: 0;
1852
+ color: var(--terminal-strong);
1853
+ font-size: 13px;
1854
+ text-shadow: 0 0 12px rgba(65, 255, 143, 0.30);
1855
+ }
1856
+
1857
+ .lifecycle-head p {
1858
+ margin-top: 3px;
1859
+ color: var(--muted);
1860
+ font-size: 11px;
1861
+ }
1862
+
1863
+ .lifecycle-head span {
1864
+ min-width: max-content;
1865
+ padding: 4px 8px;
1866
+ border: 1px solid rgba(65, 255, 143, 0.22);
1867
+ border-radius: 999px;
1868
+ color: var(--terminal-strong);
1869
+ font-size: 10px;
1870
+ font-weight: 800;
1871
+ }
1872
+
1873
+ .lifecycle-summary {
1874
+ display: grid;
1875
+ grid-template-columns: repeat(3, minmax(0, 1fr));
1876
+ gap: 8px;
1877
+ margin-bottom: 10px;
1878
+ }
1879
+
1880
+ .lifecycle-step {
1881
+ display: grid;
1882
+ grid-template-columns: 24px minmax(0, 1fr) auto;
1883
+ gap: 6px 8px;
1884
+ align-items: center;
1885
+ padding: 9px;
1886
+ border: 1px solid rgba(65, 255, 143, 0.12);
1887
+ border-radius: 6px;
1888
+ background: rgba(8, 17, 13, 0.82);
1889
+ }
1890
+
1891
+ .lifecycle-step strong {
1892
+ width: 24px;
1893
+ height: 24px;
1894
+ display: grid;
1895
+ place-items: center;
1896
+ border-radius: 50%;
1897
+ background: rgba(65, 255, 143, 0.12);
1898
+ color: var(--terminal-strong);
1899
+ }
1900
+
1901
+ .lifecycle-step span {
1902
+ color: var(--terminal);
1903
+ font-size: 11px;
1904
+ font-weight: 820;
1905
+ }
1906
+
1907
+ .lifecycle-step em {
1908
+ color: var(--code);
1909
+ font-size: 12px;
1910
+ font-style: normal;
1911
+ font-weight: 820;
1912
+ }
1913
+
1914
+ .lifecycle-step p {
1915
+ grid-column: 1 / -1;
1916
+ color: var(--muted);
1917
+ font-size: 10px;
1918
+ line-height: 1.35;
1919
+ }
1920
+
1921
+ .lifecycle-list {
1922
+ display: grid;
1923
+ gap: 8px;
1924
+ max-height: 360px;
1925
+ overflow: auto;
1926
+ padding-right: 2px;
1927
+ }
1928
+
1929
+ .lifecycle-card {
1930
+ padding: 10px;
1931
+ border: 1px solid rgba(65, 255, 143, 0.13);
1932
+ border-radius: 7px;
1933
+ background: rgba(8, 17, 13, 0.76);
1934
+ }
1935
+
1936
+ .lifecycle-card-head {
1937
+ display: flex;
1938
+ justify-content: space-between;
1939
+ gap: 10px;
1940
+ }
1941
+
1942
+ .lifecycle-card-head strong {
1943
+ display: block;
1944
+ color: var(--terminal-strong);
1945
+ font-size: 12px;
1946
+ overflow-wrap: anywhere;
1947
+ }
1948
+
1949
+ .lifecycle-card-head span {
1950
+ display: block;
1951
+ margin-top: 2px;
1952
+ color: var(--terminal-dim);
1953
+ font-size: 10px;
1954
+ }
1955
+
1956
+ .lifecycle-card-head button {
1957
+ min-height: 28px;
1958
+ padding: 0 10px;
1959
+ border: 1px solid rgba(65, 255, 143, 0.22);
1960
+ border-radius: 4px;
1961
+ background: rgba(65, 255, 143, 0.08);
1962
+ color: var(--terminal-strong);
1963
+ font-weight: 780;
1964
+ }
1965
+
1966
+ .lifecycle-card > p {
1967
+ margin: 8px 0 10px;
1968
+ color: var(--muted);
1969
+ font-size: 11px;
1970
+ line-height: 1.4;
1971
+ }
1972
+
1973
+ .lifecycle-flow {
1974
+ display: grid;
1975
+ grid-template-columns: repeat(4, minmax(0, 1fr));
1976
+ gap: 7px;
1977
+ }
1978
+
1979
+ .lifecycle-cell {
1980
+ min-height: 72px;
1981
+ padding: 8px;
1982
+ border: 1px solid rgba(65, 255, 143, 0.10);
1983
+ border-radius: 5px;
1984
+ background: rgba(5, 12, 8, 0.70);
1985
+ }
1986
+
1987
+ .lifecycle-cell span {
1988
+ display: block;
1989
+ margin-bottom: 5px;
1990
+ color: var(--terminal-dim);
1991
+ font-size: 9px;
1992
+ font-weight: 850;
1993
+ text-transform: uppercase;
1994
+ }
1995
+
1996
+ .lifecycle-cell strong {
1997
+ display: block;
1998
+ color: var(--text);
1999
+ font-size: 10px;
2000
+ line-height: 1.35;
2001
+ overflow-wrap: anywhere;
2002
+ }
2003
+
2004
+ .memory-overview .metric-card,
2005
+ .owners-summary .metric-card,
2006
+ .review-overview .metric-card,
2007
+ .proof-overview .metric-card {
2008
+ min-height: 132px;
2009
+ padding: 11px;
2010
+ }
2011
+
2012
+ .memory-overview .metric-visual,
2013
+ .owners-summary .metric-visual,
2014
+ .review-overview .metric-visual,
2015
+ .proof-overview .metric-visual {
2016
+ grid-template-columns: 58px minmax(0, 1fr);
2017
+ gap: 10px;
2018
+ }
2019
+
2020
+ .memory-overview .metric-donut,
2021
+ .owners-summary .metric-donut,
2022
+ .review-overview .metric-donut,
2023
+ .proof-overview .metric-donut {
2024
+ width: 56px;
2025
+ height: 56px;
2026
+ }
2027
+
2028
+ .memory-list {
2029
+ display: grid;
2030
+ gap: 12px;
2031
+ align-content: start;
2032
+ height: auto;
2033
+ overflow: visible;
2034
+ padding: 0 14px 16px;
1450
2035
  }
1451
2036
  .memory-hero {
1452
2037
  margin: 0 10px 10px;
@@ -1469,13 +2054,13 @@ body.viewer-page-data .table-panel {
1469
2054
  }
1470
2055
  .memory-stats {
1471
2056
  display: grid;
1472
- grid-template-columns: repeat(3, minmax(0, 1fr));
1473
- gap: 8px;
1474
- padding: 0 10px 10px;
2057
+ grid-template-columns: repeat(4, minmax(0, 1fr));
2058
+ gap: 12px;
2059
+ padding: 0 14px 14px;
1475
2060
  }
1476
2061
  .memory-stats div {
1477
- min-height: 58px;
1478
- padding: 9px;
2062
+ min-height: 72px;
2063
+ padding: 12px;
1479
2064
  border: 1px solid rgba(65, 255, 143, 0.12);
1480
2065
  border-radius: 8px;
1481
2066
  background: rgba(3, 8, 5, 0.74);
@@ -1496,18 +2081,18 @@ body.viewer-page-data .table-panel {
1496
2081
  .memory-toolbar {
1497
2082
  display: grid;
1498
2083
  grid-template-columns: minmax(0, 1fr) 150px;
1499
- gap: 8px;
1500
- padding: 0 10px 10px;
2084
+ gap: 12px;
2085
+ padding: 0 14px 14px;
1501
2086
  }
1502
2087
 
1503
2088
  .memory-row {
1504
2089
  width: 100%;
1505
2090
  display: grid;
1506
2091
  grid-template-columns: minmax(0, 1fr);
1507
- gap: 6px;
2092
+ gap: 8px;
1508
2093
  align-items: start;
1509
- min-height: 82px;
1510
- padding: 12px;
2094
+ min-height: 96px;
2095
+ padding: 16px;
1511
2096
  border: 1px solid rgba(65, 255, 143, 0.12);
1512
2097
  border-radius: 8px;
1513
2098
  background: rgba(6, 16, 11, 0.88);
@@ -1531,7 +2116,7 @@ body.viewer-page-data .table-panel {
1531
2116
  }
1532
2117
  .memory-row strong {
1533
2118
  color: var(--terminal);
1534
- font-size: 13px;
2119
+ font-size: 14px;
1535
2120
  text-shadow: 0 0 9px rgba(65, 255, 143, 0.14);
1536
2121
  overflow-wrap: anywhere;
1537
2122
  }
@@ -1545,7 +2130,7 @@ body.viewer-page-data .table-panel {
1545
2130
  .memory-row-meta,
1546
2131
  .memory-row-target {
1547
2132
  color: var(--muted);
1548
- font-size: 11px;
2133
+ font-size: 12px;
1549
2134
  line-height: 1.35;
1550
2135
  overflow-wrap: anywhere;
1551
2136
  }
@@ -1563,8 +2148,8 @@ body.viewer-page-data .table-panel {
1563
2148
  grid-template-columns: repeat(3, minmax(0, 1fr));
1564
2149
  gap: 10px;
1565
2150
  align-content: start;
1566
- height: calc(100% - 210px);
1567
- overflow: auto;
2151
+ height: auto;
2152
+ overflow: visible;
1568
2153
  padding: 0 10px 12px;
1569
2154
  }
1570
2155
  .owner-card {
@@ -1620,8 +2205,8 @@ body.viewer-page-data .table-panel {
1620
2205
  white-space: nowrap;
1621
2206
  }
1622
2207
  .intel-card {
1623
- min-height: 210px;
1624
- padding: 13px;
2208
+ min-height: 250px;
2209
+ padding: 18px;
1625
2210
  border: 1px solid var(--line);
1626
2211
  border-radius: 8px;
1627
2212
  background: #06100b;
@@ -1636,7 +2221,7 @@ body.viewer-page-data .table-panel {
1636
2221
  .intel-card h3 {
1637
2222
  margin: 0;
1638
2223
  color: var(--terminal);
1639
- font-size: 12px;
2224
+ font-size: 15px;
1640
2225
  letter-spacing: 0;
1641
2226
  overflow-wrap: anywhere;
1642
2227
  }
@@ -1666,19 +2251,19 @@ body.viewer-page-data .table-panel {
1666
2251
  text-transform: uppercase;
1667
2252
  }
1668
2253
  .intel-highlight {
1669
- margin: 12px 0 0;
2254
+ margin: 14px 0 0;
1670
2255
  color: var(--text);
1671
- font-size: 12px;
2256
+ font-size: 13px;
1672
2257
  line-height: 1.45;
1673
2258
  overflow-wrap: anywhere;
1674
2259
  }
1675
2260
  .intel-action {
1676
- margin: 9px 0 0;
1677
- padding: 8px;
2261
+ margin: 12px 0 0;
2262
+ padding: 11px;
1678
2263
  border-left: 2px solid var(--terminal-strong);
1679
2264
  background: rgba(65, 255, 143, 0.06);
1680
2265
  color: var(--terminal-dim);
1681
- font-size: 11px;
2266
+ font-size: 12px;
1682
2267
  line-height: 1.4;
1683
2268
  }
1684
2269
  .intel-action b {
@@ -1693,11 +2278,19 @@ body.viewer-page-data .table-panel {
1693
2278
  list-style: none;
1694
2279
  }
1695
2280
  .intel-card li {
1696
- padding-top: 5px;
2281
+ padding-top: 8px;
1697
2282
  color: var(--muted);
1698
- font-size: 11px;
2283
+ font-size: 12px;
2284
+ line-height: 1.35;
1699
2285
  overflow-wrap: anywhere;
1700
2286
  }
2287
+ .intel-card li strong {
2288
+ display: block;
2289
+ margin-bottom: 2px;
2290
+ }
2291
+ .intel-card li span {
2292
+ display: block;
2293
+ }
1701
2294
  .intel-card strong { color: var(--terminal-strong); }
1702
2295
  .intel-section {
1703
2296
  min-height: 230px;
@@ -1813,7 +2406,7 @@ body.viewer-page-data .table-panel {
1813
2406
  padding: 10px 0;
1814
2407
  border-top: 1px solid var(--line);
1815
2408
  }
1816
- .review-list { height: calc(100% - 186px); }
2409
+ .review-list { height: auto; }
1817
2410
  .review-title {
1818
2411
  color: var(--terminal);
1819
2412
  font-weight: 820;
@@ -1851,8 +2444,8 @@ body.viewer-page-data .table-panel {
1851
2444
  grid-template-columns: repeat(3, minmax(0, 1fr));
1852
2445
  gap: 8px;
1853
2446
  align-content: start;
1854
- height: calc(100% - 186px);
1855
- overflow: auto;
2447
+ height: auto;
2448
+ overflow: visible;
1856
2449
  padding: 0 10px 12px;
1857
2450
  }
1858
2451
  .proof-item {
@@ -1875,6 +2468,36 @@ body.viewer-page-data .table-panel {
1875
2468
  font-weight: 760;
1876
2469
  text-transform: uppercase;
1877
2470
  }
2471
+ .proof-ledger-item {
2472
+ grid-column: span 1;
2473
+ min-height: 132px;
2474
+ background: linear-gradient(180deg, rgba(12, 34, 23, 0.92), rgba(5, 16, 11, 0.96));
2475
+ }
2476
+ .proof-ledger-item.is-ok {
2477
+ border-color: rgba(53, 246, 159, 0.34);
2478
+ box-shadow: 0 0 18px rgba(53, 246, 159, 0.08);
2479
+ }
2480
+ .proof-ledger-item.is-warn {
2481
+ border-color: rgba(255, 211, 105, 0.36);
2482
+ }
2483
+ .proof-ledger-item code {
2484
+ display: block;
2485
+ margin-top: 10px;
2486
+ padding: 8px;
2487
+ border: 1px solid var(--line);
2488
+ border-radius: 4px;
2489
+ overflow: auto;
2490
+ color: var(--terminal-strong);
2491
+ background: rgba(0, 0, 0, 0.22);
2492
+ font-size: 10px;
2493
+ white-space: nowrap;
2494
+ }
2495
+ .proof-ledger-item p {
2496
+ margin: 9px 0 0;
2497
+ color: var(--terminal-muted);
2498
+ font-size: 11px;
2499
+ line-height: 1.45;
2500
+ }
1878
2501
 
1879
2502
  .debug-guide {
1880
2503
  margin: 0 10px 10px;
@@ -2069,8 +2692,10 @@ body.viewer-page-data .debug-overview {
2069
2692
  .dashboard-hero { grid-template-columns: 1fr; }
2070
2693
  .dashboard-actions { justify-content: flex-start; }
2071
2694
  .dashboard-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
2695
+ .repo-xray-layers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
2072
2696
  .dashboard-charts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
2073
2697
  .dashboard-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
2698
+ .lifecycle-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
2074
2699
  .intelligence-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
2075
2700
  .workspace-shell {
2076
2701
  width: 100%;
@@ -2107,13 +2732,15 @@ body.viewer-page-data .debug-overview {
2107
2732
  .app-header p { font-size: 11px; }
2108
2733
  .dashboard-panel { min-height: 560px; padding: 14px; }
2109
2734
  .dashboard-hero h2 { font-size: 26px; }
2110
- .dashboard-stats, .dashboard-charts, .dashboard-grid { grid-template-columns: 1fr; }
2735
+ .dashboard-stats, .repo-xray-layers, .dashboard-charts, .dashboard-grid { grid-template-columns: 1fr; }
2111
2736
  .dashboard-card { min-height: 0; }
2112
2737
  body.viewer-page-graph .control-panel { grid-template-columns: 1fr; }
2113
2738
  body.viewer-page-graph .workspace-shell { max-height: none; }
2114
2739
  .metrics-grid { grid-template-columns: 1fr 1fr; }
2115
2740
  .proof-list { grid-template-columns: 1fr 1fr; }
2116
2741
  .memory-overview,
2742
+ .lifecycle-summary,
2743
+ .lifecycle-flow,
2117
2744
  .owners-summary,
2118
2745
  .review-overview,
2119
2746
  .proof-overview,
@@ -2122,7 +2749,7 @@ body.viewer-page-data .debug-overview {
2122
2749
  .memory-list,
2123
2750
  .owners-list,
2124
2751
  .review-list,
2125
- .proof-list { height: auto; max-height: 620px; }
2752
+ .proof-list { height: auto; max-height: none; }
2126
2753
  .entities-panel .list { height: auto; max-height: 460px; }
2127
2754
  .intelligence-list { grid-template-columns: 1fr; }
2128
2755
  .intel-guide { grid-template-columns: 1fr; }