-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathai-innovation.html
More file actions
1128 lines (1011 loc) · 52.1 KB
/
Copy pathai-innovation.html
File metadata and controls
1128 lines (1011 loc) · 52.1 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>
<script src="https://app.secureprivacy.ai/script/69999f793956998e8c6d4f9c.js"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-0GH52FYXR0"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-0GH52FYXR0');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" href="assets/images/ionity-logo-edited.png">
<meta name="theme-color" content="#1A1A1A">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Google Tag Manager with Consent Mode v2 | ionity.yumyum -->
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('consent', 'default', {
'ad_storage': 'denied',
'ad_user_data': 'denied',
'ad_personalization': 'denied',
'analytics_storage': 'denied',
'wait_for_update': 500
});
const GTM_ID = 'GTM-XXXXXX';
function loadGTM() {
(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer', GTM_ID);
}
if (localStorage.getItem('ionity_cookie_consent') === 'granted') {
gtag('consent', 'update', {
'ad_storage': 'granted',
'ad_user_data': 'granted',
'ad_personalization': 'granted',
'analytics_storage': 'granted'
});
loadGTM();
}
</script>
<!-- End Google Tag Manager -->
<meta name="format-detection" content="telephone=yes">
<title>Ionity AI Innovation | Generative AI for Hardware & AIoT Intelligence</title>
<meta name="description" content="Ionity's AI innovation platform leverages generative AI for hardware design optimization and on-device intelligence. Real-time edge AI processing, autonomous systems design, and predictive capabilities for industrial AIoT.">
<meta name="keywords" content="AIoT Innovation, Generative AI for Hardware Design, On-device Intelligence, Edge AI Integration, Autonomous Systems Design, Predictive Maintenance AI, Real-time Edge Processing, On-device AI Orchestration, AI Hardware Optimization, Digital Twin Systems, Industrial AI, Industrial AIoT, Ionity AI Innovation, South Africa">
<meta name="author" content="Johan Wilhelm van Antwerp">
<meta name="generator" content="AEDI Automated Ecosystems Designs Intelligence">
<meta name="robots" content="index, follow, max-image-preview:large">
<meta name="revisit-after" content="7 days">
<meta name="copyright" content="© 2018–2026 Antwerp Designs | Ionity (Pty) Ltd">
<meta name="rights" content="All rights reserved. TM². Policy AED 986. License AED 900.">
<meta name="license" content="https://creativecommons.org/licenses/by-nc-sa/4.0/">
<meta name="geo.region" content="ZA-GT">
<meta name="geo.placename" content="Pretoria">
<meta name="geo.position" content="-25.7479;28.2293">
<meta name="ICBM" content="-25.7479, 28.2293">
<meta property="og:type" content="business.business">
<meta property="og:site_name" content="Ionity | Antwerp Designs">
<meta property="og:title" content="Ionity | Building Tomorrow, Today">
<meta property="og:url" content="https://www.ionity.today/">
<meta property="og:image" content="https://www.ionity.today/assets/images/ionity-social-card.png">
<meta property="og:image:alt" content="Ionity Ecosystems - Hardware and Software Integration">
<meta property="og:description" content="Ecosystems Solutionist. Connecting Cloud, Edge, AI, and Hardware. Creator of power-saving units and secure automation systems. Anything is Possible with God.">
<meta property="og:locale" content="en_US">
<meta property="business:contact_data:street_address" content="Pretoria, Gauteng">
<meta property="business:contact_data:locality" content="Pretoria">
<meta property="business:contact_data:region" content="Gauteng">
<meta property="business:contact_data:postal_code" content="0157">
<meta property="business:contact_data:country_name" content="South Africa">
<meta property="business:contact_data:email" content="johan@ionity.today">
<meta property="business:contact_data:phone_number" content="+27 64 699 9877">
<meta property="business:contact_data:website" content="https://www.ionity.today/">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@AntwerpDesigns">
<meta name="twitter:creator" content="@AntwerpDesigns">
<meta name="twitter:title" content="Ionity | IoT & AI Hardware Systems">
<meta name="twitter:description" content="Developing the future of Edge Computing, SCADA, and Power-Saving Hardware. Founder: Johan Wilhelm van Antwerp.">
<meta name="twitter:image" content="https://www.ionity.today/assets/images/ionity-social-card.png">
<link rel="schema.DC" href="http://purl.org/dc/elements/1.1/">
<meta name="DC.title" content="Ionity | Antwerp Designs Ecosystems">
<meta name="DC.creator" content="Johan Wilhelm van Antwerp">
<meta name="DC.identifier" content="ID: 9003135105083">
<meta name="DC.subject" content="IoT, AI, Hardware Development, Cloud Integration">
<meta name="DC.description" content="Official portal for Ionity and Antwerp Designs ecosystem solutions.">
<meta name="DC.publisher" content="Ionity (Pty) Ltd">
<meta name="DC.date" content="2026-02-12">
<meta name="DC.language" content="en">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Organization",
"@id": "https://www.ionity.today/#organization",
"name": "Ionity",
"alternateName": [
"Antwerp Designs",
"AEDI",
"Antwerp Ecosystems Designs Ionity",
"Ionity (Pty) Ltd"
],
"url": "https://www.ionity.today/",
"logo": "https://www.ionity.today/assets/images/logo.png",
"foundingDate": "2018",
"slogan": "Building Tomorrow, Today. Anything is Possible with God.",
"description": "Designers and builders of secure systems connecting devices, automating operations, and unlocking real-time intelligence. Specialists in edge computing, embedded hardware, and power-saving units.",
"email": [
"johan@ionity.today",
"ai@ionity.today",
"services@ionity.world",
"admin@ionity.today"
],
"telephone": "+27-64-699-9877",
"address": {
"@type": "PostalAddress",
"addressLocality": "Pretoria",
"addressRegion": "Gauteng",
"addressCountry": "ZA"
},
"areaServed": "Global",
"contactPoint": [
{
"@type": "ContactPoint",
"telephone": "+27-64-699-9877",
"contactType": "technical support",
"email": "johan@ionity.today",
"availableLanguage": ["English", "Afrikaans"]
},
{
"@type": "ContactPoint",
"email": "ai@ionity.today",
"contactType": "AI services"
}
]
},
{
"@type": "Person",
"@id": "https://www.ionity.today/#author",
"name": "Johan Wilhelm van Antwerp",
"alternateName": "IO",
"identifier": [
{
"@type": "PropertyValue",
"propertyID": "ID",
"value": "9003135105083"
},
{
"@type": "PropertyValue",
"propertyID": "ORCID",
"value": "0009-0005-7181-0347"
}
],
"jobTitle": [
"Ecosystems Solutionist",
"IoT Engineer",
"Toolmaker & Product Developer",
"Mechanical Engineer",
"Integration Specialist",
"Founder"
],
"worksFor": {
"@id": "https://www.ionity.today/#organization"
},
"url": "https://www.ionity.world",
"knowsAbout": [
"IoT (Internet of Things)",
"AI (Artificial Intelligence)",
"Hardware Design",
"Software Development",
"Cloud Services",
"Cyber Security",
"PdM",
"CMS",
"DAQ",
"F-iT"
],
"email": "johanvanantwerp@gmail.com"
},
{
"@type": "WebSite",
"@id": "https://www.ionity.today/#website",
"url": "https://www.ionity.today/",
"name": "Ionity Digital Ecosystem",
"description": "Unity in IO | Ionity",
"publisher": {
"@id": "https://www.ionity.today/#organization"
},
"copyrightHolder": {
"@id": "https://www.ionity.today/#organization"
},
"copyrightYear": "2026",
"license": "https://creativecommons.org/licenses/by-nc-sa/4.0/"
}
]
}
</script>
<link rel="manifest" href="/manifest.json">
<link rel="canonical" href="https://www.ionity.today/ai-innovation.html" />
<!-- Alternate Language Hreflang for SEO -->
<link rel="alternate" hreflang="en" href="https://www.ionity.today/ai-innovation.html" />
<link rel="alternate" hreflang="en-ZA" href="https://www.ionity.today/ai-innovation.html" />
<link rel="alternate" hreflang="x-default" href="https://www.ionity.today/ai-innovation.html" />
<link rel="icon" type="image/png" href="assets/images/ionity-logo-edited.png">
<link type="text/plain" rel="author" href="humans.txt" />
<link rel="stylesheet" href="assets/css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="dns-prefetch" href="https://fonts.googleapis.com">
<style>
:root {
--bg-dark: #000000;
--accent-cyan: #00d2ff;
--accent-purple: #bb00ff;
--accent-gold: #ffd700;
--text-main: #ffffff;
--border: rgba(255, 255, 255, 0.15);
}
body, html {
margin: 0;
padding: 0;
background-color: var(--bg-dark);
font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
color: var(--text-main);
width: 100%;
}
/* --- 3D CANVAS BACKGROUND --- */
#canvas-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1; /* Moved up to sit above matrix */
}
#matrix-canvas {
position: fixed;
top: 0; left: 0; width: 100%; height: 100%;
z-index: 0;
opacity: 0.15; /* Subtle blend */
}
.scanlines {
position: fixed;
top: 0; left: 0; width: 100%; height: 100%;
background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.2));
background-size: 100% 4px;
pointer-events: none;
z-index: 99;
opacity: 0.3;
}
/* --- GLOW ANIMATIONS --- */
@keyframes neonPulse {
0% { text-shadow: 0 0 5px rgba(255,255,255,0.8), 0 0 10px var(--accent-cyan); }
50% { text-shadow: 0 0 10px #fff, 0 0 20px var(--accent-cyan), 0 0 40px var(--accent-cyan); }
100% { text-shadow: 0 0 5px rgba(255,255,255,0.8), 0 0 10px var(--accent-cyan); }
}
/* --- NAVIGATION --- */
nav {
padding: 0 5vw;
height: 80px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid var(--border);
background: rgba(2, 2, 4, 0.9);
-webkit-backdrop-filter: blur(12px);
backdrop-filter: blur(12px);
position: fixed;
width: 100%;
top: 0;
left: 0;
box-sizing: border-box;
z-index: 1001;
}
.logo {
display: flex;
align-items: center;
text-decoration: none;
}
.nav-logo {
height: 80px;
width: auto;
transition: all 0.3s ease;
}
.nav-links {
display: flex;
gap: 2rem;
}
.nav-links a {
color: rgba(255, 255, 255, 0.85);
text-decoration: none;
font-size: 0.62rem;
text-transform: uppercase;
letter-spacing: 0.15rem;
transition: all 0.3s ease;
position: relative;
padding: 0.5rem 0;
font-weight: 600;
}
.nav-links a:hover {
color: #fff;
text-shadow: 0 0 10px #00d2ff;
}
.nav-links a.active {
color: #00d2ff;
text-shadow: 0 0 15px #00d2ff;
border-bottom: 1px solid #00d2ff;
}
.mobile-menu-btn {
display: none;
background: none;
border: none;
color: #fff;
font-size: 1.5rem;
cursor: pointer;
z-index: 1002;
}
.mobile-dropdown {
display: none;
position: fixed;
top: 80px;
right: 0;
width: 280px;
background: rgba(5, 10, 15, 0.95);
border: 1px solid #00d2ff;
flex-direction: column;
padding: 1rem 0;
box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.8);
z-index: 1000;
-webkit-backdrop-filter: blur(20px);
backdrop-filter: blur(20px);
}
.mobile-dropdown.open {
display: flex;
}
.mobile-dropdown a {
color: #fff;
padding: 1rem 2rem;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 0.1rem;
font-size: 0.7rem;
border-bottom: 1px solid rgba(255,255,255,0.05);
}
@media (max-width: 1100px) {
.nav-links { display: none; }
.mobile-menu-btn { display: block; }
}
/* --- CONTENT WRAPPER --- */
.hero-container {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
padding-left: 5vw;
padding-top: 80px;
box-sizing: border-box;
z-index: 10;
}
.content-overlay {
text-align: left;
z-index: 10;
pointer-events: none;
width: 45vw; /* Limit width */
}
.details-section {
position: relative;
z-index: 10;
padding: 5rem 5vw;
background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 20%, #000000 100%);
margin-top: -10vh; /* Overlap slightly or just flow */
}
.details-content {
max-width: 900px;
}
.details-title {
color: var(--accent-cyan);
font-size: 2rem;
margin-bottom: 2rem;
text-transform: uppercase;
letter-spacing: 0.2rem;
border-left: 3px solid var(--accent-cyan);
padding-left: 1.5rem;
}
.details-text {
font-size: 1.2rem;
line-height: 1.8;
color: #dcdcdc;
text-shadow: 0 0 2px rgba(0,0,0,0.8);
}
.main-title {
font-size: 4rem; /* Adjusted for side layout */
font-weight: 800;
letter-spacing: 0.5rem;
color: #ffffff;
-webkit-text-stroke: 1px var(--accent-cyan);
text-transform: uppercase;
margin: 0;
mix-blend-mode: normal;
position: relative;
display: inline-block;
border-bottom: 2px solid var(--accent-cyan);
padding-bottom: 1rem;
}
.main-title::after {
content: '_';
animation: blink 1s infinite;
color: var(--accent-cyan);
}
.sub-title {
font-family: 'Courier New', monospace;
font-size: 1.1rem;
color: var(--accent-cyan);
letter-spacing: 0.2rem;
margin-top: 2rem;
text-shadow: 0 0 10px var(--accent-cyan);
line-height: 1.6;
background: rgba(0, 0, 0, 0.6);
padding: 1rem;
border-left: 2px solid var(--accent-cyan);
}
@keyframes blink { 50% { opacity: 0; } }
@keyframes glitch {
0% { text-shadow: 2px 0 var(--accent-cyan), -2px 0 var(--accent-purple); }
2% { text-shadow: -2px 0 var(--accent-purple), 2px 0 var(--accent-cyan); }
4% { text-shadow: 2px 0 var(--accent-cyan), -2px 0 var(--accent-purple); }
5% { text-shadow: none; }
100% { text-shadow: none; }
}
/* Digital Data Decor */
.digital-decor {
position: absolute;
top: -20px; right: 0;
font-size: 0.6rem;
color: var(--accent-cyan);
-webkit-text-stroke: 0; /* Prevent inheritance */
background: rgba(0, 210, 255, 0.1);
padding: 2px 5px;
letter-spacing: 1px;
}
/* --- FOOTER --- */
footer {
position: relative;
width: 100%;
background: rgba(2, 2, 4, 0.95);
padding: 3rem 5vw 0 5vw;
border-top: 1px solid var(--border);
text-align: center;
color: var(--text-muted);
font-size: 0.7rem;
z-index: 10;
line-height: 2.2;
box-sizing: border-box;
}
footer a { color: var(--accent-cyan); text-decoration: none; margin: 0 10px; transition: color 0.3s; font-weight: 600; text-shadow: 0 0 5px var(--accent-cyan); }
footer a:hover { color: #ffffff; text-shadow: 0 0 15px var(--accent-cyan); }
.footer-logo-container {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 1rem;
width: 100%;
}
.footer-logo {
height: 60px;
width: auto;
opacity: 0.9;
}
/* --- DECK LAYOUT (horizontal scroll) handled by style.css body.deck-layout --- */
</style>
</head>
<body class="deck-layout">
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-XXXXXX"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<canvas id="matrix-canvas"></canvas>
<div id="canvas-container"></div>
<div class="scanlines"></div>
<nav id="mainNav">
<a href="index.html" class="logo">
<img src="assets/images/ionity-logo-edited.png" alt="IONITY" class="nav-logo">
</a>
<div class="nav-links">
<a href="index.html">Home</a>
<a href="inner-Page.html">Systems</a>
<a href="what-we-do.html">What We Do</a>
<a href="ai-innovation.html" class="active">AI Innovation</a>
<a href="ai-news.html">AI News</a>
<a href="roadmap.html">Roadmap</a>
<a href="license.html">License</a>
<a href="privacy.html">Privacy</a>
<a href="subscriptions.html">Subscriptions</a>
<a href="terms.html">Terms</a>
<a href="about.html">About</a>
<a href="aedi-online.html">AEDI Online</a>
<a href="contact.html">Contact</a>
<a href="firmware-development.html">Dev</a>
<a href="gateway.html">IO Way</a>
</div>
<button class="mobile-menu-btn" onclick="toggleMenu()">☰</button>
</nav>
<!-- Mobile Dropdown -->
<div class="mobile-dropdown" id="mobileMenu">
<a href="index.html">Home</a>
<a href="inner-Page.html">Systems</a>
<a href="what-we-do.html">What We Do</a>
<a href="ai-innovation.html" class="active">AI Innovation</a>
<a href="ai-news.html">AI News</a>
<a href="roadmap.html">Roadmap</a>
<a href="license.html">License</a>
<a href="privacy.html">Privacy</a>
<a href="subscriptions.html">Subscriptions</a>
<a href="terms.html">Terms</a>
<a href="about.html">About</a>
<a href="aedi-online.html">AEDI Online</a>
<a href="contact.html">Contact</a>
<a href="firmware-development.html">Dev</a>
<a href="gateway.html">IO Way</a>
</div>
<!-- SecurePrivacy Consent Management -->
<script src="https://consent.secureprivacy.ai/script/ionity-today.js"></script>
<div class="deck-wrapper" id="deckWrapper">
<section class="deck-section" id="hero-slide">
<div class="hero-container">
<div class="content-overlay">
<h1 class="main-title">
<span class="digital-decor">SYS.ID: 994-ALPHA</span>
Ai F.IT Forensic IT
</h1>
<div class="sub-title">
Refine what is known into what is possible. Welcome to the cutting edge of data integrity and intelligent systems. At Ionity, our <strong>Ai F.IT (Forensic Information Technology)</strong> protocol ensures that your transition into the future of Gen-AI is not just innovative, but completely secure, stable, and transparent.
</div>
</div>
</div>
</section>
<section class="deck-section" id="details-slide">
<div class="details-section">
<style>
.fit-section { margin-bottom: 5rem; }
.fit-section-header {
font-family: 'Courier New', monospace;
font-size: 0.7rem;
letter-spacing: 0.3rem;
text-transform: uppercase;
color: var(--accent-cyan);
opacity: 0.7;
margin-bottom: 0.5rem;
}
.fit-section h2 {
font-size: 2rem;
font-weight: 800;
color: #fff;
margin: 0 0 1.5rem 0;
letter-spacing: -0.5px;
border-left: 3px solid var(--accent-cyan);
padding-left: 1.5rem;
}
.fit-section h2 span { color: var(--accent-cyan); }
.fit-body {
max-width: 900px;
font-size: 1.1rem;
line-height: 1.8;
color: #dcdcdc;
}
.fit-body p { margin: 0 0 1.5rem 0; }
.fit-body strong { color: #fff; }
.fit-card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
margin-top: 2rem;
}
.fit-card {
background: rgba(10, 15, 20, 0.6);
border: 1px solid rgba(255, 255, 255, 0.08);
padding: 2rem;
position: relative;
overflow: hidden;
transition: all 0.4s ease;
backdrop-filter: blur(8px);
}
.fit-card:hover {
transform: translateY(-4px);
border-color: rgba(0, 210, 255, 0.4);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 210, 255, 0.08);
}
.fit-card::before {
content: '';
position: absolute;
top: 0; left: 0; width: 3px; height: 0;
background: var(--accent-cyan);
transition: height 0.5s ease;
box-shadow: 0 0 10px var(--accent-cyan);
}
.fit-card:hover::before { height: 100%; }
.fit-card-icon { font-size: 1.8rem; margin-bottom: 1rem; color: var(--accent-cyan); filter: drop-shadow(0 0 8px var(--accent-cyan)); }
.wifi-card .fit-card-icon { color: #a78bfa; filter: drop-shadow(0 0 8px #a78bfa); }
.fit-card h3 {
font-size: 1rem;
font-weight: 700;
color: #fff;
margin: 0 0 0.8rem 0;
text-transform: uppercase;
letter-spacing: 0.05rem;
}
.fit-card p {
font-size: 0.92rem;
line-height: 1.7;
color: rgba(255,255,255,0.75);
margin: 0;
}
.fit-card p strong { color: var(--accent-cyan); }
.wifi-accent { color: #a78bfa; }
.wifi-accent-border { border-color: #a78bfa !important; }
.fit-card.wifi-card:hover { border-color: rgba(167,139,250,0.5); box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 20px rgba(167,139,250,0.1); }
.fit-card.wifi-card::before { background: #a78bfa; box-shadow: 0 0 10px #a78bfa; }
@media (max-width: 768px) {
.fit-section h2 { font-size: 1.5rem; }
.fit-body { font-size: 1rem; }
.fit-card-grid { grid-template-columns: 1fr; }
}
</style>
<!-- ===== SECTION 1: THE ARCHITECTURE ===== -->
<div class="fit-section">
<div class="fit-section-header">Protocol // 994-Alpha</div>
<h2>The Architecture: <span>Tomorrow, Today</span></h2>
<div class="fit-body">
<p>We build <strong>universally agnostic ecosystems</strong>. Whether you need an architecture that is purely Edge, Cloud, or a Hybrid of the two — you choose the environment, and we build the bridge.</p>
</div>
<div class="fit-card-grid">
<div class="fit-card">
<div class="fit-card-icon"><svg width="32" height="32" viewBox="0 0 24 24" fill="currentColor"><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96z"/></svg></div>
<h3>Scalable Cloud Infrastructure</h3>
<p>We design robust, high-availability cloud environments built to handle massive data pipelines. From serverless computing to secure private clouds, our architecture provides the horsepower needed to process complex IoT telemetry with <strong>near-zero latency</strong>.</p>
</div>
<div class="fit-card">
<div class="fit-card-icon"><svg width="32" height="32" viewBox="0 0 24 24" fill="currentColor"><path d="M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z"/></svg></div>
<h3>Cross-Platform Mastery</h3>
<p>Seamless integration across disparate operating systems, legacy hardware, and modern software layers. We bridge every gap between your physical infrastructure and digital operations.</p>
</div>
<div class="fit-card">
<div class="fit-card-icon"><svg width="32" height="32" viewBox="0 0 24 24" fill="currentColor"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z"/></svg></div>
<h3>Universal Data Capture</h3>
<p>We engineer stable, <strong>encrypted data-capturing pipelines</strong> that pull telemetry from physical devices across any network constraint — wired, wireless, or satellite.</p>
</div>
</div>
</div>
<!-- ===== SECTION 2: GEN-AI & SECURITY ===== -->
<div class="fit-section">
<div class="fit-section-header">Intelligence // Gen-AI</div>
<h2>Next-Gen Security & <span>Gen-AI</span></h2>
<div class="fit-body">
<p>We leverage the absolute latest in hardware and software to deploy <strong>Generative AI environments</strong> that you can trust.</p>
</div>
<div class="fit-card-grid">
<div class="fit-card">
<div class="fit-card-icon"><svg width="32" height="32" viewBox="0 0 24 24" fill="currentColor"><path d="M13 1.07V9h7c0-4.08-3.05-7.44-7-7.93zM4 15c0 4.42 3.58 8 8 8s8-3.58 8-8v-4H4v4zm7-13.93C7.05 1.56 4 4.92 4 9h7V1.07z"/></svg></div>
<h3>Powered by Gemini & Gemma</h3>
<p>We bring state-of-the-art cognitive capabilities directly to your infrastructure. We leverage <strong>Google's Gemini</strong> models for deep, multimodal reasoning and complex data analysis in the cloud, while deploying agile <strong>Gemma open-weights</strong> models directly on your hardware for hyper-fast, localized Edge intelligence.</p>
</div>
<div class="fit-card">
<div class="fit-card-icon"><svg width="32" height="32" viewBox="0 0 24 24" fill="currentColor"><path d="M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z"/></svg></div>
<h3>Encrypted Edge Flow</h3>
<p>We ensure that the flow of your data — even raw telemetry captured at the extreme physical Edge — is <strong>heavily encrypted, secured, and safely transported</strong> to your Digital Twin.</p>
</div>
<div class="fit-card">
<div class="fit-card-icon"><svg width="32" height="32" viewBox="0 0 24 24" fill="currentColor"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg></div>
<h3>Forensic-Level Tracking</h3>
<p>Every data packet, command, and AI decision is logged with <strong>forensic precision</strong>, giving you total visibility and auditability into your automated systems.</p>
</div>
</div>
</div>
<!-- ===== SECTION 3: IoT, AI & DATA ENGINEERING ===== -->
<div class="fit-section">
<div class="fit-section-header">Engineering // Data Pipeline</div>
<h2>IoT, AI & <span>Data Engineering</span></h2>
<div class="fit-body">
<p>We don't just collect data; we <strong>engineer it</strong> to enhance your operational reality.</p>
</div>
<div class="fit-card-grid">
<div class="fit-card">
<div class="fit-card-icon"><svg width="32" height="32" viewBox="0 0 24 24" fill="currentColor"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"/></svg></div>
<h3>Granular Monitoring</h3>
<p>Deep-scope data management that gives you a <strong>microscopic view</strong> of your hardware's health, power usage, and mechanical efficiency.</p>
</div>
<div class="fit-card">
<div class="fit-card-icon"><svg width="32" height="32" viewBox="0 0 24 24" fill="currentColor"><path d="M16 6l2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6z"/></svg></div>
<h3>Business Flow Optimization</h3>
<p>By feeding secure, structured data into our advanced AI models, we translate raw physical metrics into <strong>actionable digital insights</strong> that streamline your daily operations and scale your business growth over time.</p>
</div>
</div>
</div>
<!-- ===== SECTION 4: WiFi CSI / BLE SCANNING ===== -->
<div class="fit-section">
<div class="fit-section-header" style="color: #a78bfa;">Sensing // RF Intelligence</div>
<h2 style="border-left-color: #a78bfa;">WiFi CSI & <span style="color:#a78bfa;">BLE Sensing</span></h2>
<div class="fit-body">
<p>Ionity's proprietary <strong>WiFi Channel State Information (CSI)</strong> and <strong>Bluetooth Low Energy (BLE)</strong> scanning platform transforms standard wireless infrastructure into a high-precision sensing layer — no cameras, no wearables, <strong>zero privacy intrusion</strong>.</p>
</div>
<div class="fit-card-grid">
<div class="fit-card wifi-card">
<div class="fit-card-icon"><svg width="32" height="32" viewBox="0 0 24 24" fill="currentColor"><path d="M1 9l2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4l2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z"/></svg></div>
<h3>WiFi CSI Presence Detection</h3>
<p>Our firmware extracts <strong>sub-carrier amplitude and phase data</strong> from standard WiFi signals to detect human presence, movement patterns, and room occupancy without any on-body devices.</p>
</div>
<div class="fit-card wifi-card">
<div class="fit-card-icon"><svg width="32" height="32" viewBox="0 0 24 24" fill="currentColor"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg></div>
<h3>Health & Biometric Monitoring</h3>
<p>Advanced FFT-based signal processing extracts <strong>breathing rate and heartbeat signatures</strong> from CSI variance data — enabling contactless health monitoring for elderly care, hospitals, and secure facilities.</p>
</div>
<div class="fit-card wifi-card">
<div class="fit-card-icon"><svg width="32" height="32" viewBox="0 0 24 24" fill="currentColor"><path d="M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14zm-4.2-5.78v1.75l3.2-2.99L12.8 9v1.7c-3.11.43-4.35 2.56-4.8 4.7 1.11-1.5 2.58-2.18 4.8-2.18z"/></svg></div>
<h3>BLE Device Scanning</h3>
<p>Continuous BLE scanning for <strong>asset tracking, proximity triggers, and device inventory</strong>. Detect, classify, and locate BLE-enabled equipment across your facility in real-time.</p>
</div>
<div class="fit-card wifi-card">
<div class="fit-card-icon"><svg width="32" height="32" viewBox="0 0 24 24" fill="currentColor"><path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z"/></svg></div>
<h3>RF Security & Threat Detection</h3>
<p>Monitor the wireless spectrum for <strong>rogue access points, unauthorized BLE devices, and signal anomalies</strong>. Our AI correlates RF fingerprints against known baselines for automated intrusion alerts.</p>
</div>
<div class="fit-card wifi-card">
<div class="fit-card-icon"><svg width="32" height="32" viewBox="0 0 24 24" fill="currentColor"><path d="M20.5 3l-.16.03L15 5.1 9 3 3.36 4.9c-.21.07-.36.25-.36.48V20.5c0 .28.22.5.5.5l.16-.03L9 18.9l6 2.1 5.64-1.9c.21-.07.36-.25.36-.48V3.5c0-.28-.22-.5-.5-.5zM15 19l-6-2.11V5l6 2.11V19z"/></svg></div>
<h3>Spatial Analytics & Indoor Navigation</h3>
<p>Combine CSI + BLE + RSSI for <strong>sub-meter indoor positioning</strong> and spatial analytics. Generate heatmaps, traffic flow visualizations, and occupancy patterns from raw RF data.</p>
</div>
<div class="fit-card wifi-card">
<div class="fit-card-icon"><svg width="32" height="32" viewBox="0 0 24 24" fill="currentColor"><path d="M7 2v11h3v9l7-12h-4l4-8z"/></svg></div>
<h3>Edge-Native Processing</h3>
<p>All CSI/BLE data is processed <strong>on-device via ESP32-S3 firmware</strong> — ensuring sub-millisecond response times, zero cloud dependency, and full offline capability.</p>
</div>
</div>
</div>
</div>
<footer>
<style>
@keyframes footerGlow {
0% { text-shadow: 0 0 2px rgba(255,255,255,0.1); }
100% { text-shadow: 0 0 8px rgba(0, 210, 255, 0.3); }
}
.footer-content {
animation: footerGlow 3s infinite alternate;
}
.footer-logo-container {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 1rem;
width: 100%;
}
.footer-logo {
height: 60px;
width: auto;
opacity: 0.9;
transition: all 0.3s ease;
}
.footer-logo:hover {
opacity: 1;
filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.4));
}
footer a {
color: var(--accent-cyan);
text-decoration: none;
margin: 0 10px;
transition: all 0.3s ease;
font-weight: 600;
text-shadow: 0 0 8px rgba(0, 210, 255, 0.3);
}
footer a:hover {
color: #fff;
text-shadow: 0 0 15px var(--accent-cyan);
}
</style>
<div class="footer-logo-container">
<img src="assets/images/ionity-logo-edited.png" alt="Ionity Logo" class="footer-logo">
</div>
<div class="footer-content" style="opacity: 0.7; line-height: 1.8; color: var(--text-muted);">
<div>Ionity™ (Pty) Ltd 2025-2026 | Creative Commons BY-NC-SA 4.0 | Made with AEDI™ | Author: Antwerp Designs</div>
<div>South Africa Centurion 0157 | Policy AED 986 | License AED 900 | Ionity™ IoT-Ai-DAQ-PdM-CMS-F-iT Hardware, Software Integrations, ALL RIGHTS RESERVED</div>
<div>
<a href="tel:+27646999877">+27 646 999 877</a> |
<a href="mailto:ai@ionity.today">ai@ionity.today</a> |
<a href="https://www.ionity.world" target="_blank" rel="noopener noreferrer">www.ionity.world</a>
</div>
<div style="margin-top: 0.75rem;">
<a href="https://antwerpdesignsionity.github.io/Metadata" target="_blank" rel="noopener noreferrer">Metadata</a>
</div>
</div>
</footer>
</section>
</div>
<!-- Three.js Import -->
<script type="importmap">
{
"imports": {
"three": "https://cdn.jsdelivr.net/npm/three@0.160.0/build/three.module.js",
"three/addons/": "https://cdn.jsdelivr.net/npm/three@0.160.0/examples/jsm/"
}
}
</script>
<script>
// --- MATRIX DATA BACKDROP ---
(function() {
const canvas = document.getElementById('matrix-canvas');
const ctx = canvas.getContext('2d');
let width = canvas.width = window.innerWidth;
let height = canvas.height = window.innerHeight;
const cols = Math.floor(width / 20) + 1;
const ypos = Array(cols).fill(0);
ctx.fillStyle = '#000';
ctx.fillRect(0, 0, width, height);
function matrix() {
ctx.fillStyle = 'rgba(0, 0, 0, 0.05)';
ctx.fillRect(0, 0, width, height);
ctx.fillStyle = '#00d2ff'; // Cyan to match theme
ctx.font = '12pt monospace';
ypos.forEach((y, ind) => {
const text = String.fromCharCode(Math.random() * 128);
const x = ind * 20;
ctx.fillText(text, x, y);
if (y > 100 + Math.random() * 10000) ypos[ind] = 0;
else ypos[ind] = y + 20;
});
}
window.addEventListener('resize', () => {
width = canvas.width = window.innerWidth;
height = canvas.height = window.innerHeight;
});
setInterval(matrix, 50);
})();
function toggleMenu() {
const menu = document.getElementById('mobileMenu');
menu.classList.toggle('open');
}
</script>
<script>
// --- DECK HORIZONTAL SCROLL ---
const deck = document.getElementById('deckWrapper');
if (deck) {
deck.addEventListener('wheel', (e) => {
const activeSection = deck.querySelector('.deck-section:hover');
if (activeSection) {
const isAtTop = activeSection.scrollTop === 0;
const isAtBottom = Math.abs(activeSection.scrollHeight - activeSection.scrollTop - activeSection.clientHeight) < 2;
if ((e.deltaY < 0 && isAtTop) || (e.deltaY > 0 && isAtBottom)) {
e.preventDefault();
deck.scrollBy({ left: e.deltaY * 3, behavior: 'auto' });
}
} else {
e.preventDefault();
deck.scrollBy({ left: e.deltaY * 3, behavior: 'auto' });
}
}, { passive: false });
deck.addEventListener('scroll', () => {
const nav = document.getElementById('mainNav');
if (deck.scrollLeft > 50) {
nav.classList.add('scrolled');
} else {
nav.classList.remove('scrolled');
}
});
}
</script>
<script src="assets/js/audio-manager.js"></script>
<script type="module">
import * as THREE from 'three';
import { EffectComposer } from 'three/addons/postprocessing/EffectComposer.js';
import { RenderPass } from 'three/addons/postprocessing/RenderPass.js';
import { UnrealBloomPass } from 'three/addons/postprocessing/UnrealBloomPass.js';
const scene = new THREE.Scene();
scene.fog = new THREE.FogExp2(0x000000, 0.002);
const camera = new THREE.PerspectiveCamera(75, window.innerWidth / window.innerHeight, 0.1, 1000);
camera.position.z = 30;
const renderer = new THREE.WebGLRenderer({ antialias: true, alpha: true });
renderer.setSize(window.innerWidth, window.innerHeight);
renderer.setPixelRatio(Math.min(window.devicePixelRatio, 2));
document.getElementById('canvas-container').appendChild(renderer.domElement);
// Group to offset the orb to the right
const mainGroup = new THREE.Group();
mainGroup.position.x = 20; // Moved left (about 3cm) for better visibility
scene.add(mainGroup);
// --- BRAIN / NEURAL NETWORK ---
const particleCount = 2000;
const geometry = new THREE.BufferGeometry();
const positions = new Float32Array(particleCount * 3);
const colors = new Float32Array(particleCount * 3);
const sizes = new Float32Array(particleCount);
const color1 = new THREE.Color(0x00d2ff);
const color2 = new THREE.Color(0xbb00ff);
const color3 = new THREE.Color(0xffd700);
for(let i=0; i<particleCount; i++) {
// Sphere distribution
const theta = Math.random() * Math.PI * 2;
const phi = Math.acos(2 * Math.random() - 1);
const radius = 10 + Math.random() * 5;
const x = radius * Math.sin(phi) * Math.cos(theta);
const y = radius * Math.sin(phi) * Math.sin(theta);
const z = radius * Math.cos(phi);
positions[i*3] = x;
positions[i*3+1] = y;
positions[i*3+2] = z;
const mixedColor = color1.clone().lerp(color2, Math.random());
if(Math.random() > 0.9) mixedColor.lerp(color3, 0.8); // Golden sparks
colors[i*3] = mixedColor.r;
colors[i*3+1] = mixedColor.g;
colors[i*3+2] = mixedColor.b;