-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
905 lines (839 loc) · 39.8 KB
/
Copy pathindex.html
File metadata and controls
905 lines (839 loc) · 39.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>em-dash.in — Automate Entire Departments with Autonomous Agents</title>
<meta name="description" content="Em Dash helps companies and organizations make radical cost cuts by deploying autonomous AI agents across finance, logistics, healthcare, supply chain, and manufacturing.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>—</text></svg>">
<style>
*{margin:0;padding:0;box-sizing:border-box}
:root{
--bg:#f0ead8;
--bg2:#e8e0ca;
--bg3:#d8cebc;
--ink:#1c1a16;
--ink-2:rgba(28,26,22,0.82);
--ink-3:rgba(28,26,22,0.58);
--accent:#4a7c59;
--accent-2:#3d6849;
--accent-light:#7aaa8a;
--accent-dim:rgba(74,124,89,0.10);
--accent-dim2:rgba(74,124,89,0.06);
--glass-bg:rgba(240,234,216,0.55);
--glass-bg2:rgba(232,224,202,0.50);
--border:rgba(28,26,22,0.10);
--border-md:rgba(28,26,22,0.16);
--border-hi:rgba(28,26,22,0.30);
--shadow-sm:0 1px 3px rgba(28,26,22,0.08),0 1px 0 rgba(255,255,255,0.70);
--shadow-md:0 4px 16px rgba(28,26,22,0.10),0 1px 0 rgba(255,255,255,0.60);
--shadow-lg:0 12px 40px rgba(28,26,22,0.14),0 1px 0 rgba(255,255,255,0.55);
--blur:blur(20px) saturate(160%);
--blur-heavy:blur(32px) saturate(180%);
--seam:linear-gradient(90deg,transparent,rgba(255,255,255,0.55) 30%,rgba(255,255,255,0.70) 50%,rgba(255,255,255,0.55) 70%,transparent);
}
html{scroll-behavior:smooth}
body{
-webkit-tap-highlight-color:transparent;
font-family:'DM Sans',sans-serif;
background:var(--bg);
color:var(--ink);
line-height:1.6;
overflow-x:hidden;
-webkit-font-smoothing:antialiased;
}
/* Paper texture overlay */
body::before{
content:'';position:fixed;inset:0;pointer-events:none;z-index:0;
background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}
/* Subtle grid lines like graph paper */
body::after{
content:'';position:fixed;inset:0;pointer-events:none;z-index:0;
background-image:
linear-gradient(rgba(28,26,22,0.04) 1px, transparent 1px),
linear-gradient(90deg, rgba(28,26,22,0.04) 1px, transparent 1px);
background-size:40px 40px;
}
.grain{
position:fixed;inset:0;z-index:9999;pointer-events:none;
background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}
.mouse-glow{
position:fixed;inset:0;z-index:2;pointer-events:none;opacity:0;transition:opacity .5s;
background:radial-gradient(500px circle at var(--mx,50%) var(--my,50%),rgba(74,124,89,0.06) 0%,transparent 65%);
}
.mouse-glow.active{opacity:1}
.container{max-width:1200px;margin:0 auto;padding:0 28px;position:relative;z-index:3}
/* Tags */
.tag{
display:inline-flex;align-items:center;gap:7px;
font-size:.70rem;font-weight:500;letter-spacing:.12em;text-transform:uppercase;
color:var(--accent);
background:rgba(74,124,89,0.08);
padding:5px 14px;border-radius:4px;
border:1px solid rgba(74,124,89,0.18);
border-top-color:rgba(255,255,255,0.60);
box-shadow:0 1px 0 rgba(255,255,255,0.50) inset,var(--shadow-sm);
}
.tag .dot{
width:7px;height:7px;border-radius:50%;background:#4a7c59;
animation:pulse-dot 2s ease infinite;
}
@keyframes pulse-dot{0%,100%{opacity:1}50%{opacity:0.4}}
/* Buttons */
.btn{
display:inline-flex;align-items:center;gap:9px;
padding:11px 26px;border-radius:6px;
font-family:'DM Sans',sans-serif;font-size:.88rem;font-weight:500;
text-decoration:none;cursor:pointer;border:none;
transition:all .18s ease;position:relative;overflow:hidden;
}
.btn::before{
content:'';position:absolute;top:0;left:0;right:0;height:50%;
background:linear-gradient(180deg,rgba(255,255,255,0.35),rgba(255,255,255,0.04));
border-radius:6px 6px 0 0;pointer-events:none;
}
.btn-fill{
background:var(--accent);color:#fff;font-weight:500;
border:1px solid rgba(61,104,73,0.80);
border-top-color:rgba(122,170,138,0.60);
border-bottom-color:rgba(30,60,40,0.30);
box-shadow:0 1px 0 rgba(255,255,255,0.25) inset,0 -1px 0 rgba(0,0,0,0.12) inset,var(--shadow-md);
}
.btn-fill:hover{
background:var(--accent-2);
box-shadow:0 1px 0 rgba(255,255,255,0.30) inset,0 -1px 0 rgba(0,0,0,0.12) inset,0 6px 20px rgba(74,124,89,0.25);
transform:translateY(-1px);
}
.btn-ghost{
background:rgba(240,234,216,0.65);color:var(--ink);
border:1px solid var(--border-md);
border-top-color:rgba(255,255,255,0.80);
border-bottom-color:rgba(28,26,22,0.12);
box-shadow:0 1px 0 rgba(255,255,255,0.55) inset,var(--shadow-sm);
backdrop-filter:var(--blur);-webkit-backdrop-filter:var(--blur);
}
.btn-ghost:hover{
background:rgba(255,252,244,0.80);
border-color:var(--border-hi);
color:var(--accent);
transform:translateY(-1px);
box-shadow:0 1px 0 rgba(255,255,255,0.65) inset,var(--shadow-md);
}
@keyframes fadeUp{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:none}}
/* Nav */
nav{position:fixed;top:0;width:100%;z-index:100;transition:all .30s}
.nav-glass{
margin:12px 16px 0;border-radius:8px;position:relative;overflow:visible;
background:rgba(240,234,216,0.72);
border:1px solid var(--border-md);
border-top-color:rgba(255,255,255,0.85);
backdrop-filter:var(--blur-heavy);-webkit-backdrop-filter:var(--blur-heavy);
box-shadow:0 1px 0 rgba(255,255,255,0.70) inset,var(--shadow-md);
transition:all .30s;
}
.nav-glass::after{
content:'';position:absolute;top:0;left:10%;right:10%;height:1px;
background:var(--seam);pointer-events:none;
}
nav.scrolled .nav-glass{margin:6px 16px 0}
.nav-inner{display:flex;justify-content:space-between;align-items:center;padding:11px 20px;position:relative;z-index:1}
.logo{display:flex;align-items:center;gap:6px;text-decoration:none;color:var(--ink)}
.logo-dash{
font-family:'Libre Baskerville',serif;
font-size:1.4rem;font-weight:700;color:var(--accent);line-height:1;
}
.logo-name{font-size:1.00rem;font-weight:500;letter-spacing:-.02em;color:var(--ink)}
.nav-links{display:flex;gap:2px;list-style:none;align-items:center}
.nav-links a{
color:var(--ink-2);text-decoration:none;font-size:.83rem;
transition:all .14s cubic-bezier(.25,0,.4,1);
padding:6px 13px;border-radius:3px;
border:1px solid transparent;display:inline-block;
position:relative;
}
.nav-links a:hover{
color:var(--accent);
background:var(--accent-dim);
border-color:rgba(74,124,89,0.15);
}
.nav-cta{
padding:7px 16px;font-size:.81rem;border-radius:5px;
background:var(--accent);color:#fff !important;
text-decoration:none;font-weight:500;
border:1px solid rgba(61,104,73,0.70) !important;
border-top-color:rgba(122,170,138,0.60) !important;
border-bottom-color:rgba(20,50,30,0.30) !important;
box-shadow:0 1px 0 rgba(255,255,255,0.22) inset, 0 2px 8px rgba(74,124,89,0.25);
transition:all .18s ease;
}
.nav-cta:hover{
background:var(--accent-2) !important;
color:#fff !important;
box-shadow:0 1px 0 rgba(255,255,255,0.22) inset,0 0 0 3px rgba(74,124,89,0.18),0 0 16px rgba(74,124,89,0.40);
transform:translateY(-1px);
}
.hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:8px;position:relative;z-index:200}
.hamburger span{display:block;width:20px;height:2px;background:var(--ink);border-radius:2px}
/* Hero */
.hero{min-height:100vh;display:flex;align-items:center;padding:148px 0 96px;position:relative}
.hero-edge{
position:absolute;bottom:-2px;left:0;right:0;height:40px;
background:var(--bg2);
clip-path:polygon(0 40px,2% 10px,5% 32px,8% 8px,11% 28px,14% 5px,17% 25px,20% 10px,23% 35px,27% 8px,31% 30px,35% 5px,39% 25px,43% 12px,47% 38px,51% 6px,55% 28px,59% 10px,63% 32px,67% 8px,71% 35px,75% 12px,79% 28px,83% 5px,87% 30px,91% 10px,95% 35px,98% 12px,100% 38px,100% 40px);
z-index:2;
}
.hero-content{text-align:center;max-width:820px;margin:0 auto}
.hero-content .tag{margin-bottom:24px}
.hero-content h1{
font-family:'Libre Baskerville',serif;
font-size:clamp(2.4rem,5vw,4rem);
line-height:1.16;font-weight:700;letter-spacing:-.02em;
margin-bottom:20px;color:var(--ink);
}
.hero-content h1 .em{
font-style:italic;color:var(--accent);
}
.hero-content p{
font-size:1.05rem;color:var(--ink-2);max-width:560px;
margin:0 auto 36px;line-height:1.78;font-weight:400;
}
.hero-buttons{display:flex;gap:11px;flex-wrap:wrap;justify-content:center}
.hero-stats{
display:flex;justify-content:center;gap:48px;margin-top:72px;flex-wrap:wrap;
}
.stat-card{
text-align:center;
background:var(--glass-bg);
border:1px solid var(--border);
border-top-color:rgba(255,255,255,0.80);
backdrop-filter:var(--blur);-webkit-backdrop-filter:var(--blur);
box-shadow:0 1px 0 rgba(255,255,255,0.60) inset,var(--shadow-sm);
border-radius:8px;padding:20px 28px;
transition:all .28s;
}
.stat-card:hover{
transform:translateY(-3px);
box-shadow:0 1px 0 rgba(255,255,255,0.70) inset,var(--shadow-md);
border-color:rgba(74,124,89,0.25);
}
.stat-card .number{
font-family:'JetBrains Mono',monospace;
font-size:1.6rem;font-weight:500;color:var(--accent);line-height:1.2;
}
.stat-card .label{
font-size:.72rem;color:var(--ink-3);margin-top:4px;
text-transform:uppercase;letter-spacing:.08em;
}
/* Section band */
.section-band{
background:var(--bg2);
border-top:1px solid var(--border);
border-bottom:1px solid var(--border);
box-shadow:0 1px 0 rgba(255,255,255,0.55) inset,0 -1px 0 rgba(255,255,255,0.40);
}
section{padding:100px 0 110px;position:relative}
.section-header{text-align:center;margin-bottom:52px}
.section-header .tag{margin-bottom:16px}
.section-header h2{
font-family:'Libre Baskerville',serif;
font-size:clamp(1.9rem,3.2vw,2.7rem);font-weight:700;letter-spacing:-.02em;
}
.section-line{width:40px;height:1px;background:linear-gradient(90deg,var(--accent),transparent);margin:10px auto 12px}
.section-header p{
color:var(--ink-2);font-size:1.01rem;max-width:520px;margin:0 auto;line-height:1.75;
}
/* Industry cards */
.industry-grid{
display:grid;grid-template-columns:repeat(3,1fr);gap:12px;
}
.industry-card{
border-radius:8px;padding:28px 22px;position:relative;overflow:hidden;
background:var(--glass-bg);
border:1px solid var(--border);
border-top-color:rgba(255,255,255,0.80);
backdrop-filter:var(--blur);-webkit-backdrop-filter:var(--blur);
box-shadow:0 1px 0 rgba(255,255,255,0.60) inset,var(--shadow-sm);
transition:all .28s;
}
.industry-card:hover{
transform:translateY(-4px);
border-color:rgba(74,124,89,0.25);
box-shadow:0 1px 0 rgba(255,255,255,0.70) inset,var(--shadow-lg);
}
.industry-icon{
width:42px;height:42px;
background:var(--accent);
border-radius:8px;
display:flex;align-items:center;justify-content:center;
margin-bottom:14px;color:#fff;
border:1px solid rgba(61,104,73,0.50);
border-top-color:rgba(122,170,138,0.50);
box-shadow:0 1px 0 rgba(255,255,255,0.20) inset;
}
.industry-card h3{
font-family:'Libre Baskerville',serif;
font-size:1.02rem;font-weight:700;color:var(--ink);
margin-bottom:6px;letter-spacing:-.01em;
}
.industry-card p{
color:var(--ink-2);font-size:.87rem;line-height:1.70;font-weight:400;
}
/* Steps */
.steps-grid{
display:grid;grid-template-columns:repeat(3,1fr);gap:12px;
}
.step-card{
border-radius:8px;padding:28px 22px;position:relative;overflow:hidden;text-align:center;
background:var(--glass-bg);
border:1px solid var(--border);
border-top-color:rgba(255,255,255,0.80);
backdrop-filter:var(--blur);-webkit-backdrop-filter:var(--blur);
box-shadow:0 1px 0 rgba(255,255,255,0.60) inset,var(--shadow-sm);
transition:all .28s;
}
.step-card:hover{
transform:translateY(-4px);
border-color:rgba(74,124,89,0.25);
box-shadow:0 1px 0 rgba(255,255,255,0.70) inset,var(--shadow-lg);
}
.step-number{
width:42px;height:42px;
background:var(--accent);
border-radius:8px;
display:flex;align-items:center;justify-content:center;
margin:0 auto 16px;color:#fff;
font-family:'JetBrains Mono',monospace;font-size:.85rem;font-weight:500;
border:1px solid rgba(61,104,73,0.50);
border-top-color:rgba(122,170,138,0.50);
box-shadow:0 1px 0 rgba(255,255,255,0.20) inset;
}
.step-card h3{
font-family:'Libre Baskerville',serif;
font-size:1.02rem;font-weight:700;color:var(--ink);
margin-bottom:8px;letter-spacing:-.01em;
}
.step-card p{
color:var(--ink-2);font-size:.87rem;line-height:1.70;font-weight:400;
}
/* Platform */
.platform-grid{
display:grid;grid-template-columns:repeat(3,1fr);gap:12px;
}
.platform-card{
border-radius:8px;padding:28px 22px;position:relative;overflow:hidden;
background:var(--glass-bg);
border:1px solid var(--border);
border-top-color:rgba(255,255,255,0.80);
backdrop-filter:var(--blur);-webkit-backdrop-filter:var(--blur);
box-shadow:0 1px 0 rgba(255,255,255,0.60) inset,var(--shadow-sm);
transition:all .28s;
}
.platform-card:hover{
transform:translateY(-4px);
border-color:rgba(74,124,89,0.25);
box-shadow:0 1px 0 rgba(255,255,255,0.70) inset,var(--shadow-lg);
}
.platform-card h3{
font-family:'Libre Baskerville',serif;
font-size:1.02rem;font-weight:700;color:var(--ink);
margin-bottom:6px;letter-spacing:-.01em;
}
.platform-card p{
color:var(--ink-2);font-size:.87rem;line-height:1.70;font-weight:400;
}
/* Deploy options */
.deploy-options{margin-top:48px}
.deploy-header{text-align:center;margin-bottom:20px}
.deploy-header h3{
font-family:'Libre Baskerville',serif;
font-size:clamp(1.1rem,2.5vw,1.4rem);font-weight:700;
letter-spacing:-.01em;color:var(--ink);
}
.deploy-grid{
display:grid;grid-template-columns:repeat(3,1fr);gap:12px;
}
.deploy-card{
border-radius:8px;padding:28px 22px;position:relative;overflow:hidden;text-align:center;
background:rgba(74,124,89,0.06);
border:1px solid rgba(74,124,89,0.15);
border-top-color:rgba(255,255,255,0.70);
backdrop-filter:var(--blur);-webkit-backdrop-filter:var(--blur);
box-shadow:0 1px 0 rgba(255,255,255,0.50) inset,var(--shadow-sm);
transition:all .28s;
}
.deploy-card:hover{
transform:translateY(-4px);
border-color:rgba(74,124,89,0.30);
box-shadow:0 1px 0 rgba(255,255,255,0.60) inset,var(--shadow-lg);
}
.deploy-card .industry-icon{margin:0 auto 14px}
.deploy-card h3{
font-family:'Libre Baskerville',serif;
font-size:1.02rem;font-weight:700;color:var(--accent);
margin-bottom:6px;letter-spacing:-.01em;
}
.deploy-card p{
color:var(--ink-2);font-size:.87rem;line-height:1.70;font-weight:400;
}
/* Metrics */
.metrics-grid{
display:grid;grid-template-columns:repeat(4,1fr);gap:12px;
}
.metric-card{
border-radius:8px;padding:32px 16px;text-align:center;
background:var(--glass-bg);
border:1px solid var(--border);
border-top-color:rgba(255,255,255,0.80);
backdrop-filter:var(--blur);-webkit-backdrop-filter:var(--blur);
box-shadow:0 1px 0 rgba(255,255,255,0.60) inset,var(--shadow-sm);
transition:all .28s;
}
.metric-card:hover{
transform:translateY(-3px);
border-color:rgba(74,124,89,0.25);
box-shadow:0 1px 0 rgba(255,255,255,0.70) inset,var(--shadow-md);
}
.metric-value{
font-family:'JetBrains Mono',monospace;
font-size:clamp(1.6rem,3vw,2.2rem);font-weight:500;
color:var(--accent);line-height:1.2;
}
.metric-label{
font-size:.82rem;color:var(--ink-3);margin-top:6px;
}
/* Philosophy */
.philosophy{max-width:640px;margin:0 auto;text-align:center}
.philosophy blockquote{
font-family:'Libre Baskerville',serif;
font-size:clamp(1.1rem,2.5vw,1.35rem);
font-weight:400;line-height:1.80;font-style:italic;
color:var(--ink-2);margin-top:20px;
}
.philosophy blockquote .highlight{
color:var(--accent);font-weight:700;font-style:normal;
}
.philosophy .attribution{
margin-top:28px;font-size:.85rem;color:var(--ink-3);
}
.philosophy .attribution strong{color:var(--ink-2)}
/* CTA */
.cta-box{
border-radius:8px;padding:72px 40px;text-align:center;position:relative;overflow:hidden;
background:var(--glass-bg);
border:1px solid var(--border);
border-top-color:rgba(255,255,255,0.80);
backdrop-filter:var(--blur);-webkit-backdrop-filter:var(--blur);
box-shadow:0 1px 0 rgba(255,255,255,0.60) inset,var(--shadow-lg);
max-width:800px;margin:0 auto;
}
.cta-box::after{
content:'';position:absolute;top:0;left:10%;right:10%;height:1px;
background:var(--seam);pointer-events:none;
}
.cta-box h2{
font-family:'Libre Baskerville',serif;
font-size:clamp(1.6rem,3vw,2.2rem);font-weight:700;
letter-spacing:-.02em;margin-bottom:14px;
}
.cta-box p{
color:var(--ink-2);font-size:1.01rem;max-width:440px;margin:0 auto 32px;line-height:1.75;
}
.cta-buttons{display:flex;justify-content:center;gap:11px;flex-wrap:wrap}
/* Footer */
footer{
padding:40px 0;
border-top:1px solid var(--border);
position:relative;z-index:3;
}
footer .container{
display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:20px;
}
.footer-left{display:flex;align-items:center;gap:20px}
.footer-copy{font-size:.78rem;color:var(--ink-3)}
.footer-links{display:flex;gap:20px;list-style:none}
.footer-links a{color:var(--ink-3);text-decoration:none;font-size:.82rem;transition:color .2s}
.footer-links a:hover{color:var(--accent)}
.powered-by{
text-align:center;margin-top:20px;padding-top:20px;
border-top:1px solid var(--border);
font-size:.78rem;color:var(--ink-3);
}
.powered-by a{color:var(--accent);text-decoration:none;font-weight:500}
.powered-by a:hover{text-decoration:underline}
/* Scroll reveal */
.reveal{opacity:0;transform:translateY(20px);transition:all .72s cubic-bezier(.16,1,.3,1)}
.reveal.visible{opacity:1;transform:none}
/* Responsive */
@media(max-width:900px){
.industry-grid,.steps-grid,.platform-grid,.deploy-grid{grid-template-columns:repeat(2,1fr)}
.metrics-grid{grid-template-columns:repeat(2,1fr)}
.hero-stats{gap:16px}
}
@media(max-width:640px){
section{padding:60px 0 70px}
.industry-grid,.steps-grid,.platform-grid,.deploy-grid{grid-template-columns:1fr}
.metrics-grid{grid-template-columns:1fr 1fr}
.hero{padding:120px 0 60px}
.hero-stats{flex-direction:column;gap:10px;align-items:center}
.hero-buttons{flex-direction:column;align-items:center;width:100%}
.hero-buttons .btn{width:100%;justify-content:center}
.cta-buttons{flex-direction:column;align-items:center}
.nav-links{display:none;position:absolute;top:100%;left:0;right:0;
flex-direction:column;background:rgba(240,234,216,0.95);
backdrop-filter:var(--blur-heavy);-webkit-backdrop-filter:var(--blur-heavy);
padding:16px 20px;gap:4px;border-radius:0 0 8px 8px;
border:1px solid var(--border-md);border-top:none;
box-shadow:var(--shadow-md);
}
.nav-links.open{display:flex}
.hamburger{display:flex}
footer .container{flex-direction:column;text-align:center}
.footer-left{flex-direction:column;gap:8px}
}
@media(prefers-reduced-motion:reduce){
.reveal{transition:none;opacity:1;transform:none}
.industry-card,.step-card,.metric-card,.stat-card,.platform-card,.btn{transition:none}
}
</style>
</head>
<body>
<div class="grain"></div>
<div class="mouse-glow" id="mouseGlow"></div>
<!-- Nav -->
<nav id="nav">
<div class="nav-glass">
<div class="nav-inner">
<a href="#" class="logo">
<span class="logo-dash">—</span>
<span class="logo-name">em-dash.in</span>
</a>
<button class="hamburger" onclick="document.querySelector('.nav-links').classList.toggle('open')" aria-label="Toggle menu">
<span></span><span></span><span></span>
</button>
<ul class="nav-links">
<li><a href="#industries">Industries</a></li>
<li><a href="#how-it-works">How it works</a></li>
<li><a href="#platform">Platform</a></li>
<li><a href="#results">Results</a></li>
<li><a href="#contact" class="nav-cta">Get started</a></li>
</ul>
</div>
</div>
</nav>
<!-- Hero -->
<section class="hero">
<div class="hero-edge"></div>
<div class="container">
<div class="hero-content">
<div class="tag">
<span class="dot"></span>
Now deploying autonomous agents
</div>
<h1>
Cut costs radically.<br>
<span class="em">Automate entire departments.</span>
</h1>
<p>
We deploy autonomous AI agents that run your operations end-to-end—finance, logistics, healthcare, supply chain, manufacturing. Not copilots. Not chatbots. Full automation.
</p>
<div class="hero-buttons">
<a href="#contact" class="btn btn-fill">Talk to us</a>
<a href="#how-it-works" class="btn btn-ghost">See how it works</a>
</div>
<div class="hero-stats">
<div class="stat-card">
<div class="number">73%</div>
<div class="label">Avg. cost reduction</div>
</div>
<div class="stat-card">
<div class="number">6</div>
<div class="label">Industries served</div>
</div>
<div class="stat-card">
<div class="number"><4wk</div>
<div class="label">Time to deploy</div>
</div>
</div>
</div>
</div>
</section>
<!-- Industries -->
<section class="section-band" id="industries">
<div class="container">
<div class="section-header reveal">
<div class="tag">Industries</div>
<div class="section-line"></div>
<h2>Every department. Every industry.</h2>
<p>Our agents don't assist—they operate. Fully autonomous systems that handle workflows from intake to completion.</p>
</div>
<div class="industry-grid reveal">
<div class="industry-card">
<div class="industry-icon">
<svg width="20" height="20" fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24"><path d="M12 6v12m-3-2.818.879.659c1.171.879 3.07.879 4.242 0 1.172-.879 1.172-2.303 0-3.182C13.536 12.219 12.768 12 12 12c-.725 0-1.45-.22-2.003-.659-1.106-.879-1.106-2.303 0-3.182s2.9-.879 4.006 0l.415.33M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"/></svg>
</div>
<h3>Finance</h3>
<p>Accounts payable, receivable, reconciliation, reporting, and audit prep—handled autonomously around the clock.</p>
</div>
<div class="industry-card">
<div class="industry-icon">
<svg width="20" height="20" fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24"><path d="M8.25 18.75a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m3 0h6m-9 0H3.375a1.125 1.125 0 0 1-1.125-1.125V14.25m17.25 4.5a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m3 0h1.125c.621 0 1.129-.504 1.09-1.124a17.902 17.902 0 0 0-3.213-9.193 2.056 2.056 0 0 0-1.58-.86H14.25m-2.25 0h-2.735a2.124 2.124 0 0 0-1.476.614l-4.29 4.29V14.25m11.25-6h2.25c.621 0 1.125.504 1.125 1.125v5.25"/></svg>
</div>
<h3>Logistics</h3>
<p>Route optimization, carrier management, shipment tracking, and exception handling with zero manual intervention.</p>
</div>
<div class="industry-card">
<div class="industry-icon">
<svg width="20" height="20" fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24"><path d="M21 8.25c0-2.485-2.099-4.5-4.688-4.5-1.935 0-3.597 1.126-4.312 2.733-.715-1.607-2.377-2.733-4.313-2.733C5.1 3.75 3 5.765 3 8.25c0 7.22 9 12 9 12s9-4.78 9-12Z"/></svg>
</div>
<h3>Healthcare</h3>
<p>Claims processing, patient scheduling, prior authorizations, and compliance documentation—fully automated.</p>
</div>
<div class="industry-card">
<div class="industry-icon">
<svg width="20" height="20" fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24"><path d="M7.5 21 3 16.5m0 0L7.5 12M3 16.5h13.5m0-13.5L21 7.5m0 0L16.5 12M21 7.5H7.5"/></svg>
</div>
<h3>Supply Chain</h3>
<p>Demand forecasting, inventory management, procurement, and supplier coordination running on autopilot.</p>
</div>
<div class="industry-card">
<div class="industry-icon">
<svg width="20" height="20" fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24"><path d="M11.42 15.17 17.25 21A2.652 2.652 0 0 0 21 17.25l-5.877-5.877M11.42 15.17l2.496-3.03c.317-.384.74-.626 1.208-.766M11.42 15.17l-4.655 5.653a2.548 2.548 0 1 1-3.586-3.586l6.837-5.63m5.108-.233c.55-.164 1.163-.188 1.743-.14a4.5 4.5 0 0 0 4.486-6.336l-3.276 3.277a3.004 3.004 0 0 1-2.25-2.25l3.276-3.276a4.5 4.5 0 0 0-6.336 4.486c.091 1.076-.071 2.264-.904 2.95l-.102.085"/></svg>
</div>
<h3>Manufacturing</h3>
<p>Quality control, production scheduling, predictive maintenance, and floor coordination—all agent-driven.</p>
</div>
<div class="industry-card">
<div class="industry-icon">
<svg width="20" height="20" fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24"><path d="M3.75 3v11.25A2.25 2.25 0 0 0 6 16.5h2.25M3.75 3h-1.5m1.5 0h16.5m0 0h1.5m-1.5 0v11.25A2.25 2.25 0 0 1 18 16.5h-2.25m-7.5 0h7.5m-7.5 0-1 3m8.5-3 1 3m0 0 .5 1.5m-.5-1.5h-9.5m0 0-.5 1.5M9 11.25v1.5M12 9v3.75m3-6v6"/></svg>
</div>
<h3>Operations</h3>
<p>Customer support, HR workflows, data entry, and compliance—the busywork that keeps your org stuck.</p>
</div>
</div>
</div>
</section>
<!-- How it works -->
<section id="how-it-works">
<div class="container">
<div class="section-header reveal">
<div class="tag">Process</div>
<div class="section-line"></div>
<h2>Deploy in weeks, not quarters.</h2>
<p>We don't sell software. We deploy agents that take over operational roles from day one.</p>
</div>
<div class="steps-grid reveal">
<div class="step-card">
<div class="step-number">01</div>
<h3>Map the workflow</h3>
<p>We embed with your team for one week. We document every process, every edge case, every exception. No workflow is too messy.</p>
</div>
<div class="step-card">
<div class="step-number">02</div>
<h3>Build the agents</h3>
<p>Custom autonomous agents purpose-built for your operations. They integrate with your existing tools—ERPs, CRMs, databases, APIs.</p>
</div>
<div class="step-card">
<div class="step-number">03</div>
<h3>Deploy and scale</h3>
<p>Agents go live alongside your team, then gradually take over. Full visibility, human escalation paths, and continuous improvement baked in.</p>
</div>
</div>
</div>
</section>
<!-- Platform -->
<section class="section-band" id="platform">
<div class="container">
<div class="section-header reveal">
<div class="tag">Platform</div>
<div class="section-line"></div>
<h2>Full visibility. Full control.</h2>
<p>Autonomous doesn't mean opaque. Every agent action is tracked, logged, and auditable—so you always know exactly what's happening.</p>
</div>
<div class="platform-grid reveal">
<div class="platform-card">
<div class="industry-icon">
<svg width="20" height="20" fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24"><path d="M2.036 12.322a1.012 1.012 0 0 1 0-.639C3.423 7.51 7.36 4.5 12 4.5c4.638 0 8.573 3.007 9.963 7.178.07.207.07.431 0 .639C20.577 16.49 16.64 19.5 12 19.5c-4.638 0-8.573-3.007-9.963-7.178Z"/><path d="M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"/></svg>
</div>
<h3>Real-time agent visibility</h3>
<p>Watch your agents work in real time. See what each agent is doing, what decisions it's making, and what data it's processing—all from a single dashboard.</p>
</div>
<div class="platform-card">
<div class="industry-icon">
<svg width="20" height="20" fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24"><path d="M3.75 6A2.25 2.25 0 0 1 6 3.75h2.25A2.25 2.25 0 0 1 10.5 6v2.25a2.25 2.25 0 0 1-2.25 2.25H6a2.25 2.25 0 0 1-2.25-2.25V6ZM3.75 15.75A2.25 2.25 0 0 1 6 13.5h2.25a2.25 2.25 0 0 1 2.25 2.25V18a2.25 2.25 0 0 1-2.25 2.25H6A2.25 2.25 0 0 1 3.75 18v-2.25ZM13.5 6a2.25 2.25 0 0 1 2.25-2.25H18A2.25 2.25 0 0 1 20.25 6v2.25A2.25 2.25 0 0 1 18 10.5h-2.25a2.25 2.25 0 0 1-2.25-2.25V6ZM13.5 15.75a2.25 2.25 0 0 1 2.25-2.25H18a2.25 2.25 0 0 1 2.25 2.25V18A2.25 2.25 0 0 1 18 20.25h-2.25a2.25 2.25 0 0 1-2.25-2.25v-2.25Z"/></svg>
</div>
<h3>Agent orchestration</h3>
<p>Multi-agent workflows coordinated seamlessly. Agents hand off tasks, share context, and escalate to humans when needed—all orchestrated from one control plane.</p>
</div>
<div class="platform-card">
<div class="industry-icon">
<svg width="20" height="20" fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24"><path d="M9 12.75 11.25 15 15 9.75m-3-7.036A11.959 11.959 0 0 1 3.598 6 11.99 11.99 0 0 0 3 9.749c0 5.592 3.824 10.29 9 11.623 5.176-1.332 9-6.03 9-11.622 0-1.31-.21-2.571-.598-3.751h-.152c-3.196 0-6.1-1.248-8.25-3.285Z"/></svg>
</div>
<h3>Compliance built in</h3>
<p>Every agent operates within configurable guardrails. Role-based access, data handling policies, and regulatory constraints enforced at the platform level.</p>
</div>
<div class="platform-card">
<div class="industry-icon">
<svg width="20" height="20" fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24"><path d="M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m0 12.75h7.5m-7.5 3H12M10.5 2.25H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z"/></svg>
</div>
<h3>Full audit trail</h3>
<p>Complete, immutable logs of every agent action, decision, and output. Searchable history for audits, investigations, and continuous improvement.</p>
</div>
<div class="platform-card">
<div class="industry-icon">
<svg width="20" height="20" fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24"><path d="M6.75 7.5l3 2.25-3 2.25m4.5 0h3m-9 8.25h13.5A2.25 2.25 0 0 0 21 18V6a2.25 2.25 0 0 0-2.25-2.25H5.25A2.25 2.25 0 0 0 3 6v12a2.25 2.25 0 0 0 2.25 2.25Z"/></svg>
</div>
<h3>Tool call logging</h3>
<p>Every API call, database query, and external tool invocation is captured with full request/response payloads. Debug, replay, and optimize agent behavior down to the individual call.</p>
</div>
<div class="platform-card">
<div class="industry-icon">
<svg width="20" height="20" fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24"><path d="M12 9v3.75m0-10.036A11.959 11.959 0 0 1 3.598 6 11.99 11.99 0 0 0 3 9.75c0 5.592 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.31-.21-2.57-.598-3.75h-.152c-3.196 0-6.1-1.249-8.25-3.286ZM12 15.75h.007v.008H12v-.008Z"/></svg>
</div>
<h3>Human escalation paths</h3>
<p>Agents know when they're uncertain. Configurable confidence thresholds route edge cases to your team with full context—so humans only handle what matters.</p>
</div>
</div>
<div class="deploy-options reveal">
<div class="deploy-header">
<h3>Deploy anywhere. Your infrastructure, your rules.</h3>
</div>
<div class="deploy-grid">
<div class="deploy-card">
<div class="industry-icon">
<svg width="20" height="20" fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24"><path d="M2.25 21h19.5m-18-18v18m10.5-18v18m6-13.5V21M6.75 6.75h.75m-.75 3h.75m-.75 3h.75m3-6h.75m-.75 3h.75m-.75 3h.75M6.75 21v-3.375c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21M3 3h12m-.75 4.5H21m-3 0h.008v.008H18V7.5Z"/></svg>
</div>
<h3>100% on-prem</h3>
<p>Everything runs inside your data center. No data leaves your network. Full air-gap support for regulated industries.</p>
</div>
<div class="deploy-card">
<div class="industry-icon">
<svg width="20" height="20" fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24"><path d="M2.25 15a4.5 4.5 0 0 0 4.5 4.5H18a3.75 3.75 0 0 0 1.332-7.257 3 3 0 0 0-3.758-3.848 5.25 5.25 0 0 0-10.233 2.33A4.502 4.502 0 0 0 2.25 15Z"/></svg>
</div>
<h3>Your cloud</h3>
<p>Deploy into your own AWS, Azure, or GCP account. We manage the agents, you own the infrastructure and the data.</p>
</div>
<div class="deploy-card">
<div class="industry-icon">
<svg width="20" height="20" fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24"><path d="M5.25 14.25h13.5m-13.5 0a3 3 0 0 1-3-3m3 3a3 3 0 1 0 0 6h13.5a3 3 0 1 0 0-6m-16.5-3a3 3 0 0 1 3-3h13.5a3 3 0 0 1 3 3m-19.5 0a4.5 4.5 0 0 1 .9-2.7L5.737 5.1a3.375 3.375 0 0 1 2.7-1.35h7.126c1.062 0 2.062.5 2.7 1.35l2.587 3.45a4.5 4.5 0 0 1 .9 2.7m0 0h.375a2.625 2.625 0 0 1 0 5.25H17.25"/></svg>
</div>
<h3>Em Dash cloud</h3>
<p>Fastest path to production. We handle infrastructure, scaling, and uptime—you just point us at the workflows.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Results -->
<section id="results">
<div class="container">
<div class="section-header reveal">
<div class="tag">Results</div>
<div class="section-line"></div>
<h2>Numbers that matter.</h2>
<p>Across every deployment, the results speak for themselves.</p>
</div>
<div class="metrics-grid reveal">
<div class="metric-card">
<div class="metric-value">73%</div>
<div class="metric-label">Average cost reduction</div>
</div>
<div class="metric-card">
<div class="metric-value">24/7</div>
<div class="metric-label">Autonomous operation</div>
</div>
<div class="metric-card">
<div class="metric-value">98.5%</div>
<div class="metric-label">Task accuracy rate</div>
</div>
<div class="metric-card">
<div class="metric-value">3.2x</div>
<div class="metric-label">Throughput increase</div>
</div>
</div>
</div>
</section>
<!-- Philosophy -->
<section id="about">
<div class="container">
<div class="philosophy reveal">
<div class="tag">Why "em dash"?</div>
<div class="section-line" style="margin:10px auto 0"></div>
<blockquote>
Everyone removes em dashes from AI-generated text. We decided to <span class="highlight">double down and embrace it</span>. The em dash is bold, interruptive, unapologetic—just like the AI transformation we bring to your organization.
</blockquote>
<div class="attribution">
<strong>The em dash philosophy</strong>—don't hide AI. Deploy it.
</div>
</div>
</div>
</section>
<!-- CTA -->
<section class="section-band" id="contact">
<div class="container">
<div class="cta-box reveal">
<h2>Ready to automate?</h2>
<p>Tell us which department is costing you the most. We'll show you what it looks like with zero headcount.</p>
<div class="cta-buttons">
<a href="mailto:hello@vitalops.ai" class="btn btn-fill">hello@vitalops.ai</a>
<a href="#industries" class="btn btn-ghost">Explore industries</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="footer-left">
<a href="#" class="logo">
<span class="logo-dash">—</span>
<span class="logo-name">em-dash.in</span>
</a>
<span class="footer-copy">© 2026 Em Dash. All rights reserved.</span>
</div>
<ul class="footer-links">
<li><a href="mailto:hello@vitalops.ai">Contact</a></li>
<li><a href="#industries">Industries</a></li>
<li><a href="#about">About</a></li>
</ul>
</div>
<div class="container">
<div class="powered-by">
An initiative by <a href="https://vitalops.ai" target="_blank" rel="noopener">VitalOps</a>
</div>
</div>
</footer>
<script>
// Scroll reveal
const reveals = document.querySelectorAll('.reveal');
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) entry.target.classList.add('visible');
});
}, { threshold: 0.1, rootMargin: '0px 0px -50px 0px' });
reveals.forEach(el => observer.observe(el));
// Nav scroll state
const nav = document.getElementById('nav');
window.addEventListener('scroll', () => {
nav.classList.toggle('scrolled', window.scrollY > 20);
});
// Mouse glow
const glow = document.getElementById('mouseGlow');
document.addEventListener('mousemove', e => {
glow.classList.add('active');
glow.style.setProperty('--mx', e.clientX + 'px');
glow.style.setProperty('--my', e.clientY + 'px');
});
// Close mobile nav on link click
document.querySelectorAll('.nav-links a').forEach(link => {
link.addEventListener('click', () => {
document.querySelector('.nav-links').classList.remove('open');
});
});
</script>
</body>
</html>