-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpresentation.html
More file actions
2193 lines (2096 loc) · 154 KB
/
presentation.html
File metadata and controls
2193 lines (2096 loc) · 154 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>Microsoft Foundry - Enterprise AI</title>
<!-- Reveal.js 5.1.0 (CDN, no build step) -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/reveal.js@5.1.0/dist/reveal.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/reveal.js@5.1.0/dist/theme/black.css" id="theme">
<!-- highlight.js 11.9.0 atom-one-dark theme -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/highlight.js@11.9.0/styles/atom-one-dark.min.css">
<!-- Fonts: Space Grotesk + JetBrains Mono (matches corticalstack.ai) -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&family=Space+Grotesk:wght@400;500;600;700&display=swap">
<style>
/* ========== Theme / brand overrides (cyber-teal, matched to corticalstack.ai) ========== */
:root {
--c-accent: #60dcf6;
--c-accent-bright: #8fe9ff;
--c-bg: #010203;
--c-bg-soft: #060e15;
--c-fg: #eaf2f5;
--c-muted: #8aa0a9;
--c-line: rgba(96, 220, 246, 0.16);
--c-green: #5ad19a;
--c-amber: #ffaa3c;
--c-amber-bright: #ffbf66;
--c-violet: #a48cff;
--c-pink: #e58cb5;
--c-sans: "Space Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
--c-mono: "JetBrains Mono", "SF Mono", Menlo, Consolas, "Courier New", monospace;
}
html, body { background: var(--c-bg); }
.reveal {
font-family: var(--c-sans);
color: var(--c-fg);
background: radial-gradient(circle at 28% -10%, #0b1c25 0%, #060e15 52%, #010203 100%);
-webkit-font-smoothing: antialiased;
}
/* Thin accent rule pinned to the top of every slide */
.reveal::before {
content: "";
position: fixed;
top: 0; left: 0; right: 0;
height: 4px;
background: linear-gradient(90deg, var(--c-accent) 0%, var(--c-accent-bright) 100%);
z-index: 60;
}
/* Persistent brand mark, bottom-left */
.brandmark {
position: fixed;
left: 26px; bottom: 18px;
z-index: 55;
font-family: var(--c-mono);
font-size: 13px;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--c-muted);
pointer-events: none;
}
.brandmark b { color: var(--c-fg); font-weight: 600; }
.brandmark .dot { color: var(--c-accent); }
.reveal .slides { text-align: left; }
.reveal h1, .reveal h2, .reveal h3 {
font-family: var(--c-sans);
text-transform: none;
color: var(--c-fg);
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.04;
margin: 0;
}
.reveal p { line-height: 1.4; }
.reveal .accent { color: var(--c-accent-bright); }
/* ========== Shared content-slide scaffold ========== */
/* Reveal sets the present slide's display inline to block; re-assert flex on the
visible slide only (non-present slides stay display:none, so nothing stacks). */
.reveal .slides > section.present { display: flex !important; }
.reveal section.content {
display: flex;
flex-direction: column;
height: 100%;
padding: 8px 0 58px;
box-sizing: border-box;
}
.kicker {
font-family: var(--c-mono);
font-size: 18px;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--c-accent-bright);
margin-bottom: 10px;
flex: 0 0 auto;
}
.kicker .num { color: var(--c-muted); }
.reveal section.content h2 {
font-size: 44px;
max-width: 94%;
flex: 0 0 auto;
margin-bottom: 28px; /* breathing room between strapline and content */
}
.reveal section.content h2 .q { color: var(--c-muted); }
.subcap { font: 500 15px var(--c-mono); color: var(--c-muted); margin: -18px 0 0; }
.subcap b { color: var(--c-accent-bright); font-weight: 600; }
/* Generic hero wrapper: takes remaining space, centers its diagram */
.canvas {
flex: 1 1 auto; min-height: 0;
display: flex; flex-direction: column;
align-items: center; justify-content: center;
gap: 16px; margin: 4px 0;
}
/* Takeaway bar */
.takeaway {
flex: 0 0 auto;
font-size: 23px;
color: var(--c-fg);
max-width: 96%;
padding-left: 18px;
border-left: 4px solid var(--c-accent);
margin: 0;
}
.takeaway b { color: var(--c-accent-bright); font-weight: 600; }
/* clearance so the takeaway never collides with a tall hero; scoped, not global */
.reveal section.content:has(.canvas) .takeaway { margin-top: 28px; }
/* ========== Title slide ========== */
.reveal section.title { display: flex; flex-direction: column; justify-content: center; height: 100%; }
.title-mark {
font-family: var(--c-mono);
font-size: 18px;
letter-spacing: 0.34em;
text-transform: uppercase;
color: var(--c-muted);
margin-bottom: 26px;
}
.title-mark .dot { color: var(--c-accent); }
.reveal section.title h1 { font-size: 100px; letter-spacing: -0.035em; line-height: 0.94; }
.reveal section.title .subtitle { font-size: 28px; color: var(--c-muted); margin-top: 28px; max-width: 82%; }
.title-foot { margin-top: 50px; font-family: var(--c-mono); font-size: 16px; letter-spacing: 0.06em; color: var(--c-muted); }
.title-foot .accent { color: var(--c-accent-bright); }
.title-foot .who { color: var(--c-fg); font-weight: 600; }
/* ========== Code blocks (atom-one-dark via highlight.js) ========== */
.reveal pre { width: 100%; box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5); margin: 0; }
.reveal pre code {
font-family: var(--c-mono);
font-size: 16px; line-height: 1.5;
border-radius: 10px;
border: 1px solid var(--c-line);
border-top: 3px solid var(--c-accent);
padding: 18px 20px;
}
/* Slide numbers + nav, tuned to brand */
.reveal .slide-number { font-family: var(--c-mono); background: transparent; color: var(--c-muted); font-size: 14px; right: 22px; bottom: 16px; }
.reveal .controls { right: 110px; bottom: 6px; }
.reveal .controls .navigate-left, .reveal .controls .navigate-right { bottom: 0; }
.reveal .progress { color: var(--c-accent); height: 4px; }
/* ========== Reusable primitives ========== */
/* simple "vs" divider used by compare slides */
.vs { flex: 0 0 46px; align-self: stretch; position: relative; display: flex; align-items: center; justify-content: center; }
.vs::before { content: ""; position: absolute; top: 6%; bottom: 6%; left: 50%; border-left: 1px dashed rgba(255, 255, 255, 0.16); }
.vs span {
position: relative; z-index: 1; width: 34px; height: 34px; border-radius: 50%;
display: flex; align-items: center; justify-content: center;
font: 700 11px var(--c-mono); text-transform: uppercase; letter-spacing: 0.08em;
color: var(--c-muted); background: var(--c-bg-soft); border: 1px solid var(--c-line);
}
/* ========== LIVE DEMO marker slide ========== */
.reveal section.demo { height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.demo-badge {
font: 700 14px var(--c-mono); letter-spacing: 0.3em; text-transform: uppercase; color: #04222b;
background: linear-gradient(135deg, var(--c-accent-bright), #2b8fa6);
padding: 8px 22px; border-radius: 99px; display: inline-flex; align-items: center; gap: 11px;
box-shadow: 0 0 0 1px rgba(96, 220, 246, 0.25), 0 16px 40px rgba(0, 0, 0, 0.5);
}
.demo-badge .rec { width: 11px; height: 11px; border-radius: 50%; background: #04222b; animation: recpulse 1.6s ease-in-out infinite; }
@keyframes recpulse { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }
.reveal section.demo h2 { font-size: 52px; margin: 22px 0 8px; max-width: 86%; }
.reveal section.demo .demo-sub { font-size: 20px; color: var(--c-muted); max-width: 64%; margin: 0 auto; line-height: 1.4; }
.demo-where { margin-top: 18px; font: 600 12px var(--c-mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-muted); }
.demo-where b { color: var(--c-accent-bright); }
@media (prefers-reduced-motion: reduce) { .demo-badge .rec { animation: none; } }
/* ========== Act 0: audience map + agenda arc ========== */
.audience { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; width: 100%; }
.aud-card { border: 1px solid var(--c-line); border-radius: 14px; background: rgba(255, 255, 255, 0.03); padding: 20px 22px; display: flex; flex-direction: column; gap: 12px; border-top: 3px solid var(--c-accent); }
.aud-card.dev { border-top-color: var(--c-green); }
.aud-card.it { border-top-color: var(--c-amber); }
.aud-card.sec { border-top-color: var(--c-pink); }
.aud-tag { align-self: flex-start; font: 700 10px var(--c-mono); letter-spacing: 0.18em; color: var(--c-accent); border: 1px solid currentColor; border-radius: 6px; padding: 2px 8px; }
.aud-card.dev .aud-tag { color: var(--c-green); }
.aud-card.it .aud-tag { color: var(--c-amber); }
.aud-card.sec .aud-tag { color: var(--c-pink); }
.aud-role { font: 700 19px var(--c-sans); color: var(--c-fg); letter-spacing: -0.01em; }
.aud-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.aud-card li { font-size: 14px; color: var(--c-muted); line-height: 1.3; padding-left: 16px; position: relative; }
.aud-card li::before { content: ""; position: absolute; left: 0; top: 7px; width: 7px; height: 7px; border-radius: 2px; background: var(--c-accent); }
.aud-card.dev li::before { background: var(--c-green); }
.aud-card.it li::before { background: var(--c-amber); }
.aud-card.sec li::before { background: var(--c-pink); }
.arc { display: flex; gap: 7px; flex-wrap: wrap; justify-content: center; align-items: center; }
.arc-chip { font: 600 12px var(--c-mono); color: var(--c-muted); border: 1px solid var(--c-line); border-radius: 99px; padding: 6px 13px; background: rgba(255, 255, 255, 0.02); }
.arc-chip b { color: var(--c-accent-bright); }
.arc-sep { color: var(--c-line); }
/* ========== Act 1: platform overview map ========== */
.ovw { width: 100%; max-width: 1220px; }
.ovw-frame { border: 1px solid var(--c-line); border-radius: 16px; padding: 18px 16px 16px; background: rgba(96, 220, 246, 0.03); position: relative; display: flex; flex-direction: column; gap: 11px; }
.ovw-brand { position: absolute; top: -14px; left: 26px; background: var(--c-bg-soft); padding: 3px 14px; font: 700 13px var(--c-mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-accent-bright); border: 1px solid var(--c-line); border-radius: 99px; }
.ovw-ns { position: absolute; top: -13px; right: 22px; font: 500 11px var(--c-mono); color: var(--c-muted); background: var(--c-bg-soft); padding: 3px 10px; }
.ovw-row { display: flex; gap: 11px; }
.obox { flex: 1 1 0; border: 1px solid var(--c-line); border-radius: 11px; background: rgba(255, 255, 255, 0.03); padding: 10px 14px; display: flex; flex-direction: column; gap: 4px; border-top: 3px solid var(--c-line); min-width: 0; }
.obox h4 { font: 700 14px var(--c-sans); margin: 0 0 2px; color: var(--c-fg); }
.obox span { font: 500 11.5px var(--c-mono); color: var(--c-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.obox .svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px 14px; }
.obox.obs { border-top-color: var(--c-violet); }
.obox.dev { border-top-color: var(--c-green); }
.obox.svc { border-top-color: var(--c-accent); background: rgba(96, 220, 246, 0.06); }
.obox.models, .obox.kt, .obox.integ { border-top-color: #60a5fa; }
.obox.kt { flex-grow: 1.7; }
.obox.base { border-top-color: var(--c-amber); background: rgba(255, 170, 60, 0.05); }
/* ========== Act 1: Assistants -> Responses terminology map ========== */
.tmap { width: min(840px, 96%); display: flex; flex-direction: column; gap: 9px; font-family: var(--c-mono); }
.tmap-head { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 4px; }
.tmap-head .old { color: var(--c-amber-bright); text-decoration: line-through; font-size: 16px; opacity: 0.85; }
.tmap-head .arr { color: var(--c-muted); font-size: 18px; }
.tmap-head .new { color: var(--c-accent-bright); font-weight: 700; font-size: 18px; }
.tmap-row { display: grid; grid-template-columns: 1fr 44px 1fr; align-items: center; gap: 10px; border: 1px solid var(--c-line); border-radius: 9px; background: rgba(255, 255, 255, 0.02); padding: 9px 16px; }
.tmap-row .o { color: var(--c-muted); text-align: right; font-size: 14px; }
.tmap-row .o s { color: var(--c-amber-bright); opacity: 0.8; }
.tmap-row .a { color: var(--c-accent); text-align: center; }
.tmap-row .n { color: var(--c-fg); font-size: 14px; }
.tmap-row .n b { color: var(--c-accent-bright); }
.tmap-note { text-align: center; border: 1px dashed rgba(255, 170, 60, 0.5); background: rgba(255, 170, 60, 0.06); color: #ffce8a; border-radius: 10px; padding: 10px 16px; font-size: 13px; margin-top: 4px; }
.tmap-note b { color: var(--c-amber-bright); }
/* ========== Act 1: capabilities ribbon (build / operate) ========== */
.caps { display: flex; gap: 12px; width: 100%; max-width: 1220px; }
.capgrp { flex: 1; display: flex; align-items: center; flex-wrap: wrap; gap: 5px 9px; border: 1px solid var(--c-line); border-top-width: 2px; border-radius: 10px; padding: 7px 13px; background: rgba(255, 255, 255, 0.02); font: 500 12px var(--c-mono); color: var(--c-muted); }
.capgrp .capk { font: 700 9.5px var(--c-mono); letter-spacing: 0.14em; padding: 2px 8px; border-radius: 5px; border: 1px solid currentColor; }
.capgrp.build { border-top-color: var(--c-green); }
.capgrp.build .capk { color: var(--c-green); }
.capgrp.operate { border-top-color: var(--c-amber); }
.capgrp.operate .capk { color: var(--c-amber); }
/* ========== Act 2: portal browser mockup ========== */
.portal { width: min(1080px, 99%); border: 1px solid var(--c-line); border-radius: 12px; overflow: hidden; background: #0a0f13; box-shadow: 0 22px 54px rgba(0, 0, 0, 0.5); display: flex; flex-direction: column; }
.pf-bar { display: flex; align-items: center; gap: 12px; padding: 8px 14px; border-bottom: 1px solid var(--c-line); background: rgba(255, 255, 255, 0.04); font-size: 12px; }
.pf-brand { display: flex; align-items: center; gap: 6px; color: var(--c-fg); font-weight: 600; white-space: nowrap; }
.pf-brand .logo { color: var(--c-accent); }
.pf-crumb { color: var(--c-muted); white-space: nowrap; font-family: var(--c-mono); font-size: 11px; }
.pf-search { flex: 0 1 260px; border: 1px solid var(--c-line); border-radius: 7px; padding: 4px 10px; color: var(--c-muted); background: rgba(0, 0, 0, 0.35); font-family: var(--c-mono); font-size: 10.5px; }
.pf-toggle { display: flex; align-items: center; gap: 6px; color: var(--c-accent-bright); font-size: 10.5px; white-space: nowrap; font-family: var(--c-mono); }
.pf-toggle .sw { width: 26px; height: 14px; border-radius: 99px; background: var(--c-accent); position: relative; }
.pf-toggle .sw::after { content: ""; position: absolute; right: 2px; top: 2px; width: 10px; height: 10px; border-radius: 50%; background: #04222b; }
.pf-tabs { display: flex; gap: 16px; margin-left: auto; }
.pf-tab { color: var(--c-muted); font-size: 12.5px; }
.pf-tab.active { color: var(--c-accent-bright); font-weight: 600; border-bottom: 2px solid var(--c-accent); padding-bottom: 2px; }
.pf-icons { color: var(--c-muted); letter-spacing: 3px; font-size: 11px; }
.pf-body { padding: 16px 20px; flex: 1 1 auto; min-height: 0; display: flex; flex-direction: column; gap: 11px; }
/* Home: welcome strip + tab purpose cards */
.pf-home { display: flex; flex-direction: column; gap: 9px; align-items: center; text-align: center; padding: 4px 0 2px; }
.pf-welcome { font: 700 21px var(--c-sans); color: var(--c-fg); }
.pf-startbtn { font: 600 11.5px var(--c-mono); color: #04222b; background: var(--c-accent); border-radius: 7px; padding: 6px 16px; }
.pf-meta { display: flex; gap: 9px; justify-content: center; flex-wrap: wrap; }
.pf-meta .m { font-family: var(--c-mono); font-size: 10px; color: var(--c-muted); border: 1px solid var(--c-line); border-radius: 6px; padding: 4px 9px; }
.pf-meta .m b { color: var(--c-fg); }
.tabmap { display: grid; grid-template-columns: repeat(5, 1fr); gap: 11px; width: 100%; }
.tabmap-card { border: 1px solid var(--c-line); border-radius: 11px; background: rgba(255, 255, 255, 0.03); padding: 12px 13px; border-top: 3px solid var(--c-accent); display: flex; flex-direction: column; gap: 5px; }
.tabmap-card .tm-t { font: 700 14px var(--c-sans); color: var(--c-accent-bright); }
.tabmap-card .tm-d { font-size: 12.5px; color: var(--c-muted); line-height: 1.3; }
/* Discover: providers + leaderboard */
.disc-head { display: flex; align-items: baseline; gap: 12px; }
.disc-head .dh-t { font: 700 16px var(--c-sans); color: var(--c-fg); }
.disc-head .dh-s { font: 500 11px var(--c-mono); color: var(--c-muted); }
.disc-providers { display: flex; gap: 7px; flex-wrap: wrap; }
.disc-providers .p { font-family: var(--c-mono); font-size: 11px; color: var(--c-fg); border: 1px solid var(--c-line); border-radius: 8px; padding: 5px 11px; background: rgba(255, 255, 255, 0.03); }
.lb { width: 100%; border-collapse: collapse; font-family: var(--c-mono); font-size: 11.5px; }
.lb th { text-align: right; color: var(--c-muted); font-weight: 600; font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.07em; padding: 5px 10px; border-bottom: 1px solid var(--c-line); }
.lb th:first-child { text-align: left; }
.lb td { padding: 5px 10px; color: var(--c-fg); border-bottom: 1px solid rgba(96, 220, 246, 0.07); text-align: right; }
.lb td:first-child { text-align: left; color: var(--c-accent-bright); }
.lb .win { color: var(--c-amber-bright); }
.disc-tools { font-size: 11.5px; color: var(--c-muted); border-left: 3px solid var(--c-accent); padding-left: 10px; }
.disc-tools b { color: var(--c-accent-bright); }
/* Build: left nav building blocks */
.build-wrap { display: flex; gap: 16px; flex: 1 1 auto; min-height: 0; }
.build-nav { flex: 0 0 150px; display: flex; flex-direction: column; gap: 3px; border-right: 1px solid var(--c-line); padding-right: 12px; }
.build-nav .n { font-family: var(--c-mono); font-size: 11.5px; color: var(--c-muted); padding: 5px 9px; border-radius: 6px; }
.build-nav .n.active { color: var(--c-accent-bright); background: rgba(96, 220, 246, 0.08); border-left: 2px solid var(--c-accent); }
.build-main { flex: 1 1 auto; display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.build-note { font-size: 11px; color: #ffce8a; border: 1px dashed rgba(255, 170, 60, 0.5); border-radius: 8px; padding: 7px 12px; background: rgba(255, 170, 60, 0.05); }
.build-note b { color: var(--c-amber-bright); }
.build-actions { display: flex; gap: 8px; }
.build-btn { font: 600 11px var(--c-mono); border-radius: 7px; padding: 6px 13px; }
.build-btn.primary { background: var(--c-accent); color: #04222b; }
.build-btn.ghost { border: 1px solid var(--c-line); color: var(--c-fg); }
.agtbl { width: 100%; border-collapse: collapse; font-family: var(--c-mono); font-size: 11.5px; }
.agtbl th { text-align: left; color: var(--c-muted); font-weight: 600; font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.07em; padding: 5px 9px; border-bottom: 1px solid var(--c-line); }
.agtbl td { padding: 6px 9px; color: var(--c-fg); border-bottom: 1px solid rgba(96, 220, 246, 0.07); }
.agtbl td:first-child { color: var(--c-accent-bright); }
.agtbl .ver { color: var(--c-muted); }
/* Reusable pillar cards (control plane teaser + deep dive) */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; width: 100%; }
.pillar { border: 1px solid var(--c-line); border-radius: 12px; background: rgba(255, 255, 255, 0.03); padding: 15px 16px; border-top: 3px solid var(--c-accent); display: flex; flex-direction: column; gap: 7px; }
.pillar .pl-n { font: 700 9px var(--c-mono); letter-spacing: 0.18em; color: var(--c-muted); }
.pillar .pl-t { font: 700 17px var(--c-sans); color: var(--c-fg); letter-spacing: -0.01em; }
.pillar .pl-d { font-size: 12.5px; color: var(--c-muted); line-height: 1.32; }
.pillar.ctrl { border-top-color: var(--c-accent); }
.pillar.obs { border-top-color: var(--c-green); }
.pillar.sec { border-top-color: var(--c-pink); }
.pillar.flt { border-top-color: var(--c-amber); }
.pillars.g2 { grid-template-columns: repeat(2, 1fr); gap: 18px; }
.pillars.g2 .pillar { padding: 24px 28px; gap: 10px; justify-content: center; }
.pillars.g2 .pl-n { font-size: 10px; }
.pillars.g2 .pl-t { font-size: 24px; }
.pillars.g2 .pl-d { font-size: 15px; }
/* ========== Act 3: resource model (1:1 vs 1:N) ========== */
.resmodel { width: 100%; display: flex; flex-direction: column; gap: 18px; align-items: center; }
.hier { display: flex; align-items: center; justify-content: center; gap: 7px; font-family: var(--c-mono); font-size: 12px; flex-wrap: wrap; }
.hier .h { border: 1px solid var(--c-line); border-radius: 8px; padding: 6px 12px; color: var(--c-muted); }
.hier .h.foundry { border-color: var(--c-accent); color: var(--c-accent-bright); }
.hier .h.proj { border-color: rgba(90, 209, 154, 0.5); color: var(--c-green); }
.hier .ha { color: var(--c-muted); }
.twocol { display: flex; gap: 18px; align-items: stretch; width: 100%; }
.rm-panel { flex: 1 1 0; border: 1px solid var(--c-line); border-radius: 14px; padding: 16px 18px; display: flex; flex-direction: column; gap: 11px; }
.rm-panel.one { border-top: 3px solid var(--c-amber); }
.rm-panel.many { border-top: 3px solid var(--c-green); }
.rm-h { font: 700 17px var(--c-sans); color: var(--c-fg); }
.rm-h small { color: var(--c-muted); font-weight: 400; font-size: 12px; display: block; margin-top: 2px; }
.acct { border: 1px solid var(--c-line); border-radius: 10px; background: rgba(96, 220, 246, 0.05); padding: 11px 12px; }
.acct-label { font: 600 11px var(--c-mono); color: var(--c-accent-bright); margin-bottom: 8px; }
.projrow { display: flex; gap: 7px; flex-wrap: wrap; }
.proj { font: 600 10.5px var(--c-mono); color: var(--c-fg); border: 1px solid var(--c-line); border-radius: 6px; padding: 5px 9px; background: rgba(255, 255, 255, 0.04); }
.proj.cap { color: var(--c-violet); border-color: rgba(164, 140, 255, 0.4); }
.rm-note { font-size: 12.5px; color: var(--c-muted); line-height: 1.35; }
.rm-note b { color: var(--c-fg); }
/* ========== Act 3: hub-and-spoke architecture ========== */
.arch { width: min(1080px, 99%); display: flex; flex-direction: column; align-items: center; gap: 11px; font-family: var(--c-mono); }
.arch-label { font: 600 9.5px var(--c-mono); letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-muted); }
.arch-hubs { display: flex; gap: 12px; justify-content: center; }
.hub { border: 1px solid var(--c-line); border-top: 3px solid var(--c-violet); border-radius: 10px; background: rgba(164, 140, 255, 0.06); padding: 8px 13px; text-align: center; min-width: 168px; }
.hub .hb-n { font: 700 12.5px var(--c-mono); color: var(--c-fg); }
.hub .hb-r { font-size: 9.5px; color: var(--c-muted); margin: 2px 0 6px; }
.hub .hb-m { display: flex; gap: 5px; justify-content: center; flex-wrap: wrap; }
.hub .m { font-size: 9px; color: var(--c-violet); border: 1px solid rgba(164, 140, 255, 0.4); border-radius: 5px; padding: 2px 6px; }
.arch-arrow { color: var(--c-muted); font-size: 10px; display: flex; align-items: center; gap: 10px; }
.arch-arrow .ar { color: var(--c-accent); font-size: 13px; }
.apim { width: 84%; border: 1px solid var(--c-accent); border-radius: 10px; background: rgba(96, 220, 246, 0.08); box-shadow: 0 0 0 1px rgba(96, 220, 246, 0.12); padding: 9px 14px; text-align: center; }
.apim .ap-n { font: 700 13px var(--c-mono); color: var(--c-accent-bright); }
.apim .ap-d { font-size: 9.5px; color: var(--c-muted); margin-top: 3px; }
.arch-spokes { display: flex; gap: 14px; justify-content: center; width: 100%; }
.spoke { flex: 1 1 0; border: 1px solid var(--c-line); border-radius: 10px; padding: 9px 13px; }
.spoke.one { border-top: 3px solid var(--c-amber); }
.spoke.many { border-top: 3px solid var(--c-green); }
.spoke .sp-h { font: 700 12px var(--c-sans); color: var(--c-fg); display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.spoke .badge { font-size: 8px; color: var(--c-amber-bright); border: 1px solid rgba(255, 170, 60, 0.5); border-radius: 99px; padding: 1px 7px; white-space: nowrap; }
.spoke .sp-acct { font-size: 10.5px; color: var(--c-accent-bright); margin: 5px 0; }
.spoke .projrow { gap: 5px; }
.spoke .proj { font-size: 9px; padding: 2px 7px; }
.spoke .sp-conn { font-size: 9px; color: var(--c-muted); margin-top: 6px; }
.spoke .sp-conn b { color: var(--c-green); }
.arch-foot { font: 500 9px var(--c-mono); color: var(--c-muted); text-align: center; max-width: 92%; line-height: 1.4; }
/* ========== Act 3: deny policy ========== */
.policy { display: flex; gap: 20px; align-items: stretch; width: 100%; }
.policy .pcode { flex: 1.25 1 0; display: flex; flex-direction: column; justify-content: center; }
.policy .pside { flex: 1 1 0; display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.scope { display: flex; flex-direction: column; gap: 7px; }
.scope-row { display: flex; justify-content: space-between; align-items: center; border: 1px solid var(--c-line); border-radius: 8px; padding: 9px 13px; font-family: var(--c-mono); font-size: 12.5px; }
.scope-row .rg { color: var(--c-fg); }
.scope-row .st { font-size: 10px; font-weight: 700; padding: 2px 10px; border-radius: 99px; letter-spacing: 0.05em; }
.scope-row .st.deny { color: var(--c-amber-bright); border: 1px solid rgba(255, 170, 60, 0.5); }
.scope-row .st.exempt { color: var(--c-green); border: 1px solid rgba(90, 209, 154, 0.5); }
.policy-err { font-family: var(--c-mono); font-size: 12px; color: var(--c-amber-bright); border-left: 3px solid var(--c-amber); padding: 6px 0 6px 12px; line-height: 1.4; }
.policy-err b { color: var(--c-fg); }
/* ========== Act 4: deployment types ========== */
.dep { width: 100%; display: flex; flex-direction: column; gap: 14px; }
.dep-types { display: flex; gap: 16px; }
.dep-card { flex: 1 1 0; border: 1px solid var(--c-line); border-radius: 13px; padding: 15px 17px; display: flex; flex-direction: column; gap: 8px; }
.dep-card.std { border-top: 3px solid var(--c-accent); }
.dep-card.ptu { border-top: 3px solid var(--c-violet); }
.dep-card .dc-t { font: 700 17px var(--c-sans); color: var(--c-fg); }
.dep-card .dc-t small { color: var(--c-muted); font-weight: 400; font-size: 12.5px; display: block; margin-top: 1px; }
.dep-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 5px; }
.dep-card li { font-size: 12.5px; color: var(--c-muted); padding-left: 15px; position: relative; line-height: 1.3; }
.dep-card li::before { content: "+"; position: absolute; left: 0; color: var(--c-accent); font-weight: 700; }
.dep-card.ptu li::before { color: var(--c-violet); }
.dep-scope { display: flex; gap: 9px; }
.dep-chip { flex: 1 1 0; border: 1px solid var(--c-line); border-radius: 9px; padding: 9px 12px; text-align: center; background: rgba(255, 255, 255, 0.02); }
.dep-chip .ds-t { font: 700 12px var(--c-mono); color: var(--c-accent-bright); }
.dep-chip .ds-d { font-size: 10.5px; color: var(--c-muted); margin-top: 2px; }
.dep-note { font-size: 12px; color: #ffce8a; border: 1px dashed rgba(255, 170, 60, 0.5); border-radius: 9px; padding: 8px 13px; background: rgba(255, 170, 60, 0.05); }
.dep-note b { color: var(--c-amber-bright); }
/* ========== Act 4: inference paths ========== */
.infer { width: min(1040px, 99%); display: flex; flex-direction: column; gap: 15px; align-items: center; }
.inf-paths { display: flex; gap: 16px; width: 100%; }
.inf-path { flex: 1 1 0; box-sizing: border-box; border: 1px solid var(--c-line); border-top: 3px solid var(--c-accent); border-radius: 12px; background: rgba(255, 255, 255, 0.03); padding: 14px 16px; display: flex; flex-direction: column; gap: 8px; }
.inf-path.fdry { border-top-color: var(--c-green); }
.inf-path .ip-t { font: 700 15px var(--c-sans); color: var(--c-fg); display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.inf-path .ip-badge { font: 700 8.5px var(--c-mono); letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid currentColor; border-radius: 99px; padding: 2px 8px; white-space: nowrap; }
.inf-path.direct .ip-badge { color: var(--c-accent-bright); }
.inf-path.fdry .ip-badge { color: var(--c-green); }
.inf-path .ip-code { font: 500 11px var(--c-mono); color: var(--c-accent-bright); background: rgba(96, 220, 246, 0.06); border: 1px solid var(--c-line); border-radius: 6px; padding: 5px 9px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.inf-path .ip-d { font-size: 12px; color: var(--c-muted); line-height: 1.35; }
.inf-gw { font: 600 10.5px var(--c-mono); letter-spacing: 0.04em; color: var(--c-accent-bright); border: 1px dashed rgba(96, 220, 246, 0.45); border-radius: 8px; padding: 6px 16px; background: rgba(96, 220, 246, 0.05); }
.inf-path .ip-surfs { display: flex; flex-wrap: wrap; gap: 5px; }
.inf-path .ip-chip { font: 600 9.5px var(--c-mono); border: 1px solid var(--c-line); border-radius: 99px; padding: 2px 9px; color: var(--c-muted); white-space: nowrap; }
.inf-path.direct .ip-chip { color: var(--c-accent-bright); border-color: rgba(96, 220, 246, 0.4); }
.inf-path.fdry .ip-chip { color: var(--c-green); border-color: rgba(90, 209, 154, 0.4); }
.inf-path .ip-d b { color: var(--c-fg); }
/* ========== Act 5: agent components ========== */
.agentdiag { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.agt-row { display: flex; align-items: center; gap: 16px; justify-content: center; }
.agt-box { border: 1px solid var(--c-line); border-radius: 14px; padding: 13px 16px; background: rgba(255, 255, 255, 0.03); }
.agt-box .ab-h { font: 700 15px var(--c-sans); color: var(--c-fg); text-align: center; margin-bottom: 8px; }
.agt-box.agent { border-color: var(--c-accent); box-shadow: 0 0 0 1px var(--c-accent), 0 0 26px rgba(96, 220, 246, 0.18); }
.agt-box.agent .ab-h { color: var(--c-accent-bright); }
.agt-slots { display: flex; flex-direction: column; gap: 6px; min-width: 200px; }
.agt-slot { font: 600 12px var(--c-mono); color: var(--c-fg); background: rgba(96, 220, 246, 0.1); border-radius: 7px; padding: 7px 0; text-align: center; }
.agt-items { display: flex; flex-direction: column; gap: 7px; min-width: 132px; }
.agt-items.horiz { flex-direction: row; gap: 10px; justify-content: center; }
.agt-item { font: 600 11.5px var(--c-mono); color: var(--c-muted); text-align: center; border: 1px solid var(--c-line); border-radius: 7px; padding: 6px 10px; }
.agt-arrow { color: var(--c-accent); font-size: 24px; }
.agt-bidir { font: 600 11px var(--c-mono); letter-spacing: 0.08em; color: var(--c-accent); text-align: center; }
/* ========== Act 5: 6-stage ring (SVG) ========== */
.ringwrap { display: flex; align-items: center; justify-content: center; width: 100%; }
.ring { width: 100%; max-width: 760px; max-height: 52vh; }
.ring .rg-ring { fill: none; stroke: rgba(96, 220, 246, 0.25); stroke-width: 1.5; }
.ring .rg-core { fill: rgba(255, 255, 255, 0.04); stroke: var(--c-line); stroke-width: 1.5; }
.ring .rg-core-t { fill: var(--c-fg); font: 700 17px var(--c-sans); text-anchor: middle; }
.ring .rg-logo { fill: var(--c-accent); font-size: 26px; text-anchor: middle; }
.ring .rg-lab { fill: var(--c-fg); font: 600 15px var(--c-sans); }
.ring .rg-num { fill: #04222b; font: 700 13px var(--c-mono); text-anchor: middle; }
.ring .disc { fill: var(--c-accent); }
.ring .disc.hot { fill: var(--c-pink); }
.ring .arc { fill: none; stroke: var(--c-violet); stroke-width: 1.5; opacity: 0.6; }
/* ========== Act 5: Agent Service runtime flow ========== */
.svcflow { width: min(1010px, 99%); display: flex; flex-direction: column; align-items: center; gap: 8px; font-family: var(--c-mono); }
.svc-node { border: 1px solid var(--c-line); border-radius: 10px; padding: 8px 14px; text-align: center; background: rgba(255, 255, 255, 0.03); font-size: 12px; color: var(--c-fg); }
.svc-node.code { border-color: rgba(90, 209, 154, 0.5); color: var(--c-green); }
.svc-node b { color: var(--c-accent-bright); }
.svc-core { border: 1px solid var(--c-accent); border-radius: 12px; background: rgba(96, 220, 246, 0.06); box-shadow: 0 0 0 1px rgba(96, 220, 246, 0.12); padding: 11px 14px; width: 100%; box-sizing: border-box; }
.svc-core .sc-h { font: 700 12.5px var(--c-mono); color: var(--c-accent-bright); text-align: center; margin-bottom: 9px; }
.svc-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.svc-step { border: 1px solid var(--c-line); border-radius: 8px; padding: 8px 11px; font-size: 11px; color: var(--c-muted); background: rgba(255, 255, 255, 0.02); line-height: 1.3; }
.svc-step b { color: var(--c-fg); }
.svc-step .n { color: var(--c-accent); font-weight: 700; margin-right: 5px; }
.svc-arrow { color: var(--c-accent); font-size: 14px; }
/* ========== Act 5: knowledge & tools catalog ========== */
.cat3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; width: 100%; }
.catcol { border: 1px solid var(--c-line); border-radius: 12px; padding: 13px 16px; border-top: 3px solid var(--c-accent); display: flex; flex-direction: column; }
.catcol.k { border-top-color: var(--c-green); }
.catcol.c { border-top-color: var(--c-violet); }
.catcol h4 { font: 700 14px var(--c-sans); color: var(--c-fg); margin: 0 0 8px; }
.catrow { display: flex; justify-content: space-between; align-items: center; gap: 8px; font: 600 12.5px var(--c-mono); padding: 5px 0; border-bottom: 1px solid rgba(96, 220, 246, 0.07); }
.catrow:last-child { border-bottom: none; }
.catrow .nm { color: var(--c-fg); }
.catrow .nm a { color: var(--c-accent-bright); text-decoration: underline; text-underline-offset: 2px; }
/* ========== Act 5: hosted agents ========== */
.hosted { width: 100%; display: flex; flex-direction: column; gap: 14px; }
.hosted-cmp { display: flex; gap: 16px; align-items: stretch; }
.hc-card { flex: 1 1 0; border: 1px solid var(--c-line); border-radius: 13px; padding: 14px 17px; position: relative; }
.hc-card.prompt { border-top: 3px solid var(--c-accent); }
.hc-card.host { border-top: 3px solid var(--c-violet); }
.hc-h { font: 700 16px var(--c-sans); color: var(--c-fg); }
.hc-h small { display: block; color: var(--c-muted); font-weight: 400; font-size: 12.5px; margin-top: 2px; }
.hc-card ul { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-direction: column; gap: 5px; }
.hc-card li { font-size: 12.5px; color: var(--c-muted); padding-left: 14px; position: relative; line-height: 1.3; }
.hc-card li::before { content: "+"; position: absolute; left: 0; color: var(--c-accent); font-weight: 700; }
.hc-card a { color: var(--c-accent-bright); text-decoration: underline; text-underline-offset: 2px; }
.hc-card.host li::before { color: var(--c-violet); }
.frameworks { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; align-items: center; }
.fw-label { font: 700 10px var(--c-mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-muted); margin-right: 4px; }
.fw { font: 600 11px var(--c-mono); color: var(--c-fg); border: 1px solid var(--c-line); border-radius: 99px; padding: 5px 12px; background: rgba(164, 140, 255, 0.06); }
/* ========== Act 5: nested two-loop (Copilot SDK hosted) ========== */
.nest { width: min(980px, 99%); font-family: var(--c-mono); }
.nest-cap { font: 700 9.5px var(--c-mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 7px; }
.nest-l1 { border: 1px solid var(--c-line); border-radius: 14px; padding: 12px 14px; background: rgba(255, 255, 255, 0.02); }
.nest-l2 { border: 1px solid var(--c-accent); border-radius: 12px; padding: 11px 13px; background: rgba(96, 220, 246, 0.05); }
.nest-l2 > .nest-cap { color: var(--c-accent-bright); }
.nest-l3 { border: 1px dashed rgba(164, 140, 255, 0.6); border-radius: 10px; padding: 10px 12px; background: rgba(164, 140, 255, 0.07); margin-top: 8px; }
.nest-l3 > .nest-cap { color: var(--c-violet); }
.nest-loop { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 10.5px; color: var(--c-fg); flex-wrap: wrap; }
.nest-loop .step { border: 1px solid var(--c-line); border-radius: 7px; padding: 5px 10px; background: rgba(0, 0, 0, 0.25); }
.nest-loop .ar { color: var(--c-violet); }
.byok { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 9px; font-size: 11px; color: var(--c-muted); flex-wrap: wrap; }
.byok .b-model { border: 1px solid var(--c-violet); border-radius: 8px; padding: 6px 11px; color: var(--c-violet); background: rgba(164, 140, 255, 0.07); }
.byok .ar { color: var(--c-accent); }
/* ========== Act 6: Foundry IQ overview ========== */
.iq { width: 100%; display: flex; flex-direction: column; gap: 15px; }
.iq-flow { display: flex; align-items: stretch; gap: 12px; }
.iq-col-h { font: 700 9.5px var(--c-mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 6px; }
.iq-sources { flex: 0 0 25%; display: flex; flex-direction: column; gap: 6px; }
.iq-src { font: 600 11px var(--c-mono); color: var(--c-fg); border: 1px solid var(--c-line); border-radius: 7px; padding: 6px 10px; background: rgba(255, 255, 255, 0.03); }
.iq-arrow { display: flex; align-items: center; color: var(--c-accent); font-size: 20px; }
.iq-kb { flex: 1 1 0; border: 1px solid var(--c-accent); border-radius: 12px; background: rgba(96, 220, 246, 0.06); box-shadow: 0 0 0 1px rgba(96, 220, 246, 0.12); padding: 14px 16px; display: flex; flex-direction: column; gap: 7px; justify-content: center; }
.iq-kb .kb-h { font: 700 16px var(--c-sans); color: var(--c-accent-bright); }
.iq-kb .kb-d { font-size: 12px; color: var(--c-muted); line-height: 1.35; }
.iq-kb .kb-eng { font: 600 11px var(--c-mono); color: var(--c-fg); border-top: 1px solid var(--c-line); padding-top: 8px; }
.iq-kb .kb-eng b { color: var(--c-accent-bright); }
.iq-right { flex: 0 0 24%; display: flex; flex-direction: column; gap: 8px; justify-content: center; }
.iq-agent { border: 1px solid var(--c-line); border-radius: 8px; padding: 8px 11px; font: 600 11px var(--c-mono); color: var(--c-fg); text-align: center; background: rgba(255, 255, 255, 0.03); }
.iq-fam { display: flex; gap: 8px; justify-content: center; }
.iq-fam .f { font: 600 11px var(--c-mono); border: 1px solid var(--c-line); border-radius: 99px; padding: 4px 13px; color: var(--c-muted); }
.iq-fam .f.on { color: var(--c-accent-bright); border-color: var(--c-accent); background: rgba(96, 220, 246, 0.06); }
/* ========== Act 6: agentic-retrieval data flow ========== */
.flowlane { width: min(1030px, 99%); display: flex; flex-direction: column; gap: 20px; }
.lane { border: 1px solid var(--c-line); border-radius: 12px; padding: 11px 14px; }
.lane.ingest { border-left: 3px solid var(--c-violet); }
.lane-h { font: 700 11px var(--c-mono); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 9px; }
.lane.ingest .lane-h { color: var(--c-violet); }
.lane-steps { display: flex; align-items: center; gap: 7px; justify-content: center; }
.lstep { border: 1px solid var(--c-line); border-radius: 8px; padding: 7px 10px; font: 600 11px var(--c-mono); color: var(--c-fg); background: rgba(255, 255, 255, 0.03); text-align: center; }
.lstep small { display: block; color: var(--c-muted); font-weight: 400; font-size: 8.5px; margin-top: 1px; }
.lstep.emb { border-color: rgba(164, 140, 255, 0.5); color: var(--c-violet); background: rgba(164, 140, 255, 0.07); }
.larrow { color: var(--c-muted); font-size: 13px; }
.iqkb { display: flex; flex-direction: column; gap: 16px; align-items: center; width: 100%; }
.iqkb-src { font: 600 12.5px var(--c-mono); color: var(--c-accent-bright); border: 1px solid rgba(96, 220, 246, 0.4); border-radius: 8px; padding: 5px 14px; background: rgba(96, 220, 246, 0.05); }
.iqkb-src small { color: var(--c-muted); font-weight: 400; }
.iqkb-cards { display: flex; gap: 14px; width: 100%; }
.iqkb-card { flex: 1 1 0; box-sizing: border-box; border: 1px solid var(--c-line); border-radius: 11px; padding: 10px 15px; display: flex; flex-direction: column; gap: 3px; }
.iqkb-card.fast { border-top: 3px solid var(--c-green); }
.iqkb-card.std { border-top: 3px solid var(--c-accent); }
.iqkb-card .kbc-h { font: 700 14px var(--c-mono); margin-bottom: 2px; }
.iqkb-card.fast .kbc-h { color: var(--c-green); }
.iqkb-card.std .kbc-h { color: var(--c-accent-bright); }
.iqkb-card .kbc-r { font-size: 12.5px; color: var(--c-fg); line-height: 1.3; }
.iqkb-card .kbc-r.muted { color: var(--c-muted); font-size: 12.5px; }
.iqkb-card .kbc-r b { color: var(--c-accent-bright); }
.iqkb-card.fast .kbc-r b { color: var(--c-green); }
.iqkb-note { font: 500 10px var(--c-mono); color: var(--c-muted); text-align: center; line-height: 1.4; }
.iqkb-note b { color: var(--c-accent-bright); }
/* ========== Act 7: data plane vs control plane ========== */
.cpwhat { width: 100%; display: flex; flex-direction: column; gap: 14px; }
.plane-split { display: flex; gap: 14px; align-items: stretch; }
.plane { flex: 1 1 0; border: 1px solid var(--c-line); border-radius: 12px; padding: 14px 17px; }
.plane.data { border-top: 3px solid var(--c-muted); }
.plane.ctrl { border-top: 3px solid var(--c-accent); background: rgba(96, 220, 246, 0.05); }
.plane .pn-k { font: 700 9.5px var(--c-mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-muted); }
.plane .pn-h { font: 700 18px var(--c-sans); color: var(--c-fg); margin-top: 3px; }
.plane.ctrl .pn-h { color: var(--c-accent-bright); }
.plane .pn-d { font-size: 12.5px; color: var(--c-muted); margin-top: 5px; line-height: 1.35; }
.fails { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.fail { border: 1px solid rgba(255, 170, 60, 0.4); border-radius: 10px; background: rgba(255, 170, 60, 0.05); padding: 11px 14px; }
.fail .fl-t { font: 700 13.5px var(--c-sans); color: var(--c-amber-bright); }
.fail .fl-d { font-size: 11.5px; color: var(--c-muted); margin-top: 3px; line-height: 1.32; }
/* ========== Act 7: generic 3-card row (observability, security) ========== */
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; width: 100%; }
.card3 { border: 1px solid var(--c-line); border-radius: 12px; padding: 16px 18px; border-top: 3px solid var(--c-accent); display: flex; flex-direction: column; gap: 9px; }
.card3.g { border-top-color: var(--c-green); }
.card3.v { border-top-color: var(--c-violet); }
.card3.p { border-top-color: var(--c-pink); }
.card3 .c3-t { font: 700 17px var(--c-sans); color: var(--c-fg); }
.card3 .c3-d { font-size: 13px; color: var(--c-muted); line-height: 1.35; }
.card3 ul { list-style: none; margin: 2px 0 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.card3 li { font-size: 12.5px; color: var(--c-muted); padding-left: 14px; position: relative; line-height: 1.3; }
.card3 li::before { content: "\2022"; position: absolute; left: 2px; color: var(--c-accent); font-weight: 700; }
/* ========== Act 7: guardrail pipeline ========== */
.gpipe { width: min(760px, 96%); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 5px; }
.gp-node { width: 60%; text-align: center; border: 1px solid var(--c-line); border-radius: 9px; padding: 8px; font: 600 12px var(--c-mono); color: var(--c-fg); background: rgba(255, 255, 255, 0.03); }
.gp-gate { width: 100%; box-sizing: border-box; text-align: center; border: 1px solid var(--c-accent); border-radius: 9px; padding: 8px 12px; font: 700 12.5px var(--c-mono); letter-spacing: 0.06em; color: var(--c-accent-bright); background: rgba(96, 220, 246, 0.07); }
.gp-gate small { color: var(--c-muted); font-weight: 400; letter-spacing: 0; display: block; font-size: 12.5px; margin-top: 3px; }
.gp-gate.pv { border-color: rgba(255, 170, 60, 0.5); color: var(--c-amber-bright); background: rgba(255, 170, 60, 0.06); }
.gp-arr { color: var(--c-muted); font-size: 11px; }
/* ========== Act 7: controls vs policies strip ========== */
.cvp { display: flex; gap: 14px; width: 100%; }
.cvp-card { flex: 1 1 0; border: 1px solid var(--c-line); border-radius: 11px; padding: 12px 16px; }
.cvp-card.ctrl { border-left: 3px solid var(--c-accent); }
.cvp-card.pol { border-left: 3px solid var(--c-pink); }
.cvp-card .cv-t { font: 700 14px var(--c-sans); color: var(--c-fg); }
.cvp-card .cv-t b { color: var(--c-accent-bright); }
.cvp-card.pol .cv-t b { color: var(--c-pink); }
.cvp-card .cv-d { font-size: 12.5px; color: var(--c-muted); margin-top: 4px; line-height: 1.35; }
/* ========== Act 7: red-team loop ========== */
.asr { display: flex; gap: 18px; width: 100%; align-items: stretch; }
.rt-loop { flex: 1 1 0; border: 1px solid var(--c-line); border-radius: 12px; padding: 16px 20px; display: flex; flex-direction: column; gap: 13px; justify-content: center; }
.rt-head { font: 700 14.5px var(--c-sans); color: var(--c-accent-bright); line-height: 1.3; }
.rt-loop .rt-steps { list-style: none; counter-reset: rt; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.rt-steps li { counter-increment: rt; font-size: 12.5px; color: var(--c-muted); line-height: 1.3; padding-left: 25px; position: relative; }
.rt-steps li::before { content: counter(rt); position: absolute; left: 0; top: 1px; width: 17px; height: 17px; box-sizing: border-box; border-radius: 50%; border: 1px solid var(--c-accent); color: var(--c-accent-bright); font: 700 9.5px var(--c-mono); display: flex; align-items: center; justify-content: center; }
.rt-steps li b { color: var(--c-fg); }
.asr-side { flex: 1 1 0; display: flex; flex-direction: column; gap: 10px; }
.asr-box { border: 1px solid var(--c-line); border-radius: 10px; padding: 11px 14px; }
.asr-box h5 { font: 700 11px var(--c-mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-accent-bright); margin: 0 0 6px; }
.asr-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.asr-chip { font: 600 10px var(--c-mono); color: var(--c-fg); border: 1px solid var(--c-line); border-radius: 6px; padding: 3px 8px; background: rgba(255, 255, 255, 0.03); }
/* ========== Act 7: fleet dashboard ========== */
.fleet { display: flex; gap: 16px; width: 100%; align-items: stretch; }
.fleet-todo { flex: 0 0 38%; border: 1px solid var(--c-line); border-radius: 12px; padding: 12px 15px; }
.fleet-todo h4 { font: 700 12px var(--c-mono); letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-amber-bright); margin: 0 0 9px; }
.todo { display: flex; align-items: flex-start; gap: 8px; font-size: 11.5px; color: var(--c-fg); padding: 6px 0; border-bottom: 1px solid rgba(96, 220, 246, 0.07); line-height: 1.3; }
.todo:last-child { border-bottom: none; }
.todo .dot { width: 8px; height: 8px; border-radius: 50%; margin-top: 4px; flex: 0 0 auto; }
.todo .dot.r { background: var(--c-amber); }
.todo .dot.b { background: var(--c-pink); }
.todo .dot.y { background: var(--c-accent); }
.fleet-assets { flex: 1 1 0; border: 1px solid var(--c-line); border-radius: 12px; padding: 12px 15px; }
.fleet-assets h4 { font: 700 12px var(--c-mono); letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-accent-bright); margin: 0 0 6px; }
.atbl { width: 100%; border-collapse: collapse; font-family: var(--c-mono); font-size: 10px; }
.atbl th { text-align: left; color: var(--c-muted); font-weight: 600; font-size: 8px; text-transform: uppercase; letter-spacing: 0.03em; padding: 4px 6px; border-bottom: 1px solid var(--c-line); white-space: nowrap; }
.atbl td { padding: 3.5px 6px; color: var(--c-fg); border-bottom: 1px solid rgba(96, 220, 246, 0.06); white-space: nowrap; }
.atbl td.name { color: var(--c-accent-bright); }
.atbl td.src, .atbl td.proj { color: var(--c-muted); }
.atbl td.num { color: var(--c-muted); }
.atbl .st { display: inline-flex; align-items: center; gap: 5px; }
.atbl .st::before { content: ""; width: 6px; height: 6px; border-radius: 50%; flex: 0 0 auto; }
.atbl .st.run { color: var(--c-green); }
.atbl .st.run::before { background: var(--c-green); }
.atbl .st.unk { color: var(--c-muted); }
.atbl .st.unk::before { background: rgba(255, 255, 255, 0.35); }
.atbl .st.blk { color: var(--c-amber-bright); }
.atbl .st.blk::before { background: var(--c-amber); }
.atbl td.err.hi { color: var(--c-amber-bright); }
/* ========== Act 7: provisioning quick-ref ========== */
.refgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; width: 100%; }
.refcard { border: 1px solid var(--c-line); border-radius: 12px; padding: 13px 16px; border-top: 3px solid var(--c-accent); }
.refcard h4 { font: 700 14px var(--c-sans); color: var(--c-fg); margin: 0 0 7px; }
.refcard .rc-row { font: 600 12.5px var(--c-mono); color: var(--c-muted); padding: 3px 0; }
.refcard .rc-row b { color: var(--c-fg); }
.refcard .rc-row .ac { color: var(--c-accent-bright); }
/* ========== Act 8: recap ========== */
.recap { display: flex; gap: 44px; width: 100%; }
.recap-col { flex: 1 1 0; }
.recap-col h4 { font: 700 13px var(--c-mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-accent-bright); margin: 0 0 14px; }
.recap-col.op h4 { color: var(--c-pink); }
.recap-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.recap-col li { font-size: 17px; color: var(--c-fg); padding-left: 28px; position: relative; line-height: 1.25; }
.recap-col li::before { content: "\2713"; position: absolute; left: 0; top: 1px; color: var(--c-accent); font-weight: 700; }
.recap-col.op li::before { color: var(--c-pink); }
/* ========== Act 4: endpoints & SDKs ========== */
.endp { width: min(1080px, 99%); display: flex; flex-direction: column; gap: 14px; align-items: center; }
.endp-row { display: flex; gap: 14px; width: 100%; }
.endp-card { flex: 1 1 0; box-sizing: border-box; border: 1px solid var(--c-line); border-top: 3px solid var(--c-accent); border-radius: 12px; background: rgba(255, 255, 255, 0.03); padding: 13px 15px; display: flex; flex-direction: column; gap: 6px; }
.endp-card.fdry { border-top-color: var(--c-green); }
.endp-card.tools { border-top-color: var(--c-violet); }
.endp-card .ec-sdk { font: 700 13.5px var(--c-sans); color: var(--c-fg); }
.endp-card .ec-host { font: 600 10px var(--c-mono); color: var(--c-accent-bright); background: rgba(96, 220, 246, 0.06); border: 1px solid var(--c-line); border-radius: 6px; padding: 4px 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.endp-card.fdry .ec-host { color: var(--c-green); }
.endp-card.tools .ec-host { color: var(--c-violet); }
.endp-card .ec-d { font-size: 12.5px; color: var(--c-muted); line-height: 1.35; flex: 1; }
.endp-card .ec-auth { font: 600 12.5px var(--c-mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-muted); }
.endp-note { font: 600 11px var(--c-mono); color: var(--c-accent-bright); border: 1px dashed rgba(96, 220, 246, 0.45); border-radius: 8px; padding: 6px 16px; background: rgba(96, 220, 246, 0.05); text-align: center; }
/* ======= APPEND COMPONENT CSS ABOVE THIS LINE ======= */
</style>
</head>
<body>
<div class="brandmark"><b>Microsoft Foundry</b></div>
<div class="reveal">
<div class="slides">
<!-- 0 - TITLE -->
<section class="title">
<div class="title-mark">Enterprise AI Upskilling</div>
<h1>Microsoft<br><span class="accent">Foundry</span></h1>
<p class="subtitle">One platform for enterprise AI: models, agents, tools, knowledge, and the control plane that governs them.</p>
<div class="title-foot"><span class="who">Jon-Paul Boyd</span> <span class="accent">·</span> June 2026</div>
<aside class="notes">
Welcome. Over the next two hours we go end to end on Microsoft Foundry: what it is, the portal, how you deploy and
call models, how you build agents, how you ground them with Foundry IQ, and how you govern a whole fleet from the
control plane. The product was called Azure AI Foundry until Microsoft dropped the "Azure" at Ignite in November
2025; the portal is still ai.azure.com. Mixed room today, so each section has a plain-language takeaway and a live
demo. Let us set expectations for who gets what first.
</aside>
</section>
<!-- 1 - ORIENTATION (audience + agenda) -->
<section class="content">
<div class="kicker"><span class="num">00</span> · Orientation</div>
<h2>Something for everyone</h2>
<div class="canvas">
<div class="audience">
<div class="aud-card dev">
<span class="aud-tag">DEVELOPERS</span>
<span class="aud-role">Builders</span>
<ul>
<li>Choose and compare models: catalog, leaderboard, side by side</li>
<li>Prototype fast in model and agent playgrounds</li>
<li>Build agents with tools, MCP, memory, human in the loop, SDKs</li>
<li>Ground on Foundry IQ; evaluate, trace and fine-tune</li>
</ul>
</div>
<div class="aud-card it">
<span class="aud-tag">IT ADMINS</span>
<span class="aud-role">Platform owners</span>
<ul>
<li>One Foundry resource, many projects: 1:1 and 1:N patterns</li>
<li>Hub and spoke routing through an APIM gateway</li>
<li>RBAC roles, regions, quota and tokens-per-minute limits</li>
<li>Cost overview and tagging; provision with Bicep and Terraform</li>
</ul>
</div>
<div class="aud-card sec">
<span class="aud-tag">SECURITY</span>
<span class="aud-role">Risk & compliance</span>
<ul>
<li>Guardrails: Prompt Shields, content filters, PII blocklists</li>
<li>Red teaming: AI Red Teaming Agent on PyRIT, attack success rate</li>
<li>Governance: Azure Policy deny rules on model deployments</li>
<li>Control plane: Entra Agent ID, Defender, Purview, continuous evals</li>
</ul>
</div>
</div>
<div class="arc">
<span class="arc-chip"><b>1</b> What it is</span><span class="arc-sep">›</span>
<span class="arc-chip"><b>2</b> Portal</span><span class="arc-sep">›</span>
<span class="arc-chip"><b>3</b> Deploy</span><span class="arc-sep">›</span>
<span class="arc-chip"><b>4</b> Inference</span><span class="arc-sep">›</span>
<span class="arc-chip"><b>5</b> Agents</span><span class="arc-sep">›</span>
<span class="arc-chip"><b>6</b> Foundry IQ</span><span class="arc-sep">›</span>
<span class="arc-chip"><b>7</b> Control plane</span><span class="arc-sep">›</span>
<span class="arc-chip"><b>8</b> Wrap</span>
</div>
</div>
<p class="takeaway">Build for business value outcomes, then <b>govern it at scale</b>.</p>
<aside class="notes">
Quick map of the room and the route. Developers: the portal, models, agents and Foundry IQ acts are yours. IT admins:
deployment pattern and provisioning. Security: guardrails, red teaming and the control plane. The arc along the bottom
is the running order. We will not go deep on every line of code; the point is the shape of the platform and where each
of you plugs in.
</aside>
</section>
<!-- 2 - WHAT IS MICROSOFT FOUNDRY (overview map) -->
<section class="content">
<div class="kicker"><span class="num">01</span> · What it is</div>
<h2>One platform</h2>
<div class="canvas">
<div class="ovw">
<div class="ovw-frame">
<span class="ovw-brand">◆ Microsoft Foundry</span>
<div class="ovw-row">
<div class="obox obs">
<h4>Observability</h4>
<span>Tracing · Monitoring</span>
<span>Evaluation · Experimentation</span>
</div>
<div class="obox dev">
<h4>Frameworks & SDKs</h4>
<div class="svc-grid">
<span>Foundry SDK</span><span>Agent Framework</span>
<span>LangGraph</span><span>LangChain</span>
<span>LlamaIndex</span><span>CrewAI</span>
<span style="grid-column: span 2;">GitHub Copilot SDK</span>
</div>
</div>
</div>
<div class="obox svc">
<h4>Foundry Agent Service <span style="font-weight:400;color:var(--c-muted);font-size:11px;">the runtime</span></h4>
<div class="svc-grid">
<span>Managed orchestration</span><span>Conversations + state</span>
<span>Network isolation</span><span>OBO auth</span>
</div>
</div>
<div class="ovw-row">
<div class="obox models">
<h4>Models</h4>
<span>Microsoft & partners</span>
<span>Fine-tuned</span>
<span>Bring your own</span>
</div>
<div class="obox kt">
<h4>Knowledge & Tools</h4>
<div class="svc-grid">
<span>Azure AI Search</span><span>Bing</span>
<span>SharePoint</span><span>Fabric</span>
<span>Functions</span><span>Logic Apps</span>
<span>OpenAPI</span><span>MCP</span>
</div>
</div>
<div class="obox integ">
<h4>Agent integrations</h4>
<div class="svc-grid" style="grid-template-columns: repeat(2, 1fr);">
<span>Foundry SDK</span><span>REST</span>
<span>Responses API</span><span>A2A protocol</span>
</div>
</div>
</div>
<div class="obox base">
<h4>Guardrails, security & governance</h4>
<div class="svc-grid">
<span>Prompt Shields</span><span>Content filters</span>
<span>PII detection</span><span>Custom blocklists</span>
<span>Protected material</span><span>Policy & compliance</span>
<span>Cost management</span><span>Entra · Defender · Purview</span>
</div>
</div>
</div>
</div>
<div class="caps">
<div class="capgrp build"><span class="capk">BUILD</span> Multi-agent · 1,400+ tools · Agent memory · Foundry IQ</div>
<div class="capgrp operate"><span class="capk">OPERATE</span> Observability · Agent 365 identity · Fleet ops</div>
</div>
</div>
<p class="takeaway">Unified breadth: <b>build</b> with agents, tools, memory and knowledge, then <b>operate</b> them with identity, observability and fleet governance, all behind <b>one resource</b>.</p>
<aside class="notes">
This is the whole platform on one slide, and it is a faithful redraw of Microsoft's own architecture diagram with
two corrections baked in. Foundry unifies three jobs, running AI in production, building models, and building apps,
under a single Azure resource-provider namespace, so RBAC, networking and policy are shared rather than stitched
together. Reading the stack: observability and your choice of framework on top; the Foundry Agent Service runtime in
the middle; models, knowledge and tools, and integration protocols beneath; guardrails, security and governance as
the base. Two corrections from the original Microsoft slide: the integration surface is the Responses API now, not
the Assistants API, which is retiring, and Semantic Kernel plus AutoGen have merged into the Microsoft Agent
Framework. The ribbon under the diagram is the why-it-matters: the headline capabilities split into build
(multi-agent orchestration, a catalogue of over fourteen hundred tools and agent memory, both in preview, and
Foundry IQ for grounded knowledge) and operate (real-time observability, an Agent 365 Entra identity per agent,
and fleet governance in the Operate hub). The deck follows that shape: build first, then govern. We unpack each
layer over the next two hours.
</aside>
</section>
<!-- 5 - PORTAL HOME -->
<section class="content">
<div class="kicker"><span class="num">02</span> · Portal</div>
<h2>The portal is organised around jobs to be done</h2>
<div class="canvas">
<div class="portal">
<div class="pf-bar">
<span class="pf-brand"><span class="logo">◆</span> Microsoft Foundry</span>
<span class="pf-crumb">/ proj-foundry-core</span>
<span class="pf-search">Search with AI (Ctrl + K)</span>
<span class="pf-toggle">New Foundry <span class="sw"></span></span>
<span class="pf-tabs">
<span class="pf-tab active">Home</span><span class="pf-tab">Discover</span><span class="pf-tab">Build</span><span class="pf-tab">Operate</span><span class="pf-tab">Docs</span>
</span>
<span class="pf-icons">☼ ✉ ☉</span>
</div>
<div class="pf-body">
<div class="pf-home">
<div class="pf-welcome">Welcome back</div>
<span class="pf-startbtn">Start building ›</span>
<div class="pf-meta">
<span class="m">Project endpoint <b>proj-foundry-core.services.ai.azure.com</b></span>
<span class="m">Region <b>Sweden Central</b></span>
<span class="m">API key auth <b>disabled</b></span>
</div>
</div>
<div class="tabmap">
<div class="tabmap-card"><span class="tm-t">Home</span><span class="tm-d">Land, resume recent work, quick start.</span></div>
<div class="tabmap-card"><span class="tm-t">Discover</span><span class="tm-d">Netflix-style catalog of models and tools.</span></div>
<div class="tabmap-card"><span class="tm-t">Build</span><span class="tm-d">Create agents, apps and workflows.</span></div>
<div class="tabmap-card"><span class="tm-t">Operate</span><span class="tm-d">Admin and fleet view across projects.</span></div>
<div class="tabmap-card"><span class="tm-t">Docs</span><span class="tm-d">Documentation, in context, never leave.</span></div>
</div>
</div>
</div>
</div>
<p class="takeaway">Flip on <b>New Foundry</b> at ai.azure.com and you get five tabs by job. Everything sits inside a <b>Foundry resource</b> (a subscription + resource group: the billing and governance boundary).</p>
<aside class="notes">
Sign in at ai.azure.com and toggle on New Foundry. The portal is deliberately organised around jobs to be done,
not Azure resource types. Home is your landing and recent work. Discover is the catalog. Build is where developers
create agents, apps and workflows. Operate is the admin and fleet view across subscriptions and projects, that is
the control plane we deep-dive later. Docs is integrated so you stay in context. Top left is the current project,
click to switch; the search bar is backed by Ask AI, which is itself several agents. The one structural thing to
remember: a project always lives inside a Foundry resource, provisioned into a subscription and resource group,
which is the billing, management and governance boundary. Note the new portal only shows assets created in the new
experience, not classic ones.
</aside>
</section>
<!-- 6 - PORTAL DISCOVER -->
<section class="content">
<div class="kicker"><span class="num">03</span> · Discover</div>
<h2>A model catalog you can compare, then deploy</h2>
<div class="canvas">
<div class="portal">
<div class="pf-bar">
<span class="pf-brand"><span class="logo">◆</span> Microsoft Foundry</span>
<span class="pf-crumb">/ proj-foundry-core</span>
<span class="pf-search">Search with AI (Ctrl + K)</span>
<span class="pf-toggle">New Foundry <span class="sw"></span></span>
<span class="pf-tabs">
<span class="pf-tab">Home</span><span class="pf-tab active">Discover</span><span class="pf-tab">Build</span><span class="pf-tab">Operate</span><span class="pf-tab">Docs</span>
</span>
<span class="pf-icons">☼ ✉ ☉</span>
</div>
<div class="pf-body">
<div class="disc-head"><span class="dh-t">Discover what's possible</span><span class="dh-s">1,900+ models · explore by provider, collection, leaderboard</span></div>
<div class="disc-providers">
<span class="p">Azure OpenAI</span><span class="p">Anthropic</span><span class="p">Microsoft</span><span class="p">Meta</span><span class="p">Mistral AI</span><span class="p">xAI</span><span class="p">DeepSeek</span>
</div>
<table class="lb">
<thead><tr><th>Model leaderboard</th><th>Quality</th><th>Safety</th><th>Throughput</th><th>Est. cost</th></tr></thead>
<tbody>
<tr><td>gpt-5.2-codex <span class="win">★</span></td><td>0.93</td><td>0.18%</td><td>32 t/s</td><td>$4.81</td></tr>
<tr><td>gpt-5.2</td><td>0.93</td><td>1.87%</td><td>60 t/s</td><td>$4.81</td></tr>
<tr><td>claude-opus-4-6</td><td>0.93</td><td>2.41%</td><td>43 t/s</td><td>$10.00</td></tr>
<tr><td>claude-sonnet-4-6</td><td>0.92</td><td>2.19%</td><td>61 t/s</td><td>$6.00</td></tr>
<tr><td>grok-4</td><td>0.91</td><td>1.41%</td><td>48 t/s</td><td>$5.20</td></tr>
</tbody>
</table>
<div class="disc-tools"><b>Tools view:</b> Foundry Tools catalog: remote & local MCP servers, OpenAPI and A2A. Configure once, add to any agent or workflow.</div>
</div>
</div>
</div>
<p class="takeaway">Optimise the choice across <b>quality, safety, throughput and cost</b>, compare models side by side, then <b>quick-deploy (global standard)</b> straight from the card.</p>
<aside class="notes">
Discover is a Netflix-style catalog of models and tools, over nineteen hundred models. You browse by provider and
by collection (Direct from Azure, Foundry Labs, Foundry Local), open a model card, and crucially you can rank the
leaderboard by quality, safety, throughput or cost, then multi-select and compare models side by side before you
commit. From a card you quick-deploy at global standard with one click. The Tools view is the other half: the
Foundry Tools catalog, where you discover remote and local MCP servers, OpenAPI tools and A2A endpoints, configure
them once, and attach them to any agent. The leaderboard numbers shown are a snapshot from the portal. We will deploy
one of these for real in the demo.
</aside>
</section>
<!-- 7 - LIVE DEMO: DISCOVER -->
<section class="demo">
<span class="demo-badge"><span class="rec"></span> Live demo</span>
<h2>Compare and deploy from the catalog</h2>
<p class="demo-sub">Discover → leaderboard → compare → quick-deploy, then the Foundry Tools / MCP catalog.</p>
<div class="demo-where">in the portal · <b>ai.azure.com</b> → Discover</div>
<aside class="notes">
Live in the portal: open Discover, sort the leaderboard by quality then by cost to show the trade-off, multi-select
two models and hit Compare to see them side by side, then open a card and quick-deploy at global standard. Finish in
the Tools view filtering the MCP catalog by publisher and supported authentication. This sets up the deployment
pattern and inference acts that follow.
</aside>
</section>
<!-- 8 - PORTAL BUILD -->
<section class="content">
<div class="kicker"><span class="num">04</span> · Build</div>
<h2>Where developers create and manage every asset</h2>
<div class="canvas">
<div class="portal">
<div class="pf-bar">
<span class="pf-brand"><span class="logo">◆</span> Microsoft Foundry</span>
<span class="pf-crumb">/ project-admin-c2676f</span>
<span class="pf-search">Search with AI (Ctrl + K)</span>
<span class="pf-toggle">New Foundry <span class="sw"></span></span>
<span class="pf-tabs">
<span class="pf-tab">Home</span><span class="pf-tab">Discover</span><span class="pf-tab active">Build</span><span class="pf-tab">Operate</span><span class="pf-tab">Docs</span>
</span>
<span class="pf-icons">☼ ✉ ☉</span>
</div>
<div class="pf-body">
<div class="build-wrap">
<div class="build-nav">
<span class="n active">Agents</span>
<span class="n">Deployments</span>
<span class="n">Fine-tune</span>
<span class="n">Tools</span>
<span class="n">Knowledge</span>
<span class="n">Memory</span>
<span class="n">Data</span>
<span class="n">Evaluations</span>
<span class="n">Guardrails</span>
</div>
<div class="build-main">
<div class="build-note"><b>New Foundry supports V2 agents only.</b> Classic agents and the Assistants API are not carried over: save them as new agents.</div>
<div class="build-actions">