-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2512 lines (2300 loc) · 126 KB
/
Copy pathindex.html
File metadata and controls
2512 lines (2300 loc) · 126 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">
<link rel="icon" type="image/svg+xml" href="assets/vitalops-green-logo.svg">
<link rel="shortcut icon" href="assets/vitalops-green-logo.svg">
<title>VitalOps - Applied AI Infrastructure</title>
<meta name="description" content="VitalOps makes LLMs run faster, builds coding agents that hold up on public benchmarks, and automates enterprise workflows end to end. Inference optimisation, agent engineering, and production automation.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<style>
*{margin:0;padding:0;box-sizing:border-box}
:root{
--bg:#f0ead8;
--bg2:#e8e0ca;
--bg3:#d8cebc;
--ink:#1c1a16;
--ink-2:rgba(28,26,22,0.82);
--ink-3:rgba(28,26,22,0.58);
--accent:#4a7c59;
--accent-2:#3d6849;
--accent-light:#7aaa8a;
--accent-dim:rgba(74,124,89,0.10);
--accent-dim2:rgba(74,124,89,0.06);
--glass-bg:rgba(240,234,216,0.55);
--glass-bg2:rgba(232,224,202,0.50);
--border:rgba(28,26,22,0.10);
--border-md:rgba(28,26,22,0.16);
--border-hi:rgba(28,26,22,0.30);
--shadow-sm:0 1px 3px rgba(28,26,22,0.08),0 1px 0 rgba(255,255,255,0.70);
--shadow-md:0 4px 16px rgba(28,26,22,0.10),0 1px 0 rgba(255,255,255,0.60);
--shadow-lg:0 12px 40px rgba(28,26,22,0.14),0 1px 0 rgba(255,255,255,0.55);
--blur:blur(20px) saturate(160%);
--blur-heavy:blur(32px) saturate(180%);
--seam:linear-gradient(90deg,transparent,rgba(255,255,255,0.55) 30%,rgba(255,255,255,0.70) 50%,rgba(255,255,255,0.55) 70%,transparent);
/* ── TESTIMONIALS ── */
.testimonials{padding:100px 0 110px;position:relative;}
.testimonials-header{text-align:center;margin-bottom:52px}
.testimonials-header h2{font-family:'Libre Baskerville',serif;font-size:clamp(1.9rem,3.2vw,2.7rem);font-weight:700;letter-spacing:-.02em;}
.testimonials-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.testi-card{
border-radius:8px;padding:32px 28px 24px;position:relative;overflow:hidden;
background:rgba(240,234,216,0.55);
border:1px solid var(--border);
border-top-color:rgba(255,255,255,0.80);
backdrop-filter:var(--blur);-webkit-backdrop-filter:var(--blur);
box-shadow:0 1px 0 rgba(255,255,255,0.60) inset,var(--shadow-sm);
transition:all .28s;
display: flex;
flex-direction: column;
}
.testi-card:hover{
transform:translateY(-4px);
border-color:rgba(74,124,89,0.25);
box-shadow:0 1px 0 rgba(255,255,255,0.70) inset,var(--shadow-lg);
}
.testi-quote{
font-family:'Libre Baskerville',serif;
font-size:3.5rem;line-height:.8;
color:var(--accent);opacity:0.35;
margin-bottom:12px;
}
.testi-card p{
font-size:.90rem;color:var(--ink-2);line-height:1.80;font-weight:400;
font-style:italic;
}
.testi-footer{
margin-top:auto;
border-top:1px solid var(--border);
display:flex;align-items:center;gap:12px;
padding-top: 28px;
}
.testi-logo-wrap{
display:flex;
align-items:center;
height:36px; /* fixed height so both slots are identical */
flex-shrink:0;
}
.testi-logo-wrap img{
max-height:28px;
width:auto;
object-fit:contain;
display:block;
}
@media(max-width:768px){
.testimonials-grid{grid-template-columns:1fr}
}
}
html{scroll-behavior:smooth}
body{
-webkit-tap-highlight-color:transparent;
font-family:'DM Sans',sans-serif;
background:var(--bg);
color:var(--ink);
line-height:1.6;
overflow-x:hidden;
-webkit-font-smoothing:antialiased;
}
/* Paper texture overlay */
body::before{
content:'';
position:fixed;inset:0;pointer-events:none;z-index:0;
background-image:
url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
opacity:1;
}
/* Subtle grid lines like graph paper */
body::after{
content:'';
position:fixed;inset:0;pointer-events:none;z-index:0;
background-image:
linear-gradient(rgba(28,26,22,0.04) 1px, transparent 1px),
linear-gradient(90deg, rgba(28,26,22,0.04) 1px, transparent 1px);
background-size:40px 40px;
}
.grain{
position:fixed;inset:0;z-index:9999;pointer-events:none;
opacity:1;
background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}
.mouse-glow{
position:fixed;inset:0;z-index:2;pointer-events:none;opacity:0;transition:opacity .5s;
background:radial-gradient(500px circle at var(--mx,50%) var(--my,50%),rgba(74,124,89,0.06) 0%,transparent 65%);
}
.mouse-glow.active{opacity:1}
.container{max-width:1200px;margin:0 auto;padding:0 28px;position:relative;z-index:3}
/* TAGS */
.tag{
display:inline-flex;align-items:center;gap:7px;
font-size:.70rem;font-weight:500;letter-spacing:.12em;text-transform:uppercase;
color:var(--accent);
background:rgba(74,124,89,0.08);
padding:5px 14px;border-radius:4px;
border:1px solid rgba(74,124,89,0.18);
border-top-color:rgba(255,255,255,0.60);
box-shadow:0 1px 0 rgba(255,255,255,0.50) inset,var(--shadow-sm);
}
/* BUTTONS */
.btn{
display:inline-flex;align-items:center;gap:9px;
padding:11px 26px;border-radius:6px;
font-family:'DM Sans',sans-serif;font-size:.88rem;font-weight:500;
text-decoration:none;cursor:pointer;border:none;
transition:all .18s ease;position:relative;overflow:hidden;
}
.btn::before{
content:'';position:absolute;top:0;left:0;right:0;height:50%;
background:linear-gradient(180deg,rgba(255,255,255,0.35),rgba(255,255,255,0.04));
border-radius:6px 6px 0 0;pointer-events:none;
}
.btn-fill{
background:var(--accent);color:#fff;font-weight:500;
border:1px solid rgba(61,104,73,0.80);
border-top-color:rgba(122,170,138,0.60);
border-bottom-color:rgba(30,60,40,0.30);
box-shadow:0 1px 0 rgba(255,255,255,0.25) inset,0 -1px 0 rgba(0,0,0,0.12) inset,var(--shadow-md);
}
.btn-fill:hover{
background:var(--accent-2);
box-shadow:0 1px 0 rgba(255,255,255,0.30) inset,0 -1px 0 rgba(0,0,0,0.12) inset,0 6px 20px rgba(74,124,89,0.25);
transform:translateY(-1px);
}
.btn-ghost{
background:rgba(240,234,216,0.65);color:var(--ink);
border:1px solid var(--border-md);
border-top-color:rgba(255,255,255,0.80);
border-bottom-color:rgba(28,26,22,0.12);
box-shadow:0 1px 0 rgba(255,255,255,0.55) inset,var(--shadow-sm);
backdrop-filter:var(--blur);-webkit-backdrop-filter:var(--blur);
}
.btn-ghost:hover{
background:rgba(255,252,244,0.80);
border-color:var(--border-hi);
color:var(--accent);
transform:translateY(-1px);
box-shadow:0 1px 0 rgba(255,255,255,0.65) inset,var(--shadow-md);
}
@keyframes fadeUp{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:none}}
.reveal{animation:fadeUp .72s cubic-bezier(.16,1,.3,1) both}
/* ── NAV ── */
.about.section-band {
padding-top: 120px;
}
.about-header {
text-align: center;
margin-bottom: 52px;
margin-top: 0;
}
.about-header h2 {
font-family: 'Libre Baskerville', serif;
font-size: clamp(2.1rem, 3.8vw, 3.2rem);
font-weight: 700;
letter-spacing: -.02em;
}
.team-member {
transition: all .28s;
}
.team-member:hover {
transform: translateY(-6px);
box-shadow: var(--shadow-lg);
background: rgba(240,234,216,0.65);
}
.team-member h3 {
color: var(--ink);
}
.team-member a:hover {
color: var(--accent);
}
nav{position:fixed;top:0;width:100%;z-index:100;transition:all .30s}
.nav-glass{
margin:12px 16px 0;border-radius:8px;position:relative;overflow:visible;
background:rgba(240,234,216,0.72);
border:1px solid var(--border-md);
border-top-color:rgba(255,255,255,0.85);
backdrop-filter:var(--blur-heavy);-webkit-backdrop-filter:var(--blur-heavy);
box-shadow:0 1px 0 rgba(255,255,255,0.70) inset,var(--shadow-md);
transition:all .30s;
}
.nav-glass::after{
content:'';position:absolute;top:0;left:10%;right:10%;height:1px;
background:var(--seam);pointer-events:none;
}
nav.scrolled .nav-glass{margin:6px 16px 0}
.nav-inner{display:flex;justify-content:space-between;align-items:center;padding:11px 20px;position:relative;z-index:1;overflow:visible}
.logo{display:flex;align-items:center;gap:4px;text-decoration:none;color:var(--ink)}
.logo-mark{
width:30px;height:30px;
display:flex;align-items:center;justify-content:center;
flex-shrink:0;
margin-top:-4px;
will-change:transform;
}
.logo-name{font-size:1.00rem;font-weight:500;letter-spacing:-.02em;color:var(--ink)}
.nav-links{display:flex;gap:2px;list-style:none;overflow:visible}
.nav-links a{
color:var(--ink-2);text-decoration:none;font-size:.83rem;
transition:all .14s cubic-bezier(.25,0,.4,1);
padding:6px 13px;border-radius:3px;
border:1px solid transparent;display:inline-block;
position:relative;
}
/* Cardboard piece on hover — warm brown slab with glass sheen */
.nav-links a:hover{
color:#2a1604;
font-weight:500;
/* cardboard base — warm tan, fully opaque so it reads as solid material */
background:
/* fine grain texture */
repeating-linear-gradient(
92deg,
transparent,
transparent 3px,
rgba(0,0,0,0.018) 3px,
rgba(0,0,0,0.018) 4px
),
repeating-linear-gradient(
2deg,
transparent,
transparent 5px,
rgba(0,0,0,0.012) 5px,
rgba(0,0,0,0.012) 6px
),
/* cardboard colour */
#c8a06a;
/* glass aeroglass sheen on top */
backdrop-filter:blur(12px) saturate(160%);
-webkit-backdrop-filter:blur(12px) saturate(160%);
/* layered borders: top highlight (light edge of cardboard), sides and bottom darker */
border-color:rgba(140,96,42,0.55);
border-top-color:rgba(225,198,148,0.90);
border-bottom-color:rgba(90,58,20,0.45);
/* inset top gloss (aeroglass specular) + corrugation shadow underneath */
box-shadow:
0 1px 0 rgba(240,215,165,0.65) inset, /* top highlight */
0 -1px 0 rgba(80,48,12,0.20) inset, /* bottom inner shadow */
2px 0 0 rgba(100,66,22,0.12) inset, /* left edge shadow */
-2px 0 0 rgba(100,66,22,0.12) inset, /* right edge shadow */
0 4px 12px rgba(80,48,12,0.22), /* drop shadow */
0 1px 3px rgba(80,48,12,0.18);
/* very slight lift + tilt for "picking up a card" feel */
transform:translateY(-2px);
/* torn/rough corner rounding — slightly asymmetric */
border-radius:3px 4px 2px 4px;
}
/* Glass specular gloss over the cardboard */
.nav-links a::before{
content:'';
position:absolute;inset:0;
border-radius:inherit;
background:linear-gradient(
160deg,
rgba(255,248,235,0.38) 0%,
rgba(255,248,235,0.10) 40%,
transparent 60%
);
opacity:0;
transition:opacity .14s cubic-bezier(.25,0,.4,1);
pointer-events:none;
}
.nav-links a:hover::before{
opacity:1;
}
/* ── NAV DROPDOWNS ── */
.nav-dropdown{position:relative}
.nav-dropdown-trigger{cursor:pointer}
.nav-dropdown-menu{
display:none;
position:fixed;
min-width:230px;
background:rgba(244,238,226,0.98);
border:1px solid var(--border-md);
border-top-color:rgba(255,255,255,0.85);
border-radius:8px;
padding:6px;
box-shadow:0 1px 0 rgba(255,255,255,0.70) inset,var(--shadow-lg);
z-index:9999;
}
.nav-dropdown-menu::before{
content:'';position:absolute;top:-6px;left:50%;transform:translateX(-50%);
width:12px;height:6px;
background:rgba(244,238,226,0.98);
clip-path:polygon(50% 0%,0% 100%,100% 100%);
}
.nav-dropdown-menu a{
display:block;padding:9px 14px;border-radius:5px;
font-size:.80rem;color:var(--ink-2)!important;text-decoration:none;
font-weight:400;white-space:nowrap;
transition:all .12s ease;
border:none!important;background:none!important;box-shadow:none!important;
transform:none!important;
}
.nav-dropdown-menu a:hover{
background:rgba(74,124,89,0.08)!important;
color:var(--accent)!important;
transform:none!important;
border:none!important;box-shadow:none!important;
}
.nav-dropdown-menu a::before{display:none!important}
/* Prevent cardboard hover on dropdown triggers */
.nav-dropdown-trigger:hover{
background:none!important;border-color:transparent!important;
box-shadow:none!important;transform:none!important;
border-radius:3px!important;color:var(--accent)!important;
}
.nav-dropdown-trigger:hover::before{display:none!important}
.nav-dropdown.dd-open .nav-dropdown-menu{display:block}
.nav-cta{
padding:7px 16px;font-size:.81rem;border-radius:5px;
background:var(--accent);color:#fff;
text-decoration:none;font-weight:500;
border:1px solid rgba(61,104,73,0.70);
border-top-color:rgba(122,170,138,0.60);
border-bottom-color:rgba(20,50,30,0.30);
box-shadow:0 1px 0 rgba(255,255,255,0.22) inset, 0 2px 8px rgba(74,124,89,0.25);
transition:all .18s ease;
}
.nav-cta:hover{
background:var(--accent-2);
color:#fff;
box-shadow:
0 1px 0 rgba(255,255,255,0.22) inset,
0 0 0 3px rgba(74,124,89,0.18),
0 0 16px rgba(74,124,89,0.40),
0 0 32px rgba(74,124,89,0.20);
transform:translateY(-1px);
}
.hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;outline:none;cursor:pointer;padding:8px;-webkit-tap-highlight-color:rgba(0,0,0,0);touch-action:manipulation;user-select:none;-webkit-user-select:none;-webkit-appearance:none;appearance:none;position:relative;z-index:200}
.hamburger span{display:block;width:20px;height:2px;background:var(--ink);border-radius:2px}
/* ── HERO ── */
.hero{min-height:100vh;display:flex;align-items:center;padding:148px 0 96px;position:relative}
/* Torn paper bottom edge */
.hero-edge{
position:absolute;bottom:-2px;left:0;right:0;height:40px;
background:var(--bg2);
clip-path:polygon(0 40px,2% 10px,5% 32px,8% 8px,11% 28px,14% 5px,17% 25px,20% 10px,23% 35px,27% 8px,31% 30px,35% 5px,39% 25px,43% 12px,47% 38px,51% 6px,55% 28px,59% 10px,63% 32px,67% 8px,71% 35px,75% 12px,79% 28px,83% 5px,87% 30px,91% 10px,95% 35px,98% 12px,100% 38px,100% 40px);
z-index:2;
}
.hero-inner{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
.hero-tag{margin-bottom:18px}
.hero-text h1{
font-family:'Libre Baskerville',serif;
font-size:clamp(2.6rem,4.8vw,4.2rem);
line-height:1.16;font-weight:700;letter-spacing:-.02em;
margin-bottom:20px;color:var(--ink);
}
.hero-phrase-wrap{display:block;position:relative;height:1.5em}
.hero-phrase{
display:block;position:absolute;left:0;right:0;top:0;line-height:1.5em;
font-style:italic;
color:var(--accent);
opacity:0;pointer-events:none;
}
.hero-phrase.ph-active{opacity:1}
@keyframes ph-slide-in {from{transform:translateY(110%);opacity:0}to{transform:translateY(0);opacity:1}}
@keyframes ph-slide-out{from{transform:translateY(0);opacity:1}to{transform:translateY(-110%);opacity:0}}
@keyframes ph-fade-in {from{opacity:0}to{opacity:1}}
@keyframes ph-fade-out {from{opacity:1}to{opacity:0}}
@keyframes ph-flip-in {from{transform:rotateX(-90deg);opacity:0}to{transform:rotateX(0);opacity:1}}
@keyframes ph-flip-out {from{transform:rotateX(0);opacity:1}to{transform:rotateX(90deg);opacity:0}}
@keyframes ph-scale-in {from{transform:scale(.5);opacity:0}to{transform:scale(1);opacity:1}}
@keyframes ph-scale-out{from{transform:scale(1);opacity:1}to{transform:scale(1.5);opacity:0}}
@keyframes ph-blur-in {from{filter:blur(10px);opacity:0}to{filter:blur(0);opacity:1}}
@keyframes ph-blur-out {from{filter:blur(0);opacity:1}to{filter:blur(10px);opacity:0}}
.hero-text p{
font-size:1.01rem;color:var(--ink-2);max-width:440px;
margin-bottom:36px;line-height:1.78;font-weight:400;
}
.hero-btns{display:flex;gap:11px;flex-wrap:wrap}
.scroll-down{
position:absolute;bottom:56px;left:50%;transform:translateX(-50%);
display:flex;align-items:center;text-decoration:none;
color:var(--ink-3);transition:color .22s,transform .22s;z-index:10;
}
.scroll-down:hover{color:var(--accent);transform:translateX(-50%) translateY(3px)}
.scroll-down svg{width:28px;height:28px;animation:arrowBob 2.4s ease-in-out infinite}
@keyframes arrowBob{0%,100%{transform:translateY(0);opacity:.4}50%{transform:translateY(5px);opacity:.9}}
/* ── WORKFLOW ANIMATION ── */
.hero-visual{position:relative;will-change:transform}
.hero-visual::before{
content:'';position:absolute;
bottom:-18px;left:12px;right:12px;height:30px;
background:rgba(28,26,22,0.10);
filter:blur(14px);border-radius:50%;z-index:-1;
}
.workflow-anim-wrap{
border-radius:10px;overflow:hidden;position:relative;
background:rgba(244,238,222,0.70);
border:1px solid var(--border-md);
border-top-color:rgba(255,255,255,0.90);
backdrop-filter:var(--blur-heavy);-webkit-backdrop-filter:var(--blur-heavy);
box-shadow:0 1px 0 rgba(255,255,255,0.75) inset,var(--shadow-lg);
width:100%;aspect-ratio:4/3;
}
.workflow-anim-wrap::after{
content:'';position:absolute;top:0;left:8%;right:8%;height:1px;
background:var(--seam);z-index:4;pointer-events:none;
}
#workflowCanvas{display:block;width:100%;height:100%;}
/* ── SECTION BAND ── */
.section-band{
background:var(--bg2);
border-top:1px solid var(--border);
border-bottom:1px solid var(--border);
box-shadow:0 1px 0 rgba(255,255,255,0.55) inset,0 -1px 0 rgba(255,255,255,0.40);
}
.section-line{width:40px;height:1px;background:linear-gradient(90deg,var(--accent),transparent);margin:10px 0 12px}
.section-line-center{margin:10px auto 12px}
/* ── DOMAINS ── */
.domains{padding:100px 0 110px;position:relative}
.domains-header{text-align:center;margin-bottom:52px}
.domains-header h2{
font-family:'Libre Baskerville',serif;
font-size:clamp(1.9rem,3.2vw,2.7rem);font-weight:700;letter-spacing:-.02em;
}
.domains-track{
display:flex;gap:12px;padding:6px 28px 12px;
overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;
scrollbar-width:none;justify-content:center;flex-wrap:wrap;
}
.domains-track::-webkit-scrollbar{display:none}
@media(max-width:1100px){.domains-track{flex-wrap:nowrap;justify-content:flex-start}}
.domain-card{
flex:0 0 268px;scroll-snap-align:start;
border-radius:8px;padding:24px 20px;overflow:hidden;position:relative;
background:rgba(240,234,216,0.55);
border:1px solid var(--border);
border-top-color:rgba(255,255,255,0.80);
backdrop-filter:var(--blur);-webkit-backdrop-filter:var(--blur);
box-shadow:0 1px 0 rgba(255,255,255,0.60) inset,var(--shadow-sm);
transition:all .28s;
}
.domain-card::before{
content:'';position:absolute;top:0;left:12%;right:12%;height:1px;
background:var(--seam);pointer-events:none;
}
.domain-card::after{
content:'';position:absolute;inset:0;border-radius:8px;
background:repeating-linear-gradient(-45deg,transparent,transparent 4px,rgba(28,26,22,0.008) 4px,rgba(28,26,22,0.008) 5px);
pointer-events:none;opacity:0;transition:opacity .28s;
}
.domain-card:hover{
border-color:rgba(74,124,89,0.35);
border-top-color:rgba(255,255,255,0.85);
transform:translateY(-5px) scale(1.015);
background:rgba(248,244,232,0.80);
box-shadow:0 1px 0 rgba(255,255,255,0.70) inset,var(--shadow-lg),0 0 0 1px rgba(74,124,89,0.10);
}
.domain-card:hover::after{opacity:1}
.domain-card:hover h3{color:var(--accent)}
.domain-icon{
font-size:1.7rem;margin-bottom:12px;display:block;position:relative;z-index:1;
filter:grayscale(30%);
}
.domain-card h3{font-size:.98rem;font-weight:500;margin-bottom:7px;letter-spacing:-.01em;position:relative;z-index:1;transition:color .28s;font-family:'Libre Baskerville',serif}
.domain-card p{font-size:.82rem;color:var(--ink-2);font-weight:500;line-height:1.65;position:relative;z-index:1}
/* ── DATATUNE ── */
.datatune{padding:110px 0;position:relative;background:var(--bg2);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.datatune-panel{
border-radius:10px;padding:60px 48px;overflow:hidden;position:relative;z-index:1;
background:rgba(244,238,222,0.60);
border:1px solid var(--border-md);
border-top-color:rgba(255,255,255,0.90);
backdrop-filter:var(--blur-heavy);-webkit-backdrop-filter:var(--blur-heavy);
box-shadow:0 1px 0 rgba(255,255,255,0.75) inset,var(--shadow-lg);
}
.datatune-panel::after{
content:'';position:absolute;top:0;left:8%;right:8%;height:1px;
background:var(--seam);z-index:1;pointer-events:none;
}
.datatune-panel-inner{position:relative;z-index:2}
.datatune-hero{text-align:center;margin-bottom:48px}
.datatune-hero h2{
font-family:'Libre Baskerville',serif;
font-size:clamp(2.1rem,4vw,3.4rem);font-weight:700;letter-spacing:-.02em;
margin:10px 0 14px;
}
.datatune-hero h2 em{font-style:italic;color:var(--accent)}
.datatune-hero p{font-size:1.00rem;color:var(--ink-2);max-width:540px;margin:0 auto 30px;line-height:1.80;font-weight:400}
.datatune-btns{display:flex;gap:11px;justify-content:center;flex-wrap:wrap}
.datatune-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.dt-card{
border-radius:7px;padding:18px 16px;overflow:hidden;position:relative;
background:rgba(232,224,202,0.55);
border:1px solid var(--border);
border-top-color:rgba(255,255,255,0.75);
box-shadow:0 1px 0 rgba(255,255,255,0.55) inset,var(--shadow-sm);
transition:all .28s;
}
.dt-card::after{
content:'';position:absolute;top:0;left:10%;right:10%;height:1px;
background:var(--seam);opacity:0;transition:opacity .28s;pointer-events:none;
}
.dt-card:hover{
border-color:rgba(74,124,89,0.30);
border-top-color:rgba(255,255,255,0.85);
transform:translateY(-3px) scale(1.015);
background:rgba(248,244,232,0.75);
box-shadow:0 1px 0 rgba(255,255,255,0.65) inset,var(--shadow-md),0 0 0 1px rgba(74,124,89,0.08);
}
.dt-card:hover::after{opacity:1}
.dt-card:hover h4{color:var(--accent)}
.dt-card-icon{
width:34px;height:34px;border-radius:6px;
background:rgba(74,124,89,0.09);
border:1px solid rgba(74,124,89,0.16);
border-top-color:rgba(255,255,255,0.60);
box-shadow:0 1px 0 rgba(255,255,255,0.40) inset;
display:grid;place-items:center;font-size:1.00rem;margin-bottom:11px;
position:relative;z-index:1;transition:all .28s;
}
.dt-card:hover .dt-card-icon{background:rgba(74,124,89,0.15);border-color:rgba(74,124,89,0.28)}
.dt-card h4{font-size:.90rem;font-weight:500;margin-bottom:6px;letter-spacing:-.01em;position:relative;z-index:1;transition:color .28s;font-family:'Libre Baskerville',serif}
.dt-card p{font-size:.80rem;color:var(--ink-2);font-weight:500;line-height:1.62;position:relative;z-index:1}
/* ── HOW ── */
.how{padding:110px 0;position:relative;}
.how::before{content:'';position:absolute;inset:0;background:rgba(240,234,216,0.72);pointer-events:none;z-index:0;}
.how .container{position:relative;z-index:1;}
.how-header{text-align:center;margin-bottom:68px}
.how-header h2{font-family:'Libre Baskerville',serif;font-size:clamp(1.9rem,3.2vw,2.7rem);font-weight:700;letter-spacing:-.02em;color:var(--ink)}
.steps{display:grid;grid-template-columns:repeat(3,1fr);position:relative}
.steps::before{
content:'';position:absolute;top:42px;
left:calc(16.67% + 20px);right:calc(16.67% + 20px);
height:1px;
background:linear-gradient(90deg,transparent,rgba(28,26,22,0.12) 15%,rgba(28,26,22,0.12) 85%,transparent);
}
.step{text-align:center;padding:0 24px}
.step-num{
width:48px;height:48px;border-radius:50%;
display:grid;place-items:center;
font-family:'JetBrains Mono',monospace;font-size:.84rem;font-weight:500;
background:rgba(240,234,216,0.70);
border:1px solid var(--border-md);
border-top-color:rgba(255,255,255,0.80);
color:var(--accent);
margin:0 auto 20px;position:relative;z-index:1;
box-shadow:0 1px 0 rgba(255,255,255,0.65) inset,var(--shadow-sm),0 0 0 5px rgba(74,124,89,0.04);
transition:all .22s;
}
.step:hover .step-num{
border-color:rgba(74,124,89,0.30);
box-shadow:0 1px 0 rgba(255,255,255,0.70) inset,var(--shadow-md),0 0 0 7px rgba(74,124,89,0.06);
transform:scale(1.06);
}
.step h4{font-size:1.00rem;font-weight:600;margin-bottom:8px;letter-spacing:-.01em;font-family:'Libre Baskerville',serif}
.step p{font-size:.84rem;color:var(--ink-2);line-height:1.72;max-width:240px;margin:0 auto;font-weight:500}
/* ── CTA ── */
.cta{padding:110px 0;text-align:center;background:var(--bg2);border-top:1px solid var(--border)}
.cta-card{
border-radius:10px;padding:70px 48px;overflow:hidden;position:relative;
background:rgba(244,238,222,0.62);
border:1px solid var(--border-md);
border-top-color:rgba(255,255,255,0.88);
backdrop-filter:var(--blur-heavy);-webkit-backdrop-filter:var(--blur-heavy);
box-shadow:0 1px 0 rgba(255,255,255,0.75) inset,var(--shadow-lg);
}
.cta-card::after{
content:'';position:absolute;top:0;left:8%;right:8%;height:1px;
background:var(--seam);z-index:1;pointer-events:none;
}
/* Watermark circle */
.cta-blob{
position:absolute;width:400px;height:400px;border-radius:50%;
border:1px solid rgba(74,124,89,0.06);
bottom:-160px;left:50%;transform:translateX(-50%);
pointer-events:none;
box-shadow:0 0 0 60px rgba(74,124,89,0.02),0 0 0 120px rgba(74,124,89,0.015),0 0 0 200px rgba(74,124,89,0.008);
}
.cta h2{
font-family:'Libre Baskerville',serif;
font-size:clamp(2.1rem,4vw,3.2rem);font-weight:700;letter-spacing:-.02em;
margin-bottom:15px;position:relative;z-index:1;
}
.cta h2 em{font-style:italic;color:var(--accent)}
.cta p{font-size:1.00rem;color:var(--ink-2);max-width:420px;margin:0 auto 34px;line-height:1.80;font-weight:400;position:relative;z-index:1}
.cta-btns{display:flex;gap:11px;justify-content:center;flex-wrap:wrap;position:relative;z-index:1}
/* ── FOOTER ── */
footer{
padding:40px 0 48px;
border-top:1px solid var(--border);
box-shadow:0 -1px 0 rgba(255,255,255,0.60);
position:relative;z-index:1;
background:var(--bg3);
}
.footer-inner{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:14px}
.footer-inner .logo{ gap:4px; }
.footer-inner .logo-mark{ margin-top:-4px; }
.footer-links{display:flex;gap:20px}
.footer-links a{color:var(--ink-3);text-decoration:none;font-size:.80rem;transition:color .18s}
.footer-links a:hover{color:var(--accent)}
.footer-icon-link{
display:inline-flex;align-items:center;gap:5px;
color:var(--ink-2);text-decoration:none;font-size:.80rem;
padding:2px 0;border-radius:0;
border:none;background:none;box-shadow:none;
border-bottom:1.5px dotted rgba(28,26,22,0.35);
transition:all .15s ease;
}
.footer-icon-link:hover{
color:var(--accent);
border-bottom-color:var(--accent);
border-bottom-style:solid;
transform:none;
}
.footer-icon-link svg{ flex-shrink:0; }
.footer-copy{font-size:.74rem;color:var(--ink-3)}
/* ── RESPONSIVE ── */
@media(max-width:960px){
.hero-inner{display:flex;flex-direction:column;gap:40px}
.hero-text{text-align:center}
.hero-text p{margin-left:auto;margin-right:auto}
.hero-btns{justify-content:center}
.hero-visual{max-width:480px;margin:0 auto;order:1}
.hero-text{order:2}
.datatune-grid{grid-template-columns:1fr 1fr}
.datatune-panel{padding:46px 28px}
.product-showcase .datatune-panel-inner > div{grid-template-columns:1fr!important;gap:32px!important}
.steps{grid-template-columns:1fr;gap:38px}
.steps::before{display:none}
.step{max-width:340px;margin:0 auto}
}
@media(max-width:680px){
.nav-links,.nav-cta{display:none}
.hamburger{display:flex}
.nav-links.open{
display:flex;flex-direction:column;
position:fixed;top:70px;left:10px;right:10px;
background:rgba(244,238,226,0.98);
border:1px solid var(--border-md);
border-top-color:rgba(255,255,255,0.85);
border-radius:8px;
padding:14px 18px;gap:4px;
backdrop-filter:var(--blur-heavy);-webkit-backdrop-filter:var(--blur-heavy);
box-shadow:var(--shadow-lg);
z-index:200;
}
.nav-links.open li a{
display:block;padding:10px 12px;border-radius:6px;
font-size:.95rem;color:var(--ink);
border-bottom:1px solid var(--border);
}
.nav-links.open li:last-child a{ border-bottom:none; }
.nav-links.open li a:hover{ background:var(--accent-dim);color:var(--accent); }
/* Mobile dropdowns: inline expand instead of hover popup */
.nav-dropdown.dd-open .nav-dropdown-menu{display:block}
.nav-links.open .nav-dropdown-menu{
position:static!important;
min-width:auto;
background:rgba(232,224,202,0.60);
border:none;border-radius:6px;
padding:4px 0 4px 12px;margin:4px 0 6px;
box-shadow:none;
}
.nav-links.open .nav-dropdown-menu::before{display:none}
.nav-links.open .nav-dropdown-menu a{
font-size:.85rem;padding:8px 12px;
border-bottom:none!important;
color:var(--ink-2)!important;
}
.nav-links.open .nav-dropdown-menu a:hover{
color:var(--accent)!important;
background:rgba(74,124,89,0.08)!important;
}
.datatune-grid{grid-template-columns:1fr}
.datatune-panel{padding:32px 18px!important;border-radius:9px}
.cta-card{padding:46px 18px;border-radius:9px}
.domain-card{flex:0 0 auto;width:100%;box-sizing:border-box}
.product-showcase{margin-bottom:32px!important}
.product-showcase .datatune-panel-inner > div{gap:24px!important}
.product-showcase .tag{margin-bottom:8px!important}
.product-showcase h3{font-size:clamp(1.2rem,4vw,1.5rem)!important}
#products{padding-top:80px!important;padding-bottom:80px!important}
#products .domains-header{margin-bottom:32px}
/* Testimonial grid single column */
.testimonials-grid{grid-template-columns:1fr!important}
.domains-track{flex-direction:column;overflow-x:hidden;padding:6px 16px;width:100%;box-sizing:border-box}
.hero{padding:120px 0 60px}
.nav-glass{margin:8px 10px 0}
}
.testi-author{display:flex;flex-direction:column;gap:2px}
.testi-name{font-size:.85rem;font-weight:600;color:var(--ink);letter-spacing:-.01em}
.testi-role{font-size:.75rem;color:var(--ink-3);font-weight:400}
.logo-stamp {
padding: 4px 8px;
background: var(--bg3); /* slightly darker paper */
border: 1px solid var(--border-md);
border-radius: 3px;
box-shadow: var(--shadow-sm);
backdrop-filter: blur(4px);
}
.github-card{
padding:32px 28px;
background:rgba(240,234,216,0.55);
border-radius:12px;
border:1px solid var(--border);
border-top-color:rgba(255,255,255,0.80);
backdrop-filter:var(--blur);-webkit-backdrop-filter:var(--blur);
box-shadow:0 1px 0 rgba(255,255,255,0.60) inset,var(--shadow-sm);
transition:all .28s;
display:flex;flex-direction:column;height:100%;
}
.github-card:hover{
transform:translateY(-4px);
border-color:rgba(74,124,89,0.25);
box-shadow:0 1px 0 rgba(255,255,255,0.70) inset,var(--shadow-lg);
}
</style>
</head>
<body>
<canvas id="sketchCanvas" style="position:fixed;inset:0;width:100%;height:100%;z-index:0;pointer-events:none;opacity:0.76"></canvas>
<svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" style="position:absolute">
<defs>
<linearGradient id="pg1" x1="20%" y1="10%" x2="80%" y2="90%">
<stop offset="0%" stop-color="#6dcc88"/>
<stop offset="40%" stop-color="#3a9858"/>
<stop offset="100%" stop-color="#1b5c34"/>
</linearGradient>
<linearGradient id="pg2" x1="80%" y1="0%" x2="20%" y2="100%">
<stop offset="0%" stop-color="#2d7a48"/>
<stop offset="100%" stop-color="#0e3820"/>
</linearGradient>
<radialGradient id="pg3" cx="50%" cy="46%" r="50%">
<stop offset="60%" stop-color="transparent"/>
<stop offset="100%" stop-color="rgba(10,40,18,0.55)"/>
</radialGradient>
<mask id="ptm">
<path fill="white" d="M50,8 C57,8 63,11 67,16 L85,46 C89,52 89,59 86,65 C83,71 77,74 71,74 L29,74 C23,74 17,71 14,65 C11,59 11,52 15,46 L33,16 C37,11 43,8 50,8 Z"/>
<circle cx="50" cy="46" r="20" fill="black"/>
</mask>
<symbol id="vitalops-logo" viewBox="-8 -8 116 116">
<g transform="rotate(180 50 50)">
<rect width="100" height="100" fill="url(#pg1)" mask="url(#ptm)"/>
<path d="M67,16 L85,46 C89,52 89,59 86,65 C83,71 77,74 71,74 L50,74 L50,54 C56,54 61,51 64,46 L72,32 Z" fill="url(#pg2)" mask="url(#ptm)" opacity="0.6"/>
<path d="M29,74 L14,65 C11,59 11,52 15,46 L33,16 L42,30 C38,35 38,42 41,47 L50,62 L50,74 Z" fill="url(#pg2)" mask="url(#ptm)" opacity="0.35"/>
<rect width="100" height="100" fill="url(#pg3)" mask="url(#ptm)"/>
<path d="M37,12 C42,9 50,8 58,10 C62,11 65,13 67,16" fill="none" stroke="rgba(180,255,210,0.50)" stroke-width="2" stroke-linecap="round" mask="url(#ptm)"/>
<circle cx="50" cy="46" r="20" fill="none" stroke="rgba(8,30,16,0.45)" stroke-width="1.2" mask="url(#ptm)"/>
</g>
</symbol>
</defs>
</svg>
<div class="grain"></div>
<div class="mouse-glow" id="mouseGlow"></div>
<nav id="nav">
<div class="nav-glass">
<div class="nav-inner">
<a href="#" class="logo"><div class="logo-mark"><svg xmlns="http://www.w3.org/2000/svg" width="30" height="30"><use href="#vitalops-logo"/></svg></div><span class="logo-name">VitalOps</span></a>
<ul class="nav-links" id="navLinks">
<li class="nav-dropdown">
<a href="#products" class="nav-dropdown-trigger">Products <svg width="10" height="10" viewBox="0 0 10 10" style="margin-left:3px;vertical-align:middle;"><path d="M2 4l3 3 3-3" fill="none" stroke="currentColor" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/></svg></a>
<div class="nav-dropdown-menu">
<a href="#product-inference">LLM Inference Optimisation</a>
<a href="#product-rpa">Desktop Process Automation</a>
<a href="#product-data">Intelligent Data Pipelines</a>
<a href="#product-code">Coding Agents</a>
<a href="#product-qa">QA & Testing Automation</a>
<a href="#product-enterprise">Enterprise Automation</a>
</div>
</li>
<li class="nav-dropdown">
<a href="#github" class="nav-dropdown-trigger">Open Source <svg width="10" height="10" viewBox="0 0 10 10" style="margin-left:3px;vertical-align:middle;"><path d="M2 4l3 3 3-3" fill="none" stroke="currentColor" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/></svg></a>
<div class="nav-dropdown-menu">
<a href="https://github.com/vitalops/opendesk" target="_blank" rel="noopener noreferrer">OpenDesk</a>
<a href="https://github.com/vitalops/openvibe" target="_blank" rel="noopener noreferrer">OpenVibe</a>
<a href="https://github.com/vitalops/datatune" target="_blank" rel="noopener noreferrer">DataTune</a>
<a href="https://github.com/vitalops/temenos" target="_blank" rel="noopener noreferrer">Temenos</a>
<a href="https://github.com/vitalops/coherence" target="_blank" rel="noopener noreferrer">Coherence</a>
</div>
</li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<a href="https://calendly.com/abhijith-vitalops/30min" target="_blank" rel="noopener noreferrer" class="nav-cta">Book a Demo</a>
<button type="button" class="hamburger" id="hamburger" aria-label="Menu"><span></span><span></span><span></span></button>
</div>
</div>
</nav>
<section class="hero" id="home" style="position:relative">
<div class="container hero-inner">
<div class="hero-text reveal">
<div class="hero-tag"><span class="tag">Applied AI Infrastructure</span></div>
<h1>We make AI<br>
<span class="hero-phrase-wrap">
<span class="hero-phrase ph-active">run faster.</span>
<span class="hero-phrase">finish the job.</span>
<span class="hero-phrase">prove itself.</span>
<span class="hero-phrase">hold your bar.</span>
<span class="hero-phrase">work all night.</span>
</span>
</h1>
<p>VitalOps works across the AI stack. We tune LLM serving so models answer sooner and push more tokens per second, we build coding agents that are measured on public benchmarks, and we run entire expert workflows to the quality bar your best people would hold.</p>
<div class="hero-btns">
<a href="https://calendly.com/abhijith-vitalops/30min" target="_blank" rel="noopener noreferrer" class="btn btn-fill">Schedule a Demo</a>
</div>
</div>
<div class="hero-visual reveal" style="animation-delay:.16s">
<div class="workflow-anim-wrap" id="workflowWrap">
<canvas id="workflowCanvas"></canvas>
</div>
</div>
</div>
<div class="hero-edge"></div>
<a class="scroll-down" href="#products">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
<polyline points="6 9 12 15 18 9"/>
</svg>
</a>
</section>
<section class="section-band" id="products" style="padding-top:108px;padding-bottom:118px">
<div class="container">
<div class="domains-header reveal" style="text-align:center;margin-bottom:52px;">
<span class="tag">Products</span>
<div class="section-line section-line-center"></div>
<h2 style="font-family:'Libre Baskerville',serif;font-size:clamp(1.9rem,3.2vw,2.7rem);font-weight:700;letter-spacing:-.02em;">Research-grade engineering, delivered as production systems</h2>
<p style="font-size:.96rem;color:var(--ink-2);max-width:600px;margin:14px auto 0;line-height:1.78;">Three things we do well: making inference fast, making agents good enough to trust with real work, and putting both to work inside enterprise workflows.</p>
</div>
<div class="reveal" style="display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:16px;max-width:1100px;margin:0 auto 64px;">
<div style="padding:26px 24px;background:rgba(240,234,216,0.60);border-radius:10px;border:1px solid var(--border);border-top-color:rgba(255,255,255,0.80);box-shadow:0 1px 0 rgba(255,255,255,0.60) inset,var(--shadow-sm);">
<div class="step-num" style="margin:0 0 16px;">01</div>
<h3 style="font-family:'Libre Baskerville',serif;font-size:1.10rem;font-weight:700;margin-bottom:8px;letter-spacing:-.01em;">LLM Inferencing</h3>
<p style="font-size:.85rem;color:var(--ink-2);line-height:1.72;">Inference speed work across the serving stack: tokens per second, time to first token, and cost per token, tuned to your model and your hardware.</p>
</div>
<div style="padding:26px 24px;background:rgba(240,234,216,0.60);border-radius:10px;border:1px solid var(--border);border-top-color:rgba(255,255,255,0.80);box-shadow:0 1px 0 rgba(255,255,255,0.60) inset,var(--shadow-sm);">
<div class="step-num" style="margin:0 0 16px;">02</div>
<h3 style="font-family:'Libre Baskerville',serif;font-size:1.10rem;font-weight:700;margin-bottom:8px;letter-spacing:-.01em;">Coding Agents</h3>
<p style="font-size:.85rem;color:var(--ink-2);line-height:1.72;">Agent design, harness engineering, and rigorous benchmarking, so progress is verifiable on public boards rather than self-reported.</p>
</div>
<div style="padding:26px 24px;background:rgba(240,234,216,0.60);border-radius:10px;border:1px solid var(--border);border-top-color:rgba(255,255,255,0.80);box-shadow:0 1px 0 rgba(255,255,255,0.60) inset,var(--shadow-sm);">
<div class="step-num" style="margin:0 0 16px;">03</div>
<h3 style="font-family:'Libre Baskerville',serif;font-size:1.10rem;font-weight:700;margin-bottom:8px;letter-spacing:-.01em;">Enterprise Automation</h3>
<p style="font-size:.85rem;color:var(--ink-2);line-height:1.72;">Agentic software for finance and supply chain, built alongside consultancies and deployed inside large enterprises.</p>
</div>
</div>
<!-- Product 1: LLM Inference Optimisation -->
<div id="product-inference" class="product-showcase reveal" style="margin-bottom:56px;">
<div class="datatune-panel" style="padding:48px 40px;">
<div class="datatune-panel-inner">
<div style="display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start;">
<div>
<span class="tag" style="margin-bottom:14px;">Inference</span>
<h3 style="font-family:'Libre Baskerville',serif;font-size:clamp(1.5rem,2.8vw,2rem);font-weight:700;letter-spacing:-.02em;margin:14px 0 12px;">LLM Inference Optimisation</h3>
<p style="font-size:.92rem;color:var(--ink-2);line-height:1.78;margin-bottom:20px;">We make large language models run faster on the hardware you already have. Serving-stack configuration, scheduler and kernel-level tuning, and careful ablation studies that lift tokens per second and cut the time your users spend waiting for a response.</p>
<div style="display:flex;flex-direction:column;gap:8px;margin-bottom:24px;">
<div style="display:flex;align-items:center;gap:8px;"><span style="color:var(--accent);font-size:.80rem;">✓</span><span style="font-size:.84rem;color:var(--ink-2);">Higher tokens per second on the same GPUs</span></div>
<div style="display:flex;align-items:center;gap:8px;"><span style="color:var(--accent);font-size:.80rem;">✓</span><span style="font-size:.84rem;color:var(--ink-2);">Lower time to first token and end-to-end latency</span></div>
<div style="display:flex;align-items:center;gap:8px;"><span style="color:var(--accent);font-size:.80rem;">✓</span><span style="font-size:.84rem;color:var(--ink-2);">Tuning across SGLang and vLLM serving stacks</span></div>
<div style="display:flex;align-items:center;gap:8px;"><span style="color:var(--accent);font-size:.80rem;">✓</span><span style="font-size:.84rem;color:var(--ink-2);">Numbers measured independently, not self-reported</span></div>
</div>
<a href="https://calendly.com/abhijith-vitalops/30min" target="_blank" rel="noopener noreferrer" class="btn btn-fill" style="margin-top:4px;">Talk to an Engineer</a>
</div>
<div>
<div style="display:flex;flex-direction:column;gap:12px;">
<div style="padding:20px;background:rgba(240,234,216,0.70);border-radius:8px;border:1px solid var(--border);">
<div style="font-size:.82rem;font-weight:600;color:var(--ink);margin-bottom:6px;">Throughput tuning</div>
<p style="font-size:.80rem;color:var(--ink-3);line-height:1.65;">Batching, scheduling, and parallelism settings tuned per model so a single deployment serves more traffic before you add a GPU.</p>
</div>
<div style="padding:20px;background:rgba(74,124,89,0.06);border-radius:8px;border:1px solid rgba(74,124,89,0.25);">
<div style="font-size:.82rem;font-weight:600;color:var(--ink);margin-bottom:6px;">Latency work</div>
<p style="font-size:.80rem;color:var(--ink-3);line-height:1.65;">Time to first token and inter-token latency pulled down where it is felt most, in interactive and agentic traffic.</p>
</div>
<div style="padding:20px;background:rgba(240,234,216,0.70);border-radius:8px;border:1px solid var(--border);">
<div style="font-size:.82rem;font-weight:600;color:var(--ink);margin-bottom:6px;">Kernel and stack depth</div>
<p style="font-size:.80rem;color:var(--ink-3);line-height:1.65;">Ablation studies down to kernel and scheduler level on current NVIDIA hardware, with the winning configuration handed back to your team.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Product 1: Desktop Process Automation (RPA) -->
<div id="product-rpa" class="product-showcase reveal" style="margin-bottom:56px;">
<div class="datatune-panel" style="padding:48px 40px;">
<div class="datatune-panel-inner">
<div style="display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start;">
<div>
<span class="tag" style="margin-bottom:14px;">RPA</span>
<h3 style="font-family:'Libre Baskerville',serif;font-size:clamp(1.5rem,2.8vw,2rem);font-weight:700;letter-spacing:-.02em;margin:14px 0 12px;">Desktop Process Automation</h3>
<p style="font-size:.92rem;color:var(--ink-2);line-height:1.78;margin-bottom:20px;">Automate any desktop workflow: data entry, form processing, report generation, cross-application transfers. AI agents interact with your existing software exactly as a human would, no API integrations required.</p>
<div style="display:flex;flex-direction:column;gap:8px;margin-bottom:24px;">
<div style="display:flex;align-items:center;gap:8px;"><span style="color:var(--accent);font-size:.80rem;">✓</span><span style="font-size:.84rem;color:var(--ink-2);">Works with any desktop application</span></div>
<div style="display:flex;align-items:center;gap:8px;"><span style="color:var(--accent);font-size:.80rem;">✓</span><span style="font-size:.84rem;color:var(--ink-2);">Record once, replay on schedule</span></div>
<div style="display:flex;align-items:center;gap:8px;"><span style="color:var(--accent);font-size:.80rem;">✓</span><span style="font-size:.84rem;color:var(--ink-2);">Cross-platform: Mac, Windows, Linux</span></div>
<div style="display:flex;align-items:center;gap:8px;"><span style="color:var(--accent);font-size:.80rem;">✓</span><span style="font-size:.84rem;color:var(--ink-2);">Remote machine management via encrypted LAN</span></div>
</div>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSd7d0na6c5krlDgLHcJQbH0sIPaiOeAzBy6w1rfAcNnOvoOkA/viewform" target="_blank" rel="noopener noreferrer" class="btn btn-fill" style="margin-top:4px;">Request Access</a>
</div>
<div>
<div style="display:flex;flex-direction:column;gap:12px;">
<div style="padding:20px;background:rgba(240,234,216,0.70);border-radius:8px;border:1px solid var(--border);">
<div style="font-size:.82rem;font-weight:600;color:var(--ink);margin-bottom:6px;">No integration work</div>
<p style="font-size:.80rem;color:var(--ink-3);line-height:1.65;">Agents drive the software through its own interface, so legacy tools with no API are automated the same as modern ones.</p>
</div>
<div style="padding:20px;background:rgba(74,124,89,0.06);border-radius:8px;border:1px solid rgba(74,124,89,0.25);">
<div style="font-size:.82rem;font-weight:600;color:var(--ink);margin-bottom:6px;">Fleets, not single machines</div>
<p style="font-size:.80rem;color:var(--ink-3);line-height:1.65;">One agent drives many machines over an encrypted link, running the same workflow in parallel across a fleet.</p>
</div>