-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
965 lines (848 loc) · 44.2 KB
/
Copy pathindex.html
File metadata and controls
965 lines (848 loc) · 44.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta name="robots" content="index, follow" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content='Deploy agentic AI workflows with our multi-agent expert team. Streamline operations using secure, autonomous AI.' />
<title>Agentic AI Workflows | Intelligent Enterprise Group</title>
<style>
html { background-color: #3B3A47; }
</style>
<script>
(function () {
const key = 'preferredTheme';
const stored = localStorage.getItem(key);
//const systemDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
const theme = stored || 'dark'/*(systemDark ? 'dark' : 'light')*/;
if (theme === 'dark') {
document.documentElement.classList.add('dark-mode');
} else {
document.documentElement.classList.remove('dark-mode');
}
})();
</script>
<link rel="alternate" hreflang="en" href="https://theintelligententerprisegroup.com/" />
<link rel="alternate" hreflang="fr" href="https://theintelligententerprisegroup.com/fr/" />
<link rel="alternate" hreflang="de" href="https://theintelligententerprisegroup.com/de/" />
<link rel="alternate" hreflang="es" href="https://theintelligententerprisegroup.com/es/" />
<link rel="alternate" hreflang="pt" href="https://theintelligententerprisegroup.com/pt/" />
<link rel="alternate" hreflang="zh" href="https://theintelligententerprisegroup.com/zh/" />
<link rel="alternate" hreflang="ja" href="https://theintelligententerprisegroup.com/ja/" />
<link rel="alternate" hreflang="ar" href="https://theintelligententerprisegroup.com/ar/" />
<link rel="alternate" hreflang="x-default" href="https://theintelligententerprisegroup.com/" />
<link rel="canonical" href="https://theintelligententerprisegroup.com/" />
<link rel="stylesheet" href="/css/styles.css" />
<link rel="stylesheet" href="/css/swiper-bundle.min.css" />
<link rel="stylesheet" href="/css/all.min.css" />
<script src="/js/lang-switcher.js" defer></script>
<script>
(function () {
if (localStorage.getItem('currentLang')) return;
const supported = [
{ code: "en" } ,
{ code: "fr" } ,
{ code: "de" } ,
{ code: "es" } ,
{ code: "pt" } ,
{ code: "zh" } ,
{ code: "ja" } ,
{ code: "ar" }
];
const defaultLang = "en";
const navLangs = navigator.languages || [navigator.language || navigator.userLanguage];
let detected = null;
for (const nav of navLangs) {
const code = nav.toLowerCase().split('-')[0];
if (supported.find(s => s.code.toLowerCase() === code)) {
detected = code;
break;
}
}
const lang = detected || defaultLang;
localStorage.setItem('currentLang', lang);
document.documentElement.lang = lang;
})();
</script>
<!-- Organization structured data (JSON-LD) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "The Intelligent Enterprise Group",
"url": "https://theintelligententerprisegroup.com/",
"logo": "https://theintelligententerprisegroup.com/images/tieg-logo.png",
"sameAs": []
}
</script>
<link rel="icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/images/apple-touch-icon.png" />
</head>
<body>
<header x-data="{ open: false }">
<div class="container header-top">
<div class="logo"></div>
<div class="theme-switch-wrapper">
<label class="theme-switch">
<input type="checkbox" id="theme-checkbox" aria-label="Select theme"/>
<span class="slider round"></span>
</label>
<span id="theme-label">Light Mode</span>
<span class="lang-switcher">
<label for="lang-select" class="lang-label">🌐 Language:</label>
<!-- Language switcher -->
<select id="lang-select" class="lang-select">
<option value="en" data-path="/">English</option>
<option value="fr" data-path="/fr/">Français</option>
<option value="de" data-path="/de/">Deutsch</option>
<option value="es" data-path="/es/">Español</option>
<option value="pt" data-path="/pt/">Português</option>
<option value="zh" data-path="/zh/">中文</option>
<option value="ja" data-path="/ja/">日本語</option>
<option value="ar" data-path="/ar/">العربية</option>
</select>
</span>
</div>
</div>
<div class="container header-nav">
<button @click="open = !open" class="menu-toggle" aria-label="Toggle Menu">
<svg width="24" height="24" viewBox="0 0 24 24">
<path fill="var(--nav-link-color)" d="M3 6h18v2H3V6zm0 5h18v2H3v-2zm0 5h18v2H3v-2z" />
</svg>
</button>
<nav class="main-nav" :class="{ 'open': open }">
<ul>
<li><a href="index.html" class="active">Home</a></li>
<li><a href="about.html" class="">About Us</a></li>
<li><a href="services.html" class="">Services & Solutions</a></li>
<li><a href="case-studies.html" class="">Case Studies</a></li>
<li><a href="resources.html" class="">Resources & Insights</a></li>
<li><a href="partners.html" class="">Partners & Alliances</a></li>
<li><a href="contact.html" class="">Contact & Consultation</a></li>
<li class="has-submenu"
x-data="{ openSub: false }"
@mouseenter="openSub = true"
@mouseleave="openSub = false">
<button @click="openSub = !openSub"
aria-haspopup="true"
:aria-expanded="openSub.toString()">
Info
<svg width="12" height="12" viewBox="0 0 12 12" aria-hidden="true">
<path d="M3 4l3 3 3-3" fill="currentColor"/>
</svg>
</button>
<ul class="submenu" x-show="openSub" @click.outside="openSub = false">
<li><a href="careers.html" class="">Careers</a></li>
<li><a href="faqs.html" class="">FAQs</a></li>
<li><a href="legal.html" class="">Legal & Policies</a></li>
</ul>
</li>
</ul>
</nav>
</div>
</header>
<main>
<section class="hero" id="hero" style="position: relative; overflow: visible;">
<div class="container hero-container">
<h1>Pioneering AI‑Coordinated<br />Expert Teams</h1>
<div class="hero-text">
<h3>Our groundbreaking platform introduces a new form of superintelligence - a category‑defining innovation, orchestrated by an AI Coordinator, uniting specialized AI experts to deliver adaptive, multilingual, and enterprise‑grade solutions.</h3>
</div>
<div class="cta-buttons">
<a href="contact.html" class="btn-secondary">Get in Touch</a>
<a href="#live-demo" class="btn-secondary">Live Demo</a>
<a href="ai-audit.html" class="btn-secondary btn-pulse">Take the Free AI Audit</a>
</div>
</div>
<!-- eye scan anim -->
<svg id="hero-overlay" aria-hidden="true" style="position:absolute; inset:0; width:100%; height:100%; pointer-events:none;"></svg>
</section>
<section class="cta" id="live-demo">
<div class="container">
<div class="cta-block">
<!--<span class="blueprint-badge">Interactive Demo</span>-->
<h2 class="cta-headline">Experience the Power of AI Orchestration</h2>
<p class="cta-sub">Don't just take our word for it. Watch a secure, on-premise multi-agent AI team solve complex enterprise challenges - from Root Cause Analysis to Compliance - in real-time.</p>
<div class="cta-buttons">
<a href="demo.html" class="btn btn-pulse">Start Live Demo</a>
</div>
<h3 style="text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.8; margin-bottom: 0px;">Enterprise Grade Compliance</h3>
<div class="image-row">
<a href="security.html" target="_blank">
<img class="security-logo" src="/images/Cyberfundamentals.png" alt="Compliance with Cyberfundamentals" />
</a>
<a href="security.html" target="_blank">
<img class="security-logo" src="/images/nist_csf.png" alt="Compliance with nist csf" />
</a>
<a href="security.html" target="_blank">
<img class="security-logo" src="/images/cis_ig1.png" alt="Compliance with cis ig1" />
</a>
<a href="security.html" target="_blank">
<img class="security-logo" src="/images/cmmc_l1.png" alt="Compliance with cmmc l1" />
</a>
</div>
</div>
</div>
</section>
<section class="problem">
<div class="container">
<h2>⚠️ Why today’s AI assistants fall short</h2>
<p>Most AI services rely on a single large language model - a generalist trying to do everything. These models often suffer from limited memory and can produce hallucinations, especially when tasks span multiple steps or require domain‑specific expertise.</p>
<p>The result? Answers in isolation, inconsistent reliability, and no true collaboration across specialized skills or complex documents.</p>
</div>
</section>
<section class="solution">
<div class="container">
<h2>✅ Your AI Team, Ready to Support Every Task</h2>
<p>Instead of relying on a single large language model with limited memory and a tendency to hallucinate, our platform gives you a coordinated team of AI specialists - managed by an AI Coordinator to ensure accuracy and collaboration.</p>
<p>With adaptive short- and long-term memory and the ability to learn from Word, Excel, PDFs, CSVs, audio, text, and images, your AI team understands context, avoids hallucinations, and delivers precise, reliable results. <a href="about.html" class="btn-secondary">Meet Our Team</a></p>
<p>The roster of experts keeps growing, making your AI team more versatile over time - and it’s even designed for edge computing, so it can function reliably without internet access.</p>
</div>
</section>
<section class="features">
<img class="infographics" src="/images/from_llm_to_superintelligent_ai_team_v4.jpg" alt="From LLM to Coordinated AI Superintelligence" />
<h2>Key Features</h2>
<div class="container main-grid">
<div class="service-card">
<h3>Adaptive Memory</h3>
<p>Highly optimized short- and long-term memory preserves context across sessions, reducing hallucinations and ensuring consistent, reliable results.</p>
</div>
<div class="service-card">
<h3>Multi‑Format Learning & Multi‑Lingual</h3>
<p>Learns from Word, Excel, PDFs, CSVs, audio, text, images, etc. Understands 100+ languages, with near‑native fluency in 20+</p>
</div>
<div class="service-card">
<h3>Specialized Built-In Models</h3>
<p>Multiple optimized machine learning models are embedded for different tasks. The AI experts automatically activate and switch between them to deliver the right solution every time.</p>
</div>
<div class="service-card">
<h3>Coordinated AI Team</h3>
<p>Not just one LLM — a group of specialized AI experts managed by an AI Coordinator, working together like a real consulting team. <a href="about.html" class="btn-secondary">Meet Our Team</a></p>
</div>
<div class="service-card">
<h3>Edge-Ready</h3>
<p>Fully functional even without internet access, thanks to built-in models designed for offline and secure environments.</p>
</div>
<div class="service-card">
<h3>High Performance</h3>
<p>Engineered in C++/C# for maximum speed and efficiency. Leveraging hardware acceleration, parallel computing, and GPU technologies such as CUDA, your AI team delivers faster responses with lower energy consumption.</p>
</div>
<div class="service-card">
<h3>Scalable Deployment</h3>
<p>Flexible setup: desktop for individuals, server and API integration for businesses. The API can be called from any business system and embedded into process automation workflows.</p>
</div>
<div class="service-card">
<h3>Energy-Efficient by Design</h3>
<p>Built with highly optimized compiled code instead of scripting languages, your AI team runs faster while consuming significantly less energy - combining performance with sustainability.</p>
</div>
</div>
</section>
<section class="use-cases">
<div class="container">
<h2>Designed for Every Scenario</h2>
<div class="main-grid">
<div class="service-card">
<h3>Businesses</h3>
<p>Integrate seamlessly via API into any system or workflow. Automate processes, reduce costs, and scale with confidence thanks to specialized models and enterprise-grade performance.</p>
</div>
<div class="service-card">
<h3>Professionals</h3>
<p>Boost productivity with expert-level support across writing, analysis, translation, and decision-making. Adaptive memory ensures consistent results across projects.</p>
</div>
<div class="service-card">
<h3>Students & Individuals</h3>
<p>Learn faster, explore ideas, and create smarter with a coordinated AI team that understands context and works across multiple formats.</p>
</div>
</div>
<p style="text-align:center; margin-top:1rem;">
<a href="case-studies.html" class="btn service-btn">See Real Case Studies →</a>
</p>
</div>
</section>
<section class="testimonials">
<div class="container swiper-container">
<h2>What People Could Say</h2>
<p style="text-align:center; max-width:700px; margin:0 auto 2rem;">Imagine how different roles might describe their experience when trying our AI team.</p>
<div class="swiper-wrapper">
<div class="swiper-slide">
<blockquote class="animate-fadeIn">
<p>A CTO could say: "The coordinated AI team has transformed how we approach digital innovation. With context-aware memory and specialized models, we’ve unlocked new levels of efficiency and growth."</p>
<footer>👨‍💼 — CTO</footer>
</blockquote>
</div>
<div class="swiper-slide">
<blockquote class="animate-fadeIn">
<p>A VP of Innovation might remark: "Seamless API integration and expert coordination redefined our strategy. The platform gave us a lasting competitive edge."</p>
<footer>💡 — VP of Innovation</footer>
</blockquote>
</div>
<div class="swiper-slide">
<blockquote class="animate-fadeIn">
<p>A Director of Digital Strategy could observe: "From training to deployment, everything was precise and clear. The adaptive memory keeps us at the forefront of technology."</p>
<footer>📊 — Director of Digital Strategy</footer>
</blockquote>
</div>
<div class="swiper-slide">
<blockquote class="animate-fadeIn">
<p>A Senior Data Analyst might say: "The specialized built-in models empowered us to analyze data faster and more accurately, revealing insights we couldn’t see before."</p>
<footer>📈 — Senior Data Analyst</footer>
</blockquote>
</div>
<div class="swiper-slide">
<blockquote class="animate-fadeIn">
<p>A Head of Technology could comment: "The compiled code and GPU acceleration deliver incredible speed while reducing energy use. It’s a game changer for sustainable performance."</p>
<footer>⚙️ — Head of Technology</footer>
</blockquote>
</div>
<div class="swiper-slide">
<blockquote class="animate-fadeIn">
<p>A Student could say: "It helped me organize research, learn faster, and create smarter projects with less effort."</p>
<footer>🎓 — Student</footer>
</blockquote>
</div>
</div>
<div class="swiper-pagination"></div>
<div class="swiper-button-prev"></div>
<div class="swiper-button-next"></div>
</div>
</section>
<section class="cta">
<div class="container">
<h2>Ready to Work With Your AI Team?</h2>
<p>Don’t settle for a single model. Experience the world’s first coordinated AI team - with adaptive memory, specialized models, and enterprise‑grade performance.</p>
<div class="cta-buttons">
<a href="#live-demo" class="btn-secondary btn-pulse">Live Demo</a>
<a href="contact.html" class="btn service-btn">Book a Demo</a>
</div>
</div>
</section>
<div id="right-intro">
<div class="intro-particles"></div>
<div class="signal-line">
<div class="signal-main"></div>
</div>
<div class="intro-content">
<div class="intro-text">
<div class="loading-dots">
<div class="pulse"></div>
<div class="pulse"></div>
<div class="pulse"></div>
</div>
<div class="t1 intro-line"><b>Beyond LLMs:</b> Experience a pioneering platform guided by an AI Coordinator that unites specialized expert teams.</div>
<div class="t2 intro-line"><b>Universal Learning:</b> Seamlessly ingest context from your Word, Excel, PDFs, audio, and images without hallucinations.</div>
<div class="t3 intro-line"><b>Edge-Ready Performance:</b> Powered by high-speed C++ architecture that functions securely with or without internet access.</div>
<div class="t4 intro-line"><b>Enterprise-Grade Scale:</b> Deploy as a desktop solution for individuals or integrate via API for full business automation.</div>
</div>
<div class="signature-line"></div>
</div>
<div class="robot-runner">
<div class="robot">
<div class="robot-head"></div>
<div class="robot-body"></div>
<div class="robot-arm arm-left"></div>
<div class="robot-arm arm-right"></div>
<div class="robot-leg leg-left"></div>
<div class="robot-leg leg-right"></div>
</div>
</div>
</div>
</main>
<nav class="footer-sitemap" aria-label="Footer Navigation">
<div class="container sitemap-grid">
<div class="sitemap-column">
<h4>Company</h4>
<ul>
<li>
<a href="index.html">
Home
</a>
</li>
<li>
<a href="about.html">
About Us
</a>
</li>
<li>
<a href="partners.html">
Partners & Alliances
</a>
</li>
<li>
<a href="careers.html">
Careers
</a>
</li>
<li>
<a href="contact.html">
Contact & Consultation
</a>
</li>
</ul>
</div>
<div class="sitemap-column">
<h4>Platform & Services</h4>
<ul>
<li>
<a href="offline-ai-desktop-app.html">
Offline AI Desktop App
</a>
</li>
<li>
<a href="secure-on-premise-ai-server.html">
Secure On-Premise Server
</a>
</li>
<li>
<a href="agentic-ai-workflows.html">
Agentic AI Workflows
</a>
</li>
<li>
<a href="services.html">
Services & Solutions
</a>
</li>
<li>
<a href="custom-ai-agent-development.html">
Custom AI Agent Development
</a>
</li>
<li>
<a href="ai-strategy-consulting.html">
AI Strategy Consulting
</a>
</li>
<li>
<a href="security.html">
Security Overview
</a>
</li>
</ul>
</div>
<div class="sitemap-column">
<h4>Tech & Use Cases</h4>
<ul>
<li>
<a href="private-rag-enterprise-search.html">
Private RAG & Search
</a>
</li>
<li>
<a href="gpu-accelerated-local-ai.html">
GPU Accelerated Local AI
</a>
</li>
<li>
<a href="run-ai-locally-without-internet.html">
Run AI Locally (Offline)
</a>
</li>
<li>
<a href="ai-data-privacy-compliance.html">
Data Privacy Compliance
</a>
</li>
<li>
<a href="secure-local-ai-for-legal-finance.html">
AI for Legal & Finance
</a>
</li>
<li>
<a href="ai-predictive-maintenance-manufacturing.html">
Predictive Maintenance
</a>
</li>
<li>
<a href="ai-customer-support-automation.html">
Customer Support Automation
</a>
</li>
</ul>
</div>
<div class="sitemap-column">
<h4>Resources & Support</h4>
<ul>
<li>
<a href="demo.html">
Live Demo
</a>
</li>
<li>
<a href="case-studies.html">
Case Studies
</a>
</li>
<li>
<a href="resources.html">
Resources & Insights
</a>
</li>
<li>
<a href="faqs.html">
FAQs
</a>
</li>
<li>
<a href="legal.html">
Legal & Policies
</a>
</li>
</ul>
</div>
</div>
</nav>
<footer>
<div class="container">
<p>© 2025 The Intelligent Enterprise Group. All rights reserved.</p>
</div>
</footer>
<script src="/js/swiper-bundle.min.js"></script>
<script src="/js/cdn.min.js" defer></script>
<script src="/js/gsap.min.js"></script>
<script src="/js/DrawSVGPlugin.min.js"></script>
<script type="module" src="/js/themeToggle.js"></script>
<script type="module">
import { toggleTheme, getCurrentTheme } from '/js/themeToggle.js';
const checkbox = document.getElementById('theme-checkbox');
const themeLabel = document.getElementById('theme-label');
if (getCurrentTheme() === 'dark') {
checkbox.checked = true;
themeLabel.textContent = 'Dark Mode';
} else {
themeLabel.textContent = 'Light Mode';
}
checkbox.addEventListener('change', () => {
toggleTheme();
themeLabel.textContent = checkbox.checked ? 'Dark Mode' : 'Light Mode';
});
</script>
<button id="back-to-top" aria-label="Back to Top">Top</button>
<script>
const testimonialSwiper = new Swiper('.swiper-container', {
slidesPerView: 1,
spaceBetween: 0,
loop: true,
navigation: { nextEl: '.swiper-button-next', prevEl: '.swiper-button-prev' },
pagination: { el: '.swiper-pagination', clickable: true },
autoplay: { delay: 5000, disableOnInteraction: false },
breakpoints: { 320: { slidesPerView: 1, spaceBetween: 0 }, 768: { slidesPerView: 1, spaceBetween: 0 } }
});
gsap.registerPlugin(DrawSVGPlugin);
window.onload = function () {
gsap.from(".hero h2", { duration: 1.2, opacity: 0, y: -50, ease: "power2.out" });
gsap.from(".hero h3", { duration: 1.2, opacity: 0, y: 50, ease: "power2.out", delay: 0.2 });
/*gsap.from(".hero .btn", { duration: 1.2, opacity: 0, scale: 0.8, ease: "back.out(1.7)", delay: 0.4 });*/
gsap.from(".service-card", { duration: 1, opacity: 0, y: 30, ease: "power2.out", stagger: 0.2, delay: 0.6 });
gsap.from(".testimonials h2", { duration: 1, opacity: 0, y: -20, ease: "power2.out", delay: 0.8 });
gsap.from(".testimonials blockquote", { duration: 1, opacity: 0, y: 20, ease: "power2.out", delay: 1 });
/*gsap.from(".cta-block .blueprint-badge", { duration: 1, opacity: 0, y: -20, ease: "power2.out", delay: 1.1 });*/
gsap.from(".cta-block h2", { duration: 1, opacity: 0, y: 20, ease: "power2.out", delay: 1.3 });
gsap.from(".cta-block p", { duration: 1, opacity: 0, y: 20, ease: "power2.out", delay: 1.5 });
gsap.from(".cta-block .btn", { duration: 1, opacity: 0, scale: 0.9, ease: "back.out(1.7)", delay: 1.7 });
};
</script>
<script type="module">
(function () {
const hero = document.getElementById('hero');
const overlay = document.getElementById('hero-overlay');
if (!hero || !overlay) return;
if (window.matchMedia('(prefers-reduced-motion: reduce)').matches) return;
const ORIGINAL_W = 1536;
const ORIGINAL_H = 800;
// How many pixels from the RIGHT edge and TOP edge of the original image?
const EYE_OFFSET_RIGHT = 140;
const EYE_OFFSET_TOP = 270;
const UNIVERSAL_COLOR = "50, 220, 255";
function getBgUrl(el) {
const bg = getComputedStyle(el).backgroundImage;
const m = bg.match(/url\(["']?(.*?)["']?\)/);
return m ? m[1] : null;
}
function loadImage(url) {
return new Promise((res, rej) => {
const img = new Image();
img.crossOrigin = 'anonymous';
img.onload = () => res(img);
img.onerror = rej;
img.src = url;
});
}
// Logic for 'background-position: center bottom' and 'background-size: cover'
function computeCoverTransform(imgW, imgH, contW, contH) {
// 1. Determine Scale (Cover logic)
const scale = Math.max(contW / imgW, contH / imgH);
const scaledW = imgW * scale;
const scaledH = imgH * scale;
// 2. Determine Offsets
// Center X: (Container Width - Scaled Image Width) / 2
const offsetX = (contW - scaledW) / 2;
// Bottom Y: Container Height - Scaled Image Height
// (This aligns the bottom edge of the image with the bottom of the container)
const offsetY = contH - scaledH;
return { scale, offsetX, offsetY };
}
function domRectToHeroRect(domRect, heroRect) {
return {
x: domRect.left - heroRect.left,
y: domRect.top - heroRect.top,
width: domRect.width,
height: domRect.height
};
}
function ensureDefs(svg) {
if (svg.querySelector('defs')) return;
const ns = 'http://www.w3.org/2000/svg';
const defs = document.createElementNS(ns, 'defs');
defs.innerHTML = `
<filter id="beam-glow" x="-50%" y="-50%" width="200%" height="200%">
<feGaussianBlur stdDeviation="6" result="blur"/>
<feMerge><feMergeNode in="blur"/><feMergeNode in="SourceGraphic"/></feMerge>
</filter>
<linearGradient id="beamGrad" x1="1" y1="0.5" x2="0" y2="0.5">
<stop offset="0%" stop-color="rgba(${UNIVERSAL_COLOR}, 0.8)"/>
<stop offset="50%" stop-color="rgba(${UNIVERSAL_COLOR}, 0.3)"/>
<stop offset="100%" stop-color="rgba(${UNIVERSAL_COLOR}, 0)"/>
</linearGradient>
`;
svg.appendChild(defs);
}
function createBeamElements(svg) {
const ns = 'http://www.w3.org/2000/svg';
const line = document.createElementNS(ns, 'line');
line.setAttribute('class', 'beam-line');
// Init off-screen to prevent "white line" artifact
line.setAttribute('x1', 0);
line.setAttribute('y1', 0);
line.setAttribute('x2', 0);
line.setAttribute('y2', 0);
line.style.visibility = 'hidden';
const poly = document.createElementNS(ns, 'polygon');
poly.setAttribute('class', 'beam-fan');
poly.setAttribute('fill', 'url(#beamGrad)');
poly.style.opacity = 0;
svg.appendChild(line);
svg.appendChild(poly);
return { line, poly };
}
function fanPointsFor(eyeHero, fanTopY, fanBottomY, depth, sourceThickness = 20) {
const rightX = eyeHero.x;
const apexY = eyeHero.y;
const leftX = rightX - depth;
// Define the two points at the "eye" source
const sourceTopY = apexY - (sourceThickness / 2);
const sourceBottomY = apexY + (sourceThickness / 2);
// Points: TopRight -> TopLeft -> BottomLeft -> BottomRight
return `${rightX},${sourceTopY} ${leftX},${fanTopY} ${leftX},${fanBottomY} ${rightX},${sourceBottomY}`;
}
async function setup() {
const bgUrl = getBgUrl(hero);
if (!bgUrl) return;
let img;
try { img = await loadImage(bgUrl); } catch (e) { console.warn('bg load failed', e); return; }
const canvas = document.createElement('canvas');
canvas.width = img.naturalWidth || ORIGINAL_W;
canvas.height = img.naturalHeight || ORIGINAL_H;
const ctx = canvas.getContext('2d', { willReadFrequently: true });
ctx.drawImage(img, 0, 0, canvas.width, canvas.height);
ensureDefs(overlay);
const { line, poly } = createBeamElements(overlay);
// GSAP Timeline
let tl;
function recalc() {
const heroRect = hero.getBoundingClientRect();
// 1. Resize SVG
overlay.setAttribute('width', heroRect.width);
overlay.setAttribute('height', heroRect.height);
overlay.setAttribute('viewBox', `0 0 ${heroRect.width} ${heroRect.height}`);
// 2. Compute Transform (Center Bottom)
const transform = computeCoverTransform(canvas.width, canvas.height, heroRect.width, heroRect.height);
// 3. Eye Location (Fixed relative to top-right of source image)
const eyeOrig = {
x: canvas.width - (typeof EYE_OFFSET_RIGHT !== 'undefined' ? EYE_OFFSET_RIGHT : 150),
y: (typeof EYE_OFFSET_TOP !== 'undefined' ? EYE_OFFSET_TOP : 300)
};
const eyeHero = {
x: eyeOrig.x * transform.scale + transform.offsetX,
y: eyeOrig.y * transform.scale + transform.offsetY
};
// 4. Find Text Target Area
const textEl = hero.querySelector('.hero-text') || hero.querySelector('.container');
const textHeroRect = textEl
? domRectToHeroRect(textEl.getBoundingClientRect(), heroRect)
: { x: heroRect.width * 0.1, y: heroRect.height * 0.3, width: heroRect.width * 0.4, height: heroRect.height * 0.4 };
// 5. Geometry Variables for Scanning
const beamDepth = Math.max(100, eyeHero.x - textHeroRect.x + 200);
const lineLeftX = eyeHero.x - beamDepth;
// Vertical points for the scan
const textTop = textHeroRect.y - 200; //start 200 higher
const textBottom = textHeroRect.y + textHeroRect.height + 100; //go 100 deeper
const scanHeight = 120; // The vertical "thickness" of the beam as it scans
// Define the different "states" of the polygon points
const stateStart = fanPointsFor(eyeHero, eyeHero.y, eyeHero.y, beamDepth);
const stateAtTop = fanPointsFor(eyeHero, textTop - 40, textTop + scanHeight, beamDepth);
const stateAtBottom = fanPointsFor(eyeHero, textBottom - scanHeight, textBottom + 40, beamDepth);
// Reset Elements
line.setAttribute('x1', eyeHero.x);
line.setAttribute('y1', eyeHero.y);
line.setAttribute('x2', eyeHero.x);
line.setAttribute('y2', eyeHero.y);
poly.setAttribute('points', stateStart);
// THEME COLORS
const stops = overlay.querySelectorAll('#beamGrad stop');
if (stops.length >= 3) {
stops[0].setAttribute('stop-color', `rgba(${UNIVERSAL_COLOR}, 0.8)`);
stops[1].setAttribute('stop-color', `rgba(${UNIVERSAL_COLOR}, 0.5)`);
stops[2].setAttribute('stop-color', `rgba(${UNIVERSAL_COLOR}, 0)`);
}
// Also update the line color to match
line.style.stroke = `rgba(${UNIVERSAL_COLOR}, 0.9)`;
// 6. The Scan Animation Timeline
if (tl) tl.kill();
tl = gsap.timeline({ repeat: -1, repeatDelay: 2.0 });
// Ensure they start invisible
tl.set([line, poly], { opacity: 0 });
// Phase 1: Shoot the line out
tl.to(line, { duration: 0.1, opacity: 1 }, 0.1);
tl.to(line, { duration: 0.4, attr: { x2: lineLeftX }, ease: "power2.out" }, 0.1);
// Phase 2: Open the fan to the TOP of the text
tl.to(poly, { duration: 0.1, opacity: 0.5 }, 0.4);
tl.to(poly, {
duration: 0.5,
attr: { points: stateAtTop },
ease: "power2.out"
}, 0.4);
// Phase 3: SCAN (Move the fan from top to bottom)
tl.to(poly, {
duration: 1.5,
attr: { points: stateAtBottom },
ease: "sine.inOut"
}, 0.9);
// Phase 4: Collapse and Fade out
// Shrink the points slightly while fading to simulate the light "pulling back"
tl.to(poly, {
duration: 0.5,
attr: { points: stateStart },
opacity: 0,
ease: "power2.in"
}, 2.4);
tl.to(line, { duration: 0.3, opacity: 0 }, 2.6);
}
recalc();
let rt;
window.addEventListener('resize', () => {
clearTimeout(rt);
rt = setTimeout(recalc, 150);
});
}
setTimeout(() => {
setup();
}, 12000);
//setup();
})();
</script>
<script>
document.addEventListener("DOMContentLoaded", function () {
if (window.innerWidth < 768) return;
const intro = document.querySelector("#right-intro");
if (!intro) return;
const tl = gsap.timeline();
let isClosing = false; // Flag to prevent double-triggering the exit
// --- 1. DEFINE THE EXIT FUNCTION ---
const closeIntro = () => {
if (isClosing) return;
isClosing = true;
// Kill the main timeline so it doesn't keep running in the background
tl.kill();
// Create a dedicated exit timeline for a fast, responsive feel
const exitTl = gsap.timeline();
/* ROBOT FAST REVEAL & RUN */
exitTl.to(".robot-runner", { opacity: 1, duration: 0.2 });
exitTl.to(".robot-runner", {
x: 400,
duration: 0.8,
ease: "power2.in"
}, "-=0.1");
/* PANEL SLIDE-OUT */
exitTl.to("#right-intro", {
duration: 0.8,
transform: "translateX(100%)",
ease: "power3.inOut",
onComplete: () => {
intro.style.display = "none";
// Remove scroll listener once closed
window.removeEventListener("scroll", handleScroll);
}
}, "-=0.6");
};
// --- 2. THE SCROLL LISTENER ---
const handleScroll = () => {
if (window.scrollY > 20) { // Trigger after 20px of scrolling
closeIntro();
}
};
window.addEventListener("scroll", handleScroll);
// --- 3. ORIGINAL ANIMATION SEQUENCE ---
/* PANEL SLIDE-IN */
tl.to("#right-intro", {
duration: 0.8,
transform: "translateX(0%)",
ease: "power3.out"
});
/* PARTICLES */
for (let i = 0; i < 20; i++) {
const p = document.createElement("div");
p.className = "particle";
p.style.position = "absolute";
p.style.width = "4px";
p.style.height = "4px";
p.style.background = "rgba(0,174,239,0.35)";
p.style.borderRadius = "50%";
p.style.left = Math.random() * 100 + "%";
p.style.top = "100%";
document.querySelector(".intro-particles").appendChild(p);
gsap.to(p, {
y: -window.innerHeight - 100,
duration: 4 + Math.random() * 4,
delay: Math.random() * 2,
repeat: -1,
ease: "none"
});
}
/* SIGNAL LINE & PULSE */
tl.to(".signal-main", { height: "60%", duration: 0.8, ease: "power2.out" })
.to(".loading-dots", { opacity: 1, duration: 0.3 })
.to(".pulse", { opacity: 1, scale: 1.4, duration: 0.3, stagger: 0.15 })
.to(".pulse", { scale: 0.6, opacity: 0.4, duration: 0.3, stagger: 0.15 })
.to(".loading-dots", { opacity: 0, duration: 0.3 });
/* TEXT REVEAL */
tl.to(".t1", { opacity: 1, x: 0, duration: 0.6 })
.to(".t2", { opacity: 1, x: 0, duration: 0.6 })
.to(".t3", { opacity: 1, x: 0, duration: 0.6 })
.to(".t4", { opacity: 1, x: 0, duration: 0.6 });
/* ROBOT ARM/LEG LOOPS (Independent of timeline) */
const robotParts = [
{ el: ".arm-left", r: 30 }, { el: ".arm-right", r: -30 },
{ el: ".leg-left", r: -30 }, { el: ".leg-right", r: 30 }
];
robotParts.forEach(part => {
gsap.to(part.el, { rotation: part.r, yoyo: true, repeat: -1, duration: 0.2, ease: "power1.inOut" });
});
// --- 4. AUTO-EXIT (If user doesn't scroll) ---
tl.to(".robot-runner", { opacity: 1, duration: 0.3, delay: 5 });
tl.to(".robot-runner", { x: 400, duration: 1.2, ease: "power2.inOut" }, "-=0.2");
tl.to("#right-intro", {
duration: 1,
transform: "translateX(100%)",
ease: "power3.inOut",
onComplete: () => {
if (!isClosing) { // Only hide if scroll didn't already trigger it
intro.style.display = "none";
window.removeEventListener("scroll", handleScroll);
}
}
}, "-=0.6");
});
</script>
<!-- Cloudflare Web Analytics --><script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "e290b7bc8f584d41990f177692bdcf23"}'></script><!-- End Cloudflare Web Analytics -->
</body>
</html>