create-slide-deck 0.1.0

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.
Files changed (105) hide show
  1. package/dist/index.js +119 -0
  2. package/package.json +36 -0
  3. package/template-full/README.md +99 -0
  4. package/template-full/package.json +47 -0
  5. package/template-full/src/reveal/components/auto-layout.ts +229 -0
  6. package/template-full/src/reveal/components/charts.tsx +213 -0
  7. package/template-full/src/reveal/core/blocks.ts +172 -0
  8. package/template-full/src/reveal/core/deck-init.ts +60 -0
  9. package/template-full/src/reveal/core/design.ts +46 -0
  10. package/template-full/src/reveal/core/layout.ts +187 -0
  11. package/template-full/src/reveal/core/mount-registry.ts +41 -0
  12. package/template-full/src/reveal/core/presets.ts +189 -0
  13. package/template-full/src/reveal/core/runtime.ts +141 -0
  14. package/template-full/src/reveal/core/types.ts +114 -0
  15. package/template-full/src/reveal/data/algorithms.ts +78 -0
  16. package/template-full/src/reveal/data/benchmark.ts +79 -0
  17. package/template-full/src/reveal/decks/demo-showcase/components/demo-arc-progress.tsx +153 -0
  18. package/template-full/src/reveal/decks/demo-showcase/components/demo-before-after.tsx +164 -0
  19. package/template-full/src/reveal/decks/demo-showcase/components/demo-bigtext.tsx +70 -0
  20. package/template-full/src/reveal/decks/demo-showcase/components/demo-card-flip.tsx +118 -0
  21. package/template-full/src/reveal/decks/demo-showcase/components/demo-chat-bubbles.tsx +257 -0
  22. package/template-full/src/reveal/decks/demo-showcase/components/demo-code.tsx +136 -0
  23. package/template-full/src/reveal/decks/demo-showcase/components/demo-concept-map.tsx +336 -0
  24. package/template-full/src/reveal/decks/demo-showcase/components/demo-counter.tsx +194 -0
  25. package/template-full/src/reveal/decks/demo-showcase/components/demo-cover.tsx +188 -0
  26. package/template-full/src/reveal/decks/demo-showcase/components/demo-dark-dashboard.tsx +166 -0
  27. package/template-full/src/reveal/decks/demo-showcase/components/demo-eval-matrix.tsx +191 -0
  28. package/template-full/src/reveal/decks/demo-showcase/components/demo-force-graph.tsx +169 -0
  29. package/template-full/src/reveal/decks/demo-showcase/components/demo-fullbleed-bars.tsx +109 -0
  30. package/template-full/src/reveal/decks/demo-showcase/components/demo-fullbleed-flow.tsx +177 -0
  31. package/template-full/src/reveal/decks/demo-showcase/components/demo-heatmap.tsx +135 -0
  32. package/template-full/src/reveal/decks/demo-showcase/components/demo-icon-wall.tsx +143 -0
  33. package/template-full/src/reveal/decks/demo-showcase/components/demo-math.tsx +103 -0
  34. package/template-full/src/reveal/decks/demo-showcase/components/demo-number-morph.tsx +126 -0
  35. package/template-full/src/reveal/decks/demo-showcase/components/demo-path.tsx +185 -0
  36. package/template-full/src/reveal/decks/demo-showcase/components/demo-radar.tsx +124 -0
  37. package/template-full/src/reveal/decks/demo-showcase/components/demo-rough.tsx +169 -0
  38. package/template-full/src/reveal/decks/demo-showcase/components/demo-sankey.tsx +144 -0
  39. package/template-full/src/reveal/decks/demo-showcase/components/demo-screenshot-annotate.tsx +181 -0
  40. package/template-full/src/reveal/decks/demo-showcase/components/demo-stacked-cards.tsx +159 -0
  41. package/template-full/src/reveal/decks/demo-showcase/components/demo-tabs.tsx +206 -0
  42. package/template-full/src/reveal/decks/demo-showcase/components/demo-timeline.tsx +162 -0
  43. package/template-full/src/reveal/decks/demo-showcase/components/demo-treemap.tsx +161 -0
  44. package/template-full/src/reveal/decks/demo-showcase/components/demo-zoom-focus.tsx +223 -0
  45. package/template-full/src/reveal/decks/demo-showcase/components/registry.ts +63 -0
  46. package/template-full/src/reveal/decks/demo-showcase/demo.css +237 -0
  47. package/template-full/src/reveal/decks/demo-showcase/index.html +24 -0
  48. package/template-full/src/reveal/decks/demo-showcase/main.ts +7 -0
  49. package/template-full/src/reveal/decks/demo-showcase/slides.ts +271 -0
  50. package/template-full/src/reveal/decks/fse26-rca/components/aws-cascade.tsx +295 -0
  51. package/template-full/src/reveal/decks/fse26-rca/components/bench-compare.tsx +64 -0
  52. package/template-full/src/reveal/decks/fse26-rca/components/bench-deficiency.tsx +104 -0
  53. package/template-full/src/reveal/decks/fse26-rca/components/bench-loop.tsx +402 -0
  54. package/template-full/src/reveal/decks/fse26-rca/components/bench-needs.tsx +78 -0
  55. package/template-full/src/reveal/decks/fse26-rca/components/closing-takeaway.tsx +165 -0
  56. package/template-full/src/reveal/decks/fse26-rca/components/cloud-incidents.tsx +88 -0
  57. package/template-full/src/reveal/decks/fse26-rca/components/failure-modes.tsx +59 -0
  58. package/template-full/src/reveal/decks/fse26-rca/components/fault-heatmap.tsx +85 -0
  59. package/template-full/src/reveal/decks/fse26-rca/components/hierarchy-tree.tsx +93 -0
  60. package/template-full/src/reveal/decks/fse26-rca/components/incident-hard.tsx +72 -0
  61. package/template-full/src/reveal/decks/fse26-rca/components/rca-pipeline.tsx +193 -0
  62. package/template-full/src/reveal/decks/fse26-rca/components/registry.ts +37 -0
  63. package/template-full/src/reveal/decks/fse26-rca/components/simple-rca.tsx +216 -0
  64. package/template-full/src/reveal/decks/fse26-rca/components/sota-collapse.tsx +63 -0
  65. package/template-full/src/reveal/decks/fse26-rca/components/srca-results.tsx +115 -0
  66. package/template-full/src/reveal/decks/fse26-rca/images/aws-outage-2025-deployflow.png +0 -0
  67. package/template-full/src/reveal/decks/fse26-rca/images/aws-post-event-summary.png +0 -0
  68. package/template-full/src/reveal/decks/fse26-rca/images/bbc-crowdstrike.png +0 -0
  69. package/template-full/src/reveal/decks/fse26-rca/images/cnn-meta-outage-2021.png +0 -0
  70. package/template-full/src/reveal/decks/fse26-rca/images/cover.png +0 -0
  71. package/template-full/src/reveal/decks/fse26-rca/images/nyt-facebook-2021.png +0 -0
  72. package/template-full/src/reveal/decks/fse26-rca/images/qr-repo.png +0 -0
  73. package/template-full/src/reveal/decks/fse26-rca/images/verge-crowdstrike-2024.png +0 -0
  74. package/template-full/src/reveal/decks/fse26-rca/images/wiki-meta-outage-2021.png +0 -0
  75. package/template-full/src/reveal/decks/fse26-rca/index.html +30 -0
  76. package/template-full/src/reveal/decks/fse26-rca/main.ts +8 -0
  77. package/template-full/src/reveal/decks/fse26-rca/slides.ts +175 -0
  78. package/template-full/src/reveal/env.d.ts +38 -0
  79. package/template-full/src/reveal/theme.css +762 -0
  80. package/template-full/src/reveal/tools/dev.mjs +120 -0
  81. package/template-full/src/reveal/tools/export-pdf.mjs +86 -0
  82. package/template-full/src/reveal/tools/preview.mjs +132 -0
  83. package/template-full/tsconfig.json +19 -0
  84. package/template-full/vite.config.ts +95 -0
  85. package/template-minimal/package.json +42 -0
  86. package/template-minimal/src/reveal/components/auto-layout.ts +229 -0
  87. package/template-minimal/src/reveal/components/charts.tsx +213 -0
  88. package/template-minimal/src/reveal/core/blocks.ts +172 -0
  89. package/template-minimal/src/reveal/core/deck-init.ts +60 -0
  90. package/template-minimal/src/reveal/core/design.ts +46 -0
  91. package/template-minimal/src/reveal/core/layout.ts +187 -0
  92. package/template-minimal/src/reveal/core/mount-registry.ts +41 -0
  93. package/template-minimal/src/reveal/core/presets.ts +189 -0
  94. package/template-minimal/src/reveal/core/runtime.ts +141 -0
  95. package/template-minimal/src/reveal/core/types.ts +114 -0
  96. package/template-minimal/src/reveal/data/.gitkeep +0 -0
  97. package/template-minimal/src/reveal/decks/my-deck/components/example-component.tsx +28 -0
  98. package/template-minimal/src/reveal/decks/my-deck/components/registry.ts +9 -0
  99. package/template-minimal/src/reveal/decks/my-deck/index.html +14 -0
  100. package/template-minimal/src/reveal/decks/my-deck/main.ts +5 -0
  101. package/template-minimal/src/reveal/decks/my-deck/slides.ts +34 -0
  102. package/template-minimal/src/reveal/env.d.ts +38 -0
  103. package/template-minimal/src/reveal/theme.css +762 -0
  104. package/template-minimal/tsconfig.json +19 -0
  105. package/template-minimal/vite.config.ts +95 -0
