-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
825 lines (767 loc) · 24.6 KB
/
index.html
File metadata and controls
825 lines (767 loc) · 24.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>EvManip — Advanced Robotic Manipulation</title>
<link href="https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Inter:wght@400;500&display=swap" rel="stylesheet"/>
<style>
:root {
--bg: #FEFDFB;
--bg-off: #F3F2ED;
--text: #0C0C0A;
--muted: #6B6A62;
--border: #CCCBC3;
--yellow: #F2C94C;
--yellow-bg:#FDF8DC;
--shadow: 3px 3px 0 #0C0C0A;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
background: var(--bg);
color: var(--text);
font-family: 'Inter', sans-serif;
font-size: 15px;
line-height: 1.6;
overflow-x: hidden;
}
/* ── NAV ── */
nav {
position: fixed; top: 0; left: 0; right: 0;
z-index: 100;
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 64px;
background: var(--bg);
border-bottom: 1px solid var(--border);
}
.nav-logo {
font-family: 'Space Mono', monospace;
font-size: 15px;
font-weight: 700;
color: var(--text);
text-decoration: none;
letter-spacing: -0.5px;
}
.nav-links {
display: flex;
gap: 40px;
list-style: none;
}
.nav-links a {
font-family: 'Space Mono', monospace;
font-size: 11px;
letter-spacing: 0.3px;
color: var(--muted);
text-decoration: none;
transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
font-family: 'Space Mono', monospace;
font-size: 11px;
font-weight: 700;
color: var(--text);
text-decoration: none;
border: 1px solid var(--text);
padding: 8px 20px;
transition: all 0.15s;
}
.nav-cta:hover { background: var(--text); color: var(--bg); }
/* ── HERO ── */
.hero {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 0 64px 80px;
border-bottom: 1px solid var(--border);
overflow: hidden;
position: relative;
}
.hero-eyebrow {
font-family: 'Space Mono', monospace;
font-size: 11px;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--muted);
margin-bottom: 36px;
opacity: 0;
animation: fadeUp 0.6s 0.2s forwards;
}
.hero-title {
font-family: 'Space Mono', monospace;
font-size: clamp(40px, 5.5vw, 80px);
font-weight: 700;
line-height: 1.05;
letter-spacing: -2.5px;
margin-bottom: 40px;
max-width: 920px;
opacity: 0;
animation: fadeUp 0.7s 0.35s forwards;
}
.hero-rule {
border: none;
border-top: 1px solid var(--border);
margin-bottom: 40px;
opacity: 0;
animation: fadeUp 0.5s 0.55s forwards;
}
.hero-bottom {
display: flex;
justify-content: space-between;
align-items: flex-end;
gap: 48px;
opacity: 0;
animation: fadeUp 0.6s 0.65s forwards;
}
.hero-desc {
font-size: 15px;
line-height: 1.8;
color: var(--muted);
max-width: 440px;
}
.hero-actions {
display: flex;
gap: 10px;
flex-shrink: 0;
}
/* ── BUTTONS ── */
.btn {
font-family: 'Space Mono', monospace;
font-size: 11px;
font-weight: 700;
padding: 12px 28px;
text-decoration: none;
border: 1px solid var(--text);
display: inline-block;
transition: all 0.15s;
letter-spacing: 0.3px;
}
.btn-dark { background: var(--text); color: var(--bg); }
.btn-dark:hover { background: #333; border-color: #333; }
.btn-light { background: transparent; color: var(--text); }
.btn-light:hover { background: var(--bg-off); }
/* ── TICKER ── */
.ticker-wrap {
overflow: hidden;
padding: 13px 0;
background: var(--bg-off);
border-bottom: 1px solid var(--border);
}
.ticker {
display: flex;
white-space: nowrap;
animation: ticker 32s linear infinite;
}
.ticker-item {
font-family: 'Space Mono', monospace;
font-size: 10px;
letter-spacing: 1px;
text-transform: uppercase;
color: var(--muted);
padding: 0 44px;
flex-shrink: 0;
}
.ticker-dot { color: var(--yellow); }
/* ── STATS ── */
.stats-row {
display: grid;
grid-template-columns: repeat(4, 1fr);
border-bottom: 1px solid var(--border);
}
.stat-item {
padding: 52px 40px;
border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
font-family: 'Space Mono', monospace;
font-size: 38px;
font-weight: 700;
letter-spacing: -2px;
line-height: 1;
margin-bottom: 10px;
}
.stat-label {
font-family: 'Space Mono', monospace;
font-size: 10px;
color: var(--muted);
text-transform: uppercase;
letter-spacing: 1px;
}
/* ── SECTION SHARED ── */
.section { border-bottom: 1px solid var(--border); }
.section-inner { padding: 100px 64px; }
.tag {
display: inline-block;
font-family: 'Space Mono', monospace;
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
background: var(--yellow);
color: var(--text);
padding: 4px 12px;
margin-bottom: 32px;
}
.section-title {
font-family: 'Space Mono', monospace;
font-size: clamp(28px, 3vw, 48px);
font-weight: 700;
letter-spacing: -1.5px;
line-height: 1.12;
margin-bottom: 20px;
}
.section-desc {
font-size: 15px;
line-height: 1.8;
color: var(--muted);
max-width: 540px;
}
/* ── ABOUT ── */
.about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: start;
}
.about-cards { display: flex; flex-direction: column; }
.about-card {
padding: 28px 32px;
border: 1px solid var(--border);
border-bottom: none;
transition: all 0.18s;
position: relative;
}
.about-card:last-child { border-bottom: 1px solid var(--border); }
.about-card:hover {
background: var(--bg-off);
box-shadow: var(--shadow);
z-index: 1;
}
.about-card-num {
font-family: 'Space Mono', monospace;
font-size: 10px;
color: var(--muted);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 10px;
}
.about-card h4 {
font-family: 'Space Mono', monospace;
font-size: 13px;
font-weight: 700;
margin-bottom: 8px;
letter-spacing: -0.3px;
}
.about-card p {
font-size: 13px;
color: var(--muted);
line-height: 1.75;
}
/* ── TECH ── */
.tech-section { background: var(--bg-off); }
.tech-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
margin-top: 60px;
border: 1px solid var(--border);
}
.tech-card {
padding: 44px 40px;
border-right: 1px solid var(--border);
border-bottom: 1px solid var(--border);
background: var(--bg);
transition: background 0.15s;
}
.tech-card:nth-child(3n) { border-right: none; }
.tech-card:nth-child(n+4) { border-bottom: none; }
.tech-card:hover { background: var(--bg-off); }
.tech-num {
font-family: 'Space Mono', monospace;
font-size: 10px;
color: var(--muted);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 20px;
}
.tech-card h3 {
font-family: 'Space Mono', monospace;
font-size: 14px;
font-weight: 700;
margin-bottom: 12px;
letter-spacing: -0.3px;
}
.tech-card p {
font-size: 13px;
color: var(--muted);
line-height: 1.75;
}
.tech-badge {
display: inline-block;
margin-top: 20px;
font-family: 'Space Mono', monospace;
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
padding: 4px 10px;
border: 1px solid var(--border);
color: var(--muted);
}
/* ── PIPELINE ── */
.pipeline-wrap {
margin-top: 80px;
padding-top: 64px;
border-top: 1px solid var(--border);
}
.pipeline-label {
font-family: 'Space Mono', monospace;
font-size: 10px;
color: var(--muted);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 36px;
}
.pipeline {
display: grid;
grid-template-columns: repeat(6, 1fr);
border: 1px solid var(--border);
background: var(--bg);
}
.pipeline-step {
padding: 32px 24px;
border-right: 1px solid var(--border);
}
.pipeline-step:last-child { border-right: none; }
.step-num {
font-family: 'Space Mono', monospace;
font-size: 10px;
color: var(--yellow);
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 16px;
display: block;
}
.step-label {
font-family: 'Space Mono', monospace;
font-size: 13px;
font-weight: 700;
letter-spacing: -0.3px;
margin-bottom: 8px;
}
.step-sub {
font-size: 12px;
color: var(--muted);
line-height: 1.6;
}
/* ── CAPABILITIES ── */
.cap-grid {
display: grid;
grid-template-columns: 1fr 1fr;
margin-top: 60px;
border: 1px solid var(--border);
}
.cap-card {
padding: 52px 48px;
border-right: 1px solid var(--border);
border-bottom: 1px solid var(--border);
transition: background 0.15s;
position: relative;
}
.cap-card:nth-child(2n) { border-right: none; }
.cap-card:nth-child(3), .cap-card:nth-child(4) { border-bottom: none; }
.cap-card:hover { background: var(--bg-off); }
.cap-tag {
display: inline-block;
font-family: 'Space Mono', monospace;
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
background: var(--yellow-bg);
border: 1px solid var(--yellow);
color: var(--text);
padding: 3px 10px;
margin-bottom: 20px;
}
.cap-card h3 {
font-family: 'Space Mono', monospace;
font-size: 16px;
font-weight: 700;
letter-spacing: -0.5px;
line-height: 1.3;
margin-bottom: 14px;
}
.cap-card p {
font-size: 13px;
color: var(--muted);
line-height: 1.8;
}
.cap-arrow {
margin-top: 24px;
font-family: 'Space Mono', monospace;
font-size: 12px;
color: var(--border);
display: block;
transition: color 0.15s;
}
.cap-card:hover .cap-arrow { color: var(--text); }
/* ── CTA ── */
.cta-section {
border-bottom: 1px solid var(--border);
}
.cta-inner {
padding: 120px 64px;
display: flex;
flex-direction: column;
align-items: flex-start;
}
.cta-inner .section-title { margin-bottom: 20px; }
.cta-inner .section-desc { margin-bottom: 48px; }
.cta-actions { display: flex; gap: 10px; }
/* ── FOOTER ── */
footer {
padding: 32px 64px;
background: var(--bg-off);
display: flex;
justify-content: space-between;
align-items: center;
}
.footer-logo {
font-family: 'Space Mono', monospace;
font-size: 13px;
font-weight: 700;
color: var(--text);
}
.footer-links {
display: flex;
gap: 32px;
list-style: none;
}
.footer-links a {
font-family: 'Space Mono', monospace;
font-size: 11px;
color: var(--muted);
text-decoration: none;
transition: color 0.15s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
font-family: 'Space Mono', monospace;
font-size: 11px;
color: var(--muted);
}
/* ── ANIMATIONS ── */
@keyframes fadeUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes ticker {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
}
.reveal {
opacity: 0;
transform: translateY(24px);
transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}
/* ── RESPONSIVE ── */
@media (max-width: 960px) {
nav { padding: 16px 24px; }
.nav-links { display: none; }
.hero { padding: 0 24px 64px; }
.hero-title { letter-spacing: -1.5px; }
.hero-bottom { flex-direction: column; align-items: flex-start; gap: 28px; }
.section-inner { padding: 72px 24px; }
.stats-row { grid-template-columns: 1fr 1fr; }
.stat-item:nth-child(2) { border-right: none; }
.stat-item:nth-child(3) { border-top: 1px solid var(--border); }
.stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
.about-grid { grid-template-columns: 1fr; gap: 40px; }
.tech-grid { grid-template-columns: 1fr 1fr; }
.tech-card:nth-child(3n) { border-right: 1px solid var(--border); }
.tech-card:nth-child(2n) { border-right: none; }
.tech-card:nth-child(n+4) { border-bottom: 1px solid var(--border); }
.tech-card:nth-child(n+5) { border-bottom: none; }
.tech-card:nth-child(5) { border-right: none; }
.tech-card:nth-child(6) { border-right: none; }
.pipeline { grid-template-columns: repeat(3, 1fr); }
.pipeline-step:nth-child(3) { border-right: none; }
.pipeline-step:nth-child(4), .pipeline-step:nth-child(5), .pipeline-step:nth-child(6) {
border-top: 1px solid var(--border);
}
.pipeline-step:nth-child(6) { border-right: none; }
.cap-grid { grid-template-columns: 1fr; }
.cap-card { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
.cap-card:last-child { border-bottom: none !important; }
.cta-inner { padding: 80px 24px; }
footer { flex-direction: column; gap: 24px; text-align: center; padding: 32px 24px; }
}
@media (max-width: 600px) {
.stats-row { grid-template-columns: 1fr; }
.stat-item { border-right: none !important; border-top: 1px solid var(--border); }
.stat-item:first-child { border-top: none; }
.tech-grid { grid-template-columns: 1fr; }
.tech-card { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
.tech-card:last-child { border-bottom: none !important; }
.pipeline { grid-template-columns: 1fr 1fr; }
.pipeline-step:nth-child(2n) { border-right: none; }
.pipeline-step:nth-child(n+3) { border-top: 1px solid var(--border); }
}
</style>
</head>
<body>
<!-- NAV -->
<nav>
<a href="/" class="nav-logo">EvManip</a>
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#tech">Technology</a></li>
<li><a href="#capabilities">Capabilities</a></li>
</ul>
<a href="#contact" class="nav-cta">Contact</a>
</nav>
<!-- HERO -->
<section class="hero" id="hero">
<p class="hero-eyebrow">Advanced Robotic Manipulation</p>
<h1 class="hero-title">Robots that<br>learn to manipulate.</h1>
<hr class="hero-rule"/>
<div class="hero-bottom">
<p class="hero-desc">Next-generation perception and control technology that enables robots to understand and interact with their environment with unprecedented dexterity and adaptability.</p>
<div class="hero-actions">
<a href="#capabilities" class="btn btn-dark">Explore</a>
<a href="#about" class="btn btn-light">Learn More</a>
</div>
</div>
</section>
<!-- TICKER -->
<div class="ticker-wrap">
<div class="ticker" aria-hidden="true">
<span class="ticker-item">Fast Perception <span class="ticker-dot">✦</span></span>
<span class="ticker-item">Adaptive Learning <span class="ticker-dot">✦</span></span>
<span class="ticker-item">Real-Time Control <span class="ticker-dot">✦</span></span>
<span class="ticker-item">Scalable System <span class="ticker-dot">✦</span></span>
<span class="ticker-item">Production Ready <span class="ticker-dot">✦</span></span>
<span class="ticker-item">Enterprise Solutions <span class="ticker-dot">✦</span></span>
<span class="ticker-item">Continuous Improvement <span class="ticker-dot">✦</span></span>
<span class="ticker-item">Fast Perception <span class="ticker-dot">✦</span></span>
<span class="ticker-item">Adaptive Learning <span class="ticker-dot">✦</span></span>
<span class="ticker-item">Real-Time Control <span class="ticker-dot">✦</span></span>
<span class="ticker-item">Scalable System <span class="ticker-dot">✦</span></span>
<span class="ticker-item">Production Ready <span class="ticker-dot">✦</span></span>
<span class="ticker-item">Enterprise Solutions <span class="ticker-dot">✦</span></span>
<span class="ticker-item">Continuous Improvement <span class="ticker-dot">✦</span></span>
</div>
</div>
<!-- STATS -->
<div class="stats-row">
<div class="stat-item reveal">
<div class="stat-num">100+</div>
<div class="stat-label">Industry Partners</div>
</div>
<div class="stat-item reveal">
<div class="stat-num">500k+</div>
<div class="stat-label">Manipulations / Year</div>
</div>
<div class="stat-item reveal">
<div class="stat-num">99.2%</div>
<div class="stat-label">Success Rate</div>
</div>
<div class="stat-item reveal">
<div class="stat-num"><10ms</div>
<div class="stat-label">Processing Latency</div>
</div>
</div>
<!-- ABOUT -->
<section id="about" class="section">
<div class="section-inner">
<div class="about-grid">
<div class="reveal">
<span class="tag">About</span>
<h2 class="section-title">Built for the<br>future of work.</h2>
<p class="section-desc">EvManip is redefining how robots perceive and interact with the physical world. We combine advanced sensing with intelligent control systems to deliver robots that are smarter, faster, and more capable than ever before.</p>
</div>
<div class="about-cards reveal">
<div class="about-card">
<div class="about-card-num">01 — Perception</div>
<h4>Intelligent Perception</h4>
<p>Our multi-modal sensing approach captures the world in unprecedented detail, enabling robots to understand context and adapt in real-time.</p>
</div>
<div class="about-card">
<div class="about-card-num">02 — Learning</div>
<h4>Smart Learning</h4>
<p>Systems that improve over time, learning from experience to optimize performance across diverse tasks and environments.</p>
</div>
<div class="about-card">
<div class="about-card-num">03 — Scale</div>
<h4>Production Scale</h4>
<p>Designed from the ground up for deployment in real-world operations, not research labs. Reliable, maintainable, and cost-effective.</p>
</div>
</div>
</div>
</div>
</section>
<!-- TECH -->
<section id="tech" class="section tech-section">
<div class="section-inner">
<div class="reveal">
<span class="tag">Technology</span>
<h2 class="section-title">Built on innovation<br>and reliability.</h2>
</div>
<div class="tech-grid reveal">
<div class="tech-card">
<div class="tech-num">01</div>
<h3>Fast & Responsive</h3>
<p>Ultra-low latency perception and control systems that keep pace with dynamic environments and fast-moving tasks.</p>
<span class="tech-badge">Real-Time Processing</span>
</div>
<div class="tech-card">
<div class="tech-num">02</div>
<h3>Multi-Modal Sensing</h3>
<p>Integrated sensor fusion combines multiple perception modalities for robust understanding in any condition.</p>
<span class="tech-badge">Sensor Integration</span>
</div>
<div class="tech-card">
<div class="tech-num">03</div>
<h3>Intelligent Control</h3>
<p>Advanced algorithms that learn and adapt, optimizing performance for specific tasks and environments.</p>
<span class="tech-badge">Adaptive Systems</span>
</div>
<div class="tech-card">
<div class="tech-num">04</div>
<h3>Continuous Learning</h3>
<p>Systems improve autonomously over time, leveraging operational data to enhance capabilities.</p>
<span class="tech-badge">Online Learning</span>
</div>
<div class="tech-card">
<div class="tech-num">05</div>
<h3>Scalable Architecture</h3>
<p>From single units to fleet operations, our platform scales efficiently across any deployment size.</p>
<span class="tech-badge">Enterprise Ready</span>
</div>
<div class="tech-card">
<div class="tech-num">06</div>
<h3>Robust Deployment</h3>
<p>Built for the rigors of real-world operation with comprehensive monitoring and reliability features.</p>
<span class="tech-badge">Production Grade</span>
</div>
</div>
<div class="pipeline-wrap reveal">
<p class="pipeline-label">Workflow</p>
<div class="pipeline">
<div class="pipeline-step">
<span class="step-num">01</span>
<div class="step-label">Perceive</div>
<div class="step-sub">Multi-sensor environment capture</div>
</div>
<div class="pipeline-step">
<span class="step-num">02</span>
<div class="step-label">Understand</div>
<div class="step-sub">Intelligent interpretation</div>
</div>
<div class="pipeline-step">
<span class="step-num">03</span>
<div class="step-label">Decide</div>
<div class="step-sub">Optimal action selection</div>
</div>
<div class="pipeline-step">
<span class="step-num">04</span>
<div class="step-label">Execute</div>
<div class="step-sub">Precise robot control</div>
</div>
<div class="pipeline-step">
<span class="step-num">05</span>
<div class="step-label">Verify</div>
<div class="step-sub">Quality assurance & feedback</div>
</div>
<div class="pipeline-step">
<span class="step-num">06</span>
<div class="step-label">Learn</div>
<div class="step-sub">Continuous improvement</div>
</div>
</div>
</div>
</div>
</section>
<!-- CAPABILITIES -->
<section id="capabilities" class="section">
<div class="section-inner">
<div class="reveal">
<span class="tag">Capabilities</span>
<h2 class="section-title">Enabling the next<br>generation of automation.</h2>
<p class="section-desc">From warehouse automation to precision manufacturing, our technology powers diverse applications across industries.</p>
</div>
<div class="cap-grid reveal">
<div class="cap-card">
<span class="cap-tag">Logistics</span>
<h3>Intelligent Sorting<br>& Handling</h3>
<p>Automated systems that understand object properties and handle them appropriately, reducing damage and increasing throughput in distribution centers.</p>
<span class="cap-arrow">→ Learn more</span>
</div>
<div class="cap-card">
<span class="cap-tag">Manufacturing</span>
<h3>Precision Assembly</h3>
<p>Robots that adapt to part variations and perform delicate assembly tasks with the precision and reliability required in advanced manufacturing.</p>
<span class="cap-arrow">→ Learn more</span>
</div>
<div class="cap-card">
<span class="cap-tag">Healthcare</span>
<h3>Medical Automation</h3>
<p>Gentle, responsive systems for surgical support and medical device handling where precision and safety are paramount.</p>
<span class="cap-arrow">→ Learn more</span>
</div>
<div class="cap-card">
<span class="cap-tag">Agriculture</span>
<h3>Crop & Produce<br>Handling</h3>
<p>Technology for selective harvesting and handling of delicate crops with the dexterity of human workers at the scale of machines.</p>
<span class="cap-arrow">→ Learn more</span>
</div>
</div>
</div>
</section>
<!-- CTA -->
<section id="contact" class="cta-section">
<div class="cta-inner">
<span class="tag reveal">Contact</span>
<h2 class="section-title reveal">Ready to transform<br>your automation?</h2>
<p class="section-desc reveal">Join leading companies using EvManip to build the next generation of intelligent systems. Let's talk about your challenge.</p>
<div class="cta-actions reveal">
<a href="mailto:hello@evmanip.com" class="btn btn-dark">Contact Us</a>
<a href="#tech" class="btn btn-light">Explore Technology</a>
</div>
</div>
</section>
<!-- FOOTER -->
<footer>
<div class="footer-logo">EvManip © 2025</div>
<ul class="footer-links">
<li><a href="#about">About</a></li>
<li><a href="#tech">Technology</a></li>
<li><a href="#capabilities">Capabilities</a></li>
<li><a href="mailto:hello@evmanip.com">Contact</a></li>
</ul>
<div class="footer-copy">evmanip.io</div>
</footer>
<script>
const reveals = document.querySelectorAll('.reveal');
const io = new IntersectionObserver(entries => {
entries.forEach(e => {
if (e.isIntersecting) {
e.target.classList.add('visible');
io.unobserve(e.target);
}
});
}, { threshold: 0.08 });
reveals.forEach(el => io.observe(el));
</script>
</body>
</html>