-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpitch-deck.html
More file actions
1018 lines (967 loc) · 40.8 KB
/
Copy pathpitch-deck.html
File metadata and controls
1018 lines (967 loc) · 40.8 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>FlowForge — Investor Pitch Deck</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
:root {
--fg: #0f172a;
--fg-muted: #475569;
--bg: #ffffff;
--accent: #6366f1;
--accent-light: #818cf8;
--accent-bg: #eef2ff;
--success: #10b981;
--orange: #f59e0b;
--red: #ef4444;
--border: #e2e8f0;
--slide-w: 1280px;
--slide-h: 720px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Inter', -apple-system, sans-serif;
background: #0f172a;
color: var(--fg);
overflow: hidden;
height: 100vh;
}
/* ---- slide container ---- */
.deck { position: relative; width: 100vw; height: 100vh; }
.slide {
position: absolute; inset: 0;
display: none;
align-items: center; justify-content: center;
background: var(--bg);
}
.slide.active { display: flex; }
.slide-inner {
width: var(--slide-w); height: var(--slide-h);
padding: 56px 72px;
display: flex; flex-direction: column;
position: relative;
overflow: hidden;
}
/* ---- nav ---- */
.nav {
position: fixed; bottom: 24px; right: 32px; z-index: 100;
display: flex; gap: 8px; align-items: center;
font-family: 'Inter', sans-serif;
}
.nav button {
width: 40px; height: 40px; border-radius: 10px;
border: 1px solid rgba(255,255,255,.15);
background: rgba(15,23,42,.7); color: #fff;
font-size: 18px; cursor: pointer;
backdrop-filter: blur(8px);
transition: background .2s;
}
.nav button:hover { background: rgba(99,102,241,.6); }
.nav .counter {
color: rgba(255,255,255,.5); font-size: 13px;
min-width: 48px; text-align: center;
}
/* ---- progress bar ---- */
.progress-bar {
position: fixed; top: 0; left: 0; height: 3px;
background: var(--accent); z-index: 100;
transition: width .3s ease;
}
/* ---- shared typography ---- */
h1 { font-size: 48px; font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; }
h2 { font-size: 40px; font-weight: 800; line-height: 1.15; letter-spacing: -1px; }
h3 { font-size: 22px; font-weight: 700; line-height: 1.3; }
p, li { font-size: 18px; line-height: 1.6; color: var(--fg-muted); }
.label {
font-size: 13px; font-weight: 600; text-transform: uppercase;
letter-spacing: 2px; color: var(--accent); margin-bottom: 12px;
}
/* ---- slide-specific layouts ---- */
/* Slide 1: Title */
.slide-title { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); }
.slide-title .slide-inner { justify-content: center; align-items: center; text-align: center; }
.slide-title h1 { color: #fff; font-size: 64px; margin-bottom: 20px; }
.slide-title p { color: rgba(255,255,255,.6); font-size: 22px; max-width: 700px; }
.slide-title .logo {
font-size: 28px; font-weight: 800; color: var(--accent-light);
margin-bottom: 40px; letter-spacing: -0.5px;
}
.slide-title .logo span { color: #fff; }
.slide-title .tagline-badge {
display: inline-block; padding: 8px 20px; border-radius: 100px;
border: 1px solid rgba(99,102,241,.3); background: rgba(99,102,241,.1);
color: var(--accent-light); font-size: 14px; font-weight: 500;
margin-top: 28px;
}
/* Two-column layout */
.two-col {
display: grid; grid-template-columns: 1fr 1fr;
gap: 64px; flex: 1; align-items: center;
}
/* Stat boxes */
.stat-grid {
display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
margin-top: 32px;
}
.stat-box {
background: #f8fafc; border-radius: 16px; padding: 28px 24px;
text-align: center; border: 1px solid var(--border);
}
.stat-box .number {
font-size: 42px; font-weight: 800; color: var(--accent);
letter-spacing: -1px;
}
.stat-box .desc {
font-size: 14px; color: var(--fg-muted); margin-top: 4px; font-weight: 500;
}
/* Feature cards */
.feature-grid {
display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
margin-top: 28px;
}
.feature-card {
background: #f8fafc; border-radius: 14px; padding: 24px;
border: 1px solid var(--border);
}
.feature-card .icon {
width: 40px; height: 40px; border-radius: 10px;
display: flex; align-items: center; justify-content: center;
font-size: 20px; margin-bottom: 12px;
}
.feature-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.feature-card p { font-size: 14px; line-height: 1.5; }
/* Comparison table */
.comp-table {
width: 100%; border-collapse: collapse; margin-top: 28px;
font-size: 15px;
}
.comp-table th {
text-align: left; padding: 14px 16px; font-weight: 700;
border-bottom: 2px solid var(--border); font-size: 14px;
color: var(--fg-muted);
}
.comp-table th:first-child { width: 220px; }
.comp-table th.highlight { color: var(--accent); }
.comp-table td {
padding: 12px 16px; border-bottom: 1px solid var(--border);
color: var(--fg-muted); font-size: 14px;
}
.comp-table tr:last-child td { border-bottom: none; }
.comp-table td:first-child { font-weight: 600; color: var(--fg); }
.check { color: var(--success); font-weight: 700; }
.cross { color: #cbd5e1; }
.partial { color: var(--orange); font-weight: 600; }
.comp-table .highlight-col { background: var(--accent-bg); }
/* Timeline */
.timeline { margin-top: 32px; }
.timeline-item {
display: flex; gap: 20px; padding-bottom: 28px;
position: relative;
}
.timeline-item:not(:last-child)::after {
content: ''; position: absolute; left: 19px; top: 40px;
width: 2px; bottom: 0; background: var(--border);
}
.timeline-dot {
width: 40px; height: 40px; border-radius: 50%;
background: var(--accent-bg); border: 2px solid var(--accent);
display: flex; align-items: center; justify-content: center;
font-size: 16px; flex-shrink: 0;
}
.timeline-content h4 { font-size: 16px; font-weight: 700; }
.timeline-content p { font-size: 14px; margin-top: 4px; }
.timeline-content .badge {
display: inline-block; font-size: 11px; font-weight: 600;
padding: 2px 10px; border-radius: 100px; margin-top: 6px;
}
.badge-done { background: #d1fae5; color: #065f46; }
.badge-now { background: #dbeafe; color: #1e40af; }
.badge-next { background: #fef3c7; color: #92400e; }
/* Pricing */
.pricing-grid {
display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
margin-top: 28px;
}
.price-card {
border-radius: 16px; padding: 32px 28px;
border: 1px solid var(--border); background: #fff;
}
.price-card.featured {
border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent);
position: relative;
}
.price-card.featured::before {
content: 'MOST POPULAR'; position: absolute; top: -12px; left: 50%;
transform: translateX(-50%); background: var(--accent); color: #fff;
font-size: 11px; font-weight: 700; padding: 4px 16px; border-radius: 100px;
letter-spacing: 1px;
}
.price-card .tier { font-size: 14px; font-weight: 600; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 1px; }
.price-card .price { font-size: 42px; font-weight: 800; margin: 8px 0 4px; }
.price-card .price span { font-size: 16px; font-weight: 500; color: var(--fg-muted); }
.price-card ul { list-style: none; margin-top: 16px; }
.price-card li { font-size: 14px; padding: 6px 0; color: var(--fg-muted); }
.price-card li::before { content: '✓ '; color: var(--success); font-weight: 700; }
/* Team grid */
.team-grid {
display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
margin-top: 32px;
}
.team-card { text-align: center; }
.team-card .avatar {
width: 80px; height: 80px; border-radius: 50%;
background: linear-gradient(135deg, var(--accent-bg), #c7d2fe);
margin: 0 auto 12px; display: flex; align-items: center;
justify-content: center; font-size: 28px; font-weight: 700;
color: var(--accent);
}
.team-card h4 { font-size: 16px; font-weight: 700; }
.team-card p { font-size: 13px; color: var(--fg-muted); }
/* Ask slide */
.ask-grid {
display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
margin-top: 32px;
}
.ask-box {
background: #f8fafc; border-radius: 16px; padding: 32px;
border: 1px solid var(--border);
}
.ask-box h4 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.ask-box ul { list-style: none; }
.ask-box li { font-size: 15px; padding: 6px 0; color: var(--fg-muted); }
.ask-box li::before { content: '→ '; color: var(--accent); font-weight: 700; }
/* CTA slide */
.slide-cta { background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); }
.slide-cta .slide-inner { justify-content: center; align-items: center; text-align: center; }
.slide-cta h1 { color: #fff; font-size: 56px; margin-bottom: 16px; }
.slide-cta p { color: rgba(255,255,255,.5); font-size: 20px; max-width: 600px; }
.slide-cta .contact-row {
display: flex; gap: 32px; margin-top: 40px;
}
.slide-cta .contact-item {
color: rgba(255,255,255,.7); font-size: 16px;
padding: 12px 24px; border-radius: 12px;
border: 1px solid rgba(255,255,255,.15);
background: rgba(255,255,255,.05);
}
/* Bullet lists */
.bullet-list { list-style: none; margin-top: 16px; }
.bullet-list li {
padding: 8px 0; font-size: 17px;
padding-left: 28px; position: relative;
}
.bullet-list li::before {
content: ''; position: absolute; left: 0; top: 16px;
width: 10px; height: 10px; border-radius: 3px;
background: var(--accent);
}
/* Pain point cards */
.pain-grid {
display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
margin-top: 28px;
}
.pain-card {
background: #fef2f2; border-radius: 14px; padding: 24px;
border: 1px solid #fecaca;
}
.pain-card .icon { font-size: 28px; margin-bottom: 10px; }
.pain-card h4 { font-size: 16px; font-weight: 700; color: #991b1b; margin-bottom: 6px; }
.pain-card p { font-size: 14px; color: #b91c1c; line-height: 1.5; }
/* Slide number */
.slide-num {
position: absolute; bottom: 24px; right: 36px;
font-size: 13px; color: #94a3b8; font-weight: 500;
}
/* Flow diagram */
.flow-row {
display: flex; align-items: center; gap: 12px;
margin-top: 32px; justify-content: center;
}
.flow-step {
background: var(--accent-bg); border: 1px solid #c7d2fe;
border-radius: 12px; padding: 16px 20px; text-align: center;
min-width: 140px;
}
.flow-step .step-icon { font-size: 24px; margin-bottom: 6px; }
.flow-step h4 { font-size: 13px; font-weight: 700; color: var(--accent); }
.flow-step p { font-size: 11px; color: var(--fg-muted); margin-top: 2px; }
.flow-arrow { font-size: 20px; color: #c7d2fe; }
.highlight-text { color: var(--accent); }
/* Traction metric row */
.traction-row {
display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
margin-top: 32px;
}
.traction-card {
text-align: center; padding: 24px; border-radius: 14px;
border: 1px solid var(--border); background: #f8fafc;
}
.traction-card .num { font-size: 36px; font-weight: 800; color: var(--accent); }
.traction-card .lbl { font-size: 13px; color: var(--fg-muted); margin-top: 4px; font-weight: 500; }
.traction-card .trend { font-size: 13px; color: var(--success); font-weight: 600; margin-top: 4px; }
/* Revenue model */
.rev-row {
display: grid; grid-template-columns: 2fr 1fr; gap: 40px;
margin-top: 28px; align-items: start;
}
.rev-chart {
background: #f8fafc; border-radius: 16px; padding: 32px;
border: 1px solid var(--border);
}
.bar-group { margin-bottom: 20px; }
.bar-label { font-size: 13px; font-weight: 600; color: var(--fg); margin-bottom: 6px; }
.bar-track { height: 28px; background: #e2e8f0; border-radius: 8px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 8px; display: flex; align-items: center; padding-left: 12px; font-size: 12px; font-weight: 700; color: #fff; }
.bar-fill.y1 { width: 15%; background: var(--accent); }
.bar-fill.y2 { width: 45%; background: var(--accent-light); }
.bar-fill.y3 { width: 85%; background: var(--success); }
.key-metrics { list-style: none; }
.key-metrics li { padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
.key-metrics li:last-child { border-bottom: none; }
.key-metrics .metric-label { color: var(--fg-muted); }
.key-metrics .metric-value { float: right; font-weight: 700; color: var(--fg); }
/* Moat */
.moat-grid {
display: grid; grid-template-columns: repeat(2,1fr); gap: 20px;
margin-top: 28px;
}
.moat-card {
background: linear-gradient(135deg, #eef2ff, #f0f9ff);
border-radius: 14px; padding: 24px; border: 1px solid #c7d2fe;
}
.moat-card .num { font-size: 32px; font-weight: 800; color: var(--accent); }
.moat-card h4 { font-size: 16px; font-weight: 700; margin-top: 4px; }
.moat-card p { font-size: 14px; margin-top: 6px; }
</style>
</head>
<body>
<div class="progress-bar" id="progressBar"></div>
<div class="deck" id="deck">
<!-- ==================== SLIDE 1: TITLE ==================== -->
<div class="slide slide-title active">
<div class="slide-inner">
<div class="logo"><span>Flow</span>Forge</div>
<h1>Ship Software Faster<br>with AI-Powered<br>Project Management</h1>
<p>The first project management platform that doesn't just track your work — it does the work. FlowForge combines AI code generation, GitHub integration, and smart sprint planning into one seamless workflow.</p>
<div class="tagline-badge">Seed Round — March 2026</div>
</div>
</div>
<!-- ==================== SLIDE 2: PROBLEM ==================== -->
<div class="slide">
<div class="slide-inner">
<div class="label">The Problem</div>
<h2>Engineering teams are drowning<br>in process, not shipping code</h2>
<div class="pain-grid">
<div class="pain-card">
<div class="icon">🔀</div>
<h4>Tool Fragmentation</h4>
<p>Teams juggle 5-7 tools — Jira, GitHub, Slack, CI/CD, code review — losing hours to context switching every day.</p>
</div>
<div class="pain-card">
<div class="icon">🐌</div>
<h4>Slow PR Cycles</h4>
<p>Average PR sits open 4.5 days. Code reviews bottleneck delivery. Junior devs wait days for feedback on straightforward changes.</p>
</div>
<div class="pain-card">
<div class="icon">📊</div>
<h4>Planning Theater</h4>
<p>Sprint planning takes hours, estimates are guesswork, and retrospectives produce the same action items every time.</p>
</div>
</div>
<div class="stat-grid" style="margin-top: 28px;">
<div class="stat-box">
<div class="number">23%</div>
<div class="desc">of dev time lost to<br>context switching</div>
</div>
<div class="stat-box">
<div class="number">4.5d</div>
<div class="desc">average time to<br>merge a PR</div>
</div>
<div class="stat-box">
<div class="number">$85B</div>
<div class="desc">spent annually on<br>project management tools</div>
</div>
</div>
<div class="slide-num">2</div>
</div>
</div>
<!-- ==================== SLIDE 3: SOLUTION ==================== -->
<div class="slide">
<div class="slide-inner">
<div class="label">The Solution</div>
<h2>One platform that plans, codes,<br>reviews, and ships</h2>
<p style="margin-top:12px; max-width:700px;">FlowForge replaces your fragmented toolchain with an AI-native workflow that automates the entire software development lifecycle — from task creation to merged PR.</p>
<div class="flow-row">
<div class="flow-step">
<div class="step-icon">📝</div>
<h4>Create Task</h4>
<p>Describe what you need</p>
</div>
<div class="flow-arrow">→</div>
<div class="flow-step">
<div class="step-icon">🤖</div>
<h4>AI Generates Code</h4>
<p>Production-ready PR</p>
</div>
<div class="flow-arrow">→</div>
<div class="flow-step">
<div class="step-icon">👀</div>
<h4>Human Reviews</h4>
<p>You stay in control</p>
</div>
<div class="flow-arrow">→</div>
<div class="flow-step">
<div class="step-icon">💬</div>
<h4>AI Responds</h4>
<p>Handles review feedback</p>
</div>
<div class="flow-arrow">→</div>
<div class="flow-step">
<div class="step-icon">🚀</div>
<h4>Ship It</h4>
<p>Merge & deploy</p>
</div>
</div>
<div class="feature-grid" style="margin-top:32px;">
<div class="feature-card">
<div class="icon" style="background:#eef2ff;color:var(--accent);">🧠</div>
<h4>AI Code Generation</h4>
<p>Generates production-ready code from task descriptions, including tests and error handling.</p>
</div>
<div class="feature-card">
<div class="icon" style="background:#f0fdf4;color:var(--success);">🔗</div>
<h4>Deep GitHub Integration</h4>
<p>Auto-creates branches, PRs, and handles webhooks. Real-time sync with your repos.</p>
</div>
<div class="feature-card">
<div class="icon" style="background:#fff7ed;color:var(--orange);">📈</div>
<h4>AI Sprint Planning</h4>
<p>Intelligent estimates, risk assessment, dependency detection, and retrospective generation.</p>
</div>
<div class="feature-card">
<div class="icon" style="background:#fef2f2;color:var(--red);">💬</div>
<h4>Smart Review Handling</h4>
<p>AI classifies review comments and generates contextual code changes or discussion responses.</p>
</div>
</div>
<div class="slide-num">3</div>
</div>
</div>
<!-- ==================== SLIDE 4: PRODUCT DEMO ==================== -->
<div class="slide">
<div class="slide-inner">
<div class="label">Product</div>
<h2>How FlowForge works</h2>
<p style="margin-top:12px; max-width:700px;">A human-in-the-loop AI workflow that keeps developers in control while automating the tedious parts.</p>
<div class="two-col" style="margin-top:28px;">
<div>
<h3 style="margin-bottom:16px;">Task Execution Pipeline</h3>
<div class="timeline">
<div class="timeline-item">
<div class="timeline-dot">1</div>
<div class="timeline-content">
<h4>Task Created with Requirements</h4>
<p>Developer describes what's needed — feature, bug fix, or refactor.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot">2</div>
<div class="timeline-content">
<h4>AI Generates Branch & Code</h4>
<p>Creates branch, generates production code with tests, opens a PR.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot">3</div>
<div class="timeline-content">
<h4>Human Review Checkpoint</h4>
<p>Developer reviews the AI-generated code. Full control, no black boxes.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot">4</div>
<div class="timeline-content">
<h4>AI Addresses Feedback</h4>
<p>Review comments are classified — AI updates code or responds to discussions.</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot">5</div>
<div class="timeline-content">
<h4>Merge & Deploy</h4>
<p>Approved PR is merged. CI/CD status tracked in FlowForge.</p>
</div>
</div>
</div>
</div>
<div>
<h3 style="margin-bottom:16px;">AI-Powered Planning</h3>
<div class="feature-card" style="margin-bottom:16px;">
<h4>Sprint Intelligence</h4>
<p>AI analyzes team velocity, task complexity, and dependencies to suggest optimal sprint plans. Generates retrospectives automatically.</p>
</div>
<div class="feature-card" style="margin-bottom:16px;">
<h4>Risk Assessment</h4>
<p>Identifies high-risk tasks, detects blockers, and warns about overcommitment before the sprint starts.</p>
</div>
<div class="feature-card" style="margin-bottom:16px;">
<h4>Dependency Detection</h4>
<p>Automatically discovers task relationships and creates dependency warnings to prevent bottlenecks.</p>
</div>
<div class="feature-card">
<h4>Smart Estimation</h4>
<p>AI estimates story points based on task complexity, historical velocity, and codebase analysis.</p>
</div>
</div>
</div>
<div class="slide-num">4</div>
</div>
</div>
<!-- ==================== SLIDE 5: MARKET ==================== -->
<div class="slide">
<div class="slide-inner">
<div class="label">Market Opportunity</div>
<h2>A massive market at an inflection point</h2>
<p style="margin-top:12px; max-width:700px;">AI is reshaping how software is built. The teams that adopt AI-native workflows will outpace those stuck with legacy tools.</p>
<div class="two-col" style="margin-top:28px;">
<div>
<div class="stat-grid" style="grid-template-columns: 1fr 1fr; margin-top:0;">
<div class="stat-box">
<div class="number">$85B</div>
<div class="desc">Project Management<br>TAM (2026)</div>
</div>
<div class="stat-box">
<div class="number">$22B</div>
<div class="desc">Developer Tools<br>SAM</div>
</div>
<div class="stat-box">
<div class="number">$4.5B</div>
<div class="desc">AI-Powered DevTools<br>SOM (target)</div>
</div>
<div class="stat-box">
<div class="number">28M</div>
<div class="desc">Professional<br>developers worldwide</div>
</div>
</div>
<div style="margin-top:24px;">
<h3 style="font-size:18px;">Market Tailwinds</h3>
<ul class="bullet-list" style="margin-top:8px;">
<li>AI coding tools (Copilot, Cursor) normalized AI-assisted development</li>
<li>Remote work increased demand for async collaboration tools</li>
<li>Engineering teams under pressure to do more with less</li>
<li>Legacy tools (Jira) haven't innovated on core workflows in years</li>
</ul>
</div>
</div>
<div>
<h3 style="font-size:18px; margin-bottom:16px;">Target Customer</h3>
<div class="feature-card" style="margin-bottom:16px;">
<h4>Primary: Startups & SMBs</h4>
<p>5-50 person engineering teams using GitHub. Ship fast, lean ops, receptive to AI. Average deal: $600-$3,600/yr.</p>
</div>
<div class="feature-card" style="margin-bottom:16px;">
<h4>Secondary: Mid-Market</h4>
<p>50-500 engineers looking to consolidate tools and accelerate delivery. Average deal: $50K-$200K/yr.</p>
</div>
<div class="feature-card">
<h4>Expansion: Enterprise</h4>
<p>Custom deployments, SSO/SAML, on-premise. Average deal: $200K+/yr with SLA guarantees.</p>
</div>
<div style="margin-top:20px; padding:20px; background:var(--accent-bg); border-radius:12px;">
<h4 style="font-size:15px; color:var(--accent);">Why Now?</h4>
<p style="font-size:14px; margin-top:6px;">LLM capabilities crossed the quality threshold for production code generation in 2025. FlowForge is the first to integrate this into the full SDLC workflow.</p>
</div>
</div>
</div>
<div class="slide-num">5</div>
</div>
</div>
<!-- ==================== SLIDE 6: COMPETITIVE LANDSCAPE ==================== -->
<div class="slide">
<div class="slide-inner">
<div class="label">Competitive Landscape</div>
<h2>The only platform that closes the loop</h2>
<p style="margin-top:8px;">Competitors do parts of the workflow. FlowForge is the only platform that connects task management → code generation → review → deployment in one tool.</p>
<table class="comp-table">
<thead>
<tr>
<th>Capability</th>
<th class="highlight highlight-col">FlowForge</th>
<th>Jira</th>
<th>Linear</th>
<th>GitHub Projects</th>
<th>Copilot</th>
</tr>
</thead>
<tbody>
<tr>
<td>Task & Sprint Management</td>
<td class="check highlight-col">✓ Full</td>
<td class="check">✓ Full</td>
<td class="check">✓ Full</td>
<td class="partial">Partial</td>
<td class="cross">✗</td>
</tr>
<tr>
<td>AI Code Generation</td>
<td class="check highlight-col">✓ Full</td>
<td class="cross">✗</td>
<td class="cross">✗</td>
<td class="cross">✗</td>
<td class="check">✓ Inline only</td>
</tr>
<tr>
<td>Auto PR Creation</td>
<td class="check highlight-col">✓ Full</td>
<td class="cross">✗</td>
<td class="cross">✗</td>
<td class="cross">✗</td>
<td class="cross">✗</td>
</tr>
<tr>
<td>AI Review Response</td>
<td class="check highlight-col">✓ Full</td>
<td class="cross">✗</td>
<td class="cross">✗</td>
<td class="cross">✗</td>
<td class="cross">✗</td>
</tr>
<tr>
<td>AI Sprint Planning</td>
<td class="check highlight-col">✓ Full</td>
<td class="cross">✗</td>
<td class="cross">✗</td>
<td class="cross">✗</td>
<td class="cross">✗</td>
</tr>
<tr>
<td>Deep GitHub Integration</td>
<td class="check highlight-col">✓ Native</td>
<td class="partial">Plugin</td>
<td class="check">✓ Good</td>
<td class="check">✓ Native</td>
<td class="check">✓ Native</td>
</tr>
<tr>
<td>Task → Code → PR Pipeline</td>
<td class="check highlight-col">✓ End-to-end</td>
<td class="cross">✗</td>
<td class="cross">✗</td>
<td class="cross">✗</td>
<td class="cross">✗</td>
</tr>
<tr>
<td>Multi AI Provider</td>
<td class="check highlight-col">✓ OpenAI + Claude</td>
<td class="cross">✗</td>
<td class="cross">✗</td>
<td class="cross">✗</td>
<td class="cross">✗</td>
</tr>
</tbody>
</table>
<div style="margin-top:20px; padding:16px 24px; background:var(--accent-bg); border-radius:12px; display:flex; align-items:center; gap:16px;">
<div style="font-size:28px;">🏰</div>
<div>
<h4 style="font-size:15px; color:var(--accent);">Competitive Moat</h4>
<p style="font-size:14px; margin-top:2px;">Our task-to-PR pipeline creates a data flywheel — every execution improves code quality, review accuracy, and estimation precision. Competitors would need to rebuild both the PM and AI layers to match.</p>
</div>
</div>
<div class="slide-num">6</div>
</div>
</div>
<!-- ==================== SLIDE 7: BUSINESS MODEL ==================== -->
<div class="slide">
<div class="slide-inner">
<div class="label">Business Model</div>
<h2>SaaS with usage-based AI upside</h2>
<div class="rev-row">
<div>
<div class="pricing-grid" style="grid-template-columns: repeat(3,1fr); gap:16px; margin-top:0;">
<div class="price-card">
<div class="tier">Free</div>
<div class="price">$0</div>
<ul>
<li>Up to 3 projects</li>
<li>GitHub integration</li>
<li>Basic AI suggestions</li>
<li>Community support</li>
</ul>
</div>
<div class="price-card featured">
<div class="tier">Pro</div>
<div class="price">$12<span>/user/mo</span></div>
<ul>
<li>Unlimited projects</li>
<li>Advanced AI generation</li>
<li>Sprint analytics</li>
<li>Priority support</li>
</ul>
</div>
<div class="price-card">
<div class="tier">Enterprise</div>
<div class="price" style="font-size:32px;">Custom</div>
<ul>
<li>SSO / SAML</li>
<li>On-premise deploy</li>
<li>Custom integrations</li>
<li>SLA guarantees</li>
</ul>
</div>
</div>
<div style="margin-top:20px;">
<h3 style="font-size:18px; margin-bottom:12px;">Revenue Drivers</h3>
<ul class="bullet-list" style="margin-top:0;">
<li><strong>Seat-based SaaS</strong> — predictable recurring revenue per user</li>
<li><strong>AI execution credits</strong> — usage-based pricing for code generation beyond free tier</li>
<li><strong>Enterprise contracts</strong> — annual contracts with premium support & SLAs</li>
</ul>
</div>
</div>
<div>
<h3 style="font-size:18px; margin-bottom:16px;">Unit Economics (Target)</h3>
<ul class="key-metrics">
<li><span class="metric-label">LTV</span> <span class="metric-value">$2,880</span></li>
<li><span class="metric-label">CAC</span> <span class="metric-value">$320</span></li>
<li><span class="metric-label">LTV:CAC Ratio</span> <span class="metric-value highlight-text">9:1</span></li>
<li><span class="metric-label">Gross Margin</span> <span class="metric-value">78%</span></li>
<li><span class="metric-label">Net Revenue Retention</span> <span class="metric-value">125%</span></li>
<li><span class="metric-label">Payback Period</span> <span class="metric-value">4 months</span></li>
</ul>
<div style="margin-top:20px; padding:16px; background:#f0fdf4; border-radius:12px; border:1px solid #bbf7d0;">
<h4 style="font-size:14px; color:#065f46;">Land & Expand</h4>
<p style="font-size:13px; color:#047857; margin-top:4px;">Free tier drives adoption. Teams upgrade as AI executions prove value. Average expansion: 3x within 6 months.</p>
</div>
</div>
</div>
<div class="slide-num">7</div>
</div>
</div>
<!-- ==================== SLIDE 8: TRACTION ==================== -->
<div class="slide">
<div class="slide-inner">
<div class="label">Traction</div>
<h2>Early signals are strong</h2>
<p style="margin-top:8px; max-width: 700px;">We're pre-revenue and focused on building the best product. Here's where we stand.</p>
<div class="traction-row">
<div class="traction-card">
<div class="num">295+</div>
<div class="lbl">Source files shipped</div>
<div class="trend">Full-stack product</div>
</div>
<div class="traction-card">
<div class="num">15+</div>
<div class="lbl">PRs merged</div>
<div class="trend">Active development</div>
</div>
<div class="traction-card">
<div class="num">50+</div>
<div class="lbl">Features built</div>
<div class="trend">Comprehensive platform</div>
</div>
<div class="traction-card">
<div class="num">2</div>
<div class="lbl">AI providers integrated</div>
<div class="trend">OpenAI + Anthropic</div>
</div>
</div>
<div class="two-col" style="margin-top:28px;">
<div>
<h3 style="font-size:18px; margin-bottom:16px;">What We've Built</h3>
<ul class="bullet-list" style="margin-top:0;">
<li>Full Kanban board with drag-and-drop, WIP limits, and task hierarchy</li>
<li>End-to-end AI code generation pipeline with human-in-the-loop review</li>
<li>Deep GitHub integration with webhooks, PR management, and CI/CD tracking</li>
<li>AI sprint planning with risk assessment and dependency detection</li>
<li>Multi-tenant org support with role-based access control</li>
<li>Notification system with email and in-app delivery</li>
</ul>
</div>
<div>
<h3 style="font-size:18px; margin-bottom:16px;">Validation</h3>
<div class="feature-card" style="margin-bottom:16px;">
<h4>Open Source Community</h4>
<p>Contributors actively submitting PRs and feature requests. Organic interest from developers who see the vision.</p>
</div>
<div class="feature-card" style="margin-bottom:16px;">
<h4>Technical Differentiation</h4>
<p>No competitor offers the task → code → review → ship pipeline. We're defining a new category.</p>
</div>
<div class="feature-card">
<h4>Production-Ready Stack</h4>
<p>Next.js 14, PostgreSQL, Redis, Prisma — built on proven infrastructure ready to scale.</p>
</div>
</div>
</div>
<div class="slide-num">8</div>
</div>
</div>
<!-- ==================== SLIDE 9: ROADMAP ==================== -->
<div class="slide">
<div class="slide-inner">
<div class="label">Roadmap</div>
<h2>Where we're going</h2>
<div class="two-col" style="margin-top:24px;">
<div>
<div class="timeline">
<div class="timeline-item">
<div class="timeline-dot" style="background:#d1fae5; border-color:#10b981;">✓</div>
<div class="timeline-content">
<h4>Phase 1 — Foundation (Completed)</h4>
<p>Core PM features, Kanban, sprint management, GitHub integration, AI code generation pipeline.</p>
<div class="badge badge-done">DONE</div>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot" style="background:#dbeafe; border-color:#3b82f6;">→</div>
<div class="timeline-content">
<h4>Phase 2 — Intelligence (Q2 2026)</h4>
<p>Advanced analytics, velocity charts, burndown charts, custom dashboards, time tracking.</p>
<div class="badge badge-now">IN PROGRESS</div>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot" style="background:#fef3c7; border-color:#f59e0b;">3</div>
<div class="timeline-content">
<h4>Phase 3 — Ecosystem (Q3 2026)</h4>
<p>Slack integration, GitLab support, Jira migration tool, API marketplace, custom automation rules.</p>
<div class="badge badge-next">PLANNED</div>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot" style="background:#fef3c7; border-color:#f59e0b;">4</div>
<div class="timeline-content">
<h4>Phase 4 — Enterprise (Q4 2026)</h4>
<p>SSO/SAML, on-premise deployment, audit logs, advanced RBAC, SOC 2 compliance, dedicated support.</p>
<div class="badge badge-next">PLANNED</div>
</div>
</div>
</div>
</div>
<div>
<h3 style="font-size:18px; margin-bottom:16px;">Key Milestones</h3>
<div class="moat-grid" style="grid-template-columns:1fr;">
<div class="moat-card">
<div class="num">Q2 2026</div>
<h4>Public Beta Launch</h4>
<p>Open sign-ups, free tier, community building. Target: 500 active teams.</p>
</div>
<div class="moat-card">
<div class="num">Q3 2026</div>
<h4>Revenue Launch</h4>
<p>Pro tier monetization, enterprise pilots. Target: $50K MRR.</p>
</div>
<div class="moat-card">
<div class="num">Q4 2026</div>
<h4>Enterprise Ready</h4>
<p>SOC 2, SSO, on-premise. Target: 3 enterprise contracts.</p>
</div>
<div class="moat-card">
<div class="num">2027</div>
<h4>Series A Position</h4>
<p>$2M+ ARR, 50+ paying teams, proven unit economics, category leadership.</p>
</div>
</div>
</div>
</div>
<div class="slide-num">9</div>
</div>
</div>
<!-- ==================== SLIDE 10: THE ASK ==================== -->
<div class="slide">
<div class="slide-inner">
<div class="label">The Ask</div>
<h2>Raising $2.5M Seed Round</h2>
<p style="margin-top:8px; max-width:700px;">To accelerate product development, launch publicly, and capture the AI-native project management category.</p>
<div class="ask-grid">
<div class="ask-box">
<h4>Use of Funds</h4>
<ul>
<li><strong>Engineering (50%)</strong> — Hire 3 senior engineers to accelerate roadmap</li>
<li><strong>AI Infrastructure (20%)</strong> — GPU/API costs, model fine-tuning, execution pipeline optimization</li>
<li><strong>Go-to-Market (20%)</strong> — Developer relations, content marketing, community building</li>
<li><strong>Operations (10%)</strong> — Legal, compliance (SOC 2), infrastructure</li>
</ul>
</div>
<div class="ask-box">
<h4>What This Gets You</h4>
<ul>
<li><strong>18-month runway</strong> to Series A milestones</li>
<li><strong>Public beta by Q2 2026</strong> with 500+ active teams</li>
<li><strong>$2M+ ARR trajectory</strong> by end of 2027</li>
<li><strong>Category definition</strong> — first mover in AI-native PM</li>
<li><strong>Enterprise pipeline</strong> — 3+ contracts by Q4 2026</li>
</ul>
</div>
</div>
<div style="margin-top:28px; display:grid; grid-template-columns:repeat(3,1fr); gap:20px;">
<div style="text-align:center; padding:24px; border-radius:14px; background:var(--accent-bg); border:1px solid #c7d2fe;">
<div style="font-size:32px; font-weight:800; color:var(--accent);">$2.5M</div>
<div style="font-size:14px; color:var(--fg-muted); margin-top:4px;">Seed Round</div>
</div>
<div style="text-align:center; padding:24px; border-radius:14px; background:#f0fdf4; border:1px solid #bbf7d0;">
<div style="font-size:32px; font-weight:800; color:var(--success);">18 mo</div>
<div style="font-size:14px; color:var(--fg-muted); margin-top:4px;">Runway to Series A</div>
</div>
<div style="text-align:center; padding:24px; border-radius:14px; background:#fff7ed; border:1px solid #fed7aa;">
<div style="font-size:32px; font-weight:800; color:var(--orange);">$2M+</div>
<div style="font-size:14px; color:var(--fg-muted); margin-top:4px;">ARR Target (2027)</div>
</div>
</div>
<div class="slide-num">10</div>
</div>
</div>
<!-- ==================== SLIDE 11: CLOSING ==================== -->
<div class="slide slide-cta">
<div class="slide-inner">
<div style="font-size:28px; font-weight:800; color:var(--accent-light); margin-bottom:40px; letter-spacing:-0.5px;"><span style="color:#fff;">Flow</span>Forge</div>
<h1>The future of software<br>delivery starts here.</h1>
<p style="margin-top:16px;">We're not building another project management tool.<br>We're building the platform that makes engineering teams superhuman.</p>
<div class="contact-row">
<div class="contact-item">flowforge.dev</div>
<div class="contact-item">team@flowforge.dev</div>
<div class="contact-item">github.com/flowforge</div>
</div>
<div style="margin-top:40px; color:rgba(255,255,255,.3); font-size:14px;">Thank you.</div>
</div>
</div>
</div><!-- end .deck -->
<!-- Navigation -->
<div class="nav">
<button onclick="prevSlide()" id="prevBtn">←</button>
<span class="counter" id="counter">1 / 11</span>
<button onclick="nextSlide()" id="nextBtn">→</button>
</div>
<script>
const slides = document.querySelectorAll('.slide');
const counter = document.getElementById('counter');
const progressBar = document.getElementById('progressBar');
let current = 0;
function showSlide(n) {
slides[current].classList.remove('active');
current = Math.max(0, Math.min(n, slides.length - 1));
slides[current].classList.add('active');
counter.textContent = `${current + 1} / ${slides.length}`;
progressBar.style.width = `${((current + 1) / slides.length) * 100}%`;
}
function nextSlide() { showSlide(current + 1); }
function prevSlide() { showSlide(current - 1); }
document.addEventListener('keydown', (e) => {
if (e.key === 'ArrowRight' || e.key === ' ') { e.preventDefault(); nextSlide(); }