@@ -0,0 +1,762 @@
1
+ :root {
2
+ --slide-width: 1280px;
3
+ --slide-height: 720px;
4
+ --canvas: #ffffff;
5
+ --text: #313131;
6
+ --red: #c00000;
7
+ --line: #bfbfbf;
8
+ --blue: #00a6d6;
9
+ --green: #76b82a;
10
+ --teal: #1b556b;
11
+ --muted: #767676;
12
+ }
13
+
14
+ @page {
15
+ size: 1280px 720px;
16
+ margin: 0;
17
+ }
18
+
19
+ html,
20
+ body {
21
+ margin: 0;
22
+ background: var(--canvas);
23
+ }
24
+
25
+ .global-svg-defs {
26
+ position: absolute;
27
+ width: 0;
28
+ height: 0;
29
+ overflow: hidden;
30
+ }
31
+
32
+ .reveal {
33
+ color: var(--text);
34
+ font-family: Aptos, Arial, sans-serif;
35
+ }
36
+
37
+ .reveal svg text {
38
+ font-family: Aptos, Arial, sans-serif;
39
+ }
40
+
41
+ .reveal .block-mount * {
42
+ font-family: inherit;
43
+ }
44
+
45
+ .reveal .slides {
46
+ text-align: left;
47
+ }
48
+
49
+ .reveal .slides section {
50
+ box-sizing: border-box;
51
+ width: var(--slide-width);
52
+ height: var(--slide-height);
53
+ padding: 0;
54
+ background: var(--canvas);
55
+ overflow: hidden;
56
+ }
57
+
58
+ .reveal .slides section.native-slide {
59
+ position: absolute;
60
+ }
61
+
62
+ .reveal .slides section.image-slide.present {
63
+ display: flex !important;
64
+ align-items: center;
65
+ justify-content: center;
66
+ }
67
+
68
+ .full-slide-image {
69
+ display: block;
70
+ width: 100%;
71
+ height: 100%;
72
+ object-fit: contain;
73
+ }
74
+
75
+ .slide-title {
76
+ position: absolute;
77
+ left: 72px;
78
+ top: 8px;
79
+ width: 1136px;
80
+ color: var(--text);
81
+ font-size: 40px;
82
+ font-weight: 700;
83
+ line-height: 1.12;
84
+ letter-spacing: 0;
85
+ z-index: 4;
86
+ }
87
+
88
+ .page-no {
89
+ position: absolute;
90
+ right: 56px;
91
+ bottom: 38px;
92
+ font-size: 14px;
93
+ color: var(--text);
94
+ z-index: 4;
95
+ }
96
+
97
+ .inst-mark {
98
+ position: absolute;
99
+ right: 40px;
100
+ top: 14px;
101
+ font-size: 14px;
102
+ font-weight: 700;
103
+ color: var(--muted);
104
+ opacity: 0.5;
105
+ z-index: 5;
106
+ pointer-events: none;
107
+ letter-spacing: 0.3px;
108
+ }
109
+
110
+ .slide-positioned-block {
111
+ position: absolute;
112
+ box-sizing: border-box;
113
+ }
114
+
115
+ .slide-flow-block,
116
+ .slide-block {
117
+ box-sizing: border-box;
118
+ }
119
+
120
+ .slide-block.layer-background { z-index: 0; }
121
+ .slide-block.layer-connector { z-index: 1; }
122
+ .slide-block.layer-content { z-index: 2; }
123
+ .slide-block.layer-overlay { z-index: 3; }
124
+ .slide-block.layer-chrome { z-index: 4; }
125
+
126
+ .block-image {
127
+ display: block;
128
+ width: 100%;
129
+ height: 100%;
130
+ object-fit: contain;
131
+ }
132
+
133
+ .block-mount {
134
+ width: 100%;
135
+ height: 100%;
136
+ }
137
+
138
+ .reveal .slides section:not(.present) .block-mount {
139
+ visibility: hidden !important;
140
+ }
141
+
142
+ .native-slide > .slide-positioned-block {
143
+ z-index: 2;
144
+ }
145
+
146
+ .native-slide > .connector-layer {
147
+ z-index: 1;
148
+ pointer-events: none;
149
+ }
150
+
151
+ .native-svg {
152
+ display: block;
153
+ width: 100%;
154
+ height: 100%;
155
+ overflow: visible;
156
+ }
157
+
158
+ .inline-icon {
159
+ display: block;
160
+ width: 100%;
161
+ height: 100%;
162
+ }
163
+
164
+ .icon-node {
165
+ display: flex;
166
+ flex-direction: column;
167
+ align-items: center;
168
+ justify-content: flex-start;
169
+ height: 100%;
170
+ text-align: center;
171
+ }
172
+
173
+ .icon-node.align-left {
174
+ flex-direction: row;
175
+ align-items: center;
176
+ justify-content: flex-start;
177
+ gap: 16px;
178
+ text-align: left;
179
+ }
180
+
181
+ .icon-node .icon-wrap {
182
+ display: flex;
183
+ align-items: center;
184
+ justify-content: center;
185
+ margin: 0 auto 12px;
186
+ }
187
+
188
+ .icon-node.emphasis .node-label {
189
+ font-size: 30px;
190
+ }
191
+
192
+ .node-label {
193
+ display: inline-block;
194
+ padding: 0 5px;
195
+ background: #ffffff;
196
+ font-size: 24px;
197
+ line-height: 1.08;
198
+ font-weight: 800;
199
+ text-shadow: 0 0 5px #ffffff, 0 0 5px #ffffff, 0 0 5px #ffffff;
200
+ }
201
+
202
+ .node-sub {
203
+ display: inline-block;
204
+ padding: 0 4px;
205
+ background: #ffffff;
206
+ margin-top: 7px;
207
+ font-size: 14px;
208
+ line-height: 1.15;
209
+ color: var(--muted);
210
+ text-shadow: 0 0 5px #ffffff, 0 0 5px #ffffff, 0 0 5px #ffffff;
211
+ }
212
+
213
+ .claim {
214
+ font-size: 30px;
215
+ line-height: 1.12;
216
+ font-weight: 900;
217
+ text-align: center;
218
+ }
219
+
220
+ .cover-photo {
221
+ position: absolute;
222
+ top: 40px;
223
+ left: 50%;
224
+ transform: translateX(-50%);
225
+ width: 900px;
226
+ height: auto;
227
+ object-fit: contain;
228
+ opacity: 0.55;
229
+ }
230
+
231
+ .cover-mark {
232
+ position: absolute;
233
+ right: 286px;
234
+ top: 78px;
235
+ color: var(--red);
236
+ font-size: 16px;
237
+ font-weight: 900;
238
+ }
239
+
240
+ .cover-title {
241
+ position: absolute;
242
+ left: 100px;
243
+ right: 100px;
244
+ top: 320px;
245
+ font-size: 30px;
246
+ line-height: 1.18;
247
+ font-weight: 900;
248
+ text-align: center;
249
+ color: #000000;
250
+ }
251
+
252
+ .authors {
253
+ position: absolute;
254
+ left: 150px;
255
+ top: 410px;
256
+ width: 980px;
257
+ font-size: 17px;
258
+ line-height: 1.45;
259
+ text-align: center;
260
+ }
261
+
262
+ .authors strong {
263
+ color: #000000;
264
+ }
265
+
266
+ .affiliation {
267
+ position: absolute;
268
+ left: 150px;
269
+ top: 490px;
270
+ width: 980px;
271
+ font-size: 18px;
272
+ font-weight: 900;
273
+ text-align: center;
274
+ }
275
+
276
+ .affiliation-sub {
277
+ position: absolute;
278
+ left: 150px;
279
+ top: 522px;
280
+ width: 980px;
281
+ font-size: 15px;
282
+ text-align: center;
283
+ color: var(--muted);
284
+ }
285
+
286
+ .source-note {
287
+ position: absolute;
288
+ left: 72px;
289
+ bottom: 48px;
290
+ font-size: 14px;
291
+ color: #a0a0a0;
292
+ }
293
+
294
+ .trace-mini {
295
+ position: relative;
296
+ height: 62px;
297
+ }
298
+
299
+ .trace-mini span {
300
+ position: absolute;
301
+ top: 28px;
302
+ width: 34px;
303
+ height: 12px;
304
+ border-radius: 10px;
305
+ border: 3px solid var(--green);
306
+ }
307
+
308
+ .trace-mini span:nth-child(1) { left: 8px; }
309
+ .trace-mini span:nth-child(2) { left: 56px; }
310
+ .trace-mini span:nth-child(3) { left: 104px; }
311
+
312
+ .question-line {
313
+ font-size: 26px;
314
+ font-weight: 900;
315
+ text-align: center;
316
+ }
317
+
318
+ .section-label {
319
+ font-size: 28px;
320
+ line-height: 1.1;
321
+ font-weight: 900;
322
+ }
323
+
324
+ .big-question {
325
+ font-size: 31px;
326
+ line-height: 1.15;
327
+ font-weight: 800;
328
+ text-align: center;
329
+ }
330
+
331
+ .big-question strong {
332
+ color: var(--red);
333
+ font-size: 42px;
334
+ }
335
+
336
+ .pill,
337
+ .tag {
338
+ display: inline-flex;
339
+ align-items: center;
340
+ justify-content: center;
341
+ min-height: 30px;
342
+ padding: 4px 18px;
343
+ border: 2px solid var(--blue);
344
+ border-radius: 999px;
345
+ color: var(--text);
346
+ font-size: 15px;
347
+ font-weight: 800;
348
+ background: #ffffff;
349
+ }
350
+
351
+ .native-table {
352
+ border-collapse: collapse;
353
+ width: 100%;
354
+ font-size: 22px;
355
+ }
356
+
357
+ .native-table th,
358
+ .native-table td {
359
+ padding: 13px 18px;
360
+ border-bottom: 1px solid #e2e2e2;
361
+ text-align: left;
362
+ }
363
+
364
+ .native-table th {
365
+ font-size: 16px;
366
+ font-weight: 900;
367
+ color: var(--text);
368
+ }
369
+
370
+ .native-table .red-cell {
371
+ color: var(--red);
372
+ font-weight: 900;
373
+ }
374
+
375
+ .table-title {
376
+ margin-bottom: 14px;
377
+ font-size: 22px;
378
+ font-weight: 900;
379
+ }
380
+
381
+ .shortcut-result,
382
+ .shortcut-result-card strong {
383
+ color: var(--red);
384
+ font-size: 32px;
385
+ font-weight: 900;
386
+ text-align: center;
387
+ }
388
+
389
+ .shortcut-result-card {
390
+ display: flex;
391
+ flex-direction: column;
392
+ align-items: center;
393
+ justify-content: center;
394
+ text-align: center;
395
+ }
396
+
397
+ .warning-text,
398
+ .shortcut-result-card span {
399
+ margin-top: 32px;
400
+ color: var(--text);
401
+ font-size: 22px;
402
+ line-height: 1.2;
403
+ font-weight: 800;
404
+ text-align: center;
405
+ }
406
+
407
+ .gap-row,
408
+ .taxonomy {
409
+ display: grid;
410
+ gap: 28px;
411
+ }
412
+
413
+ .gap-row {
414
+ grid-template-columns: repeat(4, 1fr);
415
+ align-items: start;
416
+ }
417
+
418
+ .gap-item {
419
+ text-align: center;
420
+ }
421
+
422
+ .gap-item span,
423
+ .taxon p,
424
+ .large-stat span,
425
+ .matrix-block span,
426
+ .result-box span,
427
+ .evidence-mini span {
428
+ display: block;
429
+ margin-top: 8px;
430
+ color: var(--muted);
431
+ font-size: 15px;
432
+ line-height: 1.2;
433
+ font-weight: 700;
434
+ }
435
+
436
+ .taxonomy {
437
+ grid-template-columns: repeat(3, 1fr);
438
+ }
439
+
440
+ .taxon h3 {
441
+ margin: 0;
442
+ color: var(--text);
443
+ font-size: 22px;
444
+ font-weight: 900;
445
+ text-align: center;
446
+ }
447
+
448
+ .taxon p {
449
+ min-height: 36px;
450
+ text-align: center;
451
+ }
452
+
453
+ .large-stat,
454
+ .matrix-block,
455
+ .result-box,
456
+ .evidence-mini,
457
+ .fault-count,
458
+ .fault-panel,
459
+ .chart-shell {
460
+ border-radius: 10px;
461
+ background: #ffffff;
462
+ box-shadow: 0 7px 20px rgba(49, 49, 49, 0.12);
463
+ }
464
+
465
+ .large-stat,
466
+ .result-box,
467
+ .fault-count {
468
+ display: flex;
469
+ flex-direction: column;
470
+ align-items: center;
471
+ justify-content: center;
472
+ text-align: center;
473
+ }
474
+
475
+ .large-stat strong,
476
+ .fault-count strong {
477
+ color: var(--text);
478
+ font-size: 34px;
479
+ line-height: 1.05;
480
+ font-weight: 900;
481
+ }
482
+
483
+ .result-box strong,
484
+ .evidence-mini strong {
485
+ color: var(--red);
486
+ font-size: 34px;
487
+ line-height: 1.05;
488
+ font-weight: 900;
489
+ }
490
+
491
+ .value-red strong {
492
+ color: var(--red);
493
+ }
494
+
495
+ .large-stat.centered {
496
+ text-align: center;
497
+ }
498
+
499
+ .matrix-block {
500
+ padding: 14px 18px;
501
+ text-align: center;
502
+ }
503
+
504
+ .method-label {
505
+ margin-bottom: 18px;
506
+ color: var(--teal);
507
+ font-size: 26px;
508
+ font-weight: 900;
509
+ text-align: center;
510
+ }
511
+
512
+ .fault-count {
513
+ padding: 18px;
514
+ }
515
+
516
+ .chart-shell {
517
+ padding: 18px 18px 8px;
518
+ }
519
+
520
+ .result-box {
521
+ gap: 16px;
522
+ }
523
+
524
+ .result-box strong {
525
+ font-size: 76px;
526
+ }
527
+
528
+ .fault-panel {
529
+ padding: 28px 32px;
530
+ }
531
+
532
+ .fault-panel h3 {
533
+ margin: 0 0 28px;
534
+ font-size: 26px;
535
+ font-weight: 900;
536
+ }
537
+
538
+ .fault-dot-row {
539
+ display: flex;
540
+ align-items: center;
541
+ justify-content: space-between;
542
+ margin: 18px 0;
543
+ font-size: 21px;
544
+ font-weight: 800;
545
+ }
546
+
547
+ .fault-dot-row b {
548
+ width: 15px;
549
+ height: 15px;
550
+ border-radius: 50%;
551
+ }
552
+
553
+ .evidence-mini {
554
+ padding: 16px 18px;
555
+ text-align: center;
556
+ }
557
+
558
+ .bars {
559
+ display: flex;
560
+ align-items: end;
561
+ justify-content: center;
562
+ gap: 8px;
563
+ height: 40px;
564
+ margin-top: 18px;
565
+ }
566
+
567
+ .bars i {
568
+ display: block;
569
+ width: 54px;
570
+ background: var(--red);
571
+ border-radius: 3px;
572
+ }
573
+
574
+ .bars i:nth-child(1) { height: 12px; opacity: 0.45; }
575
+ .bars i:nth-child(2) { height: 24px; opacity: 0.7; }
576
+ .bars i:nth-child(3) { height: 36px; }
577
+
578
+ .column-title {
579
+ font-size: 25px;
580
+ font-weight: 900;
581
+ text-align: center;
582
+ }
583
+
584
+ .foot-claim {
585
+ color: var(--text);
586
+ font-size: 20px;
587
+ line-height: 1.2;
588
+ font-weight: 800;
589
+ text-align: center;
590
+ }
591
+
592
+ .srca-table {
593
+ border-collapse: collapse;
594
+ width: 100%;
595
+ font-family: Aptos, Arial, sans-serif;
596
+ }
597
+
598
+ .srca-table td {
599
+ padding: 6px 8px;
600
+ font-size: 17px;
601
+ font-weight: 700;
602
+ border-bottom: 1px solid #e8e8e8;
603
+ color: #999;
604
+ text-align: right;
605
+ }
606
+
607
+ .srca-table td:first-child {
608
+ text-align: left;
609
+ padding-left: 0;
610
+ }
611
+
612
+ .srca-table .srca-head td {
613
+ font-size: 14px;
614
+ font-weight: 900;
615
+ color: var(--text);
616
+ border-bottom: none;
617
+ padding-bottom: 2px;
618
+ text-align: center;
619
+ }
620
+
621
+ .srca-table .srca-head td:first-child {
622
+ text-align: left;
623
+ }
624
+
625
+ .srca-table .srca-subhead td {
626
+ font-size: 14px;
627
+ font-weight: 800;
628
+ color: #999;
629
+ border-bottom: 2px solid var(--text);
630
+ padding-top: 0;
631
+ padding-bottom: 8px;
632
+ text-align: right;
633
+ }
634
+
635
+ .srca-table .srca-subhead td:first-child {
636
+ text-align: left;
637
+ }
638
+
639
+ .srca-table .srca-win {
640
+ color: var(--red);
641
+ font-weight: 900;
642
+ }
643
+
644
+ .srca-table .srca-ds {
645
+ color: var(--text);
646
+ font-weight: 800;
647
+ }
648
+
649
+ .srca-table .srca-method {
650
+ opacity: 0.7;
651
+ }
652
+
653
+ .cascade-trigger {
654
+ display: block;
655
+ width: 0;
656
+ height: 0;
657
+ overflow: hidden;
658
+ }
659
+
660
+ .news-img-block .block-image {
661
+ object-fit: contain;
662
+ object-position: top center;
663
+ }
664
+
665
+ .img-caption {
666
+ text-align: center;
667
+ line-height: 1.3;
668
+ }
669
+
670
+ .img-caption strong {
671
+ display: block;
672
+ font-size: 18px;
673
+ font-weight: 900;
674
+ color: var(--text);
675
+ }
676
+
677
+ .img-caption span {
678
+ font-size: 15px;
679
+ font-weight: 700;
680
+ color: var(--red);
681
+ }
682
+
683
+ .blur-banner-wrap {
684
+ z-index: 3 !important;
685
+ }
686
+
687
+ .blur-banner {
688
+ display: flex;
689
+ flex-direction: column;
690
+ align-items: center;
691
+ justify-content: center;
692
+ width: 100%;
693
+ height: 100%;
694
+ background: rgba(255, 255, 255, 0.92);
695
+ backdrop-filter: blur(32px);
696
+ -webkit-backdrop-filter: blur(32px);
697
+ }
698
+
699
+ .blur-banner-line {
700
+ font-size: 56px;
701
+ font-weight: 900;
702
+ color: var(--text);
703
+ line-height: 1.15;
704
+ text-align: center;
705
+ }
706
+
707
+ .blur-banner-line strong {
708
+ color: var(--red);
709
+ }
710
+
711
+ .blur-banner-sub {
712
+ margin-top: 20px;
713
+ font-size: 36px;
714
+ font-weight: 800;
715
+ color: var(--muted);
716
+ text-align: center;
717
+ }
718
+
719
+ .blur-banner-sub strong {
720
+ color: var(--red);
721
+ }
722
+
723
+ .industry-stat {
724
+ font-size: 22px;
725
+ font-weight: 700;
726
+ text-align: center;
727
+ color: var(--muted);
728
+ line-height: 1.3;
729
+ }
730
+
731
+ .industry-stat strong {
732
+ color: var(--red);
733
+ font-size: 28px;
734
+ font-weight: 900;
735
+ }
736
+
737
+ .fragment {
738
+ will-change: opacity, transform;
739
+ transform-origin: center center;
740
+ }
741
+
742
+ .connector-fragment {
743
+ will-change: opacity, stroke-dashoffset;
744
+ }
745
+
746
+ @media print {
747
+ html,
748
+ body {
749
+ width: var(--slide-width);
750
+ height: var(--slide-height);
751
+ }
752
+
753
+ .reveal .slides section {
754
+ page-break-after: always;
755
+ }
756
+
757
+ .fragment {
758
+ opacity: 1 !important;
759
+ visibility: visible !important;
760
+ transform: none !important;
761
+ }
762
+ }