-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecurevision.html
2942 lines (2609 loc) · 97.4 KB
/
securevision.html
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>SecureVision Pitch Deck</title>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--primary: #2D46B9;
--secondary: #1E2F6E;
--accent: #F97316;
--light: #F8FAFC;
--dark: #1E293B;
--success: #10B981;
--warning: #F59E0B;
--danger: #EF4444;
}
body {
font-family: 'Montserrat', sans-serif;
margin: 0;
padding: 0;
color: var(--dark);
background-color: #f5f5f5;
line-height: 1.6;
}
.slide {
background-color: white;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
margin: 20px auto;
max-width: 1000px;
padding: 40px;
position: relative;
overflow: hidden;
}
.title-slide {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
text-align: center;
padding: 80px 40px;
}
.title-slide h1 {
font-size: 3.5rem;
margin-bottom: 10px;
font-weight: 700;
}
.title-slide h2 {
font-size: 1.8rem;
font-weight: 400;
margin-bottom: 40px;
opacity: 0.9;
}
.logo {
margin-bottom: 30px;
width: 120px;
height: 120px;
background-color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 30px;
}
.logo span {
color: var(--primary);
font-size: 2rem;
font-weight: 700;
}
.slide-header {
margin-bottom: 30px;
border-bottom: 2px solid var(--primary);
padding-bottom: 10px;
}
.slide-header h2 {
font-size: 2.2rem;
color: var(--primary);
margin: 0;
}
.two-column {
display: flex;
gap: 40px;
}
.column {
flex: 1;
}
.stat-box {
background-color: var(--light);
border-left: 4px solid var(--primary);
padding: 15px;
margin-bottom: 20px;
border-radius: 4px;
}
.stat-box h3 {
margin: 0 0 5px 0;
font-size: 1.1rem;
}
.stat-box p {
margin: 0;
font-size: 1.8rem;
font-weight: 600;
color: var(--primary);
}
.stat-box .source {
font-size: 0.8rem;
color: #64748b;
margin-top: 5px;
}
.solution-point {
display: flex;
align-items: flex-start;
margin-bottom: 25px;
}
.solution-icon {
background-color: var(--primary);
color: white;
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 15px;
flex-shrink: 0;
}
.solution-text h3 {
margin: 0 0 5px 0;
font-size: 1.2rem;
}
.solution-text p {
margin: 0;
font-size: 1rem;
}
.legacy-problems {
background-color: #fee2e2;
border-left: 4px solid var(--danger);
padding: 15px;
margin-top: 30px;
border-radius: 4px;
}
.legacy-problems h3 {
color: var(--danger);
margin: 0 0 10px 0;
}
.legacy-problems ul {
margin: 0;
padding-left: 20px;
}
.legacy-problems li {
margin-bottom: 5px;
}
</style>
</head>
<body>
<!-- Title Slide -->
<div class="slide title-slide">
<div class="logo">
<span>SV</span>
</div>
<h1>SecureVision</h1>
<h2>AI-Powered Surveillance with Privacy-by-Design</h2>
<p>Seed Round | €620K | March 2025</p>
</div>
<!-- Problem & Solution Slide -->
<div class="slide">
<div class="slide-header">
<h2>Problem & Solution</h2>
</div>
<div class="two-column">
<div class="column">
<h3>The Problem</h3>
<div class="stat-box">
<h3>Retail</h3>
<p>€3.73B</p>
<div class="source">Annual theft losses in Germany (EHI Retail Institute, 2023)</div>
</div>
<div class="stat-box">
<h3>Childcare</h3>
<p>82%</p>
<div class="source">Lack advanced monitoring systems (German Childcare Association, 2023)</div>
</div>
<div class="stat-box">
<h3>Transport</h3>
<p>€1.2B/year</p>
<div class="source">Costs from delays; 63% report safety risks</div>
</div>
<div class="legacy-problems">
<h3>Legacy System Problems</h3>
<ul>
<li><strong>High costs:</strong> €5,000+ upfront investment</li>
<li><strong>Slow deployment:</strong> 2-3 weeks setup time</li>
<li><strong>False alarms:</strong> 40% false positive rate</li>
<li><strong>Privacy concerns:</strong> GDPR compliance issues</li>
</ul>
</div>
</div>
<div class="column">
<h3>Our Solution</h3>
<div class="solution-point">
<div class="solution-icon">1</div>
<div class="solution-text">
<h3>Hardware Agnostic</h3>
<p>Integrates with <strong>any existing cloud-connected camera</strong> - zero hardware investment required.</p>
</div>
</div>
<div class="solution-point">
<div class="solution-icon">2</div>
<div class="solution-text">
<h3>Privacy-by-Design</h3>
<p>Zero data hosting with edge processing for complete GDPR compliance.</p>
</div>
</div>
<div class="solution-point">
<div class="solution-icon">3</div>
<div class="solution-text">
<h3>Real-Time Alerts</h3>
<p><strong><3s response time</strong> vs. industry average of 15s with 85% fewer false alarms.</p>
</div>
</div>
<div class="solution-point">
<div class="solution-icon">4</div>
<div class="solution-text">
<h3>Rapid Deployment</h3>
<p>24-48 hour setup vs. industry standard 2-3 weeks.</p>
</div>
</div>
<div class="solution-point">
<div class="solution-icon">5</div>
<div class="solution-text">
<h3>Specialized Vertical AI</h3>
<p>Custom-trained models for retail, childcare, and transport use cases.</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
<!-- Unique Value Proposition Slide -->
<div class="slide">
<div class="slide-header">
<h2>Unique Value Proposition</h2>
</div>
<div class="value-prop-container">
<div class="value-prop-intro">
<h3>What Sets Us Apart</h3>
<p>SecureVision delivers unmatched value through our proprietary technology and business model:</p>
</div>
<div class="value-prop-grid">
<div class="value-prop-card">
<div class="value-prop-icon" style="background-color: #4F46E5;">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 3v2m6-2v2M9 19v2m6-2v2M5 9H3m2 6H3m18-6h-2m2 6h-2M7 19h10a2 2 0 002-2V7a2 2 0 00-2-2H7a2 2 0 00-2 2v10a2 2 0 002 2zM9 9h6v6H9V9z" />
</svg>
</div>
<h4>Hardware Agnostic</h4>
<p>Works with 95% of existing cameras - zero hardware investment required.</p>
</div>
<div class="value-prop-card">
<div class="value-prop-icon" style="background-color: #10B981;">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z" />
</svg>
</div>
<h4>True AI vs. Traditional</h4>
<p>Deep learning models understand context and behavior patterns, not just pixel changes.</p>
</div>
<div class="value-prop-card">
<div class="value-prop-icon" style="background-color: #F97316;">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z" />
</svg>
</div>
<h4>Edge-Based Privacy</h4>
<p>Data processed locally, eliminating GDPR concerns that plague cloud-based competitors.</p>
</div>
<div class="value-prop-card">
<div class="value-prop-icon" style="background-color: #8B5CF6;">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
</div>
<h4>Rapid Deployment</h4>
<p>24-48 hour setup vs. industry standard 2-3 weeks.</p>
</div>
<div class="value-prop-card">
<div class="value-prop-icon" style="background-color: #EC4899;">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2" />
</svg>
</div>
<h4>Specialized Vertical AI</h4>
<p>Custom-trained models for retail inventory, childcare safety, and transport crowd management.</p>
</div>
</div>
<div class="proven-results">
<h3>Proven Results</h3>
<div class="results-container">
<div class="result-card">
<div class="result-number">85%</div>
<div class="result-text">Reduction in false alarms</div>
<div class="result-vs">vs. industry average 40% false positive rate</div>
</div>
<div class="result-card">
<div class="result-number">25%</div>
<div class="result-text">Operational efficiency improvement</div>
<div class="result-vs">validated in Polish factory deployment</div>
</div>
<div class="result-card">
<div class="result-number">60%</div>
<div class="result-text">Lower total cost of ownership</div>
<div class="result-vs">compared to Bosch solutions</div>
</div>
</div>
</div>
</div>
</div>
<!-- Market Validation Slide -->
<div class="slide">
<div class="slide-header">
<h2>Market Validation</h2>
</div>
<div class="two-column">
<div class="column">
<h3>Target Segments</h3>
<div class="market-segment">
<div class="segment-header">
<div class="segment-icon retail">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M16 11V7a4 4 0 00-8 0v4M5 9h14l1 12H4L5 9z" />
</svg>
</div>
<div class="segment-title">
<h4>Retail Chains</h4>
<div class="segment-som">€280M SOM (Germany)</div>
</div>
</div>
<div class="segment-details">
<p><strong>Pain Points:</strong> Inventory shrinkage, inefficient monitoring systems</p>
<p><strong>Solution:</strong> Real-time pallet tracking, theft alerts, operational analytics</p>
<p><strong>Pricing:</strong> €349/month per store</p>
</div>
</div>
<div class="market-segment">
<div class="segment-header">
<div class="segment-icon childcare">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 4.354a4 4 0 110 5.292M15 21H3v-1a6 6 0 0112 0v1zm0 0h6v-1a6 6 0 00-9-5.197M13 7a4 4 0 11-8 0 4 4 0 018 0z" />
</svg>
</div>
<div class="segment-title">
<h4>Childcare Centers</h4>
<div class="segment-som">€135M SOM (Germany)</div>
</div>
</div>
<div class="segment-details">
<p><strong>Pain Points:</strong> Safety incidents, staffing gaps, limited monitoring</p>
<p><strong>Solution:</strong> Fall detection, unauthorized entry alerts, staff efficiency tools</p>
<p><strong>Pricing:</strong> €149/month per center</p>
</div>
</div>
<div class="market-segment">
<div class="segment-header">
<div class="segment-icon transport">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z" />
</svg>
</div>
<div class="segment-title">
<h4>Public Transport Hubs</h4>
<div class="segment-som">€125M SOM (Germany)</div>
</div>
</div>
<div class="segment-details">
<p><strong>Pain Points:</strong> Crowd-related delays, vandalism, security concerns</p>
<p><strong>Solution:</strong> Crowd analytics, delay prediction, security monitoring</p>
<p><strong>Pricing:</strong> €529/month per hub</p>
</div>
</div>
<div class="market-chart-container">
<h4>Serviceable Obtainable Market (Germany)</h4>
<div class="market-chart">
<!-- Chart will be inserted here using Chart.js -->
<canvas id="marketChart" width="400" height="200"></canvas>
</div>
</div>
</div>
<div class="column">
<h3>Early Traction</h3>
<div class="case-study">
<div class="case-study-header">
<h4>Polish Factory Pilot</h4>
<div class="case-study-metrics">
<div class="metric">
<div class="metric-value">25%</div>
<div class="metric-label">Efficiency Gain</div>
</div>
<div class="metric">
<div class="metric-value">4.5</div>
<div class="metric-label">Month ROI</div>
</div>
</div>
</div>
<div class="case-study-video">
<div class="video-container">
<img src="https://via.placeholder.com/500x280?text=Factory+Pallet+Tracking+Demo" alt="Factory Pallet Tracking Demo" class="video-thumbnail">
<a href="https://drive.google.com/file/d/17Bf0QZ1vaw8KeEQJd7pAk0ueRRhXsMKC/view?usp=sharing" class="play-button" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
<path d="M8 5v14l11-7z"/>
</svg>
</a>
</div>
<div class="video-caption">Factory Pallet Tracking Demo</div>
</div>
<div class="demo-videos">
<h4>Live Demos Available</h4>
<div class="demo-grid">
<div class="demo-item">
<div class="demo-thumbnail">
<img src="https://via.placeholder.com/240x135?text=Baby+Monitoring" alt="Baby Monitoring Demo">
<a href="https://drive.google.com/file/d/1yVVn8eUHgscmvmTUMchiBgwgr6AepXr8/view?usp=sharing" class="demo-play" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
<path d="M8 5v14l11-7z"/>
</svg>
</a>
</div>
<div class="demo-title">Baby Monitoring</div>
</div>
<div class="demo-item">
<div class="demo-thumbnail">
<img src="https://via.placeholder.com/240x135?text=Retail+Theft+Detection" alt="Retail Theft Detection Demo">
<a href="https://drive.google.com/file/d/1y0b_2f3bnJh0yMxFYsBYZfQ4BOBHlwXA/view?usp=sharing" class="demo-play" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
<path d="M8 5v14l11-7z"/>
</svg>
</a>
</div>
<div class="demo-title">Retail Theft Detection</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<style>
/* Value Proposition Slide Styles */
.value-prop-container {
display: flex;
flex-direction: column;
gap: 30px;
}
.value-prop-intro {
text-align: center;
margin-bottom: 10px;
}
.value-prop-intro h3 {
color: var(--primary);
font-size: 1.6rem;
margin-bottom: 10px;
}
.value-prop-intro p {
font-size: 1.1rem;
max-width: 700px;
margin: 0 auto;
}
.value-prop-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.value-prop-card {
background-color: #f8fafc;
border-radius: 8px;
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
transition: transform 0.2s, box-shadow 0.2s;
}
.value-prop-card:hover {
transform: translateY(-5px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.value-prop-icon {
width: 50px;
height: 50px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 15px;
}
.value-prop-icon svg {
width: 24px;
height: 24px;
color: white;
}
.value-prop-card h4 {
font-size: 1.1rem;
margin: 0 0 10px 0;
color: var(--dark);
}
.value-prop-card p {
font-size: 0.9rem;
margin: 0;
color: #64748b;
}
.proven-results {
margin-top: 20px;
}
.proven-results h3 {
text-align: center;
color: var(--primary);
font-size: 1.6rem;
margin-bottom: 20px;
}
.results-container {
display: flex;
justify-content: space-between;
gap: 20px;
}
.result-card {
flex: 1;
background-color: white;
border: 1px solid #e2e8f0;
border-radius: 8px;
padding: 20px;
text-align: center;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.result-number {
font-size: 2.5rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 5px;
}
.result-text {
font-size: 1rem;
font-weight: 500;
margin-bottom: 5px;
}
.result-vs {
font-size: 0.8rem;
color: #64748b;
}
/* Market Validation Slide Styles */
.market-segment {
background-color: white;
border-radius: 8px;
padding: 15px;
margin-bottom: 15px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.segment-header {
display: flex;
align-items: center;
margin-bottom: 10px;
}
.segment-icon {
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 15px;
}
.segment-icon svg {
width: 20px;
height: 20px;
color: white;
}
.segment-icon.retail {
background-color: #F97316;
}
.segment-icon.childcare {
background-color: #10B981;
}
.segment-icon.transport {
background-color: #8B5CF6;
}
.segment-title h4
margin: 0;
font-size: 1.1rem;
}
.segment-som {
font-size: 0.9rem;
color: #64748b;
}
.segment-details {
padding-left: 55px;
}
.segment-details p {
margin: 5px 0;
font-size: 0.9rem;
}
.market-chart-container {
margin-top: 30px;
}
.market-chart-container h4 {
text-align: center;
margin-bottom: 15px;
}
.market-chart {
height: 200px;
background-color: white;
border-radius: 8px;
padding: 15px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.case-study {
background-color: white;
border-radius: 8px;
padding: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.case-study-header {
margin-bottom: 20px;
}
.case-study-header h4 {
margin: 0 0 15px 0;
font-size: 1.2rem;
color: var(--primary);
}
.case-study-metrics {
display: flex;
gap: 20px;
}
.metric {
flex: 1;
text-align: center;
background-color: #f8fafc;
border-radius: 8px;
padding: 15px;
}
.metric-value {
font-size: 1.8rem;
font-weight: 700;
color: var(--primary);
}
.metric-label {
font-size: 0.9rem;
color: #64748b;
}
.case-study-video {
margin-bottom: 20px;
}
.video-container {
position: relative;
border-radius: 8px;
overflow: hidden;
margin-bottom: 10px;
}
.video-thumbnail {
width: 100%;
display: block;
}
.play-button {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 60px;
height: 60px;
background-color: rgba(0, 0, 0, 0.7);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.2s;
}
.play-button:hover {
background-color: var(--primary);
}
.play-button svg {
width: 30px;
height: 30px;
color: white;
}
.video-caption {
text-align: center;
font-size: 0.9rem;
color: #64748b;
}
.demo-videos h4 {
margin: 0 0 15px 0;
font-size: 1.1rem;
}
.demo-grid {
display: flex;
gap: 15px;
}
.demo-item {
flex: 1;
}
.demo-thumbnail {
position: relative;
border-radius: 6px;
overflow: hidden;
margin-bottom: 8px;
}
.demo-thumbnail img {
width: 100%;
display: block;
}
.demo-play {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 40px;
height: 40px;
background-color: rgba(0, 0, 0, 0.7);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.2s;
}
.demo-play:hover {
background-color: var(--primary);
}
.demo-play svg {
width: 20px;
height: 20px;
color: white;
}
.demo-title {
text-align: center;
font-size: 0.9rem;
}
</style>
<!-- JavaScript for Chart -->
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
// Market Chart
var marketCtx = document.getElementById('marketChart').getContext('2d');
var marketChart = new Chart(marketCtx, {
type: 'pie',
data: {
labels: ['Retail Chains (€280M)', 'Childcare Centers (€135M)', 'Transport Hubs (€125M)'],
datasets: [{
data: [280, 135, 125],
backgroundColor: [
'#F97316',
'#10B981',
'#8B5CF6'
],
borderWidth: 0
}]
},
options: {
responsive: true,
maintainAspectRatio: false,
plugins: {
legend: {
position: 'bottom',
labels: {
boxWidth: 12,
padding: 15
}
}
}
}
});
});
</script>
<!-- Financial Model Slide -->
<div class="slide">
<div class="slide-header">
<h2>Financial Model</h2>
</div>
<div class="two-column">
<div class="column">
<h3>Revenue Streams</h3>
<div class="revenue-table-container">
<table class="revenue-table">
<thead>
<tr>
<th>Segment</th>
<th>Price (Monthly)</th>
<th>2025 Clients</th>
<th>2025 ARR (€K)</th>
</tr>
</thead>
<tbody>
<tr>
<td>Retail</td>
<td>€349/store</td>
<td>10</td>
<td>36</td>
</tr>
<tr>
<td>Childcare</td>
<td>€149/center</td>
<td>5</td>
<td>15</td>
</tr>
<tr>
<td>Transport</td>
<td>€529/hub</td>
<td>2</td>
<td>9</td>
</tr>
<tr class="total-row">
<td colspan="3"><strong>Total</strong></td>
<td><strong>60</strong></td>
</tr>
</tbody>
</table>
</div>
<div class="assumptions-container">
<h4>Key Assumptions</h4>
<div class="assumption-item">
<div class="assumption-icon">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8c-1.657 0-3 .895-3 2s1.343 2 3 2 3 .895 3 2-1.343 2-3 2m0-8c1.11 0 2.08.402 2.599 1M12 8V7m0 1v8m0 0v1m0-1c-1.11 0-2.08-.402-2.599-1M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
</div>
<div class="assumption-content">
<h5>Customer Acquisition Cost (CAC)</h5>
<p>€1,200 per client</p>
<ul>
<li>LinkedIn ads: €800</li>
<li>Trade shows: €300</li>
<li>Partnerships: €100</li>
</ul>
</div>
</div>
<div class="assumption-item">
<div class="assumption-icon">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 17h8m0 0V9m0 8l-8-8-4 4-6-6" />
</svg>
</div>
<div class="assumption-content">
<h5>Churn Rates</h5>
<ul>
<li>Retail: 2% monthly</li>
<li>Childcare: 1.5% monthly</li>
<li>Transport: 3% monthly</li>
</ul>
</div>
</div>
<div class="assumption-item">
<div class="assumption-icon">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z" />
</svg>
</div>
<div class="assumption-content">
<h5>Gross Margin</h5>
<p>65% (2025) → 85% (2029)</p>
<p>Primary costs: AWS cloud infrastructure</p>
</div>
</div>
</div>
</div>
<div class="column">
<h3>5-Year ARR Projection</h3>
<div class="arr-chart-container">
<canvas id="arrChart" width="400" height="250"></canvas>
</div>
<div class="unit-economics">
<h4>Unit Economics</h4>
<div class="metrics-container">
<div class="metric-card">
<div class="metric-header">
<div class="metric-icon">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8c-1.657 0-3 .895-3 2s1.343 2 3 2 3 .895 3 2-1.343 2-3 2m0-8c1.11 0 2.08.402 2.599 1M12 8V7m0 1v8m0 0v1m0-1c-1.11 0-2.08-.402-2.599-1M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
</div>
<h5>CAC</h5>
</div>
<div class="metric-value">€1,200</div>
<div class="metric-description">Per new client acquisition</div>