-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcloudseer_presentation.html
More file actions
777 lines (728 loc) · 32.1 KB
/
cloudseer_presentation.html
File metadata and controls
777 lines (728 loc) · 32.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>CloudSeer — TechSolstice 2026</title>
<link rel="preconnect" href="https://fonts.googleapis.com"/>
<link href="https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Space+Mono:wght@400;700&display=swap" rel="stylesheet"/>
<style>
/* === RESET & ROOT === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--bg: #060810;
--surface: #0d1117;
--card: #111827;
--border: rgba(0,212,255,0.15);
--cyan: #00D4FF;
--cyan-dim: rgba(0,212,255,0.12);
--cyan-glow: rgba(0,212,255,0.35);
--green: #00FFA3;
--red: #FF4757;
--amber: #FFB700;
--text: #F0F4FF;
--muted: #6B7A99;
--font-head: 'Syne', sans-serif;
--font-mono: 'Space Mono', monospace;
}
html, body {
width: 100%; height: 100%;
background: var(--bg);
color: var(--text);
font-family: var(--font-head);
overflow: hidden;
}
/* === SLIDE ENGINE === */
.deck { width: 100%; height: 100vh; height: 100dvh; position: relative; }
.slide {
position: absolute; inset: 0;
width: 100%; height: 100vh; height: 100dvh;
overflow: hidden;
display: flex; flex-direction: column; justify-content: center; align-items: center;
padding: clamp(24px, 5vw, 64px);
opacity: 0; pointer-events: none;
transition: opacity 0.5s ease, transform 0.5s ease;
transform: translateY(20px);
}
.slide.active {
opacity: 1; pointer-events: all;
transform: translateY(0);
}
/* === GRID BACKGROUND === */
.grid-bg {
position: fixed; inset: 0; z-index: 0;
background-image:
linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
background-size: 48px 48px;
pointer-events: none;
}
.vignette {
position: fixed; inset: 0; z-index: 1;
background: radial-gradient(ellipse at center, transparent 40%, rgba(6,8,16,0.85) 100%);
pointer-events: none;
}
.slide > * { position: relative; z-index: 2; }
/* === NAV === */
.nav {
position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
display: flex; gap: 10px; z-index: 100;
}
.dot {
width: 8px; height: 8px; border-radius: 50%;
background: var(--muted); cursor: pointer;
transition: all 0.3s;
}
.dot.active { background: var(--cyan); box-shadow: 0 0 8px var(--cyan-glow); transform: scale(1.3); }
.nav-arrows {
position: fixed; bottom: 20px; right: 32px;
display: flex; gap: 10px; z-index: 100;
}
.nav-btn {
background: var(--card); border: 1px solid var(--border);
color: var(--cyan); width: 40px; height: 40px; border-radius: 8px;
cursor: pointer; font-size: 16px; font-family: var(--font-mono);
transition: all 0.2s;
}
.nav-btn:hover { background: var(--cyan-dim); border-color: var(--cyan); }
.slide-counter {
position: fixed; top: 24px; right: 32px; z-index: 100;
font-family: var(--font-mono); font-size: 12px; color: var(--muted);
}
.slide-counter span { color: var(--cyan); }
/* === REVEAL ANIMATIONS === */
@keyframes fadeUp {
from { opacity: 0; transform: translateY(24px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
from { opacity: 0; } to { opacity: 1; }
}
@keyframes scanline {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}
@keyframes pulse-border {
0%, 100% { box-shadow: 0 0 0 0 var(--cyan-glow); }
50% { box-shadow: 0 0 0 6px transparent; }
}
@keyframes count-up { from { opacity: 0; } to { opacity: 1; } }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0; } }
.slide.active .r1 { animation: fadeUp 0.6s ease 0.1s both; }
.slide.active .r2 { animation: fadeUp 0.6s ease 0.25s both; }
.slide.active .r3 { animation: fadeUp 0.6s ease 0.4s both; }
.slide.active .r4 { animation: fadeUp 0.6s ease 0.55s both; }
.slide.active .r5 { animation: fadeUp 0.6s ease 0.7s both; }
.slide.active .r6 { animation: fadeUp 0.6s ease 0.85s both; }
/* === COMMON COMPONENTS === */
.label {
font-family: var(--font-mono); font-size: clamp(10px, 1.2vw, 12px);
color: var(--cyan); letter-spacing: 0.18em; text-transform: uppercase;
display: flex; align-items: center; gap: 8px;
}
.label::before { content: ''; display: inline-block; width: 20px; height: 1px; background: var(--cyan); }
.h1 {
font-size: clamp(42px, 8vw, 96px); font-weight: 800; line-height: 0.95;
letter-spacing: -0.03em;
}
.h2 {
font-size: clamp(30px, 5vw, 60px); font-weight: 700; line-height: 1.05;
letter-spacing: -0.02em;
}
.h3 {
font-size: clamp(20px, 3vw, 36px); font-weight: 600; line-height: 1.2;
}
.body {
font-family: var(--font-mono); font-size: clamp(12px, 1.6vw, 16px);
color: var(--muted); line-height: 1.7;
}
.cyan { color: var(--cyan); }
.green { color: var(--green); }
.red { color: var(--red); }
.amber { color: var(--amber); }
.card {
background: var(--card); border: 1px solid var(--border);
border-radius: 12px; padding: clamp(16px, 2.5vw, 28px);
}
.accent-line {
width: 60px; height: 3px; background: var(--cyan);
border-radius: 2px; margin: 12px 0;
}
/* === SLIDE 1: TITLE === */
#s1 { text-align: center; }
#s1 .logo {
font-family: var(--font-mono); font-size: clamp(52px, 10vw, 120px);
font-weight: 700; letter-spacing: -0.04em;
background: linear-gradient(135deg, #fff 30%, var(--cyan) 100%);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
background-clip: text;
}
#s1 .tagline {
font-family: var(--font-mono); font-size: clamp(13px, 1.8vw, 18px);
color: var(--muted); letter-spacing: 0.08em; margin-top: 12px;
}
#s1 .badge {
display: inline-flex; gap: 24px; margin-top: 36px;
background: var(--card); border: 1px solid var(--border);
border-radius: 999px; padding: 10px 28px;
font-family: var(--font-mono); font-size: 12px; color: var(--muted);
}
#s1 .badge span { color: var(--cyan); }
#s1 .cursor {
display: inline-block; width: 3px; height: 1em;
background: var(--cyan); margin-left: 2px; vertical-align: middle;
animation: blink 1s step-end infinite;
}
#s1 .team-strip {
margin-top: 32px; display: flex; gap: 12px; justify-content: center;
}
#s1 .member {
background: var(--card); border: 1px solid var(--border); border-radius: 8px;
padding: 6px 16px; font-family: var(--font-mono); font-size: 11px; color: var(--muted);
}
/* === SLIDE 2: PROBLEM === */
#s2 { align-items: flex-start; }
#s2 .content { width: 100%; max-width: 1100px; }
#s2 .stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
#s2 .stat-card {
background: var(--card); border: 1px solid var(--border); border-radius: 12px;
padding: 24px; position: relative; overflow: hidden;
}
#s2 .stat-card::after {
content: ''; position: absolute; inset: 0; left: 0; top: 0;
width: 3px; background: var(--cyan); border-radius: 2px 0 0 2px;
}
#s2 .stat-card.red-accent::after { background: var(--red); }
#s2 .stat-card.amber-accent::after { background: var(--amber); }
#s2 .stat-num { font-size: clamp(32px, 4vw, 48px); font-weight: 800; margin-bottom: 4px; }
#s2 .stat-desc { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
#s2 .problem-text { margin-top: 24px; max-width: 700px; }
/* === SLIDE 3: SOLUTION === */
#s3 { align-items: flex-start; }
#s3 .content { width: 100%; max-width: 1100px; }
#s3 .feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
#s3 .feat {
background: var(--card); border: 1px solid var(--border); border-radius: 12px;
padding: 20px 24px; display: flex; gap: 16px; align-items: flex-start;
}
#s3 .feat-icon {
width: 40px; height: 40px; border-radius: 8px; background: var(--cyan-dim);
display: flex; align-items: center; justify-content: center;
font-size: 18px; flex-shrink: 0;
}
#s3 .feat-title { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
#s3 .feat-body { font-family: var(--font-mono); font-size: 11px; color: var(--muted); line-height: 1.6; }
/* === SLIDE 4: INNOVATION === */
#s4 { align-items: flex-start; }
#s4 .content { width: 100%; max-width: 1100px; }
#s4 .vs-grid { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 0; align-items: center; margin-top: 28px; }
#s4 .vs-col {
background: var(--card); border: 1px solid var(--border); border-radius: 12px;
padding: 24px;
}
#s4 .vs-col.winner { border-color: var(--cyan); box-shadow: 0 0 24px var(--cyan-glow); }
#s4 .vs-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em; margin-bottom: 16px; }
#s4 .vs-label.bad { color: var(--red); }
#s4 .vs-label.good { color: var(--green); }
#s4 .vs-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
#s4 .vs-item .icon { font-size: 14px; flex-shrink: 0; margin-top: 2px; }
#s4 .vs-item p { font-family: var(--font-mono); font-size: 12px; color: var(--muted); line-height: 1.5; }
#s4 .vs-sep { display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; color: var(--muted); }
#s4 .diff-bar { margin-top: 28px; background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 20px 24px; }
#s4 .diff-row { display: flex; align-items: center; gap: 16px; margin-bottom: 10px; }
#s4 .diff-row:last-child { margin-bottom: 0; }
#s4 .diff-tag { font-family: var(--font-mono); font-size: 10px; color: var(--cyan); letter-spacing: 0.1em; width: 100px; flex-shrink: 0; }
#s4 .diff-text { font-family: var(--font-mono); font-size: 12px; color: var(--text); }
/* === SLIDE 5: ARCHITECTURE === */
#s5 { align-items: flex-start; }
#s5 .content { width: 100%; max-width: 1100px; }
#s5 .arch-row { display: flex; align-items: center; gap: 0; margin-top: 28px; }
#s5 .arch-node {
flex: 1; background: var(--card); border: 1px solid var(--border); border-radius: 10px;
padding: 14px 12px; text-align: center;
}
#s5 .arch-node.highlight { border-color: var(--cyan); background: var(--cyan-dim); }
#s5 .arch-node .arch-icon { font-size: 20px; margin-bottom: 6px; }
#s5 .arch-node .arch-name { font-size: 12px; font-weight: 600; margin-bottom: 2px; }
#s5 .arch-node .arch-sub { font-family: var(--font-mono); font-size: 10px; color: var(--muted); }
#s5 .arch-arrow {
display: flex; align-items: center; justify-content: center;
width: 32px; flex-shrink: 0;
font-family: var(--font-mono); font-size: 16px; color: var(--cyan);
}
#s5 .stack-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 16px; }
#s5 .stack-pill {
background: var(--card); border: 1px solid var(--border); border-radius: 8px;
padding: 10px 14px; text-align: center;
font-family: var(--font-mono); font-size: 11px;
}
#s5 .stack-pill .sp-label { color: var(--muted); font-size: 9px; letter-spacing: 0.1em; margin-bottom: 3px; }
#s5 .stack-pill .sp-val { color: var(--text); font-size: 12px; font-weight: 700; }
/* === SLIDE 6: FEASIBILITY & PLAN === */
#s6 { align-items: flex-start; }
#s6 .content { width: 100%; max-width: 1100px; }
#s6 .timeline { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
#s6 .tl-row { display: grid; grid-template-columns: 80px 24px 1fr; align-items: start; gap: 12px; }
#s6 .tl-time { font-family: var(--font-mono); font-size: 11px; color: var(--cyan); text-align: right; padding-top: 2px; }
#s6 .tl-dot-col { display: flex; flex-direction: column; align-items: center; }
#s6 .tl-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; margin-top: 4px; }
#s6 .tl-dot.done { background: var(--green); box-shadow: 0 0 6px rgba(0,255,163,0.5); }
#s6 .tl-line { flex: 1; width: 1px; background: var(--border); min-height: 20px; }
#s6 .tl-content { padding-bottom: 6px; }
#s6 .tl-title { font-size: 13px; font-weight: 600; margin-bottom: 3px; }
#s6 .tl-detail { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }
#s6 .proof-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 20px; }
#s6 .proof-card {
background: var(--card); border: 1px solid var(--border); border-radius: 10px;
padding: 14px; text-align: center;
}
#s6 .proof-status { font-size: 18px; margin-bottom: 6px; }
#s6 .proof-label { font-family: var(--font-mono); font-size: 10px; color: var(--muted); }
/* === SLIDE 7: TEAM COORDINATION === */
#s7 { align-items: flex-start; }
#s7 .content { width: 100%; max-width: 1100px; }
#s7 .team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
#s7 .member-card {
background: var(--card); border: 1px solid var(--border); border-radius: 12px;
padding: 20px 24px; display: flex; gap: 16px;
}
#s7 .member-num {
width: 36px; height: 36px; border-radius: 8px; background: var(--cyan-dim);
border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
font-family: var(--font-mono); font-size: 13px; color: var(--cyan); flex-shrink: 0;
}
#s7 .member-role { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
#s7 .member-owns { font-family: var(--font-mono); font-size: 11px; color: var(--muted); margin-bottom: 8px; }
#s7 .member-tags { display: flex; flex-wrap: wrap; gap: 6px; }
#s7 .tag {
background: var(--cyan-dim); border: 1px solid var(--border); border-radius: 4px;
font-family: var(--font-mono); font-size: 10px; color: var(--cyan); padding: 2px 8px;
}
#s7 .collab-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
#s7 .collab-item {
background: var(--card); border: 1px solid var(--border); border-radius: 10px;
padding: 14px 16px; display: flex; align-items: center; gap: 10px;
}
#s7 .collab-icon { font-size: 18px; }
#s7 .collab-text { font-family: var(--font-mono); font-size: 11px; color: var(--muted); line-height: 1.5; }
#s7 .collab-text strong { color: var(--text); display: block; font-size: 12px; margin-bottom: 1px; }
/* === SLIDE 8: CLOSING === */
#s8 { text-align: center; }
#s8 .big-ask { font-size: clamp(28px, 5vw, 52px); font-weight: 800; line-height: 1.1; max-width: 700px; }
#s8 .metric-row { display: flex; gap: 24px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
#s8 .metric-box {
background: var(--card); border: 1px solid var(--border); border-radius: 12px;
padding: 20px 32px; min-width: 160px;
}
#s8 .metric-val { font-size: clamp(28px, 4vw, 44px); font-weight: 800; }
#s8 .metric-label { font-family: var(--font-mono); font-size: 11px; color: var(--muted); margin-top: 4px; }
#s8 .cta {
margin-top: 40px; font-family: var(--font-mono); font-size: 13px; color: var(--muted);
border: 1px solid var(--border); border-radius: 999px; padding: 10px 28px;
display: inline-block; letter-spacing: 0.05em;
}
/* === RESPONSIVE === */
@media (max-height: 700px) {
#s2 .stat-row { gap: 12px; }
#s3 .feature-grid { gap: 10px; }
#s3 .feat { padding: 14px 18px; }
#s5 .arch-node { padding: 10px 8px; }
}
@media (max-height: 600px) {
.h2 { font-size: 28px; }
.label { font-size: 10px; }
#s2 .stat-num { font-size: 28px; }
}
@media (prefers-reduced-motion: reduce) {
.slide, .r1,.r2,.r3,.r4,.r5,.r6 { animation: none !important; transition: none !important; }
}
</style>
</head>
<body>
<div class="grid-bg"></div>
<div class="vignette"></div>
<div class="slide-counter">SLIDE <span id="cur">1</span> / <span id="tot">8</span></div>
<div class="deck" id="deck">
<!-- === SLIDE 1: TITLE === -->
<div class="slide" id="s1">
<div class="r1 label">TechSolstice 2026 · MIT Bengaluru · PS2</div>
<div class="r2 logo" style="margin-top:20px">Cloud<span class="cyan">Seer</span><span class="cursor"></span></div>
<div class="r3 tagline">We don't just detect cloud waste. We prevent it before it compounds.</div>
<div class="r4 badge">
<span>AWS-connected</span> ·
<span>ML-powered</span> ·
<span>Autonomous</span>
</div>
<div class="r5 team-strip">
<div class="member">ML Engineer</div>
<div class="member">Backend + AWS</div>
<div class="member">UI/UX Design</div>
<div class="member">Frontend Dev</div>
</div>
</div>
<!-- === SLIDE 2: PROBLEM UNDERSTANDING === -->
<div class="slide" id="s2">
<div class="content">
<div class="r1 label">Problem Understanding</div>
<div class="r2 h2" style="margin-top:12px">Cloud bills are <span class="red">bleeding companies dry</span><br/>and nobody sees it coming.</div>
<div class="r3 stat-row">
<div class="stat-card red-accent">
<div class="stat-num red">$26.6B</div>
<div class="stat-desc">wasted annually on<br/>idle cloud resources<br/><span style="color:#444b5e">— Flexera 2024</span></div>
</div>
<div class="stat-card amber-accent">
<div class="stat-num amber">32%</div>
<div class="stat-desc">of cloud spend is<br/>unoptimized waste<br/><span style="color:#444b5e">— Gartner estimate</span></div>
</div>
<div class="stat-card">
<div class="stat-num cyan">48 hrs</div>
<div class="stat-desc">average time to detect<br/>a runaway cost spike<br/><span style="color:#444b5e">— manual monitoring</span></div>
</div>
</div>
<div class="r4 problem-text">
<p class="body">Every existing tool — AWS Cost Explorer, third-party dashboards — shows you what already happened. You get a notification <em style="color:#F0F4FF">after</em> the damage is done. There is no system that predicts the spike before it hits, flags the idle resource before it wastes money, and acts autonomously to fix it.</p>
<p class="body" style="margin-top:12px;color:var(--cyan)">That's the gap CloudSeer fills.</p>
</div>
</div>
</div>
<!-- === SLIDE 3: SOLUTION === -->
<div class="slide" id="s3">
<div class="content">
<div class="r1 label">Our Solution</div>
<div class="r2 h2" style="margin-top:12px"><span class="cyan">CloudSeer</span> — A real-time cloud cost<br/>intelligence platform with autonomous action.</div>
<div class="r3 feature-grid">
<div class="feat r3">
<div class="feat-icon">📡</div>
<div>
<div class="feat-title">Live AWS Telemetry</div>
<div class="feat-body">Connected to a real AWS free tier account. CloudWatch polling every 60 seconds via boto3. Not mocked — actual live data.</div>
</div>
</div>
<div class="feat r3">
<div class="feat-icon">🧠</div>
<div>
<div class="feat-title">Predictive Forecasting</div>
<div class="feat-body">Facebook Prophet forecasts cost spikes up to 6 hours ahead, with confidence band visualisation on the dashboard.</div>
</div>
</div>
<div class="feat r4">
<div class="feat-icon">🔬</div>
<div>
<div class="feat-title">Anomaly Detection</div>
<div class="feat-body">Isolation Forest classifies idle EC2s, runaway Lambdas, and cost spikes in real time. Rule-assisted confidence scoring.</div>
</div>
</div>
<div class="feat r4">
<div class="feat-icon">⚡</div>
<div>
<div class="feat-title">One-Click Remediation</div>
<div class="feat-body">When confidence > 85%, the system auto-stops idle EC2 instances via boto3. Before/after cost shown immediately.</div>
</div>
</div>
</div>
</div>
</div>
<!-- === SLIDE 4: INNOVATION === -->
<div class="slide" id="s4">
<div class="content">
<div class="r1 label">Innovation & Creativity</div>
<div class="r2 h2" style="margin-top:12px">The industry is <span class="red">reactive</span>.<br/>We are <span class="cyan">predictive</span>.</div>
<div class="r3 vs-grid">
<div class="vs-col">
<div class="vs-label bad">❌ EXISTING TOOLS</div>
<div class="vs-item"><div class="icon">→</div><p>Cost spike occurs. Bill arrives. Team investigates manually.</p></div>
<div class="vs-item"><div class="icon">→</div><p>Dashboard shows historical data only — yesterday's spend.</p></div>
<div class="vs-item"><div class="icon">→</div><p>Human must approve every remediation step.</p></div>
<div class="vs-item"><div class="icon">→</div><p>Alert fatigue: 50+ emails per week, mostly noise.</p></div>
</div>
<div class="vs-sep">VS</div>
<div class="vs-col winner">
<div class="vs-label good">✓ CLOUDSEER</div>
<div class="vs-item"><div class="icon cyan">→</div><p>Forecasts the spike <strong style="color:#F0F4FF">4–6 hours before it hits</strong>.</p></div>
<div class="vs-item"><div class="icon cyan">→</div><p>Live dashboard with real-time telemetry and Prophet projection.</p></div>
<div class="vs-item"><div class="icon cyan">→</div><p>Autonomous execution above confidence threshold. No human needed.</p></div>
<div class="vs-item"><div class="icon cyan">→</div><p>Plain-language AI summary: what happened, why, what was saved.</p></div>
</div>
</div>
</div>
</div>
<!-- === SLIDE 5: ARCHITECTURE === -->
<div class="slide" id="s5">
<div class="content">
<div class="r1 label">How It Works</div>
<div class="r2 h3" style="margin-top:10px">End-to-end pipeline — from AWS to action in under 60 seconds</div>
<div class="r3 arch-row" style="margin-top:20px">
<div class="arch-node">
<div class="arch-icon">☁️</div>
<div class="arch-name">AWS CloudWatch</div>
<div class="arch-sub">EC2 · Lambda · S3</div>
</div>
<div class="arch-arrow">→</div>
<div class="arch-node highlight">
<div class="arch-icon">🔄</div>
<div class="arch-name">FastAPI Backend</div>
<div class="arch-sub">Poll every 60s</div>
</div>
<div class="arch-arrow">→</div>
<div class="arch-node">
<div class="arch-icon">🗄️</div>
<div class="arch-name">SQLite Store</div>
<div class="arch-sub">Time-series DB</div>
</div>
<div class="arch-arrow">→</div>
<div class="arch-node highlight">
<div class="arch-icon">🧠</div>
<div class="arch-name">ML Engine</div>
<div class="arch-sub">Prophet + IsoForest</div>
</div>
<div class="arch-arrow">→</div>
<div class="arch-node">
<div class="arch-icon">📊</div>
<div class="arch-name">React Dashboard</div>
<div class="arch-sub">Live · 10s refresh</div>
</div>
<div class="arch-arrow">→</div>
<div class="arch-node highlight" style="border-color:var(--green);background:rgba(0,255,163,0.06)">
<div class="arch-icon">⚡</div>
<div class="arch-name">Auto-Remediate</div>
<div class="arch-sub">boto3 execution</div>
</div>
</div>
<div class="r4 stack-grid">
<div class="stack-pill">
<div class="sp-label">CLOUD</div>
<div class="sp-val">AWS Free Tier</div>
</div>
<div class="stack-pill">
<div class="sp-label">BACKEND</div>
<div class="sp-val">FastAPI + boto3</div>
</div>
<div class="stack-pill">
<div class="sp-label">ML</div>
<div class="sp-val">Prophet + sklearn</div>
</div>
<div class="stack-pill">
<div class="sp-label">FRONTEND</div>
<div class="sp-val">React + Recharts</div>
</div>
<div class="stack-pill">
<div class="sp-label">STORAGE</div>
<div class="sp-val">SQLite</div>
</div>
<div class="stack-pill">
<div class="sp-label">STYLING</div>
<div class="sp-val">Tailwind CSS</div>
</div>
<div class="stack-pill">
<div class="sp-label">ANIMATION</div>
<div class="sp-val">Framer Motion</div>
</div>
<div class="stack-pill">
<div class="sp-label">AI SUMMARY</div>
<div class="sp-val">Claude API</div>
</div>
</div>
</div>
</div>
<!-- === SLIDE 6: FEASIBILITY === -->
<div class="slide" id="s6">
<div class="content">
<div class="r1 label">Feasibility & Planning</div>
<div class="r2 h3" style="margin-top:10px">Built in 36 hours — every module is live and integrated</div>
<div class="r3 timeline">
<div class="tl-row">
<div class="tl-time">Hour 0–4</div>
<div class="tl-dot-col"><div class="tl-dot done"></div><div class="tl-line"></div></div>
<div class="tl-content"><div class="tl-title green">Setup + Scaffold ✓</div><div class="tl-detail">AWS account, IAM, EC2/Lambda/S3 provisioned · FastAPI + React scaffold</div></div>
</div>
<div class="tl-row">
<div class="tl-time">Hour 4–12</div>
<div class="tl-dot-col"><div class="tl-dot done"></div><div class="tl-line"></div></div>
<div class="tl-content"><div class="tl-title green">Data Pipeline + ML ✓</div><div class="tl-detail">CloudWatch → SQLite live · Isolation Forest anomaly detection · Prophet forecasting seeded</div></div>
</div>
<div class="tl-row">
<div class="tl-time">Hour 12–22</div>
<div class="tl-dot-col"><div class="tl-dot done"></div><div class="tl-line"></div></div>
<div class="tl-content"><div class="tl-title green">Full Integration ✓</div><div class="tl-detail">Frontend → API connected · Remediation endpoint live · All 5 routes implemented</div></div>
</div>
<div class="tl-row">
<div class="tl-time">Hour 22–30</div>
<div class="tl-dot-col"><div class="tl-dot done"></div><div class="tl-line"></div></div>
<div class="tl-content"><div class="tl-title green">Polish + Demo Video ✓</div><div class="tl-detail">Glassmorphic UI · Framer Motion animations · Backup demo recorded</div></div>
</div>
</div>
<div class="r4 proof-row">
<div class="proof-card">
<div class="proof-status">✅</div>
<div class="proof-label">Live AWS<br/>connected</div>
</div>
<div class="proof-card">
<div class="proof-status">✅</div>
<div class="proof-label">ML inference<br/>in prod route</div>
</div>
<div class="proof-card">
<div class="proof-status">✅</div>
<div class="proof-label">4 API<br/>endpoints live</div>
</div>
<div class="proof-card">
<div class="proof-status">✅</div>
<div class="proof-label">Remediation<br/>executes on AWS</div>
</div>
</div>
</div>
</div>
<!-- === SLIDE 7: TEAM COORDINATION === -->
<div class="slide" id="s7">
<div class="content">
<div class="r1 label">Team Coordination</div>
<div class="r2 h3" style="margin-top:10px">4 engineers · 4 isolated modules · one integrated product</div>
<div class="r3 team-grid">
<div class="member-card">
<div class="member-num">P1</div>
<div>
<div class="member-role">ML Engineer</div>
<div class="member-owns">Owns: ml/ · No overlap with others</div>
<div class="member-tags">
<span class="tag">Isolation Forest</span>
<span class="tag">Prophet</span>
<span class="tag">Synthetic seed</span>
</div>
</div>
</div>
<div class="member-card">
<div class="member-num">P2</div>
<div>
<div class="member-role">Backend + AWS</div>
<div class="member-owns">Owns: backend/ · API contract owner</div>
<div class="member-tags">
<span class="tag">FastAPI</span>
<span class="tag">boto3</span>
<span class="tag">CloudWatch</span>
</div>
</div>
</div>
<div class="member-card">
<div class="member-num">P3</div>
<div>
<div class="member-role">UI/UX Design</div>
<div class="member-owns">Owns: design/ · design_system.md</div>
<div class="member-tags">
<span class="tag">Design system</span>
<span class="tag">Component specs</span>
<span class="tag">Demo script</span>
</div>
</div>
</div>
<div class="member-card">
<div class="member-num">P4</div>
<div>
<div class="member-role">Frontend Dev</div>
<div class="member-owns">Owns: frontend/ · React implementation</div>
<div class="member-tags">
<span class="tag">React + Vite</span>
<span class="tag">Recharts</span>
<span class="tag">Framer Motion</span>
</div>
</div>
</div>
</div>
<div class="r4 collab-row">
<div class="collab-item">
<div class="collab-icon">📁</div>
<div class="collab-text">
<strong>Shared Context Files</strong>
AI_CONTEXT_*.md per person · PROJECT_MASTER.md as single source of truth
</div>
</div>
<div class="collab-item">
<div class="collab-icon">🔗</div>
<div class="collab-text">
<strong>API Contract</strong>
Strict JSON schema agreed upfront · Frontend used mock data until backend ready
</div>
</div>
<div class="collab-item">
<div class="collab-icon">🚀</div>
<div class="collab-text">
<strong>GitHub + Hourly Commits</strong>
Separate folders, zero merge conflicts by design · README and docs maintained
</div>
</div>
</div>
</div>
</div>
<!-- === SLIDE 8: CLOSE === -->
<div class="slide" id="s8">
<div class="r1 label" style="justify-content:center">CloudSeer · TechSolstice 2026</div>
<div class="r2 big-ask" style="margin-top:20px">
Predictive. Autonomous.<br/>
<span class="cyan">The cloud cost intelligence</span><br/>
platform enterprises need today.
</div>
<div class="r3 metric-row">
<div class="metric-box">
<div class="metric-val cyan">$0.00</div>
<div class="metric-label">After auto-remediation<br/>(was $2.40/hr)</div>
</div>
<div class="metric-box">
<div class="metric-val green">91%</div>
<div class="metric-label">Anomaly confidence<br/>before action</div>
</div>
<div class="metric-box">
<div class="metric-val amber">6h</div>
<div class="metric-label">Ahead of spike —<br/>Prophet forecast</div>
</div>
<div class="metric-box">
<div class="metric-val" style="color:#fff">36h</div>
<div class="metric-label">Built in 36 hours<br/>from scratch</div>
</div>
</div>
<div class="r4 cta">github.com/team/cloudseer · Live demo ready</div>
</div>
</div><!-- end deck -->
<!-- NAV DOTS -->
<nav class="nav" id="nav"></nav>
<!-- ARROW BUTTONS -->
<div class="nav-arrows">
<button class="nav-btn" onclick="go(-1)">←</button>
<button class="nav-btn" onclick="go(1)">→</button>
</div>
<script>
/* === SLIDE ENGINE === */
const slides = document.querySelectorAll('.slide');
const navEl = document.getElementById('nav');
const curEl = document.getElementById('cur');
document.getElementById('tot').textContent = slides.length;
let cur = 0;
slides.forEach((_, i) => {
const d = document.createElement('div');
d.className = 'dot' + (i === 0 ? ' active' : '');
d.onclick = () => goTo(i);
navEl.appendChild(d);
});
function goTo(n) {
slides[cur].classList.remove('active');
navEl.children[cur].classList.remove('active');
cur = Math.max(0, Math.min(slides.length - 1, n));
slides[cur].classList.add('active');
navEl.children[cur].classList.add('active');
curEl.textContent = cur + 1;
}
function go(dir) { goTo(cur + dir); }
document.addEventListener('keydown', e => {
if (e.key === 'ArrowRight' || e.key === 'ArrowDown' || e.key === ' ') go(1);
if (e.key === 'ArrowLeft' || e.key === 'ArrowUp') go(-1);
if (e.key === 'Home') goTo(0);
if (e.key === 'End') goTo(slides.length - 1);
});
// Touch support
let tx = 0;
document.addEventListener('touchstart', e => tx = e.touches[0].clientX);
document.addEventListener('touchend', e => {
const diff = tx - e.changedTouches[0].clientX;
if (Math.abs(diff) > 50) go(diff > 0 ? 1 : -1);
});
goTo(0);
</script>
</body>
</html>