-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1110 lines (1021 loc) · 68.5 KB
/
Copy pathindex.html
File metadata and controls
1110 lines (1021 loc) · 68.5 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>Kinetra AI — Replace Your SaaS. Keep Your Money.</title>
<meta name="description" content="Calculate exactly how much you'll save by replacing your business SaaS stack with custom AI automation. Fixed price. Live in 30 days.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@500;600&display=swap" rel="stylesheet">
<style>
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;font-size:16px}
body{background:#090D18;color:#E8EEFF;font-family:'Inter',system-ui,sans-serif;overflow-x:hidden;-webkit-font-smoothing:antialiased}
a{text-decoration:none;color:inherit}
button{cursor:pointer;font-family:inherit}
input,select,textarea{font-family:inherit}
:root{
--bg:#090D18;--surface:#10141F;--surface-2:#141926;
--border:#1C2333;--border-2:#2A3347;
--text:#E8EEFF;--muted:#8892AA;--dim:#4E5A72;
--green:#00C896;--green-dim:rgba(0,200,150,0.1);--green-br:rgba(0,200,150,0.25);
--violet:#8B5CF6;--indigo:#6366F1;
--grad:linear-gradient(135deg,#00C896 0%,#6366F1 100%);
--grad-r:linear-gradient(135deg,#6366F1 0%,#00C896 100%);
}
/* ── NAV ── */
nav{position:sticky;top:0;z-index:100;height:68px;display:flex;align-items:center;justify-content:space-between;padding:0 72px;background:rgba(9,13,24,0.94);border-bottom:1px solid var(--border);backdrop-filter:blur(20px)}
.logo{display:flex;align-items:center;gap:10px;font-size:16px;font-weight:800;letter-spacing:-0.02em}
.logo-dot{width:8px;height:8px;border-radius:50%;background:var(--green);box-shadow:0 0 8px var(--green)}
.nav-links{display:flex;gap:36px;list-style:none}
.nav-links a{font-size:13.5px;font-weight:500;color:var(--muted);transition:color .15s}
.nav-links a:hover{color:var(--text)}
.nav-btn{background:var(--green);color:#090D18;font-weight:700;font-size:13px;padding:9px 22px;border:none;border-radius:6px;transition:opacity .15s,transform .15s}
.nav-btn:hover{opacity:.88;transform:translateY(-1px)}
@media(max-width:768px){nav{padding:0 20px}.nav-links{display:none}}
/* ── HERO ── */
.hero{min-height:90vh;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:80px 24px 60px;position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 60% 50% at 50% 0%,rgba(0,200,150,0.08) 0%,transparent 70%);pointer-events:none}
.hero-badge{display:inline-flex;align-items:center;gap:8px;background:var(--green-dim);border:1px solid var(--green-br);border-radius:999px;padding:6px 16px;font-size:12px;font-weight:600;color:var(--green);letter-spacing:.04em;margin-bottom:32px}
.hero-badge-dot{width:6px;height:6px;border-radius:50%;background:var(--green);animation:pulse 1.8s ease-in-out infinite}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(.8)}}
.hero h1{font-size:clamp(2.4rem,5vw,4rem);font-weight:900;line-height:1.08;letter-spacing:-.03em;max-width:820px;margin-bottom:24px}
.hero h1 .grad{background:var(--grad);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.hero-sub{font-size:1.15rem;color:var(--muted);max-width:560px;line-height:1.7;margin-bottom:40px}
.hero-ctas{display:flex;gap:16px;flex-wrap:wrap;justify-content:center;margin-bottom:56px}
.btn-primary{background:var(--green);color:#090D18;font-weight:700;font-size:15px;padding:14px 32px;border:none;border-radius:8px;transition:all .2s;letter-spacing:-.01em}
.btn-primary:hover{opacity:.88;transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,200,150,0.3)}
.btn-outline{background:transparent;color:var(--text);font-weight:600;font-size:15px;padding:14px 32px;border:1px solid var(--border-2);border-radius:8px;transition:all .2s}
.btn-outline:hover{border-color:var(--green);color:var(--green)}
.proof-row{display:flex;gap:48px;flex-wrap:wrap;justify-content:center}
.proof-item{text-align:center}
.proof-n{font-size:2rem;font-weight:900;background:var(--grad);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;line-height:1}
.proof-l{font-size:.75rem;color:var(--muted);margin-top:4px;text-transform:uppercase;letter-spacing:.08em}
/* ── SECTION COMMON ── */
.section{padding:100px 72px;max-width:1280px;margin:0 auto}
.section-alt{background:var(--surface);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.eyebrow{font-size:.72rem;font-weight:700;color:var(--green);letter-spacing:.12em;text-transform:uppercase;margin-bottom:14px}
.sec-h2{font-size:clamp(1.8rem,3vw,2.6rem);font-weight:800;letter-spacing:-.02em;line-height:1.15;margin-bottom:20px}
.sec-sub{font-size:1.05rem;color:var(--muted);line-height:1.7;max-width:600px}
@media(max-width:768px){.section{padding:60px 20px}}
/* ── CALCULATOR ── */
.calc-outer{padding:100px 24px}
.calc-wrap{max-width:860px;margin:0 auto}
.calc-header{text-align:center;margin-bottom:56px}
.progress-bar{display:flex;align-items:center;gap:0;margin-bottom:56px;position:relative}
.progress-bar::before{content:'';position:absolute;top:50%;left:0;right:0;height:1px;background:var(--border);transform:translateY(-50%);z-index:0}
.step-dot{width:32px;height:32px;border-radius:50%;border:2px solid var(--border);background:var(--surface);display:flex;align-items:center;justify-content:center;font-size:.72rem;font-weight:700;color:var(--dim);position:relative;z-index:1;transition:all .3s;flex-shrink:0}
.step-dot.active{border-color:var(--green);color:var(--green);background:var(--green-dim)}
.step-dot.done{border-color:var(--green);background:var(--green);color:#090D18}
.step-line{flex:1;height:1px;background:var(--border);transition:background .3s;z-index:0}
.step-line.done{background:var(--green)}
.calc-step{display:none}
.calc-step.active{display:block}
.step-title{font-size:1.5rem;font-weight:800;letter-spacing:-.02em;margin-bottom:8px}
.step-desc{color:var(--muted);margin-bottom:36px;font-size:.95rem}
.biz-search{width:100%;background:var(--surface);border:1px solid var(--border-2);border-radius:10px;padding:14px 18px;color:var(--text);font-size:1rem;outline:none;transition:border-color .2s;margin-bottom:16px}
.biz-search:focus{border-color:var(--green)}
.biz-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:10px;max-height:400px;overflow-y:auto}
.biz-card{background:var(--surface);border:2px solid var(--border);border-radius:10px;padding:16px;cursor:pointer;transition:all .2s;text-align:center}
.biz-card:hover{border-color:var(--border-2);transform:translateY(-1px)}
.biz-card.selected{border-color:var(--green);background:var(--green-dim)}
.biz-icon{font-size:1.8rem;margin-bottom:8px}
.biz-name{font-size:.82rem;font-weight:600;color:var(--text)}
.tools-list{display:flex;flex-direction:column;gap:12px}
.tool-row{background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:16px 20px;display:flex;align-items:center;gap:16px;transition:border-color .2s}
.tool-row.selected{border-color:var(--green)}
.tool-check{width:20px;height:20px;border-radius:5px;border:2px solid var(--border-2);background:transparent;cursor:pointer;display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:all .2s}
.tool-check.checked{background:var(--green);border-color:var(--green)}
.tool-check.checked::after{content:'✓';font-size:.7rem;color:#090D18;font-weight:900}
.tool-info{flex:1}
.tool-name{font-size:.9rem;font-weight:600;margin-bottom:2px}
.tool-cat{font-size:.75rem;color:var(--muted)}
.tool-badge{font-size:.7rem;font-weight:700;padding:3px 8px;border-radius:4px;flex-shrink:0}
.badge-can{background:rgba(0,200,150,.15);color:var(--green);border:1px solid var(--green-br)}
.badge-keep{background:var(--surface-2);color:var(--dim);border:1px solid var(--border)}
.cost-input{width:90px;background:var(--surface-2);border:1px solid var(--border-2);border-radius:6px;padding:6px 10px;color:var(--text);font-size:.85rem;text-align:right;outline:none;transition:border-color .2s}
.cost-input:focus{border-color:var(--green)}
.cost-prefix{font-size:.85rem;color:var(--muted);margin-right:4px}
.step-nav{display:flex;justify-content:space-between;margin-top:40px;gap:12px}
.btn-step{background:var(--surface-2);color:var(--text);border:1px solid var(--border-2);border-radius:8px;padding:12px 28px;font-weight:600;font-size:.9rem;transition:all .2s}
.btn-step:hover{border-color:var(--green);color:var(--green)}
.btn-step-next{background:var(--green);color:#090D18;border:none;border-radius:8px;padding:12px 32px;font-weight:700;font-size:.9rem;transition:all .2s}
.btn-step-next:hover{opacity:.88;transform:translateY(-1px)}
.input-group{margin-bottom:20px}
.input-label{font-size:.82rem;font-weight:600;color:var(--muted);text-transform:uppercase;letter-spacing:.06em;margin-bottom:8px;display:block}
.input-row{display:flex;align-items:center;gap:10px}
.big-input{flex:1;background:var(--surface);border:1px solid var(--border-2);border-radius:8px;padding:12px 16px;color:var(--text);font-size:1rem;outline:none;transition:border-color .2s}
.big-input:focus{border-color:var(--green)}
.input-suffix{color:var(--muted);font-size:.85rem;white-space:nowrap}
.ai-tools-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:12px;margin-bottom:24px}
.ai-tool-card{background:var(--surface);border:2px solid var(--border);border-radius:10px;padding:14px 16px;cursor:pointer;transition:all .2s}
.ai-tool-card.selected{border-color:var(--violet)}
.ai-tool-card .tool-name{font-size:.85rem}
.ai-tool-spend{margin-top:8px;display:none}
.ai-tool-card.selected .ai-tool-spend{display:flex;align-items:center;gap:6px}
/* ── RESULTS ── */
.results-wrap{display:none}
.results-wrap.active{display:block}
.savings-hero{text-align:center;padding:48px 24px;background:var(--surface);border:1px solid var(--border);border-radius:16px;margin-bottom:32px;position:relative;overflow:hidden}
.savings-hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 60% 40% at 50% 100%,rgba(0,200,150,0.08),transparent);pointer-events:none}
.savings-label{font-size:.78rem;font-weight:700;color:var(--muted);text-transform:uppercase;letter-spacing:.1em;margin-bottom:12px}
.savings-big{font-size:clamp(2.5rem,6vw,4.5rem);font-weight:900;background:var(--grad);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;letter-spacing:-.03em}
.savings-period{font-size:1rem;color:var(--muted);margin-top:8px}
.savings-breakdown{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:1px;background:var(--border);border:1px solid var(--border);border-radius:12px;overflow:hidden;margin-bottom:32px}
.sb-cell{background:var(--surface);padding:20px 24px}
.sb-label{font-size:.75rem;color:var(--muted);text-transform:uppercase;letter-spacing:.06em;margin-bottom:6px}
.sb-val{font-size:1.4rem;font-weight:800;color:var(--green)}
.sb-val.neutral{color:var(--text)}
.topology-section{margin-bottom:32px}
.topology-title{font-size:1.1rem;font-weight:700;margin-bottom:6px}
.topology-sub{font-size:.85rem;color:var(--muted);margin-bottom:20px}
#topology-canvas{width:100%;background:var(--surface);border:1px solid var(--border);border-radius:12px;display:block}
.result-ctas{display:flex;gap:16px;flex-wrap:wrap}
.result-ctas .btn-primary{flex:1;text-align:center}
.result-ctas .btn-outline{flex:1;text-align:center}
.disclaimer{font-size:.72rem;color:var(--dim);text-align:center;margin-top:16px;line-height:1.6}
/* ── DOGFOOD SECTION ── */
.dogfood{text-align:center}
.dogfood-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px;margin-top:48px;text-align:left}
.dogfood-card{background:var(--surface);border:1px solid var(--border);border-radius:12px;padding:24px;position:relative;overflow:hidden;transition:border-color .2s}
.dogfood-card:hover{border-color:var(--green-br)}
.dogfood-card::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:var(--grad)}
.df-icon{width:36px;height:36px;border-radius:8px;background:var(--green-dim);border:1px solid var(--green-br);display:flex;align-items:center;justify-content:center;font-size:1rem;margin-bottom:14px}
.df-title{font-size:.92rem;font-weight:700;margin-bottom:6px}
.df-desc{font-size:.82rem;color:var(--muted);line-height:1.6}
.df-live{display:inline-flex;align-items:center;gap:5px;font-size:.7rem;font-weight:700;color:var(--green);margin-top:10px}
.df-live-dot{width:5px;height:5px;border-radius:50%;background:var(--green);animation:pulse 1.5s infinite}
/* ── PROCESS ── */
.process-steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:0;border:1px solid var(--border);border-radius:12px;overflow:hidden;margin-top:48px}
.pstep{padding:28px 24px;border-right:1px solid var(--border);background:var(--surface);transition:background .2s}
.pstep:last-child{border-right:none}
.pstep:hover{background:var(--surface-2)}
.pstep-n{font-size:.7rem;font-weight:700;color:var(--green);font-family:'JetBrains Mono',monospace;margin-bottom:10px}
.pstep-t{font-size:.95rem;font-weight:700;margin-bottom:8px}
.pstep-d{font-size:.82rem;color:var(--muted);line-height:1.6}
/* ── SCHEDULE ── */
.schedule-wrap{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}
@media(max-width:768px){.schedule-wrap{grid-template-columns:1fr}}
.schedule-info p{color:var(--muted);font-size:.95rem;line-height:1.7;margin-bottom:24px}
.avail-label{font-size:.78rem;font-weight:700;color:var(--muted);text-transform:uppercase;letter-spacing:.08em;margin-bottom:12px}
.avail-grid{display:flex;flex-direction:column;gap:8px;margin-bottom:32px}
.avail-row{display:flex;gap:8px;align-items:center}
.avail-day{font-size:.8rem;font-weight:600;color:var(--muted);width:40px;flex-shrink:0}
.avail-slots{display:flex;gap:6px;flex-wrap:wrap}
.avail-slot{background:var(--surface);border:1px solid var(--border);border-radius:6px;padding:5px 10px;font-size:.75rem;color:var(--muted);cursor:pointer;transition:all .2s;font-weight:500}
.avail-slot:hover,.avail-slot.picked{background:var(--green-dim);border-color:var(--green);color:var(--green)}
.contact-form{background:var(--surface);border:1px solid var(--border);border-radius:12px;padding:32px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px}
.form-group{display:flex;flex-direction:column;gap:6px}
.form-label{font-size:.78rem;font-weight:600;color:var(--muted);text-transform:uppercase;letter-spacing:.06em}
.form-input{background:var(--surface-2);border:1px solid var(--border-2);border-radius:7px;padding:10px 14px;color:var(--text);font-size:.9rem;outline:none;transition:border-color .2s;width:100%}
.form-input:focus{border-color:var(--green)}
.form-textarea{min-height:90px;resize:vertical}
.form-submit{width:100%;background:var(--green);color:#090D18;font-weight:700;font-size:.95rem;padding:13px;border:none;border-radius:8px;margin-top:8px;transition:all .2s}
.form-submit:hover{opacity:.88;transform:translateY(-1px)}
.form-note{font-size:.72rem;color:var(--dim);margin-top:10px;text-align:center;line-height:1.6}
.form-success{display:none;text-align:center;padding:40px 20px}
.form-success-icon{font-size:2.5rem;margin-bottom:16px}
.form-success h3{font-size:1.2rem;font-weight:700;margin-bottom:8px;color:var(--green)}
.form-success p{color:var(--muted);font-size:.9rem}
/* ── FOOTER ── */
footer{border-top:1px solid var(--border);padding:40px 72px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:20px}
.footer-logo{font-size:15px;font-weight:800;letter-spacing:-.02em;display:flex;align-items:center;gap:8px}
.footer-links{display:flex;gap:24px}
.footer-links a{font-size:.82rem;color:var(--muted);transition:color .15s}
.footer-links a:hover{color:var(--green)}
.footer-copy{font-size:.75rem;color:var(--dim)}
@media(max-width:768px){footer{padding:32px 20px;flex-direction:column;text-align:center}}
/* ── COOKIE CONSENT ── */
#cookie-banner{position:fixed;bottom:24px;left:50%;transform:translateX(-50%);background:var(--surface);border:1px solid var(--border-2);border-radius:12px;padding:18px 24px;display:flex;align-items:center;gap:20px;flex-wrap:wrap;z-index:999;box-shadow:0 8px 32px rgba(0,0,0,.5);max-width:640px;width:calc(100% - 48px);transition:opacity .3s,transform .3s}
#cookie-banner.hidden{opacity:0;pointer-events:none;transform:translateX(-50%) translateY(20px)}
.cookie-text{font-size:.82rem;color:var(--muted);line-height:1.5;flex:1}
.cookie-text a{color:var(--green);text-decoration:underline}
.cookie-btns{display:flex;gap:8px;flex-shrink:0}
.btn-cookie-accept{background:var(--green);color:#090D18;border:none;border-radius:6px;padding:8px 18px;font-size:.82rem;font-weight:700;cursor:pointer}
.btn-cookie-reject{background:transparent;color:var(--muted);border:1px solid var(--border-2);border-radius:6px;padding:8px 18px;font-size:.82rem;font-weight:600;cursor:pointer;transition:all .2s}
.btn-cookie-reject:hover{border-color:var(--muted);color:var(--text)}
/* ── ANIMATIONS ── */
.r{opacity:0;transform:translateY(22px);transition:opacity .75s cubic-bezier(.22,1,.36,1),transform .75s cubic-bezier(.22,1,.36,1)}
.r.in{opacity:1;transform:none}
.d1{transition-delay:.08s}.d2{transition-delay:.16s}.d3{transition-delay:.24s}.d4{transition-delay:.32s}
</style>
</head>
<body>
<!-- COOKIE CONSENT -->
<div id="cookie-banner">
<div class="cookie-text">
We use cookies to remember your preferences and improve your experience.
<a href="#" onclick="return false">Privacy Policy</a>
</div>
<div class="cookie-btns">
<button class="btn-cookie-reject" onclick="setCookieConsent('rejected')">Reject</button>
<button class="btn-cookie-accept" onclick="setCookieConsent('accepted')">Accept</button>
</div>
</div>
<!-- NAV -->
<nav>
<div class="logo">
<div class="logo-dot"></div>
KINETRA<span style="font-weight:300;opacity:.6">AI</span>
</div>
<ul class="nav-links">
<li><a href="#calculator">ROI Calculator</a></li>
<li><a href="#process">How It Works</a></li>
<li><a href="#proof">Our Stack</a></li>
<li><a href="#schedule">Book a Call</a></li>
</ul>
<button class="nav-btn" onclick="document.getElementById('calculator').scrollIntoView({behavior:'smooth'})">Calculate Savings →</button>
</nav>
<!-- HERO -->
<div class="hero">
<div class="hero-badge"><span class="hero-badge-dot"></span>Business Automation · Fixed Price · 30-Day Delivery</div>
<h1>We automate ourselves first.<br><span class="grad">Then we automate you.</span></h1>
<p class="hero-sub">Replace expensive SaaS subscriptions with custom AI systems built for your business. Calculate your exact savings in 3 minutes.</p>
<div class="hero-ctas">
<button class="btn-primary" onclick="document.getElementById('calculator').scrollIntoView({behavior:'smooth'})">Calculate My Savings →</button>
<button class="btn-outline" onclick="document.getElementById('process').scrollIntoView({behavior:'smooth'})">How It Works</button>
</div>
<div class="proof-row">
<div class="proof-item"><div class="proof-n">30</div><div class="proof-l">Days to live</div></div>
<div class="proof-item"><div class="proof-n">100%</div><div class="proof-l">IP ownership</div></div>
<div class="proof-item"><div class="proof-n">Fixed</div><div class="proof-l">Price & scope</div></div>
<div class="proof-item"><div class="proof-n">0</div><div class="proof-l">Lock-in</div></div>
</div>
</div>
<!-- CALCULATOR -->
<div class="section-alt" id="calculator">
<div class="calc-outer">
<div class="calc-wrap">
<div class="calc-header r">
<div class="eyebrow">ROI Calculator</div>
<h2 class="sec-h2">How much are you leaving on the table?</h2>
<p class="sec-sub">Enter your business details and see exactly which SaaS tools we can replace — and what you'll save.</p>
</div>
<!-- PROGRESS -->
<div class="progress-bar" id="progress-bar">
<div class="step-dot active" id="dot-1">1</div>
<div class="step-line" id="line-1"></div>
<div class="step-dot" id="dot-2">2</div>
<div class="step-line" id="line-2"></div>
<div class="step-dot" id="dot-3">3</div>
<div class="step-line" id="line-3"></div>
<div class="step-dot" id="dot-4">4</div>
<div class="step-line" id="line-4"></div>
<div class="step-dot" id="dot-5">5</div>
</div>
<!-- STEP 1: Business Type -->
<div class="calc-step active" id="step-1">
<div class="step-title">What type of business do you run?</div>
<div class="step-desc">Select the closest match — we'll pre-load the tools most common for your industry.</div>
<input class="biz-search" type="text" placeholder="Search business types..." id="biz-search" oninput="filterBizTypes(this.value)">
<div class="biz-grid" id="biz-grid"></div>
<div class="step-nav">
<div></div>
<button class="btn-step-next" onclick="nextStep(2)">Next: Your Tools →</button>
</div>
</div>
<!-- STEP 2: SaaS Tools -->
<div class="calc-step" id="step-2">
<div class="step-title">Which tools do you currently pay for?</div>
<div class="step-desc">Check each tool you use and enter your actual monthly cost. Leave unchecked if you don't use it.</div>
<div class="tools-list" id="tools-list"></div>
<div class="step-nav">
<button class="btn-step" onclick="goStep(1)">← Back</button>
<button class="btn-step-next" onclick="nextStep(3)">Next: AI & Ads →</button>
</div>
</div>
<!-- STEP 3: AI Tools + Ads -->
<div class="calc-step" id="step-3">
<div class="step-title">AI tools and advertising spend</div>
<div class="step-desc">These are often the biggest hidden costs — and where we deliver the fastest savings.</div>
<div style="margin-bottom:24px">
<div class="step-title" style="font-size:1rem;margin-bottom:16px;font-weight:600;">AI Subscriptions</div>
<div class="ai-tools-grid" id="ai-tools-grid"></div>
</div>
<div style="margin-bottom:24px">
<div class="step-title" style="font-size:1rem;margin-bottom:16px;font-weight:600;">Monthly Ad Spend</div>
<div style="display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:12px" id="ads-grid"></div>
</div>
<div class="step-nav">
<button class="btn-step" onclick="goStep(2)">← Back</button>
<button class="btn-step-next" onclick="nextStep(4)">Next: Your Team →</button>
</div>
</div>
<!-- STEP 4: Team & Time -->
<div class="calc-step" id="step-4">
<div class="step-title">Your team and manual workload</div>
<div class="step-desc">We calculate how many hours we can free up — and what that time is worth to you.</div>
<div class="input-group">
<label class="input-label">How many people work in your business?</label>
<div class="input-row">
<input class="big-input" type="number" id="team-size" min="1" max="500" placeholder="e.g. 5">
<span class="input-suffix">employees</span>
</div>
</div>
<div class="input-group">
<label class="input-label">Hours per week spent on repetitive manual tasks?</label>
<div class="input-row">
<input class="big-input" type="number" id="manual-hours" min="1" max="200" placeholder="e.g. 15">
<span class="input-suffix">hrs / week</span>
</div>
</div>
<div class="input-group">
<label class="input-label">Average hourly rate of the person doing these tasks?</label>
<div class="input-row">
<span class="cost-prefix">$</span>
<input class="big-input" type="number" id="hourly-rate" min="10" max="500" placeholder="e.g. 25">
<span class="input-suffix">/ hour</span>
</div>
</div>
<div class="input-group">
<label class="input-label">Your business name (for the report)</label>
<input class="big-input" type="text" id="biz-name" placeholder="e.g. Sunrise Café">
</div>
<div class="step-nav">
<button class="btn-step" onclick="goStep(3)">← Back</button>
<button class="btn-step-next" onclick="calculateResults()">See My Savings →</button>
</div>
</div>
<!-- STEP 5: Results -->
<div class="calc-step" id="step-5">
<div class="results-wrap active" id="results-wrap">
<div class="savings-hero r">
<div class="savings-label">Estimated Annual Savings</div>
<div class="savings-big" id="res-annual">$0</div>
<div class="savings-period" id="res-monthly">$0 / month</div>
</div>
<div class="savings-breakdown r d1">
<div class="sb-cell">
<div class="sb-label">SaaS replaced</div>
<div class="sb-val" id="res-saas">$0/mo</div>
</div>
<div class="sb-cell">
<div class="sb-label">AI tools replaced</div>
<div class="sb-val" id="res-ai">$0/mo</div>
</div>
<div class="sb-cell">
<div class="sb-label">Time freed</div>
<div class="sb-val" id="res-time">0 hrs/wk</div>
</div>
<div class="sb-cell">
<div class="sb-label">Time value</div>
<div class="sb-val" id="res-timeval">$0/mo</div>
</div>
<div class="sb-cell">
<div class="sb-label">Tools we replace</div>
<div class="sb-val neutral" id="res-count">0</div>
</div>
</div>
<div class="topology-section r d2">
<div class="topology-title">Your Automation Topology</div>
<div class="topology-sub">Green = Kinetra replaces · Gray = stays as-is</div>
<canvas id="topology-canvas" height="380"></canvas>
</div>
<div id="custom-needed" style="display:none;background:var(--surface);border:1px solid var(--border-2);border-radius:12px;padding:24px;margin-bottom:24px">
<div style="font-size:.82rem;font-weight:700;color:var(--muted);text-transform:uppercase;letter-spacing:.08em;margin-bottom:10px">Needs Custom Assessment</div>
<div style="font-size:.88rem;color:var(--muted);line-height:1.7" id="custom-needed-list"></div>
</div>
<div class="result-ctas r d3">
<button class="btn-primary" onclick="document.getElementById('schedule').scrollIntoView({behavior:'smooth'})">Book a Strategy Call →</button>
<button class="btn-outline" onclick="goStep(1)">Recalculate</button>
</div>
<div class="disclaimer">Estimates based on typical SaaS costs and deployment outcomes. Actual savings depend on your specific setup. Kinetra AI does not guarantee revenue or financial outcomes.</div>
</div>
</div>
</div>
</div>
</div>
<!-- DOGFOOD / PROOF -->
<div id="proof">
<div class="section">
<div class="dogfood r">
<div class="eyebrow">Built on what we sell</div>
<h2 class="sec-h2">We automate ourselves first.</h2>
<p class="sec-sub" style="margin:0 auto">Every system on this page — the calculator, the booking form, the lead pipeline — runs on Kinetra AI infrastructure. We don't sell tools we don't use.</p>
</div>
<div class="dogfood-grid">
<div class="dogfood-card r d1">
<div class="df-icon">⚡</div>
<div class="df-title">Automated Lead Pipeline</div>
<div class="df-desc">Every calculator submission goes into an AI-scored pipeline. High-fit leads get a response within the hour — without us checking manually.</div>
<div class="df-live"><span class="df-live-dot"></span>Live on this site</div>
</div>
<div class="dogfood-card r d2">
<div class="df-icon">📬</div>
<div class="df-title">AI Client Intake</div>
<div class="df-desc">The booking form feeds an automated intake agent that pre-qualifies the meeting, prepares a brief, and schedules reminders — zero manual steps.</div>
<div class="df-live"><span class="df-live-dot"></span>Live on this site</div>
</div>
<div class="dogfood-card r d3">
<div class="df-icon">🤖</div>
<div class="df-title">Autonomous Proposal Generator</div>
<div class="df-desc">After a call, an AI agent drafts a scoped proposal based on what we discussed. Review, approve, send — in under 10 minutes.</div>
<div class="df-live"><span class="df-live-dot"></span>Running internally</div>
</div>
<div class="dogfood-card r d4">
<div class="df-icon">📊</div>
<div class="df-title">Real-Time Business Dashboard</div>
<div class="df-desc">One screen showing every active client, pending proposal, revenue this month, and system health — all automated, no spreadsheets.</div>
<div class="df-live"><span class="df-live-dot"></span>Running internally</div>
</div>
</div>
</div>
</div>
<!-- PROCESS -->
<div class="section-alt" id="process">
<div class="section">
<div class="r">
<div class="eyebrow">How We Work</div>
<h2 class="sec-h2">Brief to live in 5 phases.</h2>
</div>
<div class="process-steps r d1">
<div class="pstep">
<div class="pstep-n">01 · Scope</div>
<div class="pstep-t">30-min Strategy Call</div>
<div class="pstep-d">We map your current stack, define what to automate first, and price it. Fixed scope before any work starts.</div>
</div>
<div class="pstep">
<div class="pstep-n">02 · Specify</div>
<div class="pstep-t">Contract + Spec</div>
<div class="pstep-d">You approve a written contract with exact deliverables. No open-ended timelines. No scope creep.</div>
</div>
<div class="pstep">
<div class="pstep-n">03 · Build</div>
<div class="pstep-t">2–4 Week Build</div>
<div class="pstep-d">We build, test, and harden the system against your real data. You see progress weekly.</div>
</div>
<div class="pstep">
<div class="pstep-n">04 · Launch</div>
<div class="pstep-t">Live in 30 Days</div>
<div class="pstep-d">System goes live in your environment. We train your team, verify every function works, and stay on until stable.</div>
</div>
<div class="pstep">
<div class="pstep-n">05 · Operate</div>
<div class="pstep-t">You Own It</div>
<div class="pstep-d">All code, all IP, all access — yours. Optional maintenance retainer available, never required.</div>
</div>
</div>
</div>
</div>
<!-- SCHEDULE -->
<div id="schedule">
<div class="section">
<div class="r" style="margin-bottom:56px">
<div class="eyebrow">Book a Call</div>
<h2 class="sec-h2">Let's look at your numbers.</h2>
<p class="sec-sub">30-minute strategy call. We review your calculator results, identify the highest-ROI automation for your business, and give you a fixed-price estimate on the spot.</p>
</div>
<div class="schedule-wrap">
<div class="schedule-info r">
<p>Pick a time that works for you. Fill in your details and we'll confirm within a few hours.</p>
<div class="avail-label">Available Times</div>
<div class="avail-grid" id="avail-grid"></div>
<div style="font-size:.78rem;color:var(--dim)">All times in your local timezone. More slots available on request.</div>
</div>
<div class="r d1">
<div class="contact-form" id="contact-form-wrap">
<div style="font-size:1rem;font-weight:700;margin-bottom:20px">Your Details</div>
<div class="form-row">
<div class="form-group">
<label class="form-label">Name</label>
<input class="form-input" type="text" id="f-name" placeholder="Your name">
</div>
<div class="form-group">
<label class="form-label">Business Name</label>
<input class="form-input" type="text" id="f-biz" placeholder="Your business">
</div>
</div>
<div class="form-row">
<div class="form-group">
<label class="form-label">Email</label>
<input class="form-input" type="email" id="f-email" placeholder="you@business.com">
</div>
<div class="form-group">
<label class="form-label">Phone (optional)</label>
<input class="form-input" type="tel" id="f-phone" placeholder="+1 555 000 0000">
</div>
</div>
<div class="form-group" style="margin-bottom:16px">
<label class="form-label">What do you want to automate?</label>
<textarea class="form-input form-textarea" id="f-message" placeholder="Briefly describe your biggest time sink or SaaS cost..."></textarea>
</div>
<div class="form-group" style="margin-bottom:8px">
<label class="form-label">Preferred time slot</label>
<input class="form-input" type="text" id="f-slot" placeholder="Select a slot above or type your preference" readonly>
</div>
<button class="form-submit" onclick="submitContact()">Request Strategy Call →</button>
<div class="form-note">We respond within a few hours during business days. No spam, ever.</div>
</div>
<div class="form-success" id="form-success">
<div class="form-success-icon">✓</div>
<h3>Request received!</h3>
<p>We'll confirm your time slot via email within a few hours. Check your inbox — we may have follow-up questions to make the call more useful.</p>
</div>
</div>
</div>
</div>
</div>
<!-- FOOTER -->
<footer>
<div class="footer-logo">
<div class="logo-dot"></div>
KINETRAAI
</div>
<div class="footer-links">
<a href="#calculator">Calculator</a>
<a href="#process">Process</a>
<a href="#schedule">Contact</a>
</div>
<div class="footer-copy">© 2026 Kinetra AI · Custom automation built to last · <span id="cookie-manage" style="cursor:pointer;text-decoration:underline" onclick="resetCookieConsent()">Cookie settings</span></div>
</footer>
<script src="config.js"></script>
<script>
// ── SAAS DATABASE ──────────────────────────────────────────
const BIZ_TYPES = [
{ id:'cafe', name:'Café / Coffee Shop', icon:'☕', tools:['email_mkt','social_mgr','loyalty','booking_sys','review_mgmt','chatgpt','accounting','pos'] },
{ id:'restaurant', name:'Restaurant / Bar', icon:'🍽️', tools:['pos','reservation','email_mkt','social_mgr','loyalty','delivery_mgmt','review_mgmt','accounting','chatgpt'] },
{ id:'law', name:'Law Firm', icon:'⚖️', tools:['case_mgmt','doc_mgmt','billing','client_intake','email_mkt','esign','accounting','chatgpt','legal_research'] },
{ id:'medical', name:'Medical Practice', icon:'🏥', tools:['ehr','scheduling_health','billing_med','patient_portal','telehealth','email_mkt','chatgpt','accounting'] },
{ id:'dental', name:'Dental Office', icon:'🦷', tools:['dental_practice','scheduling_health','billing_med','patient_portal','email_mkt','review_mgmt','chatgpt','accounting'] },
{ id:'realestate', name:'Real Estate Agency', icon:'🏠', tools:['crm_re','mls','email_mkt','social_mgr','doc_mgmt','esign','lead_gen','chatgpt','accounting','video_tour'] },
{ id:'property', name:'Property Management', icon:'🏢', tools:['tenant_portal','maintenance_mgmt','lease_mgmt','accounting','email_mkt','crm','chatgpt','background_check'] },
{ id:'ecommerce', name:'E-commerce Store', icon:'🛒', tools:['ecomm_platform','email_mkt','social_mgr','inventory','shipping','customer_support','reviews','analytics','chatgpt','ads_google','ads_meta'] },
{ id:'retail', name:'Retail Store', icon:'🏪', tools:['pos','inventory','email_mkt','loyalty','accounting','social_mgr','chatgpt','ads_meta'] },
{ id:'marketing', name:'Marketing Agency', icon:'📣', tools:['project_mgmt','crm','email_mkt','social_mgr','analytics','seo_tool','design_tool','chatgpt','client_reporting','ads_google'] },
{ id:'accounting', name:'Accounting Firm', icon:'📊', tools:['accounting','doc_mgmt','client_portal','esign','email_mkt','billing','chatgpt','tax_software'] },
{ id:'finance', name:'Financial Advisory', icon:'💼', tools:['crm_finance','doc_mgmt','client_portal','esign','email_mkt','accounting','chatgpt','compliance_tool'] },
{ id:'insurance', name:'Insurance Agency', icon:'🛡️', tools:['agency_mgmt','crm','email_mkt','esign','doc_mgmt','accounting','chatgpt','client_portal'] },
{ id:'gym', name:'Gym / Fitness Studio', icon:'💪', tools:['gym_mgmt','booking_sys','email_mkt','social_mgr','loyalty','billing','chatgpt','nutrition_app'] },
{ id:'salon', name:'Salon / Spa / Beauty', icon:'💅', tools:['booking_sys','pos','email_mkt','social_mgr','loyalty','review_mgmt','chatgpt','accounting'] },
{ id:'construction', name:'Construction Company', icon:'🏗️', tools:['project_mgmt','estimating','doc_mgmt','accounting','crm','email_mkt','chatgpt','timesheet'] },
{ id:'architecture', name:'Architecture / Design Firm', icon:'📐', tools:['project_mgmt','cad_cloud','doc_mgmt','client_portal','email_mkt','billing','chatgpt','design_tool'] },
{ id:'education', name:'School / Tutoring Center', icon:'📚', tools:['lms','scheduling_health','email_mkt','billing','student_portal','crm','chatgpt','video_conf'] },
{ id:'hotel', name:'Hotel / B&B', icon:'🏨', tools:['pms_hotel','booking_sys','channel_mgr','email_mkt','review_mgmt','pos','accounting','chatgpt','loyalty'] },
{ id:'events', name:'Event Planning', icon:'🎉', tools:['event_mgmt','crm','email_mkt','social_mgr','esign','accounting','chatgpt','venue_mgmt'] },
{ id:'nonprofit', name:'Non-profit Organization', icon:'❤️', tools:['donor_mgmt','email_mkt','social_mgr','accounting','volunteer_mgmt','chatgpt','grant_mgmt'] },
{ id:'logistics', name:'Logistics / Freight', icon:'🚛', tools:['tms','fleet_mgmt','accounting','crm','email_mkt','chatgpt','tracking_sys'] },
{ id:'manufacturing', name:'Manufacturing', icon:'🏭', tools:['erp','inventory','quality_mgmt','accounting','crm','email_mkt','chatgpt','maintenance_sys'] },
{ id:'tech', name:'IT / Software Company', icon:'💻', tools:['project_mgmt','crm','billing','doc_mgmt','email_mkt','chatgpt','analytics','design_tool','support_ticket'] },
{ id:'consulting', name:'Consulting Firm', icon:'🤝', tools:['crm','project_mgmt','billing','doc_mgmt','email_mkt','esign','chatgpt','client_portal','timesheet'] },
{ id:'automotive', name:'Auto Dealership', icon:'🚗', tools:['dealer_mgmt','crm','email_mkt','social_mgr','accounting','esign','chatgpt','inventory'] },
{ id:'veterinary', name:'Veterinary Practice', icon:'🐾', tools:['vet_practice','scheduling_health','billing_med','email_mkt','review_mgmt','accounting','chatgpt','client_portal'] },
{ id:'creative', name:'Photography / Creative', icon:'📷', tools:['project_mgmt','client_portal','billing','email_mkt','social_mgr','esign','chatgpt','design_tool'] },
{ id:'cleaning', name:'Cleaning / Home Services', icon:'🧹', tools:['scheduling_field','crm','email_mkt','billing','review_mgmt','chatgpt','accounting','timesheet'] },
{ id:'staffing', name:'Staffing Agency', icon:'👥', tools:['ats','crm','email_mkt','doc_mgmt','billing','esign','chatgpt','accounting','timesheet'] },
];
const ALL_TOOLS = {
// Operations
pos:{ name:'POS System (Square/Toast)', cat:'Operations', avg:60, canReplace:false, reason:'Hardware payment processing' },
reservation:{ name:'Reservations (OpenTable/Resy)', cat:'Operations', avg:39, canReplace:true, what:'Custom AI booking system with SMS confirmations and automated reminders' },
booking_sys:{ name:'Booking / Scheduling App', cat:'Operations', avg:45, canReplace:true, what:'Custom booking system with automated confirmations, reminders, and rescheduling' },
gym_mgmt:{ name:'Gym Management (Mindbody)', cat:'Operations', avg:139, canReplace:true, what:'Custom member management with automated billing, class booking, and check-in' },
dealer_mgmt:{ name:'Dealer Management System', cat:'Operations', avg:299, canReplace:false, reason:'Deeply integrated with manufacturer and financing systems' },
pms_hotel:{ name:'Hotel PMS (Opera/Mews)', cat:'Operations', avg:250, canReplace:false, reason:'Connected to OTAs and payment infrastructure' },
channel_mgr:{ name:'Channel Manager (SiteMinder)', cat:'Operations', avg:99, canReplace:false, reason:'Requires direct OTA API integrations' },
event_mgmt:{ name:'Event Management Platform', cat:'Operations', avg:89, canReplace:true, what:'Custom event pipeline with automated registrations, reminders, and post-event follow-up' },
tracking_sys:{ name:'Shipment Tracking System', cat:'Operations', avg:150, canReplace:true, what:'Custom tracking dashboard with automated status notifications to customers' },
tms:{ name:'Transport Management System', cat:'Logistics', avg:399, canReplace:false, reason:'Deep carrier integrations required' },
fleet_mgmt:{ name:'Fleet Management (Samsara)', cat:'Operations', avg:180, canReplace:false, reason:'GPS hardware dependent' },
erp:{ name:'ERP System (SAP/Odoo)', cat:'Operations', avg:500, canReplace:false, reason:'Core business infrastructure — requires careful evaluation' },
maintenance_sys:{ name:'Maintenance Management', cat:'Operations', avg:99, canReplace:true, what:'Custom maintenance scheduling with automated work orders and technician dispatch' },
quality_mgmt:{ name:'Quality Management System', cat:'Operations', avg:149, canReplace:true, what:'Automated quality checks with AI anomaly detection and compliance reporting' },
scheduling_field:{ name:'Field Service Scheduling (Jobber)', cat:'Operations', avg:99, canReplace:true, what:'Custom job scheduling with automated dispatch, routing, and customer notifications' },
venue_mgmt:{ name:'Venue Management Software', cat:'Operations', avg:149, canReplace:true, what:'Custom venue booking pipeline with automated contracts and vendor coordination' },
// CRM & Sales
crm:{ name:'CRM (HubSpot/Pipedrive)', cat:'Sales & CRM', avg:90, canReplace:true, what:'Custom CRM with AI-powered lead scoring, automated follow-up sequences, and deal tracking' },
crm_re:{ name:'Real Estate CRM (Follow Up Boss)', cat:'Sales & CRM', avg:99, canReplace:true, what:'Custom real estate pipeline with automated lead nurturing and transaction tracking' },
crm_finance:{ name:'Financial CRM (Redtail/Wealthbox)', cat:'Sales & CRM', avg:99, canReplace:true, what:'Custom client relationship system with automated compliance documentation' },
lead_gen:{ name:'Lead Generation (Zillow/Realtor.com)', cat:'Sales & CRM', avg:200, canReplace:false, reason:'Platform-specific leads marketplace' },
client_intake:{ name:'Client Intake Forms (Clio Grow)', cat:'Sales & CRM', avg:49, canReplace:true, what:'AI-powered intake with intelligent qualification questions and automatic file creation' },
ats:{ name:'Applicant Tracking (Greenhouse/Lever)', cat:'HR & Staffing', avg:299, canReplace:true, what:'Custom applicant pipeline with AI resume screening and automated interview scheduling' },
// Marketing
email_mkt:{ name:'Email Marketing (Mailchimp/Klaviyo)', cat:'Marketing', avg:60, canReplace:true, what:'AI-driven email sequences with smart segmentation, automated campaigns, and A/B optimization' },
social_mgr:{ name:'Social Media Scheduler (Buffer/Later)', cat:'Marketing', avg:30, canReplace:true, what:'AI content generation + automated multi-platform scheduling and analytics' },
review_mgmt:{ name:'Review Management (Podium/Birdeye)', cat:'Marketing', avg:99, canReplace:true, what:'Automated review collection, monitoring, and AI-generated responses across all platforms' },
seo_tool:{ name:'SEO Tool (Ahrefs/Semrush)', cat:'Marketing', avg:119, canReplace:false, reason:'Proprietary data crawlers and backlink databases' },
analytics:{ name:'Analytics (GA4/Mixpanel)', cat:'Marketing', avg:49, canReplace:true, what:'Custom analytics dashboard pulling exactly the metrics you need — no noise, no learning curve' },
video_tour:{ name:'Virtual Tour / Video Platform', cat:'Marketing', avg:79, canReplace:true, what:'Automated video production pipeline with AI voiceover and property highlight generation' },
design_tool:{ name:'Design Tool (Canva/Adobe)', cat:'Marketing', avg:55, canReplace:true, what:'AI-powered branded content generation — social posts, ads, proposals in seconds' },
client_reporting:{ name:'Client Reporting (AgencyAnalytics)', cat:'Marketing', avg:149, canReplace:true, what:'Automated white-label reports delivered to clients on schedule — no manual data pulling' },
nutrition_app:{ name:'Nutrition / Fitness App', cat:'Product', avg:49, canReplace:true, what:'Custom member-facing app with AI meal and workout recommendations' },
// Documents & Legal
doc_mgmt:{ name:'Document Management (DocuWare)', cat:'Documents', avg:89, canReplace:true, what:'Custom document pipeline with AI extraction, auto-filing, and smart search' },
esign:{ name:'E-signature (DocuSign)', cat:'Documents', avg:45, canReplace:true, what:'Custom e-signature workflow with automated contract generation and status tracking' },
legal_research:{ name:'Legal Research (Westlaw/Lexis)', cat:'Research', avg:399, canReplace:false, reason:'Licensed legal databases required for compliance' },
case_mgmt:{ name:'Case Management (Clio/MyCase)', cat:'Legal Ops', avg:99, canReplace:true, what:'Custom matter management with automated deadline tracking, billing, and client updates' },
compliance_tool:{ name:'Compliance Management Tool', cat:'Legal Ops', avg:199, canReplace:false, reason:'Regulated compliance requires certified software' },
grant_mgmt:{ name:'Grant Management System', cat:'Operations', avg:99, canReplace:true, what:'Custom grant tracking with automated deadline alerts and report generation' },
donor_mgmt:{ name:'Donor Management (Bloomerang)', cat:'CRM', avg:99, canReplace:true, what:'Custom donor pipeline with automated thank-you sequences, impact reports, and campaign tracking' },
volunteer_mgmt:{ name:'Volunteer Management', cat:'Operations', avg:79, canReplace:true, what:'Custom volunteer coordination with automated scheduling, comms, and hour tracking' },
// Finance & Accounting
accounting:{ name:'Accounting (QuickBooks/Xero)', cat:'Finance', avg:55, canReplace:false, reason:'Tax compliance requires licensed accounting software' },
billing:{ name:'Billing / Invoicing (FreshBooks)', cat:'Finance', avg:45, canReplace:true, what:'Automated invoice generation, payment reminders, and reconciliation — zero manual steps' },
billing_med:{ name:'Medical Billing Software', cat:'Finance', avg:149, canReplace:false, reason:'Insurance claims and HIPAA compliance requirements' },
tax_software:{ name:'Tax Software (TurboTax Pro)', cat:'Finance', avg:99, canReplace:false, reason:'Tax filing requires certified software' },
timesheet:{ name:'Time Tracking (TSheets/Clockify)', cat:'Finance', avg:35, canReplace:true, what:'Automated time tracking with AI job code classification and payroll-ready reports' },
// HR
// Patient / Student Portals
patient_portal:{ name:'Patient Portal', cat:'Patient Comms', avg:89, canReplace:true, what:'Custom patient communication hub with automated appointment prep and follow-up care instructions' },
telehealth:{ name:'Telehealth Platform (Teladoc)', cat:'Healthcare', avg:199, canReplace:false, reason:'HIPAA-certified video infrastructure required' },
ehr:{ name:'Electronic Health Records (EHR)', cat:'Healthcare', avg:499, canReplace:false, reason:'HIPAA compliance and clinical workflow requirements' },
dental_practice:{ name:'Dental Practice Software (Dentrix)', cat:'Healthcare', avg:299, canReplace:false, reason:'Integrated with X-ray systems and insurance billing' },
vet_practice:{ name:'Veterinary Practice (Cornerstone)', cat:'Healthcare', avg:249, canReplace:false, reason:'Integrated with medical equipment and drug dispensing' },
scheduling_health:{ name:'Appointment Scheduling (Calendly/Acuity)', cat:'Scheduling', avg:15, canReplace:true, what:'Custom scheduling with intelligent availability, automated reminders, and intake forms' },
// LMS & Education
lms:{ name:'LMS (Teachable/Canvas)', cat:'Education', avg:99, canReplace:true, what:'Custom learning platform with AI-adapted content, automated progress tracking, and parent reports' },
student_portal:{ name:'Student/Parent Portal', cat:'Education', avg:79, canReplace:true, what:'Custom communication hub with automated progress updates and assignment notifications' },
// Project Management
project_mgmt:{ name:'Project Management (Asana/Monday)', cat:'Productivity', avg:55, canReplace:true, what:'Custom project hub with AI task assignment, deadline alerts, and automated status reports' },
support_ticket:{ name:'Support Ticketing (Zendesk/Freshdesk)', cat:'Support', avg:89, canReplace:true, what:'AI-first support system that resolves 60-80% of tickets automatically before they reach a human' },
// Industry-specific
agency_mgmt:{ name:'Insurance Agency Management (Applied)', cat:'Insurance', avg:299, canReplace:false, reason:'Integrated with carrier systems and compliance requirements' },
estimating:{ name:'Construction Estimating (Buildertrend)', cat:'Operations', avg:299, canReplace:true, what:'Custom estimating pipeline with AI material takeoffs, supplier lookups, and proposal generation' },
cad_cloud:{ name:'Cloud CAD / BIM (Autodesk BIM360)', cat:'Design', avg:149, canReplace:false, reason:'Proprietary file formats and engineering workflows' },
mls:{ name:'MLS Access / IDX', cat:'Real Estate', avg:50, canReplace:false, reason:'Licensed MLS database access required' },
background_check:{ name:'Background Check Service', cat:'Operations', avg:30, canReplace:false, reason:'Regulated data provider required' },
delivery_mgmt:{ name:'Delivery Management (DoorDash/UberEats)', cat:'Operations', avg:150, canReplace:false, reason:'Marketplace platform — customer acquisition built in' },
ecomm_platform:{ name:'E-commerce Platform (Shopify)', cat:'Operations', avg:99, canReplace:false, reason:'Payment, checkout, and storefront infrastructure' },
inventory:{ name:'Inventory Management', cat:'Operations', avg:79, canReplace:true, what:'Custom inventory system with AI reorder predictions, low-stock alerts, and supplier automation' },
shipping:{ name:'Shipping Software (ShipStation)', cat:'Operations', avg:69, canReplace:true, what:'Custom shipping automation with rate comparison, label generation, and tracking notifications' },
customer_support:{ name:'Customer Support (Intercom/Zendesk)', cat:'Support', avg:89, canReplace:true, what:'AI-first support that handles FAQs, order status, and escalations automatically' },
reviews:{ name:'Review Platform (Yotpo/Trustpilot)', cat:'Marketing', avg:59, canReplace:true, what:'Automated post-purchase review collection with AI response management' },
// Portals
client_portal:{ name:'Client Portal', cat:'Client Comms', avg:49, canReplace:true, what:'Custom branded portal with real-time project status, document sharing, and messaging' },
loyalty:{ name:'Loyalty / Rewards Program', cat:'Customer', avg:49, canReplace:true, what:'Custom loyalty system with AI-driven reward optimization and automated member communications' },
lease_mgmt:{ name:'Lease Management', cat:'Operations', avg:89, canReplace:true, what:'Automated lease lifecycle management with renewal alerts, document generation, and payment tracking' },
tenant_portal:{ name:'Tenant Portal (AppFolio/Buildium)', cat:'Property', avg:149, canReplace:true, what:'Custom tenant communication hub with maintenance requests, payments, and automated notices' },
maintenance_mgmt:{ name:'Maintenance Management', cat:'Property', avg:79, canReplace:true, what:'Automated maintenance request routing with vendor dispatch and completion tracking' },
};
const AI_TOOLS = [
{ id:'chatgpt', name:'ChatGPT (Plus/Team)', avg:25 },
{ id:'gemini', name:'Google Gemini Pro', avg:20 },
{ id:'claude_ai', name:'Claude AI', avg:20 },
{ id:'jasper', name:'Jasper / Copy.ai', avg:59 },
{ id:'midjourney', name:'Midjourney / DALL·E', avg:30 },
{ id:'grammarly', name:'Grammarly Business', avg:15 },
{ id:'notion_ai', name:'Notion AI', avg:10 },
{ id:'other_ai', name:'Other AI Tools', avg:0 },
];
const AD_PLATFORMS = [
{ id:'google_ads', name:'Google Ads', placeholder:'Monthly spend' },
{ id:'meta_ads', name:'Meta / Instagram Ads', placeholder:'Monthly spend' },
{ id:'tiktok_ads', name:'TikTok Ads', placeholder:'Monthly spend' },
{ id:'linkedin_ads', name:'LinkedIn Ads', placeholder:'Monthly spend' },
{ id:'other_ads', name:'Other Advertising', placeholder:'Monthly spend' },
];
// ── STATE ──────────────────────────────────────────────────
let state = {
selectedBiz: null,
selectedTools: {}, // toolId → monthly cost
selectedAiTools: {}, // aiToolId → monthly cost
adSpend: {}, // platformId → monthly spend
teamSize: 0,
manualHours: 0,
hourlyRate: 0,
bizName: '',
selectedSlot: '',
};
// ── INIT ──────────────────────────────────────────────────
document.addEventListener('DOMContentLoaded', () => {
initCookieConsent();
renderBizGrid(BIZ_TYPES);
renderAiTools();
renderAdPlatforms();
renderAvailability();
initScrollReveal();
});
// ── BUSINESS TYPE GRID ────────────────────────────────────
function renderBizGrid(types) {
const grid = document.getElementById('biz-grid');
grid.innerHTML = types.map(b => `
<div class="biz-card${state.selectedBiz===b.id?' selected':''}" onclick="selectBiz('${b.id}')">
<div class="biz-icon">${b.icon}</div>
<div class="biz-name">${b.name}</div>
</div>`).join('');
}
function filterBizTypes(q) {
const filtered = q ? BIZ_TYPES.filter(b => b.name.toLowerCase().includes(q.toLowerCase())) : BIZ_TYPES;
renderBizGrid(filtered);
}
function selectBiz(id) {
state.selectedBiz = id;
renderBizGrid(BIZ_TYPES);
}
// ── TOOLS LIST ────────────────────────────────────────────
function renderToolsList() {
const biz = BIZ_TYPES.find(b => b.id === state.selectedBiz);
if (!biz) return;
const list = document.getElementById('tools-list');
list.innerHTML = biz.tools.map(tid => {
const t = ALL_TOOLS[tid];
if (!t) return '';
const checked = state.selectedTools[tid] !== undefined;
const cost = state.selectedTools[tid] || t.avg;
return `
<div class="tool-row${checked?' selected':''}" id="tool-row-${tid}">
<div class="tool-check${checked?' checked':''}" onclick="toggleTool('${tid}')"></div>
<div class="tool-info">
<div class="tool-name">${t.name}</div>
<div class="tool-cat">${t.cat} · avg ~$${t.avg}/mo</div>
</div>
<div class="tool-badge ${t.canReplace?'badge-can':'badge-keep'}">${t.canReplace?'✓ Can Replace':'Stays'}</div>
<div style="display:flex;align-items:center;gap:4px;opacity:${checked?1:.3};transition:opacity .2s" id="cost-wrap-${tid}">
<span class="cost-prefix">$</span>
<input class="cost-input" type="number" value="${cost}" min="0" id="cost-${tid}"
oninput="updateToolCost('${tid}',this.value)"
onclick="e=>e.stopPropagation()">
<span style="font-size:.72rem;color:var(--muted)">/mo</span>
</div>
</div>`;
}).join('');
}
function toggleTool(tid) {
const t = ALL_TOOLS[tid];
if (state.selectedTools[tid] !== undefined) {
delete state.selectedTools[tid];
} else {
state.selectedTools[tid] = t.avg;
}
renderToolsList();
}
function updateToolCost(tid, val) {
if (state.selectedTools[tid] !== undefined) {
state.selectedTools[tid] = parseFloat(val) || 0;
}
}
// ── AI TOOLS ─────────────────────────────────────────────
function renderAiTools() {
document.getElementById('ai-tools-grid').innerHTML = AI_TOOLS.map(a => `
<div class="ai-tool-card" id="ai-${a.id}" onclick="toggleAiTool('${a.id}')">
<div class="tool-name">${a.name}</div>
<div class="tool-cat" style="margin-top:3px">${a.avg>0?'avg ~$'+a.avg+'/mo':'Enter cost'}</div>
<div class="ai-tool-spend">
<span class="cost-prefix">$</span>
<input class="cost-input" type="number" value="${a.avg||''}" min="0" id="ai-cost-${a.id}"
style="width:70px" placeholder="0"
onclick="event.stopPropagation()"
oninput="state.selectedAiTools['${a.id}']=parseFloat(this.value)||0">
<span style="font-size:.72rem;color:var(--muted)">/mo</span>
</div>
</div>`).join('');
}
function toggleAiTool(id) {
const card = document.getElementById('ai-'+id);
const t = AI_TOOLS.find(a => a.id===id);
if (state.selectedAiTools[id] !== undefined) {
delete state.selectedAiTools[id];
card.classList.remove('selected');
} else {
state.selectedAiTools[id] = parseFloat(document.getElementById('ai-cost-'+id)?.value) || t.avg;
card.classList.add('selected');
}
card.querySelector('.ai-tool-spend').style.display = state.selectedAiTools[id]!==undefined ? 'flex' : 'none';
}
// ── ADS ───────────────────────────────────────────────────
function renderAdPlatforms() {
document.getElementById('ads-grid').innerHTML = AD_PLATFORMS.map(p => `
<div class="ai-tool-card">
<div class="tool-name">${p.name}</div>
<div class="ai-tool-spend" style="display:flex;margin-top:8px">
<span class="cost-prefix">$</span>
<input class="cost-input" type="number" min="0" style="width:80px" placeholder="0"
id="ad-${p.id}" oninput="state.adSpend['${p.id}']=parseFloat(this.value)||0">
<span style="font-size:.72rem;color:var(--muted)">/mo</span>
</div>
</div>`).join('');
}
// ── NAVIGATION ────────────────────────────────────────────
function nextStep(n) {
if (n === 2 && !state.selectedBiz) {
alert('Please select your business type first.');
return;
}
if (n === 2) renderToolsList();
goStep(n);
}
function goStep(n) {
document.querySelectorAll('.calc-step').forEach(s => s.classList.remove('active'));
document.getElementById('step-'+n).classList.add('active');
for (let i=1; i<=5; i++) {
const dot = document.getElementById('dot-'+i);
if (i < n) { dot.classList.add('done'); dot.classList.remove('active'); dot.textContent='✓'; }
else if (i === n) { dot.classList.add('active'); dot.classList.remove('done'); dot.textContent=i; }
else { dot.classList.remove('active','done'); dot.textContent=i; }
if (i < 5) {
const line = document.getElementById('line-'+i);
line.classList.toggle('done', i < n);
}
}
document.getElementById('calculator').scrollIntoView({behavior:'smooth',block:'start'});
}
// ── CALCULATE ─────────────────────────────────────────────
function calculateResults() {
state.teamSize = parseInt(document.getElementById('team-size').value) || 1;
state.manualHours = parseFloat(document.getElementById('manual-hours').value) || 0;
state.hourlyRate = parseFloat(document.getElementById('hourly-rate').value) || 0;
state.bizName = document.getElementById('biz-name').value || 'Your Business';
// SaaS savings (tools user selected that Kinetra can replace)
let saasSavings = 0;
const replaceTools = [], keepTools = [], customTools = [];
Object.entries(state.selectedTools).forEach(([tid, cost]) => {
const t = ALL_TOOLS[tid];
if (!t) return;
if (t.canReplace) { saasSavings += cost; replaceTools.push({...t, id:tid, cost}); }
else keepTools.push({...t, id:tid, cost});
});
// AI tools savings (all selected AI tools → custom AI replaces them)
const aiSavings = Object.values(state.selectedAiTools).reduce((s,c)=>s+c, 0);
// Ads efficiency: we can optimize but not eliminate — show 20% efficiency gain
const totalAdSpend = Object.values(state.adSpend).reduce((s,c)=>s+c, 0);
const adOptimization = Math.round(totalAdSpend * 0.2);
// Time value savings
const timeValueMonthly = Math.round((state.manualHours * 4.33 * state.hourlyRate) * 0.65);
const hoursFreed = Math.round(state.manualHours * 0.65);
const totalMonthly = saasSavings + aiSavings + adOptimization + timeValueMonthly;
const totalAnnual = totalMonthly * 12;
// Update results
document.getElementById('res-annual').textContent = '$'+totalAnnual.toLocaleString();
document.getElementById('res-monthly').textContent = '$'+totalMonthly.toLocaleString()+' / month';
document.getElementById('res-saas').textContent = '$'+saasSavings.toLocaleString()+'/mo';
document.getElementById('res-ai').textContent = '$'+aiSavings.toLocaleString()+'/mo';
document.getElementById('res-time').textContent = hoursFreed+' hrs/wk';
document.getElementById('res-timeval').textContent = '$'+timeValueMonthly.toLocaleString()+'/mo';
document.getElementById('res-count').textContent = replaceTools.length;
// Custom assessment items
if (customTools.length > 0 || keepTools.length > 0) {
const keepNames = keepTools.map(t=>`<strong>${t.name}</strong>: ${t.reason||'Stays as-is'}`);
document.getElementById('custom-needed').style.display = 'block';
document.getElementById('custom-needed-list').innerHTML = keepNames.join('<br>');
}
// Render topology map
renderTopology(state.bizName, replaceTools, keepTools);
goStep(5);
setTimeout(()=>{
document.getElementById('step-5').querySelectorAll('.r').forEach(el=>el.classList.add('in'));
}, 100);
}
// ── TOPOLOGY MAP ──────────────────────────────────────────
function renderTopology(bizName, replaceTools, keepTools) {
const canvas = document.getElementById('topology-canvas');
const dpr = window.devicePixelRatio || 1;
const W = canvas.offsetWidth || 800;
const H = 380;
canvas.width = W * dpr;
canvas.height = H * dpr;
canvas.style.width = W+'px';
canvas.style.height = H+'px';
const ctx = canvas.getContext('2d');
ctx.scale(dpr, dpr);
ctx.clearRect(0, 0, W, H);
// Background
ctx.fillStyle = '#10141F';
ctx.fillRect(0, 0, W, H);
const cx = W / 2, cy = H / 2;
const allNodes = [
...replaceTools.map(t=>({label:shorten(t.name), replace:true, cost:t.cost})),
...keepTools.map(t=>({label:shorten(t.name), replace:false, cost:t.cost})),
];
const n = allNodes.length;
const radius = Math.min(cx, cy) - 60;
allNodes.forEach((node, i) => {
const angle = (2*Math.PI*i/n) - Math.PI/2;
const nx = cx + radius * Math.cos(angle);
const ny = cy + radius * Math.sin(angle);
node.x = nx; node.y = ny;
// Line
ctx.beginPath();
ctx.moveTo(cx, cy);
ctx.lineTo(nx, ny);
ctx.strokeStyle = node.replace ? 'rgba(0,200,150,0.25)' : 'rgba(78,90,114,0.2)';
ctx.lineWidth = 1.5;
ctx.stroke();
});
// Center glow
const grd = ctx.createRadialGradient(cx,cy,0,cx,cy,55);
grd.addColorStop(0,'rgba(0,200,150,0.15)');
grd.addColorStop(1,'rgba(0,200,150,0)');
ctx.fillStyle = grd;
ctx.beginPath(); ctx.arc(cx,cy,55,0,2*Math.PI); ctx.fill();
// Center circle
ctx.beginPath(); ctx.arc(cx,cy,38,0,2*Math.PI);
ctx.fillStyle = '#1A2235';
ctx.fill();
ctx.strokeStyle = '#00C896';
ctx.lineWidth = 2;
ctx.stroke();
ctx.fillStyle = '#E8EEFF';
ctx.font = 'bold 9px Inter,sans-serif';
ctx.textAlign = 'center';
ctx.textBaseline = 'middle';
const nameWords = bizName.split(' ');
if (nameWords.length <= 2) {
ctx.fillText(nameWords[0], cx, cy - (nameWords.length>1?7:0));
if (nameWords[1]) ctx.fillText(nameWords[1], cx, cy+8);
} else {
ctx.fillText(nameWords.slice(0,2).join(' '), cx, cy-7);
ctx.fillText(nameWords.slice(2).join(' '), cx, cy+7);
}
// Nodes
allNodes.forEach(node => {
const r = 26;
// Node glow
if (node.replace) {
const ng = ctx.createRadialGradient(node.x,node.y,0,node.x,node.y,r+8);
ng.addColorStop(0,'rgba(0,200,150,0.15)');
ng.addColorStop(1,'rgba(0,200,150,0)');