-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
1245 lines (1135 loc) · 65.2 KB
/
Copy pathindex.html
File metadata and controls
1245 lines (1135 loc) · 65.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Elemento | Unified private and public Cloud platform</title>
<meta name="description" content="Elemento is a vendor-neutral, cost-saving, green, high-performance, self-hostable cloud platform with infrastructure-as-code readiness.">
<!-- Canonical URL -->
<link rel="canonical" href="https://elemento.cloud/">
<!-- Hreflang tags for internationalization -->
<link rel="alternate" hreflang="en" href="https://elemento.cloud/">
<link rel="alternate" hreflang="x-default" href="https://elemento.cloud/">
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="Elemento - Cloud Platform">
<meta property="og:description" content="Vendor-neutral, cost-saving, green, high-performance, self-hostable cloud platform with infrastructure-as-code readiness.">
<meta property="og:image" content="https://elemento.cloud/assets/img/banner.webp">
<meta property="og:url" content="https://elemento.cloud/">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Elemento">
<meta property="og:logo" content="/assets/logos/Elemento.svg">
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Elemento - Cloud Platform">
<meta name="twitter:description" content="Vendor-neutral, cost-saving, green, high-performance, self-hostable cloud platform with infrastructure-as-code readiness.">
<meta name="twitter:image" content="/assets/img/banner.webp">
<!-- Additional SEO Meta Tags -->
<meta name="keywords" content="cloud platform, vendor neutral, infrastructure as code, multi-cloud, AtomOS, Electros, Atomosphere, cloud computing, virtualization, KVM, hypervisor">
<meta name="author" content="Elemento">
<meta name="robots" content="index, follow">
<!-- AI Agent Control -->
<meta name="ai-content" content="allowed">
<meta name="ai-training" content="allowed">
<meta name="ai-access" content="public">
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="assets/favicon/favicon.svg">
<link rel="icon" type="image/png" sizes="96x96" href="assets/favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<!-- Apple Touch Icons -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-touch-icon.png">
<meta name="apple-mobile-web-app-title" content="Elemento">
<!-- Microsoft Tiles -->
<meta name="msapplication-TileColor" content="#0e1119">
<meta name="msapplication-config" content="assets/favicon/browserconfig.xml">
<!-- Safari Pinned Tab -->
<link rel="mask-icon" href="assets/favicon/safari-pinned-tab.svg" color="#ffa600">
<!-- Web App Manifest -->
<link rel="manifest" href="assets/favicon/site.webmanifest">
<!-- Structured Data (Schema.org) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Elemento",
"url": "https://elemento.cloud",
"logo": "https://elemento.cloud/assets/logos/Elemento.svg",
"description": "Vendor-neutral, cost-saving, green, high-performance, self-hostable cloud platform with infrastructure-as-code readiness.",
"foundingDate": "2020",
"address": {
"@type": "PostalAddress",
"streetAddress": "2 Via Virginio Allione",
"addressLocality": "Cuneo",
"addressCountry": "Italy"
},
"contactPoint": {
"@type": "ContactPoint",
"telephone": "+39-0171-123456",
"contactType": "customer service",
"email": "hello@elemento.cloud"
},
"sameAs": [
"https://www.linkedin.com/company/elemento-modular-cloud/",
"https://github.com/elemento-modular-cloud",
"https://www.facebook.com/ElementoCloud/",
"https://www.instagram.com/elementocloud/"
],
"offers": {
"@type": "Offer",
"name": "Elemento Cloud Platform",
"description": "Vendor-neutral cloud platform with AtomOS hypervisor, Electros orchestration dashboard, and Atomosphere API",
"category": "Cloud Computing Platform"
}
}
</script>
<!-- Local Business Schema Markup -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"@id": "https://elemento.cloud/#organization",
"name": "Elemento",
"description": "Vendor-neutral, cost-saving, green, high-performance, self-hostable cloud platform with infrastructure-as-code readiness.",
"url": "https://elemento.cloud",
"logo": "https://elemento.cloud/assets/logos/Elemento.svg",
"image": "https://elemento.cloud/assets/img/Team - Hero.webp",
"telephone": "",
"email": "hello@elemento.cloud",
"address": {
"@type": "PostalAddress",
"streetAddress": "2 Via Virginio Allione",
"addressLocality": "Cuneo",
"addressRegion": "Piemonte",
"postalCode": "12100",
"addressCountry": "IT"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": "44.3918",
"longitude": "7.5434"
},
"openingHours": "Mo-Fr 09:00-18:00",
"openingHoursSpecification": {
"@type": "OpeningHoursSpecification",
"dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"],
"opens": "09:00",
"closes": "18:00"
},
"sameAs": [
"https://www.linkedin.com/company/elemento-modular-cloud/",
"https://github.com/elemento-modular-cloud",
"https://www.facebook.com/ElementoCloud/",
"https://www.instagram.com/elementocloud/"
]
}
</script>
<!-- FAQ Schema Markup -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "How does Elemento differ from traditional cloud providers?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Elemento is a vendor-neutral cloud platform that abstracts away the differences between cloud providers. Unlike traditional providers that lock you into their ecosystem, Elemento gives you a unified interface to deploy and manage workloads across AWS, Azure, Google Cloud, and your own infrastructure. This means you can move workloads freely without rewriting applications or changing your deployment processes."
}
},
{
"@type": "Question",
"name": "What are the cost savings compared to public cloud?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Customers typically save 60-80% on cloud costs through intelligent workload placement, real-time pricing optimization, and the ability to run workloads on your own hardware. Elemento enables real-time arbitrage across cloud providers and can automatically move workloads to the most cost-effective infrastructure while maintaining performance and reliability."
}
},
{
"@type": "Question",
"name": "How secure is the platform for enterprise use?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Elemento provides bank-grade security with end-to-end encryption, compliance-ready architecture, and the ability to run in your own data center for maximum control. We support SOC 2, GDPR, and industry-specific compliance requirements. All data is encrypted in transit and at rest, with optional customer-managed encryption keys."
}
},
{
"@type": "Question",
"name": "Can I migrate my existing applications?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes! Elemento supports migration from existing cloud providers and on-premises infrastructure. Our platform is compatible with standard virtualization technologies and container platforms. We provide migration tools and support to help you move workloads with minimal downtime. Most applications require no code changes."
}
},
{
"@type": "Question",
"name": "What kind of support and documentation is available?",
"acceptedAnswer": {
"@type": "Answer",
"text": "We provide comprehensive documentation and a knowledge base. Enterprise customers get dedicated support with SLAs, while community users can access our active community forum and GitHub repositories. We also offer training programs and workshops for teams."
}
},
{
"@type": "Question",
"name": "How does the free tier work?",
"acceptedAnswer": {
"@type": "Answer",
"text": "AtomOS is free forever — the full hypervisor with unlimited VMs on every server. Electros is free with your Elemento account until September 2026 (moving to a SaaS subscription afterwards), and you also get access to the Atomosphere API. This is perfect for testing, development, and production alike. Optional AtomOS support plans (Base and Pro, 8x5) are available whenever you need them."
}
},
{
"@type": "Question",
"name": "Does Elemento support Kubernetes and containers?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes! Elemento fully supports Kubernetes and container workloads. You can deploy and manage Kubernetes clusters across any cloud provider, and our platform provides additional orchestration capabilities on top of Kubernetes. We also support Docker containers and other container-native tools."
}
},
{
"@type": "Question",
"name": "What regions and data centers are supported?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Elemento supports 235+ data centers worldwide across all major cloud providers. This includes AWS regions, Azure regions, Google Cloud regions, and numerous edge locations. You can deploy workloads in any region and easily move them between regions for optimal performance and compliance."
}
}
]
}
</script>
<!-- Critical CSS - Inline the most critical styles to prevent FOUT -->
<style>
/* Critical rendering path styles - Load immediately to prevent font flash */
:root {
--background-color: #F5F5FA;
--text-color: #1A1C20;
--primary-color: #FFA600;
--primary-text-color: color-mix(in srgb, var(--primary-color) 50%, #1A1C20 50%);
--font-primary: 'Open Sans', sans-serif;
--font-heading: 'Red Hat Display', sans-serif;
--border-color: #e0e0e0;
--logo-filter: none;
}
/* Critical base styles */
html {
scroll-behavior: smooth;
}
body {
margin: 0;
padding: 0;
font-family: var(--font-primary);
color: var(--text-color);
background-color: var(--background-color);
line-height: 1.6;
overflow-x: hidden;
}
/* Critical heading styles to prevent layout shifts */
h1 {
font-size: 2.5rem;
font-weight: 700;
color: var(--text-color);
font-family: var(--font-heading);
line-height: 1.2;
margin-bottom: 1rem;
}
h2 {
font-size: 2rem;
font-weight: 600;
color: var(--text-color);
font-family: var(--font-heading);
line-height: 1.3;
margin-bottom: 0.75rem;
}
h3 {
font-size: 1.5rem;
font-weight: 600;
color: var(--text-color);
font-family: var(--font-heading);
line-height: 1.4;
margin-bottom: 0.5rem;
}
/* Critical hero title styles */
.hero-title {
font-size: 4rem;
font-weight: 800;
color: var(--text-color);
margin-bottom: 1.5rem;
font-family: var(--font-heading);
line-height: 1.2;
}
.hero-home .hero-subtitle,
.hero-home .home-tagline {
font-family: var(--font-heading);
}
/* Critical hero tagline styles */
.hero-tagline {
font-size: 1.1rem;
color: var(--primary-text-color);
font-weight: 600;
margin-bottom: 1rem;
text-transform: uppercase;
letter-spacing: 1px;
}
/* Critical splash screen styles */
.splash-screen {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--background-color);
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
opacity: 1;
visibility: visible;
transition: opacity 0.25s ease-out, visibility 0.25s ease-out;
}
.splash-screen.hidden {
opacity: 0;
visibility: hidden;
}
.splash-content {
text-align: center;
max-width: 300px;
}
.splash-logo {
margin-bottom: 2rem;
}
.splash-logo-img {
width: 120px;
height: 120px;
background-color: var(--accent-color);
mask-image: url(assets/logos/Elemento.svg);
mask-size: contain;
mask-repeat: no-repeat;
mask-position: center;
-webkit-mask-image: url(assets/logos/Elemento.svg);
-webkit-mask-size: contain;
-webkit-mask-repeat: no-repeat;
-webkit-mask-position: center;
}
.splash-loading {
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
}
.splash-spinner {
width: 40px;
height: 40px;
border: 3px solid var(--border-color);
border-top: 3px solid var(--primary-color);
border-radius: 50%;
animation: splash-spin 1s linear infinite;
}
.splash-text {
font-family: var(--font-primary);
color: var(--text-color);
font-size: 1rem;
font-weight: 500;
margin: 0;
}
@keyframes splash-spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* Hide main content during splash screen */
body.splash-loading {
overflow: hidden;
}
body.splash-loading #main-content {
opacity: 0;
visibility: hidden;
}
/* Responsive splash screen */
@media (max-width: 768px) {
.splash-logo-img {
width: 100px;
height: 50px;
}
.splash-spinner {
width: 32px;
height: 32px;
border-width: 2px;
}
.splash-text {
font-size: 0.9rem;
}
}
@media (max-width: 480px) {
.splash-logo-img {
width: 80px;
height: 40px;
}
.splash-spinner {
width: 28px;
height: 28px;
border-width: 2px;
}
.splash-text {
font-size: 0.8rem;
}
}
/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
.splash-spinner {
animation: none;
border-top-color: var(--primary-color);
}
.splash-screen {
transition: none;
}
}
</style>
<!-- Preload critical resources with optimized loading strategy -->
<link rel="preload" href="css/style.css" as="style">
<link rel="preload" href="css/themes.css" as="style">
<!-- Preload specific stylesheets -->
<link rel="preload" href="css/home.css" as="style">
<!-- Preload critical fonts -->
<link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-regular-400.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="assets/font/ArgentPixel/Web/ArgentPixel/ArgentPixel-Regular.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="assets/font/ArgentPixel/Web/ArgentPixel/ArgentPixel-RegularItalic.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="assets/font/PixelIconLibrary/iconfont.woff2" as="font" type="font/woff2" crossorigin>
<!-- Non-critical stylesheets with optimized loading -->
<link rel="stylesheet" href="css/themes.css" media="print" onload="this.media='all'">
<link rel="stylesheet" href="css/style.css" media="print" onload="this.media='all'">
<link rel="stylesheet" href="css/atmosphere.css" media="print" onload="this.media='all'">
<link rel="stylesheet" href="css/planet-styles/planet-index.css" media="print" onload="this.media='all'">
<!-- Home Page Styles -->
<link rel="stylesheet" href="css/home.css" media="print" onload="this.media='all'">
<link rel="stylesheet" href="css/components/home-hero.css" media="print" onload="this.media='all'">
<link rel="stylesheet" href="css/rocket.css" media="print" onload="this.media='all'">
<link rel="stylesheet" href="css/success-stories-carousel.css" media="print" onload="this.media='all'">
<!-- Fallback for browsers that don't support onload -->
<noscript>
<link rel="stylesheet" href="css/themes.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/atmosphere.css">
<link rel="stylesheet" href="css/planet-styles/planet-index.css">
<!-- Home Page Styles -->
<link rel="stylesheet" href="css/home.css">
<link rel="stylesheet" href="css/components/home-hero.css">
<link rel="stylesheet" href="css/rocket.css">
<link rel="stylesheet" href="css/success-stories-carousel.css">
</noscript>
<!-- Optimized font loading -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Red+Hat+Display:wght@300;400;500;600;700&family=Red+Hat+Mono:wght@400;500&display=swap" media="print" onload="this.media='all'">
<noscript>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Red+Hat+Display:wght@300;400;500;600;700&family=Red+Hat+Mono:wght@400;500&display=swap">
</noscript>
<!-- Font Awesome with optimized loading -->
<link rel="preconnect" href="https://cdnjs.cloudflare.com">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" media="print" onload="this.media='all'">
<noscript>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
</noscript>
<link rel="stylesheet" href="assets/font/PixelIconLibrary/iconfont.css" media="print" onload="this.media='all'">
<noscript>
<link rel="stylesheet" href="assets/font/PixelIconLibrary/iconfont.css">
</noscript>
<!-- Font Awesome font-display: swap override -->
<style>
@font-face {
font-family: 'Font Awesome 6 Free';
font-style: normal;
font-weight: 900;
font-display: swap;
src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff2') format('woff2');
}
@font-face {
font-family: 'Font Awesome 6 Free';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-regular-400.woff2') format('woff2');
}
@font-face {
font-family: 'Font Awesome 6 Brands';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.woff2') format('woff2');
}
</style>
<!-- Matomo: Iubenda Cookie Solution — data-iub-purposes="4" must match Statistics/Matomo in iubenda dashboard -->
<script type="text/plain" class="_iub_cs_activate" data-iub-purposes="4" src="js/matomo-tracking.js"></script>
</head>
<body class="">
<!-- Splash Screen -->
<div id="splash-screen" class="splash-screen">
<div class="splash-content">
<div class="splash-logo">
<div class="splash-logo-img"></div>
</div>
</div>
</div>
<!-- Skip to main content link for accessibility -->
<a href="#main-content" class="skip-link">Skip to main content</a>
<!-- Navigation -->
<div id="navbar-placeholder"></div>
<!-- Main Content -->
<main id="main-content">
<!-- Hero Section -->
<section class="hero hero-home" role="banner" aria-label="Elemento Homepage Hero">
<div class="hero-wow" aria-hidden="true"><div id="hero-wow-placeholder"></div></div>
<div id="atmosphere-hero-placeholder"></div>
<div class="hero-container hero-vert-center hero-home__headline">
<div class="hero-content">
<div class="hero-buttons fade-in">
<h1 class="hero-title">Elemento.<br><span id="hero-metacloud" class="hero-metacloud">The Metacloud.</span></h1>
<div class="hero-subtitle">
<p class="home-tagline"><a href="electros.html" class="home-tagline-link home-tagline-link--electros">Electros</a>, the control plane for every cloud, hypervisor and sovereign infrastructure.</p>
<p class="home-tagline">Govern, move and optimise workloads across AWS, Azure, Google Cloud, OVHcloud, VMware, Proxmox and <a href="atomos.html" class="home-tagline-link home-tagline-link--atomos">AtomOS</a> — without replacing what already exists.</p>
</div>
</div>
</div>
</div>
<div class="hero-container hero-vert-center hero-home__cta">
<div class="hero-content">
<div class="hero-buttons fade-in">
<div class="quick-contact-options hero-cta">
<a href="https://book.elemento.cloud/" class="btn btn-primary quick-contact-btn rocket-btn" target="_blank" rel="noopener noreferrer">
<div class="rocket-container">
<i class="fas fa-rocket rocket-icon"></i>
<i class="fas rocket-flyaway"></i>
</div>
<span>Book a Metacloud Assessment</span>
</a>
<a href="compare-costs.html#cost-calculator" class="btn btn-secondary quick-contact-btn">
<i class="fas fa-route"></i>
<span>Run VMware Exit Assessment</span>
</a>
</div>
<p class="hero-secondary-link">
<a href="products.html">Explore Platform →</a>
</p>
</div>
</div>
</div>
</section>
<!-- Mobile portrait: vertical Metacloud umbrella (orbit hidden in hero) -->
<section class="metacloud-stack" aria-labelledby="metacloud-stack-title" id="metacloud-stack">
<div class="container metacloud-stack__inner">
<p class="metacloud-stack__lead">One governance layer across public clouds, hypervisors and sovereign providers — without replacing what you already run.</p>
<div class="metacloud-stack__graph" id="metacloud-stack-graph">
<svg class="metacloud-stack__svg hero-link-svg" aria-hidden="true"></svg>
<div class="metacloud-stack__tier metacloud-stack__tier--public">
<div class="metacloud-stack__grid" id="metacloud-stack-public"></div>
</div>
<div class="metacloud-stack__hub-wrap">
<span class="metacloud-stack__glow" aria-hidden="true"></span>
<h2 id="metacloud-stack-title" class="metacloud-stack__title">
<span class="hero-metacloud metacloud-stack__hub-node" id="metacloud-stack-hub">The Metacloud.</span>
</h2>
</div>
<div class="metacloud-stack__tier metacloud-stack__tier--private">
<div class="metacloud-stack__grid" id="metacloud-stack-private"></div>
</div>
</div>
</div>
</section>
<!-- Trusted By Section -->
<!-- <section class="section trusted-section">
<div class="container carousel-container">
<br>
<h2 class="section-title text-center">Trusted by leading companies</h2>
<div id="logo-carousel" class="logo-carousel">
<div class="logo-carousel-loading">
<div class="loading-spinner"></div>
<p>Loading trusted companies...</p>
</div>
</div>
</div>
</section> -->
<!-- Hero Details Section -->
<section class="section hero-details">
<div class="container">
<div class="content-with-image">
<div class="content-text">
<h2>Your <span class="pixel-accent">Cloud</span>, Your <span class="pixel-word">Control</span></h2>
<p>We unify all Clouds into a <span class="pixel-word">universal platform</span> that gives you <span class="pixel-word">freedom</span> of choice, the best prices and the flexibility to move seamlessly between public and private Clouds. With Elemento, you set <span class="pixel-word">your rules</span> for how your infrastructure operates, ensuring complete <span class="pixel-word">freedom</span> from vendor lock-in. Learn more about our <a href="about.html">mission and values</a> or explore our <a href="products.html">complete product suite</a>.</p>
<div class="feature-list">
<div class="feature-item">
<h3><span class="highlight-pixel">Escape</span> vendor lock-in</h3>
<p>Full portability of workloads across any cloud provider</p>
</div>
<div class="feature-item">
<h3><span class="highlight-pixel">Spin up</span> your cloud everywhere</h3>
<p>Deploy workloads quickly on public or private clouds</p>
</div>
<div class="feature-item">
<h3><span class="highlight-pixel">Unified</span> management & total control</h3>
<p>Manage all resources from a single interface or via CLI - your rules, your way</p>
</div>
<div class="feature-item">
<h3><span class="highlight-pixel">Composable</span> cloud infrastructure</h3>
<p>Assemble and scale VMs, storage, and networking as needed</p>
</div>
<div class="feature-item">
<h3><span class="highlight-pixel">Cost</span> efficiency</h3>
<p>Optimize expenses and maximize ROI across multiple clouds</p>
</div>
<div class="feature-item">
<h3><span class="highlight-pixel">Sovereignty</span>, Security, Compliance</h3>
<p>Operate where you need with enterprise-grade security and full control - complete freedom to choose your deployment strategy</p>
</div>
</div>
</div>
<div class="content-image">
<img src="./assets/img/Home - Hero - 1 ALT - small.webp" alt="Elemento Cloud Factory Architecture showing unified cloud management across multiple providers and data centers" class="hero-detail-image" style="object-position: right;" loading="lazy" decoding="async">
</div>
</div>
</div>
</section>
<!-- Product Suite Section -->
<section id="platform" class="section">
<div class="container">
<div class="section-header">
<h2 class="section-title">Meet the Cloud Factory Components</h2>
</div>
<div class="grid grid-3">
<div class="product-card scroll-animate">
<img src="./assets/logos/Atomos.svg" alt="AtomOS hypervisor logo - Linux-based hypervisor for cloud infrastructure" class="product-icon-medium" width="48" height="48">
<h3>AtomOS</h3>
<h4>The Hypervisor That Works Like a Cloud Kernel</h4>
<p>Production-grade, KVM-based hypervisor for running VMs on bare metal, edge, or enterprise clusters. Deploy in minutes with enterprise-grade security, GPU passthrough support, and full RHEL compatibility.</p>
<div class="product-features">
<span class="feature-tag">KVM-based</span>
<span class="feature-tag">GPU passthrough</span>
<span class="feature-tag">RHEL compatible</span>
</div>
<a href="/atomos.html" class="btn btn-primary">Learn About AtomOS</a>
</div>
<div class="product-card scroll-animate highlighted">
<img src="./assets/logos/Electros.svg" alt="Electros orchestration dashboard logo - unified cloud management interface" class="product-icon-medium" width="48" height="48">
<h3>Electros</h3>
<h4>Your Cloud Control Center</h4>
<p>Unified GUI and CLI to deploy, monitor, and orchestrate virtual machines across any cloud or infrastructure. Control your entire cloud environment from one intuitive interface with real-time insights, automated scaling, and cross-platform compatibility.</p>
<div class="product-features">
<span class="feature-tag">Cross-platform</span>
<span class="feature-tag">Real-time monitoring</span>
<span class="feature-tag">Automated scaling</span>
</div>
<a href="/electros.html" class="btn btn-primary">Learn About Electros</a>
</div>
<div class="product-card scroll-animate">
<img src="./assets/logos/Atomosphere.svg" alt="Atomosphere API logo - Federated multicloud gateway connecting 235+ data centers" class="product-icon-medium" width="48" height="48">
<h3>Atomosphere</h3>
<h4>The API Layer for Federated Cloud</h4>
<p>Unified API that maps every cloud provider into a single programmable interface for seamless orchestration. Access 235+ data centers worldwide with intelligent cost optimization and dynamic failover capabilities.</p>
<div class="product-features">
<span class="feature-tag">235+ data centers</span>
<span class="feature-tag">Cost optimization</span>
<span class="feature-tag">Dynamic failover</span>
</div>
<a href="/atomosphere.html" class="btn btn-primary">Learn About Atomosphere</a>
</div>
</div>
</div>
</section>
<!-- Architecture Diagram Section -->
<section class="section">
<div class="container">
<div class="section-header">
<h2 class="section-title">Inside the Elemento Cloud Architecture</h2>
<p class="section-subtitle">
From hypervisors to APIs, every layer is programmable and vendor-neutral.
</p>
</div>
<div class="diagram-svg" src="./assets/diagrams/Homepage.svg">
<!-- SVG will be injected here programmatically -->
<div style="text-align: center; padding: 2rem; color: var(--text-muted);">
<p>Loading diagram...</p>
</div>
</div>
</div>
</section>
<!-- Technical Specifications -->
<section class="section">
<div class="container">
<div class="section-header">
<h2 class="section-title">Technical Specifications</h2>
<p class="section-subtitle">
Enterprise-grade infrastructure designed for modern cloud-native applications.
Full reference available in our <a href="https://bookstack.elemento.cloud" target="_blank" rel="noopener noreferrer">technical documentation</a>.
</p>
</div>
<div class="specs-grid">
<div class="spec-item scroll-animate">
<div class="spec-item-header">
<div class="spec-item-icon"><i class="fas fa-server" aria-hidden="true"></i></div>
<h3>AtomOS Host Requirements</h3>
</div>
<ul>
<li>64-bit x86_64 CPU with Intel VT-x or AMD-V</li>
<li>4 GB RAM minimum (8 GB+ recommended)</li>
<li>20 GB+ free disk space</li>
<li>AlmaLinux 9 / Rocky Linux 9 (compute & full)</li>
<li>AlmaLinux 9, Rocky 9 or Ubuntu ≥24 (storage nodes)</li>
<li>Mainline Linux kernel, RHEL-compliant userspace</li>
</ul>
</div>
<div class="spec-item scroll-animate">
<div class="spec-item-header">
<div class="spec-item-icon"><i class="fas fa-cubes" aria-hidden="true"></i></div>
<h3>Supported Guests</h3>
</div>
<ul>
<li>Linux: Ubuntu, AlmaLinux, Rocky, RHEL, Debian, CentOS</li>
<li>Windows Server 2019 / 2022, Windows 10 / 11</li>
<li>BSD family and custom KVM-compatible images</li>
<li>Nested virtualization (GCP, AWS, Azure bare metal)</li>
<li>GPU-accelerated guests via automatic passthrough</li>
</ul>
</div>
<div class="spec-item scroll-animate">
<div class="spec-item-header">
<div class="spec-item-icon"><i class="fas fa-cloud" aria-hidden="true"></i></div>
<h3>Cloud Providers & Federation</h3>
</div>
<ul>
<li>AWS EC2, EBS & Bare Metal</li>
<li>Azure VMs, Disks & Bare Metal</li>
<li>Google Cloud Compute & Persistent Disk</li>
<li>10+ CSPs unified via Atomosphere</li>
<li>235+ data centers reachable through Atomosphere</li>
<li>On-premises, colocation and edge nodes</li>
</ul>
</div>
<div class="spec-item scroll-animate">
<div class="spec-item-header">
<div class="spec-item-icon"><i class="fas fa-network-wired" aria-hidden="true"></i></div>
<h3>Clustering & Networking</h3>
</div>
<ul>
<li>Autonomous clustering with <strong>C4 protocol</strong></li>
<li>Zero centralized services — no controller VM required</li>
<li>Live VM migration across nodes</li>
<li>Software-defined networking & VLAN segmentation</li>
<li>Multi-region & hybrid (public + private) deployments</li>
</ul>
</div>
<div class="spec-item scroll-animate">
<div class="spec-item-header">
<div class="spec-item-icon"><i class="fas fa-hard-drive" aria-hidden="true"></i></div>
<h3>Storage</h3>
</div>
<ul>
<li>Local block storage on compute nodes</li>
<li>Distributed storage via ZFS and GlusterFS modules</li>
<li>Dedicated storage-only nodes (AlmaLinux 9 / Ubuntu ≥24)</li>
<li>Snapshotting, thin provisioning and live resize</li>
<li>Integration with cloud block storage (EBS, Azure Disks, GCP PD)</li>
</ul>
</div>
<div class="spec-item scroll-animate">
<div class="spec-item-header">
<div class="spec-item-icon"><i class="fas fa-shield-halved" aria-hidden="true"></i></div>
<h3>Security & Compliance</h3>
</div>
<ul>
<li>Secure Boot and ECC memory support</li>
<li>GPU passthrough with IOMMU isolation</li>
<li>Upstream Linux security updates (no vendor backports)</li>
<li>Data sovereignty via self-hostable deployments</li>
<li>Role-based access control through Electros</li>
</ul>
</div>
<div class="spec-item scroll-animate">
<div class="spec-item-header">
<div class="spec-item-icon"><i class="fas fa-sliders" aria-hidden="true"></i></div>
<h3>Management & Tooling</h3>
</div>
<ul>
<li>Electros desktop: Linux AppImage, macOS (Intel / Apple Silicon), Windows 10/11 x64, .deb packages</li>
<li>Electros CLI via <code>pip install elemento-cli</code> (Python 3.9+)</li>
<li>Local Cockpit-based Web UI on <code>:9090</code></li>
<li>Unified REST API through the Elemento gateway</li>
<li>Terraform / IaC-ready for DevOps pipelines</li>
</ul>
</div>
<div class="spec-item scroll-animate">
<div class="spec-item-header">
<div class="spec-item-icon"><i class="fas fa-gauge-high" aria-hidden="true"></i></div>
<h3>Performance</h3>
</div>
<ul>
<li>Sub-second VM provisioning</li>
<li>+70% VM CPU performance vs. legacy stacks</li>
<li>1000+ VMs per host at scale</li>
<li>99.9% uptime SLA with autonomous failover</li>
<li>Real-time cross-CSP cost comparison</li>
<li>Dynamic auto-scaling & multi-region deployment</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Why Choose Us Comparison Section -->
<section class="section features home-why-choose">
<div class="container">
<div class="section-header">
<h2 class="section-title">Why choose us</h2>
<p class="section-subtitle">How AtomOS compares to the industry-leading virtualization platform</p>
</div>
<div class="comparison-table fade-in">
<div class="table-container comparison-table-container">
<table class="comparison-table">
<thead>
<tr class="comparison-table-header">
<th>Feature</th>
<th>Vmware VSphere</th>
<th class="comparison-table-cell-primary">Elemento AtomOS</th>
</tr>
</thead>
<tbody>
<tr class="comparison-table-row-alt">
<td class="comparison-table-cell">Hypervisor Class</td>
<td class="comparison-table-cell-secondary">Type 1</td>
<td class="comparison-table-cell-primary">Type 1</td>
</tr>
<tr class="comparison-table-row">
<td class="comparison-table-cell">Operating System</td>
<td class="comparison-table-cell-secondary">Proprietary Kernel</td>
<td class="comparison-table-cell-primary">Almalinux (RHEL binary compatible)</td>
</tr>
<tr class="comparison-table-row-alt">
<td class="comparison-table-cell">Virtualization Engine</td>
<td class="comparison-table-cell-secondary">Proprietary Closed-Source</td>
<td class="comparison-table-cell-primary">Upstream "Vanilla" KVM/QEMU</td>
</tr>
<tr class="comparison-table-row">
<td class="comparison-table-cell">Management</td>
<td class="comparison-table-cell-secondary">vCenter Server VM</td>
<td class="comparison-table-cell-primary">Electros orchestration dashboard (Web UI + CLI) & REST API</td>
</tr>
<tr class="comparison-table-row-alt">
<td class="comparison-table-cell">Licensing</td>
<td class="comparison-table-cell-secondary">Commercial, CPU-based</td>
<td class="comparison-table-cell-primary">Server-based (not CPU cores or VM count)</td>
</tr>
<tr class="comparison-table-row">
<td class="comparison-table-cell">Cluster Setup</td>
<td class="comparison-table-cell-secondary">Manual w/ License</td>
<td class="comparison-table-cell-primary">Auto-discovery w/ License (with our C4 patented protocol)</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</section>
<!-- Use Cases Section - Enhanced -->
<section class="section use-cases-enhanced">
<div class="container">
<div class="section-header">
<h2 class="section-title">Perfect For Your Use Case</h2>
<p class="section-subtitle">
Whether you're a startup scaling rapidly or an enterprise modernizing legacy systems, Elemento adapts to your needs. Discover our <a href="technology.html">advanced technology stack</a> and read success stories on our <a href="blog.html">blog</a>.
</p>
</div>
<div class="use-cases-grid">
<div class="use-case-card scroll-animate">
<div class="use-case-icon"><i class="hn hn-plane" style="color: var(--accent-color);"></i></div>
<h3>Startups & Scale-ups</h3>
<p>Launch quickly without vendor lock-in. Scale efficiently as you grow with predictable costs and full control over your infrastructure. Set your rules for deployment and enjoy complete freedom from vendor constraints. Perfect for rapid prototyping and MVP development.</p>
<div class="use-case-features">
<span class="feature-tag">Rapid deployment</span>
<span class="feature-tag">Cost control</span>
<span class="feature-tag">No lock-in</span>
</div>
<div class="use-case-benefits">
<div class="benefit-item">
<i class="fas fa-rocket"></i>
<span>Deploy in minutes</span>
</div>
<div class="benefit-item">
<i class="fas fa-chart-line"></i>
<span>Scale as you grow</span>
</div>
<div class="benefit-item">
<i class="fas fa-shield-alt"></i>
<span>Enterprise security</span>
</div>
</div>
</div>
<div class="use-case-card scroll-animate">
<div class="use-case-icon"><i class="hn hn-bank" style="color: var(--blue);"></i></div>
<h3>Enterprise Migration</h3>
<p>Modernize legacy applications with minimal disruption. Migrate to cloud-native architecture while maintaining compliance and security. Define your rules for governance and enjoy the freedom to choose your cloud strategy. Support for hybrid and multi-cloud strategies.</p>
<div class="use-case-features">
<span class="feature-tag">Legacy migration</span>
<span class="feature-tag">Compliance ready</span>
<span class="feature-tag">Hybrid cloud</span>
</div>
<div class="use-case-benefits">
<div class="benefit-item">
<i class="fas fa-sync-alt"></i>
<span>Zero-downtime migration</span>
</div>
<div class="benefit-item">
<i class="fas fa-certificate"></i>
<span>Compliance certified</span>
</div>
<div class="benefit-item">
<i class="fas fa-network-wired"></i>
<span>Multi-cloud support</span>
</div>
</div>
</div>
<div class="use-case-card scroll-animate">
<div class="use-case-icon"><i class="hn hn-cog" style="color: var(--purple);"></i></div>
<h3>DevOps Teams</h3>
<p>Streamline CI/CD pipelines with infrastructure as code. Deploy faster with automated provisioning and monitoring. Integrate with existing tools and workflows seamlessly.</p>
<div class="use-case-features">
<span class="feature-tag">Infrastructure as Code</span>
<span class="feature-tag">CI/CD integration</span>
<span class="feature-tag">Automated scaling</span>
</div>
<div class="use-case-benefits">
<div class="benefit-item">
<i class="fas fa-code"></i>
<span>Infrastructure as Code</span>
</div>
<div class="benefit-item">
<i class="fas fa-robot"></i>
<span>Automated workflows</span>
</div>
<div class="benefit-item">
<i class="fas fa-tools"></i>
<span>Tool integration</span>
</div>
</div>
</div>