-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1077 lines (1026 loc) · 92.7 KB
/
index.html
File metadata and controls
1077 lines (1026 loc) · 92.7 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" />
<title>DBK Digitals - Digital Solutions That Automate</title>
<meta name="description" content="DBK Digitals delivers cutting-edge digital solutions — web development, automation, AI integration, and branding — that scale your business 24/7." />
<!-- Template fonts -->
<link rel="preload" href="https://v0-compute-11.vercel.app/_next/static/media/70bc3e132a0a741e-s.p.1409xf.ylxg8g.woff2" as="font" crossorigin type="font/woff2" />
<link rel="preload" href="https://v0-compute-11.vercel.app/_next/static/media/e41d5df559864f9e-s.p.0gq7fw9.sy_5..woff2" as="font" crossorigin type="font/woff2" />
<link rel="preload" href="https://v0-compute-11.vercel.app/_next/static/media/f06bf9da926bae75-s.p.0pz0x0eczp58u.woff2" as="font" crossorigin type="font/woff2" />
<!-- Image preloads -->
<link rel="preload" as="image" href="https://hebbkx1anhila5yf.public.blob.vercel-storage.com/Upscaled%20Image%20%2812%29-ng3RrNnsPMJ5CrtOjcPTmhHg01W11q.png" />
<link rel="preload" as="image" href="https://hebbkx1anhila5yf.public.blob.vercel-storage.com/tree-uAia6REvB137CQyHFCf0za3O6h2zKO.png" />
<link rel="preload" as="image" href="https://hebbkx1anhila5yf.public.blob.vercel-storage.com/world-3i68QNWJwmO7W19ztZWbevAwJQHzYL.png" />
<link rel="preload" as="image" href="https://hebbkx1anhila5yf.public.blob.vercel-storage.com/real-time-graph-INFmn3u0MlUwvNPynoIhwxtPaPjxM5.png" />
<link rel="preload" as="image" href="https://hebbkx1anhila5yf.public.blob.vercel-storage.com/connection-KeJwWPQvn6l0a7C48tCARYtNEdC92H.png" />
<link rel="preload" as="image" href="https://hebbkx1anhila5yf.public.blob.vercel-storage.com/Upscaled%20Image%20%2813%29-OQ2DiR3ElVsUg8kTvTL1kC5A3Q6maM.png" />
<link rel="preload" as="image" href="https://hebbkx1anhila5yf.public.blob.vercel-storage.com/Upscaled%20Image%20%2810%29-UnDKstODkIENp5xqTYUEpt0Sm8tNOw.png" />
<link rel="preload" as="image" href="https://v0-compute-11.vercel.app/images/whale.png" />
<link rel="preload" as="image" href="https://v0-compute-11.vercel.app/images/bridge.png" />
<!-- Template stylesheets -->
<link rel="stylesheet" href="https://v0-compute-11.vercel.app/_next/static/chunks/0m.k_2h.ks4uj.css" />
<link rel="stylesheet" href="https://v0-compute-11.vercel.app/_next/static/chunks/0n9dj1m951q3c.css" />
<style>
/* ── Make scroll-triggered elements visible (template JS removed) ── */
[class*="opacity-0"],
.opacity-0 {
opacity: 1 !important;
}
[class*="translate-y-"],
.translate-y-4,
.translate-y-8,
.translate-y-12,
.translate-y-16 {
transform: translateY(0) !important;
}
[class*="translate-x-"],
.translate-x-8,
.-translate-x-12 {
transform: translateX(0) !important;
}
[class*="blur-[1px]"] {
filter: none !important;
}
/* Hero animated letters – make them visible */
h1 span span[style*="blur"] {
opacity: 1 !important;
filter: none !important;
}
/* Smooth scroll */
html {
scroll-behavior: smooth;
scroll-padding-top: 80px;
}
body { overflow-x: hidden; }
section { scroll-margin-top: 80px; }
/* Sticky header glass */
header { backdrop-filter: blur(14px); background: linear-gradient(to bottom, rgba(0,0,0,0.68), rgba(0,0,0,0.18)); }
header nav { border-bottom: 1px solid rgba(255,255,255,0.08); }
/* Template accent color kept as original pink #eca8d6 (unmodified) */
/* Pricing outline text */
.text-stroke {
-webkit-text-stroke: 2px currentColor;
-webkit-text-fill-color: transparent;
}
/* Progress bar keyframes */
@keyframes progress { 0% { width: 0; } 100% { width: 100%; } }
.animate-progress { animation: progress 8s linear forwards; }
@keyframes pulse { 0%,100% { opacity:0.4; transform:scale(1); } 50% { opacity:1; transform:scale(1.6); } }
@keyframes fadeSlideIn { 0% { opacity:0; transform:translateY(20px); } 100% { opacity:1; transform:translateY(0); } }
.animate-fadeSlideIn { animation: fadeSlideIn 0.7s ease forwards; }
/* Full-bleed utility */
.template-full-bleed {
width: 100vw;
margin-left: calc(50% - 50vw);
margin-right: calc(50% - 50vw);
}
/* Mobile menu panel */
#mobileMenuPanel {
opacity: 0;
pointer-events: none;
transition: opacity 0.4s ease;
}
#mobileMenuPanel.open {
opacity: 1;
pointer-events: auto;
}
#mobileMenuPanel a {
transition: opacity 0.5s ease, transform 0.5s ease;
}
#mobileMenuPanel.open a {
opacity: 1 !important;
transform: translateY(0) !important;
}
#mobileMenuPanel .menu-bottom {
transition: opacity 0.5s ease, transform 0.5s ease;
}
#mobileMenuPanel.open .menu-bottom {
opacity: 1 !important;
transform: translateY(0) !important;
}
/* Connecting lines SVG animation */
@keyframes drawLine {
0% { stroke-dashoffset: 1000; opacity: 0; }
15% { opacity: 1; }
70% { opacity: 0.7; }
100% { stroke-dashoffset: 0; opacity: 0; }
}
.connecting-line {
stroke: #eca8d6;
stroke-width: 1.2;
fill: none;
stroke-dasharray: 1000;
animation: drawLine 3s ease-in-out infinite;
}
/* Testimonial code bg */
.testimonial-bg {
font-family: monospace;
font-size: 10px;
color: rgba(255,255,255,0.02);
line-height: 1.4;
overflow: hidden;
white-space: pre;
user-select: none;
}
/* Mobile responsive */
@media (max-width: 767px) {
h1 { font-size: clamp(2rem, 10vw, 3.5rem) !important; }
h2 { font-size: clamp(2rem, 8vw, 3rem) !important; }
.hero-stats { flex-direction: column; gap: 1rem; }
.hero-stats > div { flex-direction: row; gap: 0.75rem; align-items: baseline; }
}
</style>
</head>
<body class="font-sans antialiased">
<main class="relative min-h-screen overflow-x-hidden">
<!-- ═══════════════════════════════════════════════════
HEADER / NAVIGATION
═══════════════════════════════════════════════════ -->
<header class="fixed z-50 transition-all duration-500 top-0 left-0 right-0">
<nav class="mx-auto transition-all duration-500 bg-transparent max-w-[1400px]">
<div class="flex items-center justify-between transition-all duration-500 px-6 lg:px-8 h-20">
<a href="#" class="flex items-center gap-2 group">
<span class="font-display tracking-tight transition-all duration-500 text-2xl text-white">DBK</span>
<span class="font-mono transition-all duration-500 text-xs mt-1 text-white/60">DIGITALS</span>
</a>
<div class="hidden md:flex items-center gap-12">
<a href="#features" class="text-sm transition-colors duration-300 relative group text-white/70 hover:text-white">Capabilities<span class="absolute -bottom-1 left-0 w-0 h-px transition-all duration-300 group-hover:w-full bg-white"></span></a>
<a href="#how-it-works" class="text-sm transition-colors duration-300 relative group text-white/70 hover:text-white">Process<span class="absolute -bottom-1 left-0 w-0 h-px transition-all duration-300 group-hover:w-full bg-white"></span></a>
<a href="#infra" class="text-sm transition-colors duration-300 relative group text-white/70 hover:text-white">Infra<span class="absolute -bottom-1 left-0 w-0 h-px transition-all duration-300 group-hover:w-full bg-white"></span></a>
<a href="#integrations" class="text-sm transition-colors duration-300 relative group text-white/70 hover:text-white">Integrations<span class="absolute -bottom-1 left-0 w-0 h-px transition-all duration-300 group-hover:w-full bg-white"></span></a>
<a href="#security" class="text-sm transition-colors duration-300 relative group text-white/70 hover:text-white">Security<span class="absolute -bottom-1 left-0 w-0 h-px transition-all duration-300 group-hover:w-full bg-white"></span></a>
</div>
<div class="hidden md:flex items-center gap-4">
<a href="#" class="transition-all duration-500 text-sm text-white/70 hover:text-white">Sign in</a>
<button class="inline-flex items-center justify-center whitespace-nowrap text-sm font-medium rounded-full transition-all duration-500 bg-white hover:bg-white/90 text-black px-6 h-8 gap-1.5">Get started</button>
</div>
<!-- Mobile toggle -->
<button id="mobileMenuToggle" class="md:hidden p-2 transition-colors duration-500 text-white" aria-label="Toggle menu" aria-expanded="false">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-6 h-6"><line x1="4" x2="20" y1="12" y2="12"></line><line x1="4" x2="20" y1="6" y2="6"></line><line x1="4" x2="20" y1="18" y2="18"></line></svg>
</button>
</div>
</nav>
<!-- Mobile menu panel -->
<div id="mobileMenuPanel" class="md:hidden fixed inset-0 bg-background z-40" style="top:0">
<div class="flex flex-col h-full px-8 pt-28 pb-8">
<div class="flex-1 flex flex-col justify-center gap-8">
<a href="#features" class="text-5xl font-display text-foreground hover:text-muted-foreground transition-all duration-500" style="opacity:0;transform:translateY(16px);transition-delay:50ms">Capabilities</a>
<a href="#how-it-works" class="text-5xl font-display text-foreground hover:text-muted-foreground transition-all duration-500" style="opacity:0;transform:translateY(16px);transition-delay:100ms">Process</a>
<a href="#infra" class="text-5xl font-display text-foreground hover:text-muted-foreground transition-all duration-500" style="opacity:0;transform:translateY(16px);transition-delay:150ms">Infra</a>
<a href="#integrations" class="text-5xl font-display text-foreground hover:text-muted-foreground transition-all duration-500" style="opacity:0;transform:translateY(16px);transition-delay:200ms">Integrations</a>
<a href="#security" class="text-5xl font-display text-foreground hover:text-muted-foreground transition-all duration-500" style="opacity:0;transform:translateY(16px);transition-delay:250ms">Security</a>
</div>
<div class="menu-bottom flex gap-4 pt-8 border-t border-foreground/10" style="opacity:0;transform:translateY(16px);transition-delay:300ms">
<button class="flex-1 rounded-full h-14 text-base border bg-background shadow-xs hover:bg-accent hover:text-accent-foreground">Sign in</button>
<button class="flex-1 bg-foreground text-background rounded-full h-14 text-base">Get started</button>
</div>
</div>
</div>
</header>
<!-- ═══════════════════════════════════════════════════
HERO SECTION
═══════════════════════════════════════════════════ -->
<section class="relative min-h-screen flex flex-col justify-center items-start overflow-hidden bg-black">
<div class="absolute inset-0 z-0">
<video autoplay muted loop playsinline aria-hidden="true" class="w-full h-full object-cover object-center opacity-80">
<source src="https://hebbkx1anhila5yf.public.blob.vercel-storage.com/bg-hero-0BnFGdr81Ifnj3WbBZoNt1KE4D5DMT.mp4" type="video/mp4" />
</video>
<div class="absolute inset-0 bg-gradient-to-r from-black/70 via-black/30 to-transparent"></div>
<div class="absolute inset-0 bg-gradient-to-b from-black/20 via-transparent to-black/60"></div>
</div>
<!-- Grid overlay -->
<div class="absolute inset-0 z-[2] overflow-hidden pointer-events-none opacity-20">
<div class="absolute h-px bg-white/10" style="top:12.5%;left:0;right:0"></div>
<div class="absolute h-px bg-white/10" style="top:25%;left:0;right:0"></div>
<div class="absolute h-px bg-white/10" style="top:37.5%;left:0;right:0"></div>
<div class="absolute h-px bg-white/10" style="top:50%;left:0;right:0"></div>
<div class="absolute h-px bg-white/10" style="top:62.5%;left:0;right:0"></div>
<div class="absolute h-px bg-white/10" style="top:75%;left:0;right:0"></div>
<div class="absolute h-px bg-white/10" style="top:87.5%;left:0;right:0"></div>
<div class="absolute h-px bg-white/10" style="top:100%;left:0;right:0"></div>
<div class="absolute w-px bg-white/10" style="left:8.33%;top:0;bottom:0"></div>
<div class="absolute w-px bg-white/10" style="left:16.66%;top:0;bottom:0"></div>
<div class="absolute w-px bg-white/10" style="left:25%;top:0;bottom:0"></div>
<div class="absolute w-px bg-white/10" style="left:33.32%;top:0;bottom:0"></div>
<div class="absolute w-px bg-white/10" style="left:41.65%;top:0;bottom:0"></div>
<div class="absolute w-px bg-white/10" style="left:50%;top:0;bottom:0"></div>
<div class="absolute w-px bg-white/10" style="left:58.31%;top:0;bottom:0"></div>
<div class="absolute w-px bg-white/10" style="left:66.64%;top:0;bottom:0"></div>
<div class="absolute w-px bg-white/10" style="left:74.97%;top:0;bottom:0"></div>
<div class="absolute w-px bg-white/10" style="left:83.3%;top:0;bottom:0"></div>
<div class="absolute w-px bg-white/10" style="left:91.63%;top:0;bottom:0"></div>
<div class="absolute w-px bg-white/10" style="left:99.96%;top:0;bottom:0"></div>
</div>
<div class="relative z-10 w-full max-w-[1400px] mx-auto px-6 lg:px-12 py-32 lg:py-40">
<div class="lg:max-w-[55%]">
<div class="mb-8">
<span class="inline-flex items-center gap-3 text-sm font-mono text-white/60">
<span class="w-8 h-px bg-white/30"></span>Digital solutions that scale your business
</span>
</div>
<div class="mb-12">
<h1 class="text-left text-[clamp(2rem,6vw,7rem)] font-display leading-[0.92] tracking-tight text-white">
<span class="block whitespace-nowrap">Digital solutions,</span>
<span class="block whitespace-nowrap">built to
<span class="relative inline-block">
<span style="display:inline-block;color:rgb(236,168,214);transition:color 0.4s ease">a</span><span style="display:inline-block;color:rgb(197,151,235);transition:color 0.4s ease">u</span><span style="display:inline-block;color:rgb(158,152,250);transition:color 0.4s ease">t</span><span style="display:inline-block;color:rgb(121,205,249);transition:color 0.4s ease">o</span><span style="display:inline-block;color:rgb(145,220,188);transition:color 0.4s ease">m</span><span style="display:inline-block;color:rgb(230,197,66);transition:color 0.4s ease">a</span><span style="display:inline-block;color:rgb(245,181,112);transition:color 0.4s ease">t</span><span style="display:inline-block;color:rgb(236,168,214);transition:color 0.4s ease">e</span>
</span>
</span>
</h1>
</div>
</div>
</div>
<!-- Stats bar -->
<div class="absolute bottom-12 left-0 right-0 px-6 lg:px-12">
<div class="hero-stats max-w-[1400px] mx-auto flex items-start gap-10 lg:gap-20">
<div class="flex flex-col gap-2">
<span class="text-3xl lg:text-4xl font-display text-white">1500+</span>
<span class="text-xs text-white/50 leading-tight">projects delivered</span>
</div>
<div class="flex flex-col gap-2">
<span class="text-3xl lg:text-4xl font-display text-white">99.7%</span>
<span class="text-xs text-white/50 leading-tight">client satisfaction</span>
</div>
<div class="flex flex-col gap-2">
<span class="text-3xl lg:text-4xl font-display text-white"><50ms</span>
<span class="text-xs text-white/50 leading-tight">response time</span>
</div>
</div>
</div>
</section>
<!-- ═══════════════════════════════════════════════════
FEATURES / CAPABILITIES
═══════════════════════════════════════════════════ -->
<section id="features" class="relative py-24 lg:py-32 overflow-hidden">
<div class="max-w-[1400px] mx-auto px-6 lg:px-12">
<div class="relative mb-24 lg:mb-32">
<div class="grid lg:grid-cols-12 gap-8 items-end">
<div class="lg:col-span-7">
<span class="inline-flex items-center gap-3 text-sm font-mono text-muted-foreground mb-6"><span class="w-12 h-px bg-foreground/30"></span>Capabilities</span>
<h2 class="text-6xl md:text-7xl lg:text-[128px] font-display tracking-tight leading-[0.9]">Intelligent<br/><span class="text-muted-foreground">workers.</span></h2>
</div>
<div class="lg:col-span-5 lg:pb-4">
<p class="text-xl text-muted-foreground leading-relaxed">We build digital experiences that work autonomously — websites, automations, and AI-powered tools that run your business around the clock.</p>
</div>
</div>
</div>
<div class="grid lg:grid-cols-12 gap-4 lg:gap-6">
<div class="lg:col-span-12 relative bg-black border border-foreground/10 min-h-[500px] overflow-hidden group flex">
<div class="relative flex-1 p-8 lg:p-12 bg-black">
<div class="relative z-10">
<span class="font-mono text-sm text-muted-foreground">01</span>
<h3 class="text-3xl lg:text-4xl font-display mt-4 mb-6 group-hover:translate-x-2 transition-transform duration-500">Autonomous Execution</h3>
<p class="text-lg text-muted-foreground leading-relaxed max-w-md mb-8">Deploy AI agents that work independently. They analyze, decide, and execute complex multi-step tasks without human intervention.</p>
<div>
<span class="text-5xl lg:text-6xl font-display">99.7%</span>
<span class="block text-sm text-muted-foreground font-mono mt-2">task completion</span>
</div>
</div>
</div>
<div class="hidden lg:block relative w-[42%] shrink-0 overflow-hidden">
<img src="https://hebbkx1anhila5yf.public.blob.vercel-storage.com/Upscaled%20Image%20%2812%29-ng3RrNnsPMJ5CrtOjcPTmhHg01W11q.png" alt="" aria-hidden="true" class="absolute inset-0 w-full h-full object-cover object-center" style="transform:scaleX(-1)" />
<div class="absolute inset-0 bg-gradient-to-r from-black via-transparent to-transparent"></div>
</div>
</div>
</div>
</div>
</section>
<!-- ═══════════════════════════════════════════════════
HOW IT WORKS
═══════════════════════════════════════════════════ -->
<section id="how-it-works" class="relative py-24 lg:py-32 bg-[oklch(0.09_0.01_260)] text-white overflow-hidden">
<div class="absolute bottom-0 left-0 w-[400px] h-[400px] rounded-full bg-white/[0.02] blur-[100px] pointer-events-none"></div>
<div class="relative z-10 max-w-[1400px] mx-auto px-6 lg:px-12">
<div class="relative mb-0 lg:mb-0 grid lg:grid-cols-2 gap-4 lg:gap-12 items-end">
<div class="overflow-hidden pb-0 lg:pb-32">
<span class="inline-flex items-center gap-3 text-sm font-mono text-white/40 mb-8"><span class="w-12 h-px bg-white/20"></span>Process</span>
<h2 class="text-6xl md:text-7xl lg:text-[128px] font-display tracking-tight leading-[0.85]">
<span class="block">Plan.</span>
<span class="block text-white/30">Build.</span>
<span class="block text-white/10">Scale.</span>
</h2>
</div>
<div class="relative h-[320px] lg:h-[640px] overflow-hidden">
<img src="https://hebbkx1anhila5yf.public.blob.vercel-storage.com/tree-uAia6REvB137CQyHFCf0za3O6h2zKO.png" alt="" aria-hidden="true" class="absolute bottom-0 left-0 w-full h-full object-contain object-bottom" />
<div class="absolute inset-0 bg-gradient-to-r from-[oklch(0.09_0.01_260)] via-transparent to-transparent pointer-events-none"></div>
</div>
</div>
<div class="grid lg:grid-cols-3 gap-4">
<!-- Step 01 – Define -->
<button type="button" class="relative text-left p-8 lg:p-12 border transition-all duration-500 bg-[#000000] border-white/60">
<div class="flex items-center gap-4 mb-8">
<span class="text-4xl font-display text-[#eca8d6]">01</span>
<div class="flex-1 h-px bg-white/10 overflow-hidden"><div class="h-full bg-[#eca8d6]/50 animate-progress"></div></div>
</div>
<h3 class="text-3xl lg:text-4xl font-display mb-2">Plan</h3>
<span class="text-xl text-white/40 font-display block mb-6">your digital foundation</span>
<p class="text-white/60 leading-relaxed">We understand your business, audience, and goals — then map the right website structure and marketing strategy. From positioning to funnel flow, everything is built to convert, not just look good.</p>
<div class="absolute bottom-0 left-0 right-0 h-1 bg-[#eca8d6]"></div>
</button>
<!-- Step 02 – Assign -->
<button type="button" class="relative text-left p-8 lg:p-12 border transition-all duration-500 bg-[#000000] border-white/25 hover:border-white/50">
<div class="flex items-center gap-4 mb-8">
<span class="text-4xl font-display text-white/20">02</span>
<div class="flex-1 h-px bg-white/10 overflow-hidden"></div>
</div>
<h3 class="text-3xl lg:text-4xl font-display mb-2">Build</h3>
<span class="text-xl text-white/40 font-display block mb-6">high-performance websites</span>
<p class="text-white/60 leading-relaxed opacity-60">We design and develop modern, premium-grade websites tailored to current market standards — fast, responsive, and conversion-focused. Whether it's a business site, landing funnel, or full-scale platform, we build for growth.</p>
<div class="absolute bottom-0 left-0 right-0 h-1 bg-[#eca8d6] scale-x-0 origin-left"></div>
</button>
<!-- Step 03 – Monitor -->
<button type="button" class="relative text-left p-8 lg:p-12 border transition-all duration-500 bg-[#000000] border-white/25 hover:border-white/50">
<div class="flex items-center gap-4 mb-8">
<span class="text-4xl font-display text-white/20">03</span>
<div class="flex-1 h-px bg-white/10 overflow-hidden"></div>
</div>
<h3 class="text-3xl lg:text-4xl font-display mb-2">Scale</h3>
<span class="text-xl text-white/40 font-display block mb-6">performance marketing</span>
<p class="text-white/60 leading-relaxed opacity-60">We drive traffic and revenue through data-backed campaigns across Meta and Google. From ad creatives to targeting and optimization — everything is focused on ROI, not vanity metrics.</p>
<div class="absolute bottom-0 left-0 right-0 h-1 bg-[#eca8d6] scale-x-0 origin-left"></div>
</button>
</div>
</div>
</section>
<!-- ═══════════════════════════════════════════════════
INFRASTRUCTURE – Global by default
═══════════════════════════════════════════════════ -->
<section id="infra" class="relative py-32 lg:py-40 overflow-hidden">
<div class="max-w-[1400px] mx-auto px-6 lg:px-12">
<div class="mb-20">
<span class="inline-flex items-center gap-4 text-sm font-mono text-muted-foreground mb-8"><span class="w-12 h-px bg-foreground/20"></span>Global infrastructure</span>
<div class="grid lg:grid-cols-[auto_1fr] gap-8 lg:gap-16 items-stretch">
<div class="w-48 lg:w-72 xl:w-80 shrink-0">
<img src="https://hebbkx1anhila5yf.public.blob.vercel-storage.com/world-3i68QNWJwmO7W19ztZWbevAwJQHzYL.png" alt="Global network sphere" class="w-full h-full object-contain object-center" />
</div>
<div class="flex flex-col justify-center">
<h2 class="text-6xl md:text-7xl lg:text-[128px] font-display tracking-tight leading-[0.9]">Global work.<br/><span class="text-muted-foreground">Real impact.</span></h2>
<p class="mt-8 text-xl text-muted-foreground leading-relaxed max-w-lg">We've helped build and scale digital presence for brands across India, GCC, UK, and the US — delivering websites that don't just look good, but convert.</p>
</div>
</div>
</div>
<div class="grid lg:grid-cols-3 gap-6">
<!-- Map card -->
<div class="lg:col-span-2 relative p-8 lg:p-12 border border-foreground/10 bg-foreground/[0.02] overflow-hidden">
<div class="absolute inset-0 opacity-70">
<svg class="absolute inset-0 w-full h-full" style="pointer-events:none">
<line x1="10%" y1="10%" x2="30%" y2="10%" class="connecting-line" style="animation-delay:0s"></line>
<line x1="30%" y1="10%" x2="50%" y2="10%" class="connecting-line" style="animation-delay:0.15s"></line>
<line x1="50%" y1="10%" x2="70%" y2="10%" class="connecting-line" style="animation-delay:0.3s"></line>
<line x1="70%" y1="10%" x2="90%" y2="10%" class="connecting-line" style="animation-delay:0.45s"></line>
<line x1="90%" y1="10%" x2="10%" y2="35%" class="connecting-line" style="animation-delay:0.6s"></line>
<line x1="10%" y1="35%" x2="30%" y2="35%" class="connecting-line" style="animation-delay:0.75s"></line>
<line x1="30%" y1="35%" x2="50%" y2="35%" class="connecting-line" style="animation-delay:0.9s"></line>
<line x1="50%" y1="35%" x2="70%" y2="35%" class="connecting-line" style="animation-delay:1.05s"></line>
<line x1="70%" y1="35%" x2="90%" y2="35%" class="connecting-line" style="animation-delay:1.2s"></line>
<line x1="90%" y1="35%" x2="10%" y2="60%" class="connecting-line" style="animation-delay:1.35s"></line>
<line x1="10%" y1="60%" x2="30%" y2="60%" class="connecting-line" style="animation-delay:1.5s"></line>
<line x1="30%" y1="60%" x2="50%" y2="60%" class="connecting-line" style="animation-delay:1.65s"></line>
<line x1="50%" y1="60%" x2="70%" y2="60%" class="connecting-line" style="animation-delay:1.8s"></line>
<line x1="70%" y1="60%" x2="90%" y2="60%" class="connecting-line" style="animation-delay:1.95s"></line>
<line x1="90%" y1="60%" x2="10%" y2="85%" class="connecting-line" style="animation-delay:2.1s"></line>
<line x1="10%" y1="85%" x2="30%" y2="85%" class="connecting-line" style="animation-delay:2.25s"></line>
<line x1="30%" y1="85%" x2="50%" y2="85%" class="connecting-line" style="animation-delay:2.4s"></line>
<line x1="50%" y1="85%" x2="70%" y2="85%" class="connecting-line" style="animation-delay:2.55s"></line>
<line x1="70%" y1="85%" x2="90%" y2="85%" class="connecting-line" style="animation-delay:2.7s"></line>
</svg>
<!-- Pulsing dots -->
<div class="absolute w-1.5 h-1.5 rounded-full bg-[#eca8d6]" style="left:10%;top:10%;animation:pulse 2s ease-in-out 0s infinite"></div>
<div class="absolute w-1.5 h-1.5 rounded-full bg-[#eca8d6]" style="left:30%;top:10%;animation:pulse 2s ease-in-out 0.1s infinite"></div>
<div class="absolute w-1.5 h-1.5 rounded-full bg-[#eca8d6]" style="left:50%;top:10%;animation:pulse 2s ease-in-out 0.2s infinite"></div>
<div class="absolute w-1.5 h-1.5 rounded-full bg-[#eca8d6]" style="left:70%;top:10%;animation:pulse 2s ease-in-out 0.3s infinite"></div>
<div class="absolute w-1.5 h-1.5 rounded-full bg-[#eca8d6]" style="left:90%;top:10%;animation:pulse 2s ease-in-out 0.4s infinite"></div>
<div class="absolute w-1.5 h-1.5 rounded-full bg-[#eca8d6]" style="left:10%;top:35%;animation:pulse 2s ease-in-out 0.5s infinite"></div>
<div class="absolute w-1.5 h-1.5 rounded-full bg-[#eca8d6]" style="left:30%;top:35%;animation:pulse 2s ease-in-out 0.6s infinite"></div>
<div class="absolute w-1.5 h-1.5 rounded-full bg-[#eca8d6]" style="left:50%;top:35%;animation:pulse 2s ease-in-out 0.7s infinite"></div>
<div class="absolute w-1.5 h-1.5 rounded-full bg-[#eca8d6]" style="left:70%;top:35%;animation:pulse 2s ease-in-out 0.8s infinite"></div>
<div class="absolute w-1.5 h-1.5 rounded-full bg-[#eca8d6]" style="left:90%;top:35%;animation:pulse 2s ease-in-out 0.9s infinite"></div>
<div class="absolute w-1.5 h-1.5 rounded-full bg-[#eca8d6]" style="left:10%;top:60%;animation:pulse 2s ease-in-out 1s infinite"></div>
<div class="absolute w-1.5 h-1.5 rounded-full bg-[#eca8d6]" style="left:30%;top:60%;animation:pulse 2s ease-in-out 1.1s infinite"></div>
<div class="absolute w-1.5 h-1.5 rounded-full bg-[#eca8d6]" style="left:50%;top:60%;animation:pulse 2s ease-in-out 1.2s infinite"></div>
<div class="absolute w-1.5 h-1.5 rounded-full bg-[#eca8d6]" style="left:70%;top:60%;animation:pulse 2s ease-in-out 1.3s infinite"></div>
<div class="absolute w-1.5 h-1.5 rounded-full bg-[#eca8d6]" style="left:90%;top:60%;animation:pulse 2s ease-in-out 1.4s infinite"></div>
<div class="absolute w-1.5 h-1.5 rounded-full bg-[#eca8d6]" style="left:10%;top:85%;animation:pulse 2s ease-in-out 1.5s infinite"></div>
<div class="absolute w-1.5 h-1.5 rounded-full bg-[#eca8d6]" style="left:30%;top:85%;animation:pulse 2s ease-in-out 1.6s infinite"></div>
<div class="absolute w-1.5 h-1.5 rounded-full bg-[#eca8d6]" style="left:50%;top:85%;animation:pulse 2s ease-in-out 1.7s infinite"></div>
<div class="absolute w-1.5 h-1.5 rounded-full bg-[#eca8d6]" style="left:70%;top:85%;animation:pulse 2s ease-in-out 1.8s infinite"></div>
<div class="absolute w-1.5 h-1.5 rounded-full bg-[#eca8d6]" style="left:90%;top:85%;animation:pulse 2s ease-in-out 1.9s infinite"></div>
</div>
<div class="relative z-10">
<div class="flex items-baseline gap-2 mb-4">
<span class="text-8xl lg:text-[10rem] font-display leading-none">29</span>
<span class="text-2xl text-muted-foreground">regions</span>
</div>
<p class="text-muted-foreground max-w-md">Compute nodes distributed globally for maximum redundancy and minimum latency.</p>
</div>
</div>
<!-- Stats sidebar -->
<div class="flex flex-col gap-6">
<div class="p-8 border border-foreground/10 bg-foreground/[0.02]">
<span class="text-5xl lg:text-6xl font-display">99.99%</span>
<span class="block text-sm text-muted-foreground mt-2">Uptime SLA</span>
</div>
<div class="p-8 border border-foreground/10 bg-foreground/[0.02]">
<span class="text-5xl lg:text-6xl font-display"><50ms</span>
<span class="block text-sm text-muted-foreground mt-2">Global latency</span>
</div>
</div>
</div>
<!-- Region cards -->
<div class="mt-12 grid grid-cols-2 lg:grid-cols-4 gap-4">
<div class="p-6 border border-foreground/30 bg-foreground/[0.04]">
<div class="flex items-center gap-2 mb-3">
<span class="w-2 h-2 rounded-full bg-[#eca8d6]"></span>
<span class="text-xs font-mono text-muted-foreground uppercase tracking-wider">operational</span>
</div>
<span class="font-medium block mb-1">North America</span>
<span class="text-sm text-muted-foreground">12 nodes</span>
</div>
<div class="p-6 border border-foreground/10">
<div class="flex items-center gap-2 mb-3">
<span class="w-2 h-2 rounded-full bg-foreground/20"></span>
<span class="text-xs font-mono text-muted-foreground uppercase tracking-wider">operational</span>
</div>
<span class="font-medium block mb-1">Europe</span>
<span class="text-sm text-muted-foreground">8 nodes</span>
</div>
<div class="p-6 border border-foreground/10">
<div class="flex items-center gap-2 mb-3">
<span class="w-2 h-2 rounded-full bg-foreground/20"></span>
<span class="text-xs font-mono text-muted-foreground uppercase tracking-wider">operational</span>
</div>
<span class="font-medium block mb-1">Asia Pacific</span>
<span class="text-sm text-muted-foreground">6 nodes</span>
</div>
<div class="p-6 border border-foreground/10">
<div class="flex items-center gap-2 mb-3">
<span class="w-2 h-2 rounded-full bg-foreground/20"></span>
<span class="text-xs font-mono text-muted-foreground uppercase tracking-wider">operational</span>
</div>
<span class="font-medium block mb-1">South America</span>
<span class="text-sm text-muted-foreground">3 nodes</span>
</div>
</div>
</div>
</section>
<!-- ═══════════════════════════════════════════════════
REAL-TIME METRICS
═══════════════════════════════════════════════════ -->
<section class="relative py-32 lg:py-40 overflow-hidden">
<div class="relative z-10 max-w-[1400px] mx-auto px-6 lg:px-12">
<div class="grid lg:grid-cols-12 gap-8 mb-20 lg:mb-32">
<div class="lg:col-span-8 lg:col-start-1">
<div class="flex items-center gap-4 mb-6">
<span class="flex items-center gap-2 px-3 py-1 bg-[#eca8d6]/10 text-[#eca8d6] text-xs font-mono">
<span class="w-2 h-2 rounded-full bg-[#eca8d6] animate-pulse"></span>LIVE
</span>
</div>
<h2 class="text-6xl md:text-7xl lg:text-[140px] font-display tracking-tight leading-[0.95]">Real-time<br/><span class="text-muted-foreground">agent metrics.</span></h2>
</div>
</div>
<!-- Graph image -->
<div class="w-full mb-0">
<img src="https://hebbkx1anhila5yf.public.blob.vercel-storage.com/real-time-graph-INFmn3u0MlUwvNPynoIhwxtPaPjxM5.png" alt="" aria-hidden="true" class="w-full h-auto object-cover" />
</div>
<!-- Metric cards -->
<div class="grid lg:grid-cols-3 gap-6">
<div class="lg:col-span-1 bg-foreground/[0.02] border border-foreground/10 p-10 lg:p-14">
<div class="text-4xl md:text-5xl lg:text-6xl font-display tracking-tight mb-4 whitespace-nowrap overflow-hidden">
<div class="inline-flex items-baseline">
<span class="tabular-nums">147,293</span>
</div>
</div>
<div class="text-lg text-foreground mb-2">Tasks completed today</div>
<div class="text-sm text-muted-foreground font-mono">by 23,847 active agents</div>
</div>
<div class="bg-foreground/[0.02] border border-foreground/10 p-8 flex flex-col items-start justify-between gap-6">
<div class="w-full">
<div class="text-sm text-muted-foreground font-mono mb-2">across all regions</div>
<div class="text-base text-foreground mb-3">Availability</div>
</div>
<div class="text-3xl md:text-4xl lg:text-5xl font-display tracking-tight w-full">
<span class="tabular-nums">99</span><span class="text-muted-foreground">.99%</span>
</div>
</div>
<div class="bg-foreground/[0.02] border border-foreground/10 p-8 flex flex-col items-start justify-between gap-6">
<div class="w-full">
<div class="text-sm text-muted-foreground font-mono mb-2">p99 latency</div>
<div class="text-base text-foreground mb-3">Average execution</div>
</div>
<div class="text-3xl md:text-4xl lg:text-5xl font-display tracking-tight w-full">
<span class="text-muted-foreground"><</span><span class="tabular-nums">42</span><span class="text-muted-foreground">ms</span>
</div>
</div>
</div>
<!-- Model partners -->
<div class="mt-16 pt-8 border-t border-foreground/10 flex flex-wrap items-center gap-x-12 gap-y-4 text-sm font-mono text-muted-foreground">
<span>OpenAI GPT-4 Turbo</span>
<span>Anthropic Claude 3</span>
<span>Mistral Large</span>
<span>Llama 3</span>
<span class="text-foreground">+12 more models</span>
</div>
</div>
</section>
<!-- ═══════════════════════════════════════════════════
INTEGRATIONS
═══════════════════════════════════════════════════ -->
<section id="integrations" class="relative overflow-hidden">
<div class="relative z-10 pt-32 lg:pt-40 text-center">
<span class="inline-flex items-center gap-4 text-sm font-mono text-muted-foreground mb-8 justify-center"><span class="w-12 h-px bg-foreground/20"></span>Integrations<span class="w-12 h-px bg-foreground/20"></span></span>
<h2 class="text-6xl md:text-7xl lg:text-[128px] font-display tracking-tight leading-[0.9]">Connect<br/><span class="text-muted-foreground">everything.</span></h2>
<p class="mt-8 text-xl text-muted-foreground leading-relaxed max-w-lg mx-auto">Your agents connect to 100+ tools and services. They read, write, and act autonomously across your entire stack.</p>
</div>
<!-- Connection mesh full bleed -->
<div class="relative left-1/2 -translate-x-1/2 w-screen -mt-16">
<img src="https://hebbkx1anhila5yf.public.blob.vercel-storage.com/connection-KeJwWPQvn6l0a7C48tCARYtNEdC92H.png" alt="" aria-hidden="true" class="w-full h-auto object-cover" />
</div>
<div class="relative z-10 mt-0 lg:-mt-24 max-w-[1400px] mx-auto px-6 lg:px-12">
<div class="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4 mb-16">
<!-- OpenAI -->
<div class="group relative overflow-hidden p-6 lg:p-8 border border-foreground/10 hover:border-foreground/30">
<span class="absolute top-3 right-3 text-[10px] font-mono px-2 py-0.5 bg-foreground/10 text-muted-foreground">LLM</span>
<div class="w-10 h-10 mb-6 flex items-center justify-center text-foreground/60">
<svg viewBox="0 0 24 24" fill="currentColor" class="w-6 h-6"><path d="M22.282 9.821a5.985 5.985 0 0 0-.516-4.91 6.046 6.046 0 0 0-6.51-2.9A6.065 6.065 0 0 0 4.981 4.18a5.985 5.985 0 0 0-3.998 2.9 6.046 6.046 0 0 0 .743 7.097 5.98 5.98 0 0 0 .51 4.911 6.051 6.051 0 0 0 6.515 2.9A5.985 5.985 0 0 0 13.26 24a6.056 6.056 0 0 0 5.772-4.206 5.99 5.99 0 0 0 3.997-2.9 6.056 6.056 0 0 0-.747-7.073zM13.26 22.43a4.476 4.476 0 0 1-2.876-1.04l.141-.081 4.779-2.758a.795.795 0 0 0 .392-.681v-6.737l2.02 1.168a.071.071 0 0 1 .038.052v5.583a4.504 4.504 0 0 1-4.494 4.494zM3.6 18.304a4.47 4.47 0 0 1-.535-3.014l.142.085 4.783 2.759a.771.771 0 0 0 .78 0l5.843-3.369v2.332a.08.08 0 0 1-.033.062L9.74 19.95a4.5 4.5 0 0 1-6.14-1.646zM2.34 7.896a4.485 4.485 0 0 1 2.366-1.973V11.6a.766.766 0 0 0 .388.676l5.815 3.355-2.02 1.168a.076.076 0 0 1-.071 0l-4.83-2.786A4.504 4.504 0 0 1 2.34 7.896zm16.597 3.855l-5.843-3.372 2.02-1.163a.076.076 0 0 1 .071 0l4.83 2.786a4.49 4.49 0 0 1-.676 8.105v-5.678a.79.79 0 0 0-.402-.678zm2.01-3.023l-.141-.085-4.774-2.782a.776.776 0 0 0-.785 0L9.409 9.23V6.897a.066.066 0 0 1 .028-.061l4.83-2.787a4.5 4.5 0 0 1 6.68 4.66zm-12.64 4.135l-2.02-1.164a.08.08 0 0 1-.038-.057V6.075a4.5 4.5 0 0 1 7.375-3.453l-.142.08L8.704 5.46a.795.795 0 0 0-.393.681zm1.097-2.365l2.602-1.5 2.607 1.5v2.999l-2.597 1.5-2.607-1.5z"></path></svg>
</div>
<span class="font-medium block">OpenAI</span>
</div>
<!-- Anthropic -->
<div class="group relative overflow-hidden p-6 lg:p-8 border border-foreground/10 hover:border-foreground/30">
<span class="absolute top-3 right-3 text-[10px] font-mono px-2 py-0.5 bg-foreground/10 text-muted-foreground">LLM</span>
<div class="w-10 h-10 mb-6 flex items-center justify-center text-foreground/60">
<svg viewBox="0 0 24 24" fill="currentColor" class="w-6 h-6"><path d="M13.827 3.52h3.603L24 20.48h-3.603l-6.57-16.96zm-7.258 0h3.767L16.906 20.48h-3.674l-1.343-3.461H5.017l-1.344 3.46H0L6.57 3.522zm4.132 10.959L8.453 7.687 6.205 14.48H10.7z"></path></svg>
</div>
<span class="font-medium block">Anthropic</span>
</div>
<!-- Slack -->
<div class="group relative overflow-hidden p-6 lg:p-8 border border-foreground/10 hover:border-foreground/30">
<span class="absolute top-3 right-3 text-[10px] font-mono px-2 py-0.5 bg-foreground/10 text-muted-foreground">Comms</span>
<div class="w-10 h-10 mb-6 flex items-center justify-center text-foreground/60">
<svg viewBox="0 0 24 24" fill="currentColor" class="w-6 h-6"><path d="M5.042 15.165a2.528 2.528 0 0 1-2.52 2.523A2.528 2.528 0 0 1 0 15.165a2.527 2.527 0 0 1 2.522-2.52h2.52v2.52zm1.271 0a2.527 2.527 0 0 1 2.521-2.52 2.527 2.527 0 0 1 2.521 2.52v6.313A2.528 2.528 0 0 1 8.834 24a2.528 2.528 0 0 1-2.521-2.522v-6.313zM8.834 5.042a2.528 2.528 0 0 1-2.521-2.52A2.528 2.528 0 0 1 8.834 0a2.528 2.528 0 0 1 2.521 2.522v2.52H8.834zm0 1.271a2.528 2.528 0 0 1 2.521 2.521 2.528 2.528 0 0 1-2.521 2.521H2.522A2.528 2.528 0 0 1 0 8.834a2.528 2.528 0 0 1 2.522-2.521h6.312zm10.122 2.521a2.528 2.528 0 0 1 2.522-2.521A2.528 2.528 0 0 1 24 8.834a2.528 2.528 0 0 1-2.522 2.521h-2.522V8.834zm-1.268 0a2.528 2.528 0 0 1-2.523 2.521 2.527 2.527 0 0 1-2.52-2.521V2.522A2.527 2.527 0 0 1 15.165 0a2.528 2.528 0 0 1 2.523 2.522v6.312zm-2.523 10.122a2.528 2.528 0 0 1 2.523 2.522A2.528 2.528 0 0 1 15.165 24a2.527 2.527 0 0 1-2.52-2.522v-2.522h2.52zm0-1.268a2.527 2.527 0 0 1-2.52-2.523 2.526 2.526 0 0 1 2.52-2.52h6.313A2.527 2.527 0 0 1 24 15.165a2.528 2.528 0 0 1-2.522 2.523h-6.313z"></path></svg>
</div>
<span class="font-medium block">Slack</span>
</div>
<!-- GitHub -->
<div class="group relative overflow-hidden p-6 lg:p-8 border border-foreground/10 hover:border-foreground/30">
<span class="absolute top-3 right-3 text-[10px] font-mono px-2 py-0.5 bg-foreground/10 text-muted-foreground">Code</span>
<div class="w-10 h-10 mb-6 flex items-center justify-center text-foreground/60">
<svg viewBox="0 0 24 24" fill="currentColor" class="w-6 h-6"><path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"></path></svg>
</div>
<span class="font-medium block">GitHub</span>
</div>
<!-- Jira -->
<div class="group relative overflow-hidden p-6 lg:p-8 border border-foreground/10 hover:border-foreground/30">
<span class="absolute top-3 right-3 text-[10px] font-mono px-2 py-0.5 bg-foreground/10 text-muted-foreground">PM</span>
<div class="w-10 h-10 mb-6 flex items-center justify-center text-foreground/60">
<svg viewBox="0 0 24 24" fill="currentColor" class="w-6 h-6"><path d="M11.571 11.513H0a5.218 5.218 0 0 0 5.232 5.215h2.13v2.057A5.215 5.215 0 0 0 12.575 24V12.518a1.005 1.005 0 0 0-1.004-1.005zm5.723-5.756H5.736a5.215 5.215 0 0 0 5.215 5.214h2.129v2.058a5.218 5.218 0 0 0 5.215 5.214V6.762a1.005 1.005 0 0 0-1.001-1.005zM23.013 0H11.455a5.215 5.215 0 0 0 5.215 5.215h2.129v2.057A5.215 5.215 0 0 0 24.017 12.49V1.005A1.005 1.005 0 0 0 23.013 0z"></path></svg>
</div>
<span class="font-medium block">Jira</span>
</div>
<!-- AWS S3 -->
<div class="group relative overflow-hidden p-6 lg:p-8 border border-foreground/10 hover:border-foreground/30">
<span class="absolute top-3 right-3 text-[10px] font-mono px-2 py-0.5 bg-foreground/10 text-muted-foreground">Storage</span>
<div class="w-10 h-10 mb-6 flex items-center justify-center text-foreground/60">
<svg viewBox="0 0 24 24" fill="currentColor" class="w-6 h-6"><path d="M11.87 0l.36.21v23.18l-.36.21-9.56-4.54V4.54L11.87 0zm.79.21l9.56 4.54v14.5l-9.56 4.54V.21z"></path></svg>
</div>
<span class="font-medium block">AWS S3</span>
</div>
<!-- Google Drive -->
<div class="group relative overflow-hidden p-6 lg:p-8 border border-foreground/10 hover:border-foreground/30">
<span class="absolute top-3 right-3 text-[10px] font-mono px-2 py-0.5 bg-foreground/10 text-muted-foreground">Docs</span>
<div class="w-10 h-10 mb-6 flex items-center justify-center text-foreground/60">
<svg viewBox="0 0 24 24" fill="currentColor" class="w-6 h-6"><path d="M6.28 0l5.76 9.97H0L6.28 0zm11.44 0L24 9.97h-5.73L12.52 0h5.2zm1.16 10.82L24 19.94 17.72 24l-3.21-5.56 4.37-7.62zm-9.96.12L12 13.5l3.08-2.56H8.92zm-4.13 0L0 19.94l6.28 4.06 6.72-11.64-3.21-2.44zM12 14.06l-5.52 9.57h11.04L12 14.06z"></path></svg>
</div>
<span class="font-medium block">Google Drive</span>
</div>
<!-- Salesforce -->
<div class="group relative overflow-hidden p-6 lg:p-8 border border-foreground/10 hover:border-foreground/30">
<span class="absolute top-3 right-3 text-[10px] font-mono px-2 py-0.5 bg-foreground/10 text-muted-foreground">CRM</span>
<div class="w-10 h-10 mb-6 flex items-center justify-center text-foreground/60">
<svg viewBox="0 0 24 24" fill="currentColor" class="w-6 h-6"><path d="M9.765 3.782a4.31 4.31 0 0 1 3.104-1.314 4.35 4.35 0 0 1 3.91 2.43 3.304 3.304 0 0 1 1.38-.301 3.33 3.33 0 0 1 3.327 3.33c0 .27-.033.53-.092.78a2.978 2.978 0 0 1-.485 5.88H6.58a3.644 3.644 0 0 1-.573-7.236 4.32 4.32 0 0 1 3.758-3.57z"></path></svg>
</div>
<span class="font-medium block">Salesforce</span>
</div>
<!-- HubSpot -->
<div class="group relative overflow-hidden p-6 lg:p-8 border border-foreground/10 hover:border-foreground/30">
<span class="absolute top-3 right-3 text-[10px] font-mono px-2 py-0.5 bg-foreground/10 text-muted-foreground">Marketing</span>
<div class="w-10 h-10 mb-6 flex items-center justify-center text-foreground/60">
<svg viewBox="0 0 24 24" fill="currentColor" class="w-6 h-6"><path d="M22.175 11.282a4.258 4.258 0 0 0-3.651-4.205V5.047a1.558 1.558 0 0 0 .898-1.406V3.6a1.561 1.561 0 0 0-3.123 0v.041c0 .626.372 1.166.898 1.406V7.08a4.239 4.239 0 0 0-2.027.78L8.916 4.28a1.856 1.856 0 0 0 .065-.47A1.855 1.855 0 1 0 7.125 5.66l5.92 3.51a4.267 4.267 0 0 0 .44 5.51l-1.75 1.75a1.404 1.404 0 0 0-.407-.062 1.42 1.42 0 1 0 1.42 1.42 1.404 1.404 0 0 0-.062-.407l1.73-1.73a4.27 4.27 0 1 0 7.759-4.369z"></path></svg>
</div>
<span class="font-medium block">HubSpot</span>
</div>
<!-- Zapier -->
<div class="group relative overflow-hidden p-6 lg:p-8 border border-foreground/10 hover:border-foreground/30">
<span class="absolute top-3 right-3 text-[10px] font-mono px-2 py-0.5 bg-foreground/10 text-muted-foreground">Auto</span>
<div class="w-10 h-10 mb-6 flex items-center justify-center text-foreground/60">
<svg viewBox="0 0 24 24" fill="currentColor" class="w-6 h-6"><path d="M14.974 10.61a5.978 5.978 0 0 1-.551 2.507H24v-5.01H14.422a5.978 5.978 0 0 1 .552 2.503zm-5.95 0a5.978 5.978 0 0 1 .552-2.503H0v5.01h9.576a5.978 5.978 0 0 1-.551-2.507zM12 16.56a5.966 5.966 0 0 1-2.505-.55v9.564h5.01V16.01A5.966 5.966 0 0 1 12 16.56zm0-11.9a5.97 5.97 0 0 1 2.505.55V-.43h-5.01v5.643A5.97 5.97 0 0 1 12 4.66z"></path></svg>
</div>
<span class="font-medium block">Zapier</span>
</div>
<!-- Snowflake -->
<div class="group relative overflow-hidden p-6 lg:p-8 border border-foreground/10 hover:border-foreground/30">
<span class="absolute top-3 right-3 text-[10px] font-mono px-2 py-0.5 bg-foreground/10 text-muted-foreground">Data</span>
<div class="w-10 h-10 mb-6 flex items-center justify-center text-foreground/60">
<svg viewBox="0 0 24 24" fill="currentColor" class="w-6 h-6"><circle cx="12" cy="12" r="3"/></svg>
</div>
<span class="font-medium block">Snowflake</span>
</div>
<!-- Stripe -->
<div class="group relative overflow-hidden p-6 lg:p-8 border border-foreground/10 hover:border-foreground/30">
<span class="absolute top-3 right-3 text-[10px] font-mono px-2 py-0.5 bg-foreground/10 text-muted-foreground">Payments</span>
<div class="w-10 h-10 mb-6 flex items-center justify-center text-foreground/60">
<svg viewBox="0 0 24 24" fill="currentColor" class="w-6 h-6"><path d="M13.976 9.15c-2.172-.806-3.356-1.426-3.356-2.409 0-.831.683-1.305 1.901-1.305 2.227 0 4.515.858 6.09 1.631l.89-5.494C18.252.975 15.697 0 12.165 0 9.667 0 7.589.654 6.104 1.872 4.56 3.147 3.757 4.992 3.757 7.218c0 4.039 2.467 5.76 6.476 7.219 2.585.92 3.445 1.574 3.445 2.583 0 .98-.84 1.545-2.354 1.545-1.875 0-4.965-.921-6.99-2.109l-.9 5.555C5.175 22.99 8.385 24 11.714 24c2.641 0 4.843-.624 6.328-1.813 1.664-1.305 2.525-3.236 2.525-5.732 0-4.128-2.524-5.851-6.594-7.305h.003z"></path></svg>
</div>
<span class="font-medium block">Stripe</span>
</div>
</div>
<!-- Integration stats -->
<div class="flex flex-wrap items-center justify-between gap-8 pt-12 border-t border-foreground/10 pb-32 lg:pb-40">
<div class="flex flex-wrap gap-12">
<div class="flex items-baseline gap-3"><span class="text-3xl font-display">100+</span><span class="text-sm text-muted-foreground">Integrations</span></div>
<div class="flex items-baseline gap-3"><span class="text-3xl font-display">OAuth</span><span class="text-sm text-muted-foreground">Auth built-in</span></div>
<div class="flex items-baseline gap-3"><span class="text-3xl font-display">Webhooks</span><span class="text-sm text-muted-foreground">Real-time sync</span></div>
</div>
<a href="#" class="group inline-flex items-center gap-2 text-sm font-mono text-muted-foreground hover:text-foreground transition-colors">View all integrations<span class="group-hover:translate-x-1 transition-transform">→</span></a>
</div>
</div>
</section>
<!-- ═══════════════════════════════════════════════════
SECURITY
═══════════════════════════════════════════════════ -->
<section id="security" class="relative py-32 lg:py-40 overflow-hidden">
<div class="max-w-[1400px] mx-auto px-6 lg:px-12">
<div class="mb-20">
<span class="inline-flex items-center gap-4 text-sm font-mono text-muted-foreground mb-8"><span class="w-12 h-px bg-foreground/20"></span>Security</span>
<h2 class="text-6xl md:text-7xl lg:text-[128px] font-display tracking-tight leading-[0.9] mb-12">Autonomous,<br/><span class="text-muted-foreground">not uncontrolled.</span></h2>
<p class="text-xl text-muted-foreground leading-relaxed max-w-2xl">We build high-performance websites and marketing systems that operate efficiently — without losing control. From secure infrastructure to continuous maintenance and real-time support, every part of your digital setup is managed with precision. You get performance, without the risk of things running off track.</p>
</div>
<div class="grid lg:grid-cols-12 gap-6">
<div class="lg:col-span-7 relative p-8 lg:p-12 border border-foreground/10 min-h-[400px] overflow-hidden">
<div class="absolute inset-0 pointer-events-none items-center justify-end hidden lg:flex">
<img src="https://v0-compute-11.vercel.app/images/isolated.jpg" alt="Isolated execution" class="absolute h-3/4 w-3/4 object-contain object-right" style="opacity:0.85" />
</div>
<div class="relative z-10">
<span class="font-mono text-sm text-muted-foreground">Active protection</span>
<div class="mt-8">
<span class="text-7xl lg:text-8xl font-display">0</span>
<span class="block text-muted-foreground mt-2">Security incidents this year</span>
</div>
</div>
<div class="absolute bottom-8 left-8 right-8 flex flex-wrap gap-2">
<span class="px-3 py-1 border border-foreground/10 text-xs font-mono text-muted-foreground">SOC 2</span>
<span class="px-3 py-1 border border-foreground/10 text-xs font-mono text-muted-foreground">ISO 27001</span>
<span class="px-3 py-1 border border-foreground/10 text-xs font-mono text-muted-foreground">HIPAA</span>
<span class="px-3 py-1 border border-foreground/10 text-xs font-mono text-muted-foreground">GDPR</span>
</div>
</div>
<div class="lg:col-span-5 flex flex-col gap-4">
<div class="p-6 border border-foreground/30 bg-foreground/[0.04]">
<div class="flex items-start gap-4">
<div class="shrink-0 w-10 h-10 flex items-center justify-center border border-foreground bg-foreground text-background">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z"></path></svg>
</div>
<div><h3 class="font-medium mb-1">Isolated execution</h3><p class="text-sm text-muted-foreground">Each agent runs in its own secure sandbox.</p></div>
</div>
</div>
<div class="p-6 border border-foreground/10">
<div class="flex items-start gap-4">
<div class="shrink-0 w-10 h-10 flex items-center justify-center border border-foreground/20">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect width="18" height="11" x="3" y="11" rx="2" ry="2"></rect><path d="M7 11V7a5 5 0 0 1 10 0v4"></path></svg>
</div>
<div><h3 class="font-medium mb-1">Encrypted memory</h3><p class="text-sm text-muted-foreground">Data encrypted at rest and in transit.</p></div>
</div>
</div>
<div class="p-6 border border-foreground/10">
<div class="flex items-start gap-4">
<div class="shrink-0 w-10 h-10 flex items-center justify-center border border-foreground/20">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0"></path><circle cx="12" cy="12" r="3"></circle></svg>
</div>
<div><h3 class="font-medium mb-1">Full audit trails</h3><p class="text-sm text-muted-foreground">Every action logged and inspectable.</p></div>
</div>
</div>
<div class="p-6 border border-foreground/10">
<div class="flex items-start gap-4">
<div class="shrink-0 w-10 h-10 flex items-center justify-center border border-foreground/20">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"></path><path d="M14 2v4a2 2 0 0 0 2 2h4"></path><path d="m9 15 2 2 4-4"></path></svg>
</div>
<div><h3 class="font-medium mb-1">Permission boundaries</h3><p class="text-sm text-muted-foreground">Principle of least privilege by design.</p></div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ═══════════════════════════════════════════════════
DEVELOPER SDK
═══════════════════════════════════════════════════ -->
<section id="developers" class="relative py-24 lg:py-32 overflow-hidden">
<div class="absolute bottom-0 right-0 w-[55%] h-[85%] pointer-events-none">
<img src="https://hebbkx1anhila5yf.public.blob.vercel-storage.com/Upscaled%20Image%20%2813%29-OQ2DiR3ElVsUg8kTvTL1kC5A3Q6maM.png" alt="" aria-hidden="true" class="w-full h-full object-cover object-left-top" />
<div class="absolute inset-0 bg-gradient-to-r from-background via-background/60 to-transparent"></div>
<div class="absolute inset-0 bg-gradient-to-b from-background via-transparent to-transparent"></div>
</div>
<div class="relative z-10 max-w-[1400px] mx-auto px-6 lg:px-12">
<div class="mb-16">
<span class="inline-flex items-center gap-3 text-sm font-mono text-muted-foreground mb-6"><span class="w-8 h-px bg-foreground/30"></span>Developer SDK</span>
<h2 class="text-6xl md:text-7xl lg:text-[128px] font-display tracking-tight leading-[0.9]">Build your website.<br/><span class="text-muted-foreground">Or let us handle everything.</span></h2>
</div>
<div class="max-w-[50%]">
<p class="text-xl text-muted-foreground mb-12 leading-relaxed max-w-md">A flexible initiative built for founders, freelancers, and growing businesses — so you can get started without being blocked by budget or complexity. Turn your idea into something real, fast.</p>
<div class="grid grid-cols-2 gap-6">
<div><h3 class="font-medium mb-1">01 — Tell us your idea</h3><p class="text-sm text-muted-foreground">Share your vision and requirements. We break it down into a clear structure and execution plan.</p></div>
<div><h3 class="font-medium mb-1">02 — We create your draft</h3><p class="text-sm text-muted-foreground">We design and build an initial working version so you can see exactly how it looks before committing.</p></div>
<div><h3 class="font-medium mb-1">03 — Move forward your way</h3><p class="text-sm text-muted-foreground">Continue with full development, upgrade with advanced features, or launch with a basic version.</p></div>
<div><h3 class="font-medium mb-1">You bring the idea</h3><p class="text-sm text-muted-foreground">We handle the execution. From your first concept to a live website, we simplify the entire process.</p></div>
</div>
</div>
</div>
</section>
<!-- ═══════════════════════════════════════════════════
TESTIMONIALS
═══════════════════════════════════════════════════ -->
<section class="relative py-32 lg:py-40 bg-foreground text-background overflow-hidden">
<div class="relative z-10 max-w-[1400px] mx-auto px-6 lg:px-12">
<div class="flex items-center justify-between mb-20">
<div>
<span class="inline-flex items-center gap-3 text-sm font-mono text-background/40 mb-4"><span class="w-12 h-px bg-background/20"></span>Testimonials</span>
<h2 class="text-4xl lg:text-5xl font-display">Trusted by teams<span class="text-background/40"> worldwide.</span></h2>
</div>
<div class="hidden lg:flex items-center gap-2">
<button class="p-4 border border-background/20 hover:bg-background/10 transition-colors">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m12 19-7-7 7-7"></path><path d="M19 12H5"></path></svg>
</button>
<button class="p-4 border border-background/20 hover:bg-background/10 transition-colors">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12h14"></path><path d="m12 5 7 7-7 7"></path></svg>
</button>
</div>
</div>
<div class="grid lg:grid-cols-12 gap-12 lg:gap-20">
<div class="lg:col-span-7 relative">
<span class="absolute -left-4 -top-8 text-[200px] font-display text-background/5 leading-none select-none">“</span>
<blockquote class="text-3xl lg:text-4xl xl:text-5xl font-display leading-[1.2] tracking-tight animate-fadeSlideIn">Our agents handle 80% of our customer support tickets autonomously. The ROI was immediate.</blockquote>
<div class="mt-12 flex items-center gap-6">
<div class="w-14 h-14 rounded-full bg-background/10 flex items-center justify-center"><span class="font-display text-xl">S</span></div>
<div>
<p class="text-lg font-medium">Sarah Chen</p>
<p class="text-background/60">CTO, Meridian Labs</p>
</div>
</div>
</div>
<div class="lg:col-span-5 flex flex-col justify-center gap-6">
<div class="p-10 border border-background/20 bg-background/5 animate-fadeSlideIn">
<span class="text-7xl lg:text-8xl font-display block mb-4">96%</span>
<span class="text-lg text-background/60">Ticket resolution</span>
</div>
<!-- Progress dots -->
<div class="flex gap-2">
<button class="flex-1 h-1 bg-background/20 overflow-hidden"><div class="h-full bg-background animate-progress"></div></button>
<button class="flex-1 h-1 bg-background/20 overflow-hidden"><div class="h-full bg-background w-0"></div></button>
<button class="flex-1 h-1 bg-background/20 overflow-hidden"><div class="h-full bg-background w-0"></div></button>
<button class="flex-1 h-1 bg-background/20 overflow-hidden"><div class="h-full bg-background w-0"></div></button>
</div>
<!-- Featured companies -->
<div class="mt-4 pt-6 border-t border-background/10">
<span class="text-xs font-mono text-background/30 uppercase tracking-widest block mb-4">Featured companies</span>
<div class="flex flex-wrap gap-3">
<button class="px-4 py-2 text-sm border border-background/40 text-background">Meridian Labs</button>
<button class="px-4 py-2 text-sm border border-background/10 text-background/40 hover:border-background/30">Flux Systems</button>
<button class="px-4 py-2 text-sm border border-background/10 text-background/40 hover:border-background/30">Beacon AI</button>
<button class="px-4 py-2 text-sm border border-background/10 text-background/40 hover:border-background/30">Prism Analytics</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ═══════════════════════════════════════════════════
PRICING
═══════════════════════════════════════════════════ -->
<section id="pricing" class="relative py-32 lg:py-40">
<div class="max-w-[1400px] mx-auto px-6 lg:px-12">
<div class="grid lg:grid-cols-12 gap-8 mb-20">
<div class="lg:col-span-7">
<span class="inline-flex items-center gap-3 text-sm font-mono text-muted-foreground mb-8"><span class="w-12 h-px bg-foreground/30"></span>Pricing</span>
<h2 class="text-6xl md:text-7xl lg:text-[128px] font-display tracking-tight leading-[0.9]">Pay for<br/><span class="text-stroke">results.</span></h2>
</div>
<div class="lg:col-span-5 relative p-0 h-96 lg:h-auto">
<div class="absolute inset-0 pointer-events-none">
<img src="https://v0-compute-11.vercel.app/images/whale.png" alt="Organic whale" class="w-full h-full object-contain object-center" />
</div>
</div>
</div>
<div class="relative">
<div class="grid lg:grid-cols-3 gap-4 lg:gap-0">
<!-- Explorer -->
<div class="relative bg-background border border-foreground/10 lg:first:-mr-2 lg:last:-ml-2">
<div class="p-8 lg:p-10">
<div class="mb-8 pb-8 border-b border-foreground/10">
<span class="font-mono text-xs text-muted-foreground">01</span>
<h3 class="text-2xl lg:text-3xl font-display mt-2">Explorer</h3>
<p class="text-sm text-muted-foreground mt-2">For tinkering and small automations</p>
</div>
<div class="mb-8">
<div class="flex items-baseline gap-2">
<span class="text-5xl lg:text-6xl font-display">$0</span>
<span class="text-muted-foreground text-sm">/month</span>
</div>
</div>
<ul class="space-y-3 mb-10">
<li class="flex items-start gap-3"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#eca8d6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="mt-0.5 shrink-0"><path d="M20 6 9 17l-5-5"></path></svg><span class="text-sm text-muted-foreground">3 concurrent agents</span></li>
<li class="flex items-start gap-3"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#eca8d6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="mt-0.5 shrink-0"><path d="M20 6 9 17l-5-5"></path></svg><span class="text-sm text-muted-foreground">1,000 tasks/month</span></li>
<li class="flex items-start gap-3"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#eca8d6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="mt-0.5 shrink-0"><path d="M20 6 9 17l-5-5"></path></svg><span class="text-sm text-muted-foreground">Community support</span></li>
<li class="flex items-start gap-3"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#eca8d6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="mt-0.5 shrink-0"><path d="M20 6 9 17l-5-5"></path></svg><span class="text-sm text-muted-foreground">Basic logging</span></li>
<li class="flex items-start gap-3"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#eca8d6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="mt-0.5 shrink-0"><path d="M20 6 9 17l-5-5"></path></svg><span class="text-sm text-muted-foreground">Public integrations</span></li>
</ul>
<button class="w-full py-4 flex items-center justify-center gap-2 text-sm font-medium border border-foreground/20 text-foreground hover:border-foreground hover:bg-foreground/5 group">Start free<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="transition-transform group-hover:translate-x-1"><path d="M5 12h14"></path><path d="m12 5 7 7-7 7"></path></svg></button>
</div>
</div>
<!-- Builder (Most Popular) -->
<div class="relative bg-background border border-foreground lg:-mx-2 lg:z-10 lg:scale-105">
<div class="absolute -top-4 left-8 right-8 flex justify-center">
<span class="inline-flex items-center gap-2 px-4 py-2 bg-foreground text-background text-xs font-mono uppercase tracking-widest">
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z"></path></svg>
Most Popular
</span>
</div>
<div class="p-8 lg:p-10">
<div class="mb-8 pb-8 border-b border-foreground/10">
<span class="font-mono text-xs text-muted-foreground">02</span>
<h3 class="text-2xl lg:text-3xl font-display mt-2">Builder</h3>
<p class="text-sm text-muted-foreground mt-2">For teams shipping with agents</p>
</div>
<div class="mb-8">
<div class="flex items-baseline gap-2">
<span class="text-5xl lg:text-6xl font-display">$45</span>
<span class="text-muted-foreground text-sm">/month</span>
</div>
<p class="text-xs text-muted-foreground mt-2 font-mono">billed annually</p>
</div>
<ul class="space-y-3 mb-10">
<li class="flex items-start gap-3"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#eca8d6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="mt-0.5 shrink-0"><path d="M20 6 9 17l-5-5"></path></svg><span class="text-sm text-muted-foreground">25 concurrent agents</span></li>
<li class="flex items-start gap-3"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#eca8d6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="mt-0.5 shrink-0"><path d="M20 6 9 17l-5-5"></path></svg><span class="text-sm text-muted-foreground">50,000 tasks/month</span></li>
<li class="flex items-start gap-3"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#eca8d6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="mt-0.5 shrink-0"><path d="M20 6 9 17l-5-5"></path></svg><span class="text-sm text-muted-foreground">Priority support</span></li>
<li class="flex items-start gap-3"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#eca8d6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="mt-0.5 shrink-0"><path d="M20 6 9 17l-5-5"></path></svg><span class="text-sm text-muted-foreground">Full audit trails</span></li>
<li class="flex items-start gap-3"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#eca8d6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="mt-0.5 shrink-0"><path d="M20 6 9 17l-5-5"></path></svg><span class="text-sm text-muted-foreground">Private integrations</span></li>
<li class="flex items-start gap-3"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#eca8d6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="mt-0.5 shrink-0"><path d="M20 6 9 17l-5-5"></path></svg><span class="text-sm text-muted-foreground">Team workspaces</span></li>
<li class="flex items-start gap-3"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#eca8d6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="mt-0.5 shrink-0"><path d="M20 6 9 17l-5-5"></path></svg><span class="text-sm text-muted-foreground">Custom agent roles</span></li>
</ul>
<button class="w-full py-4 flex items-center justify-center gap-2 text-sm font-medium bg-foreground text-background hover:bg-foreground/90 group">Start trial<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="transition-transform group-hover:translate-x-1"><path d="M5 12h14"></path><path d="m12 5 7 7-7 7"></path></svg></button>
</div>
</div>
<!-- Scale -->
<div class="relative bg-background border border-foreground/10 lg:first:-mr-2 lg:last:-ml-2">
<div class="p-8 lg:p-10">
<div class="mb-8 pb-8 border-b border-foreground/10">
<span class="font-mono text-xs text-muted-foreground">03</span>
<h3 class="text-2xl lg:text-3xl font-display mt-2">Scale</h3>
<p class="text-sm text-muted-foreground mt-2">For agent-first organizations</p>
</div>
<div class="mb-8"><span class="text-4xl font-display">Custom</span></div>
<ul class="space-y-3 mb-10">
<li class="flex items-start gap-3"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#eca8d6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="mt-0.5 shrink-0"><path d="M20 6 9 17l-5-5"></path></svg><span class="text-sm text-muted-foreground">Unlimited agents</span></li>
<li class="flex items-start gap-3"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#eca8d6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="mt-0.5 shrink-0"><path d="M20 6 9 17l-5-5"></path></svg><span class="text-sm text-muted-foreground">Unlimited tasks</span></li>
<li class="flex items-start gap-3"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#eca8d6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="mt-0.5 shrink-0"><path d="M20 6 9 17l-5-5"></path></svg><span class="text-sm text-muted-foreground">24/7 dedicated support</span></li>
<li class="flex items-start gap-3"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#eca8d6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="mt-0.5 shrink-0"><path d="M20 6 9 17l-5-5"></path></svg><span class="text-sm text-muted-foreground">On-premise deployment</span></li>
<li class="flex items-start gap-3"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#eca8d6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="mt-0.5 shrink-0"><path d="M20 6 9 17l-5-5"></path></svg><span class="text-sm text-muted-foreground">SLA guarantee</span></li>
<li class="flex items-start gap-3"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#eca8d6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="mt-0.5 shrink-0"><path d="M20 6 9 17l-5-5"></path></svg><span class="text-sm text-muted-foreground">Custom LLM routing</span></li>
<li class="flex items-start gap-3"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#eca8d6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="mt-0.5 shrink-0"><path d="M20 6 9 17l-5-5"></path></svg><span class="text-sm text-muted-foreground">Advanced security</span></li>
<li class="flex items-start gap-3"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#eca8d6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="mt-0.5 shrink-0"><path d="M20 6 9 17l-5-5"></path></svg><span class="text-sm text-muted-foreground">Dedicated compute</span></li>
</ul>
<button class="w-full py-4 flex items-center justify-center gap-2 text-sm font-medium border border-foreground/20 text-foreground hover:border-foreground hover:bg-foreground/5 group">Contact sales<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="transition-transform group-hover:translate-x-1"><path d="M5 12h14"></path><path d="m12 5 7 7-7 7"></path></svg></button>
</div>
</div>
</div>
</div>
<!-- Pricing footer badges -->
<div class="mt-20 flex flex-col lg:flex-row lg:items-center lg:justify-between gap-8 pt-12 border-t border-foreground/10">
<div class="flex flex-wrap gap-6 text-sm text-muted-foreground">
<span class="flex items-center gap-2"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#eca8d6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"></path></svg>Encrypted execution</span>
<span class="flex items-center gap-2"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#eca8d6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"></path></svg>Full audit logs</span>
<span class="flex items-center gap-2"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="#eca8d6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"></path></svg>Multi-model routing</span>
</div>
<a href="#" class="text-sm underline underline-offset-4 hover:text-foreground transition-colors">Compare all features</a>
</div>
</div>
</section>
<!-- ═══════════════════════════════════════════════════
CTA – Ready to delegate
═══════════════════════════════════════════════════ -->
<section class="relative py-24 lg:py-32 overflow-hidden">
<div class="max-w-[1400px] mx-auto px-6 lg:px-12">
<div class="relative border border-foreground">
<div class="relative z-10 px-8 lg:px-16 py-16 lg:py-24">
<div class="flex flex-col lg:flex-row items-center justify-between gap-12">
<div class="flex-1">
<h2 class="text-6xl md:text-7xl lg:text-[72px] font-display tracking-tight mb-8 leading-[0.95]">Ready to delegate<br/>to DBK Agents?</h2>
<p class="text-xl text-muted-foreground mb-12 leading-relaxed max-w-xl">Join businesses scaling with DBK Digitals. Launch your next digital project in days, not months.</p>
<div class="flex flex-col sm:flex-row items-start gap-4">
<button class="inline-flex items-center justify-center gap-2 whitespace-nowrap font-medium bg-foreground hover:bg-foreground/90 text-background px-8 h-14 text-base rounded-full group">Start your project<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="ml-2 transition-transform group-hover:translate-x-1"><path d="M5 12h14"></path><path d="m12 5 7 7-7 7"></path></svg></button>
<button class="inline-flex items-center justify-center gap-2 whitespace-nowrap font-medium border border-foreground/20 hover:bg-foreground/5 h-14 px-8 text-base rounded-full">Book a demo</button>
</div>
<p class="text-sm text-muted-foreground mt-8 font-mono">Free consultation with DBK Digitals</p>
</div>
<div class="hidden lg:flex items-end justify-center w-[600px] h-[650px] -mr-16">
<img src="https://v0-compute-11.vercel.app/images/bridge.png" alt="Two trees connected by glowing arcs" class="w-full h-full object-contain object-bottom" />
</div>
</div>
</div>
<div class="absolute top-0 right-0 w-32 h-32 border-b border-l border-foreground/10"></div>
<div class="absolute bottom-0 left-0 w-32 h-32 border-t border-r border-foreground/10"></div>
</div>
</div>
</section>
<!-- ═══════════════════════════════════════════════════
FOOTER
═══════════════════════════════════════════════════ -->
<footer class="relative bg-black">
<!-- Bioluminescent landscape -->
<div class="relative w-full h-[340px] md:h-[420px] overflow-hidden">
<img src="https://hebbkx1anhila5yf.public.blob.vercel-storage.com/Upscaled%20Image%20%2810%29-UnDKstODkIENp5xqTYUEpt0Sm8tNOw.png" alt="Bioluminescent landscape" class="w-full h-full object-cover object-center" />
<div class="absolute inset-0 bg-gradient-to-b from-transparent via-transparent to-black"></div>
<div class="absolute inset-0 bg-gradient-to-r from-black/40 via-transparent to-black/40"></div>
</div>
<div class="relative z-10 max-w-[1400px] mx-auto px-6 lg:px-12">
<div class="py-16 lg:py-20">
<div class="grid grid-cols-2 md:grid-cols-6 gap-12 lg:gap-8">
<div class="col-span-2">
<a href="#" class="inline-flex items-center gap-2 mb-6">
<span class="text-2xl font-display text-white">DBK</span>