-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
959 lines (896 loc) · 70.9 KB
/
index.html
File metadata and controls
959 lines (896 loc) · 70.9 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
<!DOCTYPE html>
<html lang="fr" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="referrer" content="strict-origin-when-cross-origin">
<meta http-equiv="X-Content-Type-Options" content="nosniff">
<meta name="google-site-verification" content="googled09a8983058eb9e1.html" />
<link rel="icon" type="image/png" href="/favicon.png">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<title>Atlas Nexus — Conseil Opérations & IA Agentique</title>
<link rel="canonical" href="https://atlasnexus.tech/">
<link rel="alternate" hreflang="fr" href="https://atlasnexus.tech/">
<link rel="alternate" hreflang="en" href="https://atlasnexus.tech/en/">
<link rel="alternate" hreflang="x-default" href="https://atlasnexus.tech/en/">
<script>
(function(){
try {
const KEY = 'atlasnexus.lang';
const params = new URLSearchParams(window.location.search);
const explicit = params.get('lang');
if (explicit === 'fr' || explicit === 'en') localStorage.setItem(KEY, explicit);
const saved = localStorage.getItem(KEY);
if (saved === 'fr') return;
if (saved === 'en') { window.location.replace('/en/' + window.location.hash); return; }
const langs = (navigator.languages && navigator.languages.length ? navigator.languages : [navigator.language || '']).map(x => String(x).toLowerCase());
const isFrancophone = langs.some(x => x === 'fr' || x.startsWith('fr-'));
if (!isFrancophone) window.location.replace('/en/' + window.location.hash);
} catch(e) {}
})();
</script>
<meta name="description" content="Conseil opérationnel, dashboards live, pipelines data, animations web et IA agentique pour indépendants, équipes et PME. Builds rapides, code visible sur GitHub, documentation incluse.">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200;0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;0,6..12,800;1,6..12,200;1,6..12,300;1,6..12,400;1,6..12,500;1,6..12,600;1,6..12,700&display=swap" rel="stylesheet">
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
fontFamily: {
display: ['Rubik', 'sans-serif'],
body: ['Nunito Sans', 'sans-serif'],
},
colors: {
primary: '#2563EB',
'primary-dark': '#1D4ED8',
secondary: '#3B82F6',
accent: '#059669',
'accent-dark': '#047857',
surface: '#F8FAFC',
muted: '#F1F5FD',
border: '#E4ECFC',
foreground: '#0F172A',
'dark-surface': '#0B1120',
'dark-card': '#111827',
'dark-elevated': '#1A2235',
'dark-border': '#1E293B',
'dark-muted': '#334155',
'dark-foreground': '#F1F5F9',
'dark-dim': '#94A3B8',
}
}
}
}
</script>
<style>
/* ── Core ── */
.hero-title { font-size: clamp(3.2rem, 9vw, 7rem); font-weight: 900; letter-spacing: -0.055em; line-height: 1.05; overflow: visible; }
.gradient-text { background: linear-gradient(135deg, #2563EB 0%, #059669 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.glow-word { position: relative; display: inline-block; overflow: visible; padding: .035em .02em .13em .02em; margin: -.035em -.02em -.07em -.02em; background: linear-gradient(110deg, #0F172A 0%, #2563EB 32%, #7C3AED 56%, #059669 82%, #0F172A 100%); background-size: 240% 100%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: agenticGlow 3.8s ease-in-out infinite; }
@keyframes agenticGlow { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hero-orb { position: absolute; inset: auto 4% 8% auto; width: min(34vw, 360px); height: min(34vw, 360px); border-radius: 999px; background: radial-gradient(circle at 35% 35%, rgba(37,99,235,.22), rgba(5,150,105,.12) 38%, transparent 68%); filter: blur(2px); pointer-events: none; }
.agentic-card { position: relative; overflow: hidden; border-color: rgba(37,99,235,.28)!important; box-shadow: 0 18px 60px -28px rgba(37,99,235,.55); }
.agentic-card::before { content: ""; position: absolute; inset: -1px; background: radial-gradient(circle at 15% 0%, rgba(37,99,235,.13), transparent 38%), radial-gradient(circle at 95% 20%, rgba(5,150,105,.10), transparent 34%); pointer-events: none; }
.agentic-card > * { position: relative; }
.market-card { background: linear-gradient(145deg, #ffffff 0%, #f7fbff 52%, #eef8ff 100%); border-color: rgba(37,99,235,.22)!important; box-shadow: 0 18px 52px -34px rgba(37,99,235,.55); }
.market-card:hover { box-shadow: 0 22px 70px -32px rgba(37,99,235,.65); }
.section-title { font-size: clamp(1.8rem, 4.5vw, 3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
.card-hover { transition: all 250ms ease; }
.glass-nav { background: rgba(255,255,255,.70); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid rgba(255,255,255,.30); box-shadow: 0 4px 30px rgba(0,0,0,.05); }
.dark .glass-nav { background: rgba(15,23,42,.75); border-color: rgba(255,255,255,.08); box-shadow: 0 4px 30px rgba(0,0,0,.25); }
.glass-nav-btn { background: rgba(255,255,255,.50); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.20); }
.dark .glass-nav-btn { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.06); }
.nav-fixed-center { position: fixed; top: 1rem; left: 50%; transform: translateX(-50%); z-index: 50; width: calc(100% - 2rem); max-width: 72rem; padding-left: 1rem; padding-right: 1rem; }
.lang-switch { position: relative; display:inline-grid; grid-template-columns:1fr 1fr; align-items:center; min-width:92px; height:38px; padding:4px; border:1px solid rgba(37,99,235,.18); border-radius:999px; background:linear-gradient(135deg, rgba(255,255,255,.92), rgba(241,245,253,.84)); color:#64748B; font-size:.76rem; font-weight:900; box-shadow:inset 0 1px 0 rgba(255,255,255,.9), 0 12px 26px -20px rgba(37,99,235,.55); }
.lang-switch::before { content:""; position:absolute; top:4px; bottom:4px; width:calc(50% - 4px); border-radius:999px; background:linear-gradient(135deg,#2563EB,#059669); box-shadow:0 10px 22px -12px rgba(37,99,235,.75); transition:transform 220ms ease; }
.lang-switch[data-active="fr"]::before { transform:translateX(0); left:4px; }
.lang-switch[data-active="en"]::before { transform:translateX(100%); left:4px; }
.lang-switch a { position:relative; z-index:1; display:flex; align-items:center; justify-content:center; height:30px; border-radius:999px; color:#64748B; letter-spacing:.03em; }
.lang-switch a.active { color:white; }
.lang-switch:hover { border-color:rgba(37,99,235,.34); box-shadow:inset 0 1px 0 rgba(255,255,255,.9), 0 16px 34px -22px rgba(37,99,235,.72); }
.card-hover:hover { transform: translateY(-4px); box-shadow: 0 12px 32px -6px rgba(37,99,235,0.1); border-color: #2563EB; }
a, button, .card-hover { transition: all 200ms ease; }
*:focus-visible { outline: 2px solid #2563EB; outline-offset: 2px; border-radius: 4px; }
/* ── Section title accent underline ── */
.section-title { position: relative; padding-bottom: 0.5rem; }
.section-title::after { content: ""; position: absolute; bottom: 0; left: 0; width: 3rem; height: 3px; border-radius: 2px; background: linear-gradient(90deg, #2563EB, #059669); }
.dark .section-title::after { background: linear-gradient(90deg, #60A5FA, #34D399); }
/* ── Small card dark mode ── */
.dark a.border.border-border.rounded-xl { border-color: #334155; }
.dark a.border.border-border.rounded-xl:hover { border-color: #3B82F6; }
.step-number { font-size: clamp(2.4rem, 5vw, 3.5rem); font-weight: 900; background: linear-gradient(135deg, #7C3AED 0%, #A855F7 50%, #6366F1 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
/* ── Step counter animation ── */
.step-number.animate { animation: countPulse 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes countPulse { 0% { transform: scale(0.6); opacity: 0; } 60% { transform: scale(1.15); } 100% { transform: scale(1); opacity: 1; } }
.step-number.final { animation: none; transform: scale(1); opacity: 1; }
/* ── Scroll Reveal Animations ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.19s; }
.reveal-delay-4 { transition-delay: 0.26s; }
.reveal-delay-5 { transition-delay: 0.33s; }
/* ── Hero stagger children ── */
.hero-stagger > * { opacity: 0; transform: translateY(30px); animation: heroFadeIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.hero-stagger > *:nth-child(1) { animation-delay: 0.1s; }
.hero-stagger > *:nth-child(2) { animation-delay: 0.25s; }
.hero-stagger > *:nth-child(3) { animation-delay: 0.40s; }
.hero-stagger > *:nth-child(4) { animation-delay: 0.55s; }
.hero-stagger > *:nth-child(5) { animation-delay: 0.70s; }
@keyframes heroFadeIn { to { opacity: 1; transform: translateY(0); } }
/* ── Motion accent card ── */
.motion-card { position: relative; overflow: hidden; border-color: rgba(124,58,237,.28)!important; box-shadow: 0 18px 60px -28px rgba(124,58,237,.35); background: linear-gradient(145deg, #ffffff 0%, #faf5ff 52%, #f3e8ff 100%); }
.motion-card::before { content: ""; position: absolute; inset: -1px; background: radial-gradient(circle at 15% 0%, rgba(124,58,237,.10), transparent 38%), radial-gradient(circle at 95% 20%, rgba(59,130,246,.08), transparent 34%); pointer-events: none; }
.motion-card > * { position: relative; }
.motion-card:hover { box-shadow: 0 22px 70px -32px rgba(124,58,237,.45); transform: translateY(-4px); }
/* ATLAS_CARD_THEME_SWITCH_20260517: Framer purple, Agentic Identity blue */
.framer-purple-card { position: relative; overflow: hidden; border-color: rgba(124,58,237,.24)!important; box-shadow: 0 18px 52px -34px rgba(124,58,237,.58); background: linear-gradient(145deg, #ffffff 0%, #fbf7ff 52%, #f5efff 100%); }
.framer-purple-card::before { content: ""; position: absolute; inset: -1px; pointer-events: none; background: radial-gradient(circle at 15% 0%, rgba(124,58,237,.13), transparent 38%), radial-gradient(circle at 95% 20%, rgba(168,85,247,.10), transparent 34%); }
.framer-purple-card:hover { box-shadow: 0 22px 70px -32px rgba(124,58,237,.68); border-color: rgba(124,58,237,.40)!important; }
.framer-purple-card > * { position: relative; }
.framer-purple-card .framer-icon-bg { background: rgba(124,58,237,.10)!important; }
.framer-purple-card .framer-accent { color: #7c3aed!important; }
.framer-purple-card .framer-chip { background: rgba(124,58,237,.08)!important; color: #6d28d9!important; }
.dark .framer-purple-card { background: linear-gradient(145deg, #111827 0%, #1a1530 52%, #241442 100%); border-color: rgba(167,139,250,.28)!important; box-shadow: 0 18px 52px -34px rgba(0,0,0,.6); }
.dark .framer-purple-card::before { content: ""; position: absolute; inset: -1px; pointer-events: none; background: radial-gradient(circle at 15% 0%, rgba(167,139,250,.17), transparent 38%), radial-gradient(circle at 95% 20%, rgba(124,58,237,.14), transparent 34%); }
.dark .framer-purple-card > * { position: relative; }
.dark .framer-purple-card .framer-icon-bg { background: rgba(124,58,237,.20)!important; }
.dark .framer-purple-card .framer-accent { color: #C4B5FD!important; }
.dark .framer-purple-card .framer-chip { background: rgba(124,58,237,.18)!important; color: #DDD6FE!important; }
.agentic-blue-card { position: relative; overflow: hidden; border-color: rgba(37,99,235,.22)!important; box-shadow: 0 18px 52px -34px rgba(37,99,235,.55); background: linear-gradient(145deg, #ffffff 0%, #f7fbff 52%, #eef8ff 100%); }
.agentic-blue-card::before { content: ""; position: absolute; inset: -1px; pointer-events: none; background: radial-gradient(circle at 15% 0%, rgba(37,99,235,.12), transparent 38%), radial-gradient(circle at 95% 20%, rgba(14,165,233,.10), transparent 34%); }
.agentic-blue-card:hover { box-shadow: 0 22px 70px -32px rgba(37,99,235,.65); border-color: rgba(37,99,235,.36)!important; }
.agentic-blue-card > * { position: relative; }
.agentic-blue-card .agentic-icon-bg { background: rgba(37,99,235,.10)!important; }
.agentic-blue-card .agentic-accent { color: #2563eb!important; }
.agentic-blue-card .agentic-chip { background: rgba(37,99,235,.07)!important; color: #1d4ed8!important; }
.dark .agentic-blue-card { background: linear-gradient(145deg, #111827 0%, #111d30 52%, #0e1f2d 100%); border-color: rgba(59,130,246,.25)!important; box-shadow: 0 18px 52px -34px rgba(0,0,0,.6); }
.dark .agentic-blue-card::before { content: ""; position: absolute; inset: -1px; pointer-events: none; background: radial-gradient(circle at 15% 0%, rgba(59,130,246,.15), transparent 38%), radial-gradient(circle at 95% 20%, rgba(14,165,233,.12), transparent 34%); }
.dark .agentic-blue-card > * { position: relative; }
.dark .agentic-blue-card .agentic-icon-bg { background: rgba(59,130,246,.16)!important; }
.dark .agentic-blue-card .agentic-accent { color: #93C5FD!important; }
.dark .agentic-blue-card .agentic-chip { background: rgba(59,130,246,.14)!important; color: #BFDBFE!important; }
.offer-card { display:flex; flex-direction:column; }
.offer-card .offer-spacer { flex:1 1 auto; }
.offer-card .offer-price { margin-top:auto; line-height:1.15; }
.offer-card .offer-quote { display:block; margin-top:.35rem; line-height:1.25; }
@media (max-width: 639px) {
.offer-card { padding: 1.25rem !important; }
.offer-card h3 { font-size: 1.25rem; }
}
/* ── Accessibility ── */
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
.reveal { opacity: 1; transform: none; }
.hero-stagger > * { opacity: 1; transform: none; animation: none; }
}
/* ── Dark mode overrides ── */
.dark .bg-white, .dark .bg-surface { background-color: #0B1120; }
.dark .text-slate-600 { color: #CBD5E1; }
.dark .text-slate-500 { color: #94A3B8; }
.dark .text-slate-400 { color: #64748B; }
.dark .border-border { border-color: #1E293B; }
.dark a.hover\:text-primary:hover, .dark .hover\:text-primary:hover { color: #60A5FA; }
.dark a.hover\:text-primary-dark:hover { color: #93C5FD; }
.dark .hero-orb { background: radial-gradient(circle at 35% 35%, rgba(59,130,246,.28), rgba(5,150,105,.15) 45%, transparent 72%); }
.dark .glow-word { background: linear-gradient(110deg, #60A5FA 0%, #818CF8 28%, #C084FC 52%, #34D399 78%, #60A5FA 100%); background-size: 240% 100%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation-name: agenticGlowDark; }
@keyframes agenticGlowDark { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.dark .gradient-text { background: linear-gradient(135deg, #60A5FA 0%, #34D399 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.dark .market-card { background: linear-gradient(145deg, #111827 0%, #111d30 52%, #0e1f2d 100%); border-color: rgba(59,130,246,.25)!important; box-shadow: 0 18px 52px -34px rgba(0,0,0,.6); }
.dark .market-card:hover { box-shadow: 0 22px 70px -32px rgba(59,130,246,.25); }
.dark .agentic-card { border-color: rgba(59,130,246,.3)!important; box-shadow: 0 18px 60px -28px rgba(59,130,246,.35); }
.dark .agentic-card::before { background: radial-gradient(circle at 15% 0%, rgba(59,130,246,.15), transparent 38%), radial-gradient(circle at 95% 20%, rgba(5,150,105,.12), transparent 34%); }
.dark .motion-card { background: linear-gradient(145deg, #111827 0%, #1a1428 52%, #1a1228 100%); border-color: rgba(124,58,237,.3)!important; box-shadow: 0 18px 60px -28px rgba(124,58,237,.25); }
.dark .motion-card::before { background: radial-gradient(circle at 15% 0%, rgba(124,58,237,.12), transparent 38%), radial-gradient(circle at 95% 20%, rgba(59,130,246,.1), transparent 34%); }
.dark .motion-card:hover { box-shadow: 0 22px 70px -32px rgba(124,58,237,.35); }
.dark .card-hover:hover { box-shadow: 0 12px 32px -6px rgba(0,0,0,.4); }
.dark .card-hover.hover\:border-primary:hover { border-color: #3B82F6; }
.dark .card-hover.hover\:border-purple-500:hover { border-color: #8B5CF6; }
.dark .bg-green-100 { background-color: #064E3B; }
.dark .text-green-600 { color: #34D399; }
.dark .bg-green-50 { background-color: #064E3B; }
.dark .bg-purple-100 { background-color: #3B1F6E; }
.dark .bg-purple-50 { background-color: #3B1F6E; }
.dark .bg-accent\/10 { background-color: rgba(5,150,105,.15); }
.dark .bg-accent\/5 { background-color: rgba(5,150,105,.1); }
.dark .step-number { background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 50%, #818CF8 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.dark .text-foreground, .dark strong.text-foreground { color: #F1F5F9; }
.dark .border-purple-200 { border-color: #4C1D95; }
.dark .text-purple-700 { color: #C4B5FD; }
.dark .text-purple-600 { color: #A78BFA; }
.dark .hover\:text-purple-700:hover { color: #C4B5FD; }
.dark .hover\:text-purple-800:hover { color: #DDD6FE; }
.dark .bg-foreground { background-color: #1A2235; }
.dark .hover\:border-primary:hover { border-color: #3B82F6; }
.dark .hover\:text-primary:hover { color: #3B82F6; }
/* ── Dark mode buttons ── */
.dark .bg-primary { box-shadow: 0 0 18px -4px rgba(37,99,235,.45); }
.dark .bg-primary:hover { box-shadow: 0 0 28px -4px rgba(37,99,235,.65); }
.dark .bg-purple-600 { box-shadow: 0 0 18px -4px rgba(124,58,237,.4); }
.dark .bg-purple-600:hover { box-shadow: 0 0 28px -4px rgba(124,58,237,.6); }
.dark .border.border-border { border-color: #334155; }
.dark a.border.border-border:hover { border-color: #3B82F6; }
.dark a.border.border-border.hover\:text-primary:hover { color: #3B82F6; }
.dark a.border.border-border.hover\:border-purple-500:hover { border-color: #8B5CF6; color: #A78BFA; }
</style>
</head>
<body class="bg-surface dark:bg-dark-surface text-foreground dark:text-dark-foreground font-body antialiased">
<!-- Hidden SVG defs for Solana logo reuse -->
<svg width="0" height="0" style="position:absolute" aria-hidden="true"><defs><linearGradient id="sol-grad-top" x1="374" y1="329.9" x2="99.1" y2="194.3" gradientUnits="userSpaceOnUse"><stop stop-color="#00FFA3"/><stop offset="1" stop-color="#DC1FFF"/></linearGradient><linearGradient id="sol-grad-mid" x1="374" y1="95.8" x2="99.1" y2="-39.9" gradientUnits="userSpaceOnUse"><stop stop-color="#00FFA3"/><stop offset="1" stop-color="#DC1FFF"/></linearGradient><linearGradient id="sol-grad-bot" x1="374" y1="213.3" x2="99.1" y2="77.6" gradientUnits="userSpaceOnUse"><stop stop-color="#00FFA3"/><stop offset="1" stop-color="#DC1FFF"/></linearGradient><linearGradient id="celo-gold" x1="0" y1="0" x2="24" y2="24" gradientUnits="userSpaceOnUse"><stop stop-color="#FCFF52"/><stop offset="1" stop-color="#E5C800"/></linearGradient></defs></svg>
<!-- Nav -->
<header class="nav-fixed-center">
<nav class="glass-nav flex h-[50px] items-center justify-between rounded-full px-5 sm:px-8">
<a href="#top" class="flex items-center gap-2 no-underline shrink-0" aria-label="Atlas Nexus accueil">
<img src="/atlas-logo.png?v=20260527" alt="Atlas Nexus" class="h-12 w-12 rounded-xl">
<span class="hidden items-center text-lg font-semibold tracking-tight text-foreground dark:text-dark-foreground">Atlas Nexus</span>
<span class="hidden rounded-full bg-accent/15 px-2.5 py-1 text-[11px] font-medium text-accent dark:text-green-400 -ml-0.5">Live</span>
</a>
<ul class="hidden items-center gap-1 text-sm font-medium text-slate-500 dark:text-dark-dim md:flex">
<li><a href="#products" class="relative rounded-full px-3 py-1.5 hover:text-foreground dark:hover:text-white transition-colors">Produits</a></li>
<li><a href="#work" class="relative rounded-full px-3 py-1.5 hover:text-foreground dark:hover:text-white transition-colors">Réalisations</a></li>
<li><a href="#offers" class="relative rounded-full px-3 py-1.5 hover:text-foreground dark:hover:text-white transition-colors">Offres</a></li>
<li><a href="#why" class="relative rounded-full px-3 py-1.5 hover:text-foreground dark:hover:text-white transition-colors">Pourquoi</a></li>
<li><a href="#framework" class="relative rounded-full px-3 py-1.5 hover:text-foreground dark:hover:text-white transition-colors">Framework</a></li>
<li><a href="#projects" class="relative rounded-full px-3 py-1.5 hover:text-foreground dark:hover:text-white transition-colors">Projets</a></li>
<li><a href="https://github.com/AtlasNexusTech" class="relative rounded-full px-3 py-1.5 hover:text-foreground dark:hover:text-white transition-colors">GitHub</a></li>
</ul>
<div class="flex items-center gap-2">
<div class="inline-grid lang-switch" data-active="fr" aria-label="Sélecteur de langue">
<a class="active" href="/?lang=fr" onclick="localStorage.setItem('atlasnexus.lang','fr')">FR</a>
<a href="/en/" onclick="localStorage.setItem('atlasnexus.lang','en')">EN</a>
</div>
<button id="theme-toggle" class="glass-nav-btn inline-flex items-center justify-center w-10 h-10 rounded-full text-foreground dark:text-dark-foreground hover:bg-white/20 dark:hover:bg-white/5 transition-all" aria-label="Toggle dark mode">
<svg class="w-4 h-4 rotate-0 scale-100 transition-transform duration-300 dark:-rotate-90 dark:scale-0" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24"><circle cx="12" cy="12" r="4"/><path d="M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M6.34 17.66l-1.41 1.41M19.07 4.93l-1.41 1.41"/></svg>
<svg class="absolute w-4 h-4 rotate-90 scale-0 transition-transform duration-300 dark:rotate-0 dark:scale-100" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24"><path d="M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z"/></svg>
</button>
<a href="#contact" class="cursor-pointer bg-primary text-white px-5 py-2 rounded-full text-[15px] font-semibold hover:bg-primary-dark transition-colors">
Contact
</a>
</div>
</nav>
</header>
<!-- Hero -->
<section id="top" class="min-h-screen flex items-center pt-24 relative overflow-hidden">
<canvas id="antigravity-canvas" class="absolute inset-0 w-full h-full z-0 pointer-events-none" aria-hidden="true"></canvas>
<div class="hero-orb"></div>
<div class="max-w-6xl mx-auto px-6 w-full relative z-10">
<div class="max-w-4xl hero-stagger">
<h1 class="hero-title text-foreground dark:text-dark-foreground mb-8">
<span class="glow-word">Conseil</span><br><span class="glow-word">Opérations &</span><br><span class="glow-word">IA Agentique</span>
</h1>
<p class="text-2xl sm:text-3xl font-display font-extrabold text-foreground dark:text-dark-foreground max-w-3xl mb-5 leading-tight">
Pour indépendants, équipes et PME.
</p>
<p class="text-lg sm:text-xl text-slate-600 dark:text-slate-300 max-w-2xl mb-10 leading-relaxed">
Je vous aide pour vos opérations, votre automatisation, le déploiement d'IA agentiques et la création d'interfaces web.
</p>
<div class="flex gap-3 flex-wrap">
<a href="#work" class="bg-primary text-white px-7 py-3.5 rounded-full text-base font-semibold hover:bg-primary-dark inline-flex items-center gap-2 font-display">
Voir les réalisations
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8l4 4m0 0l-4 4m4-4H3"/></svg>
</a>
<a href="https://ai2work.onrender.com" class="border-2 border-purple-200 dark:border-purple-800 text-purple-700 dark:text-purple-300 px-7 py-3.5 rounded-full text-base font-semibold hover:border-purple-500 hover:bg-purple-50 dark:hover:bg-purple-900/30 dark:hover:border-purple-500 font-display">
Identité Agentique
</a>
</div>
<p class="mt-5 text-sm text-slate-500 dark:text-slate-400">Builds courts, livrables vérifiables, code GitHub quand le projet le permet.</p>
</div>
</div>
</section>
<!-- Products -->
<section id="products" class="py-24 bg-surface dark:bg-dark-surface">
<div class="max-w-6xl mx-auto px-6">
<div class="reveal">
<p class="text-accent font-semibold tracking-widest uppercase text-xs mb-3">Produits</p>
<h2 class="section-title text-foreground dark:text-dark-foreground mb-12 font-display">Démonstrations utiles, pas seulement décoratives</h2>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
<div class="reveal reveal-delay-1 card-hover market-card bg-surface rounded-2xl p-8 border border-border flex flex-col">
<div class="w-12 h-12 bg-accent/10 rounded-xl flex items-center justify-center mb-6"><svg class="w-6 h-6 text-accent" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24"><polyline points="3 17 9 11 13 15 21 7"/><polyline points="17 7 21 7 21 11"/></svg></div>
<h3 class="text-xl font-bold text-foreground dark:text-dark-foreground mb-2 font-display">Markets Dashboard</h3>
<p class="text-slate-600 dark:text-slate-300 text-sm leading-relaxed mb-4">Radar live multi-actifs : crypto, actions, ETF, indices, forex et commodities.</p>
<p class="text-sm font-semibold text-accent mb-4 font-display">GitHub Pages · Yahoo Finance · TradingView</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="px-3 py-1 bg-accent/5 text-accent text-xs font-medium rounded-full">Dashboard live</span>
<span class="px-3 py-1 bg-accent/5 text-accent text-xs font-medium rounded-full">Hawkeye V4</span>
<span class="px-3 py-1 bg-accent/5 text-accent text-xs font-medium rounded-full">100+ actifs</span>
</div>
<div class="flex gap-2 mt-auto">
<a href="https://atlasnexus.tech/dashboard.html" class="text-primary dark:text-blue-400 text-sm font-semibold hover:text-primary-dark dark:hover:text-blue-300">Démo live →</a>
<a href="https://github.com/AtlasNexusTech/markets-dashboard" class="text-slate-400 dark:text-slate-500 text-sm hover:text-slate-600 dark:hover:text-slate-300 ml-3">GitHub</a>
</div>
</div>
<!-- Framer Motion UI -->
<div class="reveal reveal-delay-2 framer-purple-card rounded-2xl p-8 border border-border bg-white flex flex-col">
<div class="w-12 h-12 framer-icon-bg rounded-xl flex items-center justify-center mb-6"><svg class="w-6 h-6 framer-accent" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" viewBox="0 0 24 24"><path d="M3 18C5 6 19 18 21 6"/></svg></div>
<h3 class="text-xl font-bold text-foreground dark:text-dark-foreground mb-2 font-display">Framer Motion UI</h3>
<p class="text-slate-600 dark:text-slate-300 text-sm leading-relaxed mb-4">Landing page, transitions, scroll reveals, parallax, gestures et entrances.</p>
<p class="text-sm font-semibold framer-accent mb-4 font-display">Skill · Démo · GitHub Pages · Landing</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="px-3 py-1 framer-chip text-xs font-medium rounded-full">React</span>
<span class="px-3 py-1 framer-chip text-xs font-medium rounded-full">Framer Motion</span>
<span class="px-3 py-1 framer-chip text-xs font-medium rounded-full">11 patterns</span>
<span class="px-3 py-1 framer-chip text-xs font-medium rounded-full">Landing</span>
</div>
<div class="flex gap-2 mt-auto">
<a href="https://atlasnexus.tech/framer-motion-ui/" class="framer-accent text-sm font-semibold hover:text-primary-dark">Démo live →</a>
<a href="https://github.com/AtlasNexusTech/framer-motion-ui" class="text-slate-400 dark:text-slate-500 text-sm hover:text-slate-600 dark:hover:text-slate-300 ml-3">GitHub</a>
</div>
</div>
<!-- Identité Agentique -->
<div class="reveal reveal-delay-3 agentic-blue-card rounded-2xl p-8 border border-border bg-white flex flex-col">
<div class="w-12 h-12 agentic-icon-bg rounded-xl flex items-center justify-center mb-6"><svg class="w-7 h-7" viewBox="0 0 24 24" fill="none"><circle cx="12" cy="12" r="9" stroke="url(#celo-gold)" stroke-width="2"/><circle cx="12" cy="7" r="2.3" fill="url(#celo-gold)"/><circle cx="7" cy="15.5" r="2.3" fill="url(#celo-gold)"/><circle cx="17" cy="15.5" r="2.3" fill="url(#celo-gold)"/></svg></div>
<h3 class="text-xl font-bold text-foreground dark:text-dark-foreground mb-2 font-display">Identité Agentique</h3>
<p class="text-slate-600 dark:text-slate-300 text-sm leading-relaxed mb-4">Marketplace de bounties IA on-chain pour le développement web3. Identité d'agent vérifiable on-chain (Celo Identity ERC-721 / ERC-8004). Déployée avec Next.js SSR.</p>
<p class="text-sm font-semibold agentic-accent mb-4 font-display">Agent Identity ERC-721 (ERC-8004) · Celo Mainnet · Next.js SSR</p>
<div class="flex flex-wrap gap-2 mb-4"><span class="px-3 py-1 agentic-chip text-xs font-medium rounded-full">Next.js 15</span><span class="px-3 py-1 agentic-chip text-xs font-medium rounded-full">React 19</span><span class="px-3 py-1 agentic-chip text-xs font-medium rounded-full">pnpm</span></div>
<div class="flex gap-2 mt-auto">
<a href="/verify/" class="agentic-accent text-sm font-semibold hover:text-primary-dark">Vérifier une identité →</a>
<a href="https://ai2work.onrender.com" class="text-slate-400 dark:text-slate-500 text-sm hover:text-slate-600 dark:hover:text-slate-300 ml-3">Démo live</a>
</div>
</div>
<!-- Atlas Toolkit -->
<div class="reveal reveal-delay-4 card-hover bg-surface dark:bg-dark-card rounded-2xl p-8 border border-border flex flex-col" style="border-color: rgba(5,150,105,.28)!important; box-shadow: 0 18px 52px -34px rgba(5,150,105,.55);">
<div class="w-12 h-12 bg-accent/10 rounded-xl flex items-center justify-center mb-6"><svg class="w-6 h-6 text-accent" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/><polyline points="10 9 9 9 8 9"/></svg></div>
<h3 class="text-xl font-bold text-foreground dark:text-dark-foreground mb-2 font-display">Atlas Toolkit</h3>
<p class="text-slate-600 dark:text-slate-300 text-sm leading-relaxed mb-4">Convertisseur de données universel : CSV, JSON, XML, YAML, Parquet. Conversion instantanée dans le navigateur.</p>
<p class="text-sm font-semibold text-accent mb-4 font-display">Python · PyPI · GitHub Pages · WebAssembly</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="px-3 py-1 bg-accent/5 text-accent text-xs font-medium rounded-full">5+ formats</span>
<span class="px-3 py-1 bg-accent/5 text-accent text-xs font-medium rounded-full">pip install</span>
<span class="px-3 py-1 bg-accent/5 text-accent text-xs font-medium rounded-full">v0.1.0</span>
</div>
<div class="flex gap-2 mt-auto">
<a href="/datatoolkit/" class="text-primary dark:text-blue-400 text-sm font-semibold hover:text-primary-dark dark:hover:text-blue-300">Démo live →</a>
<a href="https://github.com/AtlasNexusTech/datatoolkit" class="text-slate-400 dark:text-slate-500 text-sm hover:text-slate-600 dark:hover:text-slate-300 ml-3">GitHub</a>
</div>
</div>
</div>
</div>
</section>
<!-- Offers -->
<section id="offers" class="py-28 bg-surface">
<div class="max-w-5xl mx-auto px-6">
<div class="reveal">
<p class="text-accent font-semibold tracking-widest uppercase text-xs mb-3">Offres</p>
<h2 class="section-title text-foreground mb-5 font-display">Micro-builds pour débloquer une opération concrète</h2>
<p class="text-slate-600 max-w-2xl mb-12 leading-relaxed">Chaque offre est pensée pour livrer un outil utilisable rapidement : scope court, sortie vérifiable, documentation minimale incluse.</p>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-4 sm:gap-6 lg:gap-8 max-w-5xl mx-auto">
<article class="reveal reveal-delay-1 card-hover market-card offer-card rounded-2xl p-12 border border-border bg-white">
<p class="text-sm font-bold text-accent mb-2">A. Développement web</p>
<h3 class="text-2xl font-bold text-foreground mb-4 font-display">Développement web + données</h3>
<p class="text-slate-600 text-sm leading-relaxed mb-5"><strong>Livrable :</strong> dashboard, app web, données structurées.</p>
<p class="text-slate-600 text-sm leading-relaxed mb-5"><strong>Pour :</strong> indépendants, PME, SaaS, finance, veille, reporting.</p>
<div class="offer-spacer"></div>
<p class="offer-price text-xl font-extrabold text-foreground mb-6 font-display">À partir de 150€ <span class="offer-quote text-sm font-semibold text-slate-500">ou sur devis léger</span></p>
<div class="flex flex-col gap-2"><a href="/developpement-web-donnees/" class="inline-flex text-primary font-semibold hover:text-primary-dark">Voir l'offre →</a><a href="#contact" class="inline-flex text-slate-500 text-sm font-semibold hover:text-primary">Demander ce build</a></div>
</article>
<article class="reveal reveal-delay-2 card-hover agentic-blue-card offer-card rounded-2xl p-12 border border-border bg-white">
<p class="text-sm font-bold agentic-accent mb-2">B. Agent IA opérationnel</p>
<h3 class="text-2xl font-bold text-foreground mb-4 font-display">IA agentique</h3>
<p class="text-slate-600 text-sm leading-relaxed mb-5"><strong>Livrable :</strong> IA agentique professionnelle, workflow automatisé, reporting, intégration API, vrai copilote Telegram, Discord, CLI.</p>
<p class="text-slate-600 text-sm leading-relaxed mb-5"><strong>Pour :</strong> indépendants, équipes tech, PME, automatisation métier, support client.</p>
<div class="offer-spacer"></div>
<p class="offer-price text-xl font-extrabold text-foreground mb-6 font-display">À partir de 100€ <span class="offer-quote text-sm font-semibold text-slate-500">ou sur devis léger</span></p>
<div class="flex flex-col gap-2"><a href="https://atlasnexus.tech/ia-agentique/" class="inline-flex agentic-accent font-semibold hover:text-primary-dark">Voir les options →</a><a href="#contact" class="inline-flex text-slate-500 text-sm font-semibold hover:text-primary">Demander ce build</a></div>
</article>
<article class="reveal reveal-delay-3 framer-purple-card offer-card rounded-2xl p-12 border border-border bg-white">
<p class="text-sm font-bold framer-accent mb-2">C. UI Animée</p>
<h3 class="text-2xl font-bold text-foreground mb-4 font-display">Pages React · Framer Motion</h3>
<p class="text-slate-600 text-sm leading-relaxed mb-5"><strong>Livrable :</strong> landing page, composants animés, transitions, scroll reveals, gestures.</p>
<p class="text-slate-600 text-sm leading-relaxed mb-5"><strong>Pour :</strong> SaaS, portfolios, dashboards, pages de vente, onboarding.</p>
<div class="offer-spacer"></div>
<p class="offer-price text-xl font-extrabold text-foreground mb-6 font-display">À partir de 75€ <span class="offer-quote text-sm font-semibold text-slate-500">ou sur devis léger</span></p>
<div class="flex flex-col gap-2"><a href="/demos-web/" class="inline-flex framer-accent font-semibold hover:text-purple-700">Voir les démos web →</a><a href="#contact" class="inline-flex text-slate-500 text-sm font-semibold hover:text-primary">Demander ce build</a></div>
</article>
</div>
</div>
</section>
<!-- Why -->
<section id="why" class="py-24 bg-white">
<div class="max-w-6xl mx-auto px-6">
<div class="grid lg:grid-cols-[0.9fr_1.1fr] gap-12 items-start">
<div class="reveal">
<p class="text-accent font-semibold tracking-widest uppercase text-xs mb-3">Pourquoi Atlas Nexus</p>
<h2 class="section-title text-foreground mb-5 font-display">Crédible parce que livrable.</h2>
<p class="text-slate-600 leading-relaxed">L'objectif n'est pas de vendre une promesse magique. C'est de construire un outil fonctionnel, visible, documenté et utilisable par votre activité.</p>
</div>
<div class="grid sm:grid-cols-2 gap-4">
<div class="reveal reveal-delay-1 bg-surface border border-border rounded-2xl p-5"><p class="font-bold mb-1">Livraison rapide</p><p class="text-sm text-slate-600">Scope court, priorisation claire, résultat vérifiable.</p></div>
<div class="reveal reveal-delay-1 bg-surface border border-border rounded-2xl p-5"><p class="font-bold mb-1">Code visible sur GitHub</p><p class="text-sm text-slate-600">Quand le projet le permet, le code reste inspectable.</p></div>
<div class="reveal reveal-delay-2 bg-surface border border-border rounded-2xl p-5"><p class="font-bold mb-1">Documentation incluse</p><p class="text-sm text-slate-600">README, commandes utiles, limites connues.</p></div>
<div class="reveal reveal-delay-2 bg-surface border border-border rounded-2xl p-5"><p class="font-bold mb-1">Déploiement simple</p><p class="text-sm text-slate-600">GitHub Pages, scripts Python, exports standards.</p></div>
<div class="reveal reveal-delay-3 bg-surface border border-border rounded-2xl p-5"><p class="font-bold mb-1">Data / IA / UI / automatisation</p><p class="text-sm text-slate-600">Même logique : transformer un flux en outil opérationnel.</p></div>
<div class="reveal reveal-delay-3 bg-surface border border-border rounded-2xl p-5"><p class="font-bold mb-1">Pas de promesse magique</p><p class="text-sm text-slate-600">Un outil fonctionnel livré, pas du storytelling IA.</p></div>
</div>
</div>
</div>
</section>
<!-- Work -->
<section id="work" class="py-28 bg-surface">
<div class="max-w-6xl mx-auto px-6">
<div class="reveal">
<p class="text-accent font-semibold tracking-widest uppercase text-xs mb-3">Réalisations</p>
<h2 class="section-title text-foreground mb-5 font-display">Mini études de cas</h2>
<p class="text-slate-600 max-w-2xl mb-12 leading-relaxed">Quelques builds récents montrant le type de sortie livrable : dashboard, pipeline, UI animée, intégration API, refonte express de sites datés.</p>
</div>
<div class="mt-8 grid md:grid-cols-3 gap-3">
<a href="/demos-web/" class="reveal reveal-delay-1 card-hover bg-white rounded-xl p-5 border border-border hover:border-primary transition-colors"><p class="font-bold text-foreground">Démos refonte web</p><p class="text-slate-500 text-sm">Artisan, restaurant, santé, consultant · pages orientées contact</p></a>
<a href="https://github.com/AtlasNexusTech/birdeye-sprint4" class="reveal reveal-delay-1 card-hover bg-white rounded-xl p-5 border border-border"><p class="font-bold text-foreground">Birdeye Sprint 4 + Hawkeye V4</p><p class="text-slate-500 text-sm">Pipeline crypto · pression marché</p></a>
<a href="/oobe-ace-agent/" class="reveal reveal-delay-2 card-hover bg-white dark:bg-dark-card rounded-xl p-5 border border-border flex items-start gap-2.5"><svg class="w-4 h-4 shrink-0 mt-1" viewBox="0 0 398 312" fill="none"><path d="M64.6 237.9c2.4-2.4 5.7-3.8 9.2-3.8h317.4c5.8 0 8.7 7 4.6 11.1l-62.7 62.7c-2.4 2.4-5.7 3.8-9.2 3.8H6.5c-5.8 0-8.7-7-4.6-11.1l62.7-62.7z" fill="url(#sol-grad-top)"/><path d="M64.6 3.8C67.1 1.4 70.4 0 73.8 0h317.4c5.8 0 8.7 7 4.6 11.1l-62.7 62.7c-2.4 2.4-5.7 3.8-9.2 3.8H6.5c-5.8 0-8.7-7-4.6-11.1L64.6 3.8z" fill="url(#sol-grad-mid)"/><path d="M333.1 120.1c-2.4-2.4-5.7-3.8-9.2-3.8H6.5c-5.8 0-8.7 7-4.6 11.1l62.7 62.7c2.4 2.4 5.7 3.8 9.2 3.8h317.4c5.8 0 8.7-7 4.6-11.1l-62.7-62.7z" fill="url(#sol-grad-bot)"/></svg><div><p class="font-bold text-foreground dark:text-dark-foreground">Nexus Scout SAP</p><p class="text-slate-500 dark:text-slate-400 text-sm">Agent SAP mainnet · 3 tools x402</p></div></a>
<a href="/case-study/" class="reveal reveal-delay-3 card-hover bg-white rounded-xl p-5 border border-border hover:border-primary transition-colors flex items-start gap-2.5"><div class="flex -space-x-1 shrink-0 mt-0.5"><div class="w-3 h-3 rounded-full bg-[#FCFF52] ring-1 ring-white dark:ring-dark-card"></div><div class="w-3 h-3 rounded-full bg-gradient-to-br from-[#00FFA3] to-[#DC1FFF] ring-1 ring-white dark:ring-dark-card"></div></div><div><p class="font-bold text-foreground">AI2Work — Bounty Marketplace</p><p class="text-slate-500 text-sm">On-chain · Celo · Smart contracts · Case study</p></div></a>
<a href="https://atlasnexusops.github.io/solana-pulse/" class="reveal reveal-delay-3 card-hover bg-white rounded-xl p-5 border border-border flex items-start gap-2.5"><svg class="w-4 h-4 shrink-0 mt-1" viewBox="0 0 398 312" fill="none"><path d="M64.6 237.9c2.4-2.4 5.7-3.8 9.2-3.8h317.4c5.8 0 8.7 7 4.6 11.1l-62.7 62.7c-2.4 2.4-5.7 3.8-9.2 3.8H6.5c-5.8 0-8.7-7-4.6-11.1l62.7-62.7z" fill="url(#sol-grad-top)"/><path d="M64.6 3.8C67.1 1.4 70.4 0 73.8 0h317.4c5.8 0 8.7 7 4.6 11.1l-62.7 62.7c-2.4 2.4-5.7 3.8-9.2 3.8H6.5c-5.8 0-8.7-7-4.6-11.1L64.6 3.8z" fill="url(#sol-grad-mid)"/><path d="M333.1 120.1c-2.4-2.4-5.7-3.8-9.2-3.8H6.5c-5.8 0-8.7 7-4.6 11.1l62.7 62.7c2.4 2.4 5.7 3.8 9.2 3.8h317.4c5.8 0 8.7-7 4.6-11.1l-62.7-62.7z" fill="url(#sol-grad-bot)"/></svg><div><p class="font-bold text-foreground">Solana Market Pulse</p><p class="text-slate-500 text-sm">SPL tokens · scoring automatisé</p></div></a>
<a href="/ui-design-system/" class="reveal reveal-delay-3 card-hover bg-white rounded-xl p-5 border border-border flex items-start gap-2.5" style="border-color: rgba(124,58,237,.28)!important; box-shadow: 0 14px 28px -22px rgba(124,58,237,.3);"><svg class="w-4 h-4 shrink-0 mt-1" viewBox="0 0 24 24" fill="none"><rect x="2" y="2" width="20" height="20" rx="4" stroke="url(#ui-purple)" stroke-width="2"/><circle cx="8.5" cy="8.5" r="1.5" fill="#C084FC"/><circle cx="15.5" cy="8.5" r="1.5" fill="#C084FC"/><circle cx="12" cy="15" r="1.5" fill="#C084FC"/><path d="M4 18l4-4 3 3 4-4 5 5" stroke="#A78BFA" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><defs><linearGradient id="ui-purple" x1="0" y1="0" x2="1" y2="1"><stop stop-color="#7C3AED"/><stop offset="1" stop-color="#A78BFA"/></linearGradient></defs></svg><div><p class="font-bold text-foreground">UI Design System</p><p class="text-slate-500 text-sm">Skill multi-LLM · 5 modules · audit/UX/motion/prototypage/validation</p></div></a>
</div>
</div>
</section>
<!-- Process -->
<section id="process" class="py-28 bg-muted dark:bg-dark-elevated text-foreground dark:text-white">
<div class="max-w-6xl mx-auto px-6">
<div class="reveal">
<p class="text-purple-500 font-semibold tracking-widest uppercase text-xs mb-3">Méthode</p>
<h2 class="section-title mb-16 font-display">Comment je travaille</h2>
</div>
<div class="grid md:grid-cols-3 gap-12">
<div class="reveal reveal-delay-1 flex gap-5 items-start"><span class="step-number shrink-0" data-step="01">01</span><div><h3 class="font-bold text-2xl mb-3 font-display">Brief</h3><p class="text-slate-600 dark:text-slate-300 text-base leading-relaxed">Vous définissez le besoin, les sources, le format et le délai. Je propose un scope concret.</p></div></div>
<div class="reveal reveal-delay-2 flex gap-5 items-start"><span class="step-number shrink-0" data-step="02">02</span><div><h3 class="font-bold text-2xl mb-3 font-display">Build</h3><p class="text-slate-600 dark:text-slate-300 text-base leading-relaxed">Je construis, teste, documente. Code propre, livré sur GitHub si possible.</p></div></div>
<div class="reveal reveal-delay-3 flex gap-5 items-start"><span class="step-number shrink-0" data-step="03">03</span><div><h3 class="font-bold text-2xl mb-3 font-display">Livraison</h3><p class="text-slate-600 dark:text-slate-300 text-base leading-relaxed">Vous recevez le livrable, les commandes utiles, les limites connues et les prochaines options.</p></div></div>
</div>
</div>
</section>
<!-- Framework -->
<section id="framework" class="py-28 bg-white dark:bg-dark-surface">
<div class="max-w-6xl mx-auto px-6">
<div class="reveal text-center mb-16">
<p class="text-purple-500 font-semibold tracking-widest uppercase text-xs mb-3">Framework</p>
<h2 class="section-title text-foreground dark:text-dark-foreground mb-5 font-display">ATLAS — Architecture cognitive distribuée</h2>
<p class="text-slate-600 dark:text-slate-300 max-w-2xl mx-auto leading-relaxed">Un système de cognition distribuée conçu pour améliorer la qualité des décisions, la vitesse d'exécution et la continuité de la mémoire — construit comme une coalition d'agents complémentaires.</p>
</div>
<div class="grid sm:grid-cols-2 lg:grid-cols-3 gap-5">
<div class="reveal reveal-delay-1 card-hover bg-surface dark:bg-dark-card rounded-xl p-6 border border-border dark:border-dark-border">
<div class="flex items-center gap-3 mb-3">
<div class="w-10 h-10 bg-blue-100 dark:bg-blue-900/30 rounded-lg flex items-center justify-center"><span class="text-blue-600 dark:text-blue-400 font-bold text-sm">H</span></div>
<h3 class="font-bold text-foreground dark:text-dark-foreground font-display">HERMES</h3>
</div>
<p class="text-slate-600 dark:text-slate-300 text-sm leading-relaxed">Coordination, priorisation, arbitrage. Transmission continue. Point d'entrée unique du système.</p>
</div>
<div class="reveal reveal-delay-1 card-hover bg-surface dark:bg-dark-card rounded-xl p-6 border border-border dark:border-dark-border">
<div class="flex items-center gap-3 mb-3">
<div class="w-10 h-10 bg-purple-100 dark:bg-purple-900/30 rounded-lg flex items-center justify-center"><span class="text-purple-600 dark:text-purple-400 font-bold text-sm">A</span></div>
<h3 class="font-bold text-foreground dark:text-dark-foreground font-display">ATHENA</h3>
</div>
<p class="text-slate-600 dark:text-slate-300 text-sm leading-relaxed">Gouvernance, standards, cohérence architecturale. Gardienne de la qualité.</p>
</div>
<div class="reveal reveal-delay-2 card-hover bg-surface dark:bg-dark-card rounded-xl p-6 border border-border dark:border-dark-border">
<div class="flex items-center gap-3 mb-3">
<div class="w-10 h-10 bg-red-100 dark:bg-red-900/30 rounded-lg flex items-center justify-center"><span class="text-red-600 dark:text-red-400 font-bold text-sm">Æ</span></div>
<h3 class="font-bold text-foreground dark:text-dark-foreground font-display">AEGIS</h3>
</div>
<p class="text-slate-600 dark:text-slate-300 text-sm leading-relaxed">Validation critique, stress tests, contre-arguments. L'adversaire qui renforce les décisions.</p>
</div>
<div class="reveal reveal-delay-2 card-hover bg-surface dark:bg-dark-card rounded-xl p-6 border border-border dark:border-dark-border">
<div class="flex items-center gap-3 mb-3">
<div class="w-10 h-10 bg-green-100 dark:bg-green-900/30 rounded-lg flex items-center justify-center"><span class="text-green-600 dark:text-green-400 font-bold text-sm">Δ</span></div>
<h3 class="font-bold text-foreground dark:text-dark-foreground font-display">DELPHI</h3>
</div>
<p class="text-slate-600 dark:text-slate-300 text-sm leading-relaxed">Synthèse profonde, modélisation, options. Transforme l'information en décisions actionnables.</p>
</div>
<div class="reveal reveal-delay-3 card-hover bg-surface dark:bg-dark-card rounded-xl p-6 border border-border dark:border-dark-border">
<div class="flex items-center gap-3 mb-3">
<div class="w-10 h-10 bg-orange-100 dark:bg-orange-900/30 rounded-lg flex items-center justify-center"><span class="text-orange-600 dark:text-orange-400 font-bold text-sm">Φ</span></div>
<h3 class="font-bold text-foreground dark:text-dark-foreground font-display">HEPHAESTUS</h3>
</div>
<p class="text-slate-600 dark:text-slate-300 text-sm leading-relaxed">Infrastructure, agents, automatisation. La forge qui fait tourner le système.</p>
</div>
<div class="reveal reveal-delay-3 card-hover bg-surface dark:bg-dark-card rounded-xl p-6 border border-border dark:border-dark-border">
<div class="flex items-center gap-3 mb-3">
<div class="w-10 h-10 bg-teal-100 dark:bg-teal-900/30 rounded-lg flex items-center justify-center"><span class="text-teal-600 dark:text-teal-400 font-bold text-sm">M</span></div>
<h3 class="font-bold text-foreground dark:text-dark-foreground font-display">MNEMOSYNE</h3>
</div>
<p class="text-slate-600 dark:text-slate-300 text-sm leading-relaxed">Mémoire persistante, apprentissages, logs. Ce qui survit aux sessions et aux resets.</p>
</div>
</div>
<div class="reveal reveal-delay-4 text-center mt-12">
<a href="https://github.com/AtlasNexusTech/atlas-nexus" class="bg-primary text-white px-7 py-3.5 rounded-full text-base font-semibold hover:bg-primary-dark inline-flex items-center gap-2 font-display">
Voir le framework sur GitHub
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 8l4 4m0 0l-4 4m4-4H3"/></svg>
</a>
<p class="text-slate-500 dark:text-slate-400 text-sm mt-4">Open-source · MIT · Construit par Atlas Nexus Operations</p>
</div>
</div>
</section>
<!-- Projects -->
<section id="projects" class="py-28 bg-white dark:bg-dark-surface">
<div class="max-w-6xl mx-auto px-6">
<div class="reveal text-center mb-16">
<p class="text-accent font-semibold tracking-widest uppercase text-xs mb-3">Projets</p>
<h2 class="section-title text-foreground dark:text-dark-foreground mb-5 font-display">L'écosystème en construction</h2>
<p class="text-slate-600 dark:text-slate-300 max-w-2xl mx-auto leading-relaxed">Trois projets complémentaires qui couvrent le cycle complet : infrastructure data, orchestration d'agents, et marketplace on-chain.</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-8 max-w-6xl mx-auto">
<!-- AI Studio -->
<a href="/ai-studio/" class="reveal reveal-delay-1 card-hover rounded-2xl p-8 border border-border flex flex-col bg-white dark:bg-dark-card" style="border-color: rgba(8,145,178,.28)!important; box-shadow: 0 18px 52px -34px rgba(8,145,178,.55);">
<div class="w-12 h-12 bg-cyan-100 dark:bg-cyan-900/30 rounded-xl flex items-center justify-center mb-6">
<svg class="w-6 h-6 text-cyan-600 dark:text-cyan-400" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><rect x="2" y="2" width="20" height="8" rx="2" fill="currentColor" stroke="none"/><rect x="2" y="14" width="20" height="8" rx="2" fill="currentColor" stroke="none" opacity="0.6"/></svg>
</div>
<h3 class="text-xl font-bold text-foreground dark:text-dark-foreground mb-2 font-display">AI Studio</h3>
<p class="text-slate-600 dark:text-slate-300 text-sm leading-relaxed mb-4">Hub créatif IA tout-en-un : images (Midjourney, Flux), vidéo (Luma, Sora), musique (Suno), chat (GPT, Claude, Gemini, DeepSeek). Propulsé par Ace Data Cloud.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="px-3 py-1 bg-cyan-50 dark:bg-cyan-900/20 text-cyan-700 dark:text-cyan-300 text-xs font-medium rounded-full">Image</span>
<span class="px-3 py-1 bg-cyan-50 dark:bg-cyan-900/20 text-cyan-700 dark:text-cyan-300 text-xs font-medium rounded-full">Vidéo</span>
<span class="px-3 py-1 bg-cyan-50 dark:bg-cyan-900/20 text-cyan-700 dark:text-cyan-300 text-xs font-medium rounded-full">Musique</span>
<span class="px-3 py-1 bg-cyan-50 dark:bg-cyan-900/20 text-cyan-700 dark:text-cyan-300 text-xs font-medium rounded-full">Chat</span>
</div>
<div class="mt-auto flex gap-2 items-center">
<span class="text-cyan-600 dark:text-cyan-400 text-sm font-semibold">Découvrir →</span>
</div>
</a>
<!-- AI2Work -->
<a href="https://ai2work.onrender.com" class="reveal reveal-delay-2 card-hover agentic-blue-card rounded-2xl p-8 border border-border bg-white dark:bg-dark-card flex flex-col">
<div class="w-12 h-12 agentic-icon-bg rounded-xl flex items-center justify-center mb-6">
<img src="https://ai2work.onrender.com/icon.svg" alt="AI2Work" class="w-9 h-9 object-contain">
</div>
<h3 class="text-xl font-bold text-foreground dark:text-dark-foreground mb-2 font-display">AI2Work</h3>
<p class="text-slate-600 dark:text-slate-300 text-sm leading-relaxed mb-4">Marketplace on-chain où des agents IA résolvent des bounties GitHub et gagnent des stablecoins. Multi-chain : Celo, Base, Polygon + Solana.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="px-3 py-1 agentic-chip text-xs font-medium rounded-full">Web3</span>
<span class="px-3 py-1 agentic-chip text-xs font-medium rounded-full">On-chain</span>
<span class="px-3 py-1 agentic-chip text-xs font-medium rounded-full">Marketplace</span>
</div>
<div class="mt-auto flex gap-2 items-center">
<span class="agentic-accent text-sm font-semibold">Voir la démo →</span>
</div>
</a>
<!-- Agent Security Solana -->
<div class="reveal reveal-delay-3 rounded-2xl p-8 border border-border flex flex-col bg-white dark:bg-dark-card" style="border-color: rgba(5,150,105,.28)!important; box-shadow: 0 18px 52px -34px rgba(5,150,105,.55);">
<div class="flex items-center gap-3 mb-4">
<div class="w-12 h-12 bg-green-100 dark:bg-green-900/30 rounded-xl flex items-center justify-center">
<svg class="w-6 h-6 text-green-600 dark:text-green-400" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/></svg>
</div>
<h3 class="text-xl font-bold text-foreground dark:text-dark-foreground font-display">Sécurité Agent Solana</h3>
</div>
<!-- OOBE sub-card -->
<a href="/oobe-ace-agent/" class="card-hover block rounded-xl p-4 mb-3 border border-border/60 bg-green-50/50 dark:bg-green-950/20 hover:border-green-300 dark:hover:border-green-700 transition-colors">
<div class="flex items-center gap-2 mb-1">
<span class="text-xs font-bold text-green-700 dark:text-green-300 bg-green-100 dark:bg-green-900/40 px-2 py-0.5 rounded">Spending</span>
<span class="font-semibold text-sm text-foreground dark:text-dark-foreground">OOBE × Ace Agent</span>
</div>
<p class="text-xs text-slate-500 dark:text-slate-400">Vault on-chain · caps quotidiens · allowlist MCP · x402</p>
</a>
<!-- BentoGuard sub-card -->
<a href="/bento-beta-bounty/" class="card-hover block rounded-xl p-4 mb-4 border border-border/60 bg-amber-50/50 dark:bg-amber-950/20 hover:border-amber-300 dark:hover:border-amber-700 transition-colors">
<div class="flex items-center gap-2 mb-1">
<span class="text-xs font-bold text-amber-700 dark:text-amber-300 bg-amber-100 dark:bg-amber-900/40 px-2 py-0.5 rounded">Firewall</span>
<span class="font-semibold text-sm text-foreground dark:text-dark-foreground">BentoGuard Beta Bounty</span>
</div>
<p class="text-xs text-slate-500 dark:text-slate-400">Firewall agents IA · ML detection · on-chain · audit trail · 8.1/10</p>
</a>
<div class="flex flex-wrap gap-2 mt-auto">
<span class="px-3 py-1 bg-green-50 dark:bg-green-900/20 text-green-700 dark:text-green-300 text-xs font-medium rounded-full">Solana</span>
<span class="px-3 py-1 bg-green-50 dark:bg-green-900/20 text-green-700 dark:text-green-300 text-xs font-medium rounded-full">x402</span>
<span class="px-3 py-1 bg-amber-50 dark:bg-amber-900/20 text-amber-700 dark:text-amber-300 text-xs font-medium rounded-full">ML Security</span>
<span class="px-3 py-1 bg-amber-50 dark:bg-amber-900/20 text-amber-700 dark:text-amber-300 text-xs font-medium rounded-full">Bounty</span>
</div>
</div>
<!-- Atlas Desk -->
<a href="/atlas-desk/" class="reveal reveal-delay-4 card-hover rounded-2xl p-8 border border-border flex flex-col bg-white dark:bg-dark-card" style="border-color: rgba(124,58,237,.28)!important; box-shadow: 0 18px 52px -34px rgba(124,58,237,.55);">
<div class="w-12 h-12 bg-purple-100 dark:bg-purple-900/30 rounded-xl flex items-center justify-center mb-6">
<svg class="w-6 h-6 text-purple-600 dark:text-purple-400" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><rect x="2" y="3" width="20" height="14" rx="2"/><path d="M8 21h8M12 17v4"/></svg>
</div>
<h3 class="text-xl font-bold text-foreground dark:text-dark-foreground mb-2 font-display">Atlas Desk</h3>
<p class="text-slate-600 dark:text-slate-300 text-sm leading-relaxed mb-4">Remote desktop open source P2P via WebRTC. Chiffré, zéro installation. Contrôlez votre PC partout. Alternative à AnyDesk.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="px-3 py-1 bg-purple-50 dark:bg-purple-900/20 text-purple-700 dark:text-purple-300 text-xs font-medium rounded-full">P2P</span>
<span class="px-3 py-1 bg-purple-50 dark:bg-purple-900/20 text-purple-700 dark:text-purple-300 text-xs font-medium rounded-full">WebRTC</span>
<span class="px-3 py-1 bg-purple-50 dark:bg-purple-900/20 text-purple-700 dark:text-purple-300 text-xs font-medium rounded-full">Open Source</span>
<span class="px-3 py-1 bg-purple-50 dark:bg-purple-900/20 text-purple-700 dark:text-purple-300 text-xs font-medium rounded-full">Remote</span>
</div>
<div class="mt-auto flex gap-2 items-center">
<span class="text-purple-600 dark:text-purple-400 text-sm font-semibold">Explorer →</span>
</div>
</a>
</div>
</div>
</section>
<!-- Contact -->
<section id="contact" class="py-28 bg-surface dark:bg-dark-surface">
<div class="max-w-3xl mx-auto px-6 text-center">
<p class="text-accent font-semibold tracking-widest uppercase text-xs mb-3">Contact</p>
<h2 class="section-title text-foreground dark:text-dark-foreground mb-6 font-display mx-auto inline-block">Parlons de votre projet</h2>
<p class="text-slate-600 dark:text-slate-300 text-lg mb-10 max-w-xl mx-auto">Un besoin, une question, un devis ? Écrivez-moi directement ou appelez-moi.</p>
<div class="grid sm:grid-cols-3 gap-6 mb-10">
<a href="mailto:laslyalexandre@gmail.com" class="reveal reveal-delay-1 card-hover bg-white dark:bg-dark-card rounded-xl p-6 border border-border dark:border-dark-border flex flex-col items-center gap-3">
<svg class="w-8 h-8 text-primary" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><rect x="2" y="4" width="20" height="16" rx="2"/><path d="M22 4L12 13 2 4"/></svg>
<span class="font-bold text-foreground dark:text-dark-foreground">Email</span>
<span class="text-sm text-slate-500 dark:text-slate-400">laslyalexandre@gmail.com</span>
<span class="text-xs text-slate-400 dark:text-slate-500">atlasnexus.ops@proton.me</span>
</a>
<a href="tel:+33750504595" class="reveal reveal-delay-2 card-hover bg-white dark:bg-dark-card rounded-xl p-6 border border-border dark:border-dark-border flex flex-col items-center gap-3">
<svg class="w-8 h-8 text-accent" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path d="M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72 12.84 12.84 0 00.7 2.81 2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z"/></svg>
<span class="font-bold text-foreground dark:text-dark-foreground">Téléphone</span>
<span class="text-sm text-slate-500 dark:text-slate-400">+33 7 50 50 45 95</span>
</a>
<a href="https://www.malt.fr/profile/alexandrechahibalasly" class="reveal reveal-delay-3 card-hover bg-white dark:bg-dark-card rounded-xl p-6 border border-border dark:border-dark-border flex flex-col items-center gap-3">
<img src="/images/malt-logo.png" alt="Malt" class="h-10 w-auto object-contain">
<span class="font-bold text-foreground dark:text-dark-foreground">Malt</span>
<span class="text-sm text-slate-500 dark:text-slate-400">Profil vérifié</span>
</a>
</div>
<p class="text-sm text-slate-400 dark:text-slate-500">Réponse sous 24h · Devis gratuit</p>
</div>
</section>
<!-- Footer -->
<footer class="py-12 border-t border-border bg-white">
<div class="max-w-6xl mx-auto px-6 flex flex-col sm:flex-row justify-between items-center gap-4">
<p class="text-slate-400 text-sm">© 2026 Atlas Nexus — Alexandre Lasly · <a href="/mentions-legales/" class="hover:text-primary dark:hover:text-blue-400">Mentions légales</a></p>
</div>
</footer>
<!-- Scroll Reveal Observer + Step Animation -->
<script>
(function() {
if (window.matchMedia('(prefers-reduced-motion: reduce)').matches) {
document.querySelectorAll('.reveal').forEach(el => el.classList.add('visible'));
document.querySelectorAll('.step-number').forEach(el => { el.classList.add('animate'); el.classList.add('final'); });
return;
}
// ── Step number animation: pulse when entering, lock when leaving ──
const processSection = document.querySelector('#process');
const stepNumbers = document.querySelectorAll('.step-number');
if (processSection && stepNumbers.length) {
const processObserver = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
// Section is visible — restart pulse animation
stepNumbers.forEach(el => {
el.classList.remove('final');
el.classList.add('animate');
// Re-trigger animation
void el.offsetWidth;
el.classList.remove('animate');
void el.offsetWidth;
el.classList.add('animate');
});
} else if (entry.boundingClientRect.top < 0) {
// User scrolled past — lock all numbers in final state
stepNumbers.forEach(el => {
el.classList.add('final');
el.classList.remove('animate');
});
}
});
}, { threshold: 0 });
processObserver.observe(processSection);
}
// ── Scroll reveal ──
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
observer.unobserve(entry.target);
}
});
}, { threshold: 0.1, rootMargin: '0px 0px -40px 0px' });
document.querySelectorAll('.reveal').forEach(el => observer.observe(el));
})();
</script>
<!-- Dark mode toggle -->
<script>
(function() {
const html = document.documentElement;
const toggle = document.getElementById('theme-toggle');
function apply(isDark) {
if (isDark) html.classList.add('dark');
else html.classList.remove('dark');
}
const stored = localStorage.getItem('theme');
if (stored === 'dark') apply(true);
else if (stored === 'light') apply(false);
else if (window.matchMedia('(prefers-color-scheme: dark)').matches) apply(true);
toggle.addEventListener('click', () => {
const isDark = !html.classList.contains('dark');
apply(isDark);
localStorage.setItem('theme', isDark ? 'dark' : 'light');
});
})();
</script>
<script>
/* ── Antigravity Canvas ── Mouse-reactive floating geometric particles */
(function(){
const canvas = document.getElementById('antigravity-canvas');
if (!canvas) return;
const ctx = canvas.getContext('2d');
const prefersReduced = window.matchMedia('(prefers-reduced-motion: reduce)').matches;
let W, H, particles = [];
const PARTICLE_COUNT = 55;
const CONNECTION_DIST = 140;
const MOUSE_RADIUS = 200; // max distance particles feel the cursor
const MOUSE_FORCE = 0.015; // attraction strength
const SHAPES = ['circle','triangle','diamond','hexagon'];
const COLORS = [
{ r: 37, g: 99, b: 235 }, // blue
{ r: 5, g: 150, b: 105 }, // green
{ r: 124, g: 58, b: 237 }, // purple
];
// Smoothed mouse position (-1000 = off-screen / no mouse)
const mouse = { x: -1000, y: -1000, tx: -1000, ty: -1000 };
function resize() {
const rect = canvas.parentElement.getBoundingClientRect();
const dpr = Math.min(window.devicePixelRatio || 1, 2);
W = rect.width; H = rect.height;
canvas.width = W * dpr; canvas.height = H * dpr;
canvas.style.width = W + 'px'; canvas.style.height = H + 'px';
ctx.setTransform(dpr, 0, 0, dpr, 0, 0);
}
function createParticle() {
const color = COLORS[Math.floor(Math.random() * COLORS.length)];
return {
x: Math.random() * W,
y: Math.random() * H,
vx: (Math.random() - 0.5) * 0.35,
vy: (Math.random() - 0.5) * 0.35,
size: 3 + Math.random() * 9,
opacity: 0.08 + Math.random() * 0.14,
shape: SHAPES[Math.floor(Math.random() * SHAPES.length)],
color,
phase: Math.random() * Math.PI * 2,
speed: 0.003 + Math.random() * 0.007,
amplitude: 0.2 + Math.random() * 0.8,
rotation: Math.random() * Math.PI * 2,
rotSpeed: (Math.random() - 0.5) * 0.004,
};
}
function drawShape(p) {
const { x, y, size, shape, color: c, opacity, rotation } = p;
ctx.save();
ctx.translate(x, y);
ctx.rotate(rotation);
ctx.globalAlpha = opacity;
ctx.fillStyle = `rgba(${c.r},${c.g},${c.b},1)`;
ctx.strokeStyle = `rgba(${c.r},${c.g},${c.b},1)`;
ctx.lineWidth = 0.6;
const s = size;
switch(shape) {
case 'circle':
ctx.beginPath(); ctx.arc(0, 0, s/2, 0, Math.PI*2); ctx.fill();
break;
case 'triangle':
ctx.beginPath();
ctx.moveTo(0, -s/1.8); ctx.lineTo(s/2, s/2.5); ctx.lineTo(-s/2, s/2.5); ctx.closePath();
ctx.fill();
break;
case 'diamond':
ctx.beginPath();
ctx.moveTo(0, -s/1.8); ctx.lineTo(s/2.2, 0); ctx.lineTo(0, s/1.8); ctx.lineTo(-s/2.2, 0); ctx.closePath();
ctx.fill();
break;
case 'hexagon':
ctx.beginPath();
for (let i=0; i<6; i++) {
const a = Math.PI/3 * i - Math.PI/6;
const r = s/2.2;
i===0 ? ctx.moveTo(Math.cos(a)*r, Math.sin(a)*r) : ctx.lineTo(Math.cos(a)*r, Math.sin(a)*r);
}
ctx.closePath(); ctx.fill();
break;
}
ctx.restore();
}
function drawConnections() {
for (let i=0; i<particles.length; i++) {
for (let j=i+1; j<particles.length; j++) {
const a = particles[i], b = particles[j];
const dx = a.x - b.x, dy = a.y - b.y;
const dist = Math.sqrt(dx*dx + dy*dy);
if (dist < CONNECTION_DIST) {
// Boost alpha for connections near the mouse
const dA = Math.hypot(a.x - mouse.x, a.y - mouse.y);
const dB = Math.hypot(b.x - mouse.x, b.y - mouse.y);
const nearMouse = Math.max(0, 1 - Math.min(dA, dB) / 160);
const alpha = ((1 - dist/CONNECTION_DIST) * 0.07) + nearMouse * 0.12;
ctx.beginPath();
ctx.moveTo(a.x, a.y);
ctx.lineTo(b.x, b.y);
ctx.strokeStyle = `rgba(37,99,235,${alpha.toFixed(3)})`;
ctx.lineWidth = 0.4 + nearMouse * 0.6;
ctx.stroke();
}
}
}
}
function drawCursorGlow() {
if (mouse.x < 0) return;
const grad = ctx.createRadialGradient(mouse.x, mouse.y, 0, mouse.x, mouse.y, 100);
grad.addColorStop(0, 'rgba(37,99,235,0.06)');
grad.addColorStop(0.5, 'rgba(5,150,105,0.03)');
grad.addColorStop(1, 'rgba(37,99,235,0)');
ctx.fillStyle = grad;
ctx.beginPath(); ctx.arc(mouse.x, mouse.y, 100, 0, Math.PI*2); ctx.fill();
}
function animate() {
ctx.clearRect(0, 0, W, H);
// Smooth mouse lerp
mouse.x += (mouse.tx - mouse.x) * 0.08;
mouse.y += (mouse.ty - mouse.y) * 0.08;
drawCursorGlow();
for (const p of particles) {
// Mouse attraction — particles drift gently toward cursor
if (mouse.x > 0) {
const dx = mouse.x - p.x, dy = mouse.y - p.y;
const dist = Math.sqrt(dx*dx + dy*dy);
if (dist < MOUSE_RADIUS && dist > 1) {
const force = (1 - dist/MOUSE_RADIUS) * MOUSE_FORCE;
p.x += (dx / dist) * force;
p.y += (dy / dist) * force;
}
}
// Sinusoidal floating
const floatX = Math.sin(p.phase) * p.amplitude;
const floatY = Math.cos(p.phase * 0.7) * p.amplitude * 0.8;
p.x += p.vx + floatX * 0.03;
p.y += p.vy + floatY * 0.03;
p.phase += p.speed;
p.rotation += p.rotSpeed;
// Boost opacity near mouse
if (mouse.x > 0) {
const d = Math.hypot(p.x - mouse.x, p.y - mouse.y);
p.currentOpacity = p.opacity + Math.max(0, 1 - d/130) * 0.13;
} else {
p.currentOpacity = p.opacity;
}
// Wrap around
if (p.x < -20) p.x = W + 20;
if (p.x > W + 20) p.x = -20;
if (p.y < -20) p.y = H + 20;
if (p.y > H + 20) p.y = -20;
// Temporarily swap opacity for this frame
const saved = p.opacity;
p.opacity = p.currentOpacity || p.opacity;
drawShape(p);
p.opacity = saved;
}
drawConnections();
requestAnimationFrame(animate);
}
function init() {
resize();
particles = Array.from({ length: PARTICLE_COUNT }, createParticle);
// Mouse tracking
canvas.parentElement.addEventListener('mousemove', function(e) {
const rect = canvas.getBoundingClientRect();
mouse.tx = e.clientX - rect.left;
mouse.ty = e.clientY - rect.top;
});
canvas.parentElement.addEventListener('mouseleave', function() {
mouse.tx = -1000; mouse.ty = -1000;
});
// Touch support
canvas.parentElement.addEventListener('touchmove', function(e) {
const rect = canvas.getBoundingClientRect();
mouse.tx = e.touches[0].clientX - rect.left;
mouse.ty = e.touches[0].clientY - rect.top;
}, {passive: true});
canvas.parentElement.addEventListener('touchend', function() {
mouse.tx = -1000; mouse.ty = -1000;
});
if (!prefersReduced) animate();
}
window.addEventListener('resize', () => { resize(); particles.forEach(p => { p.x = Math.random()*W; p.y = Math.random()*H; }); });
// Start when hero section is visible
if ('IntersectionObserver' in window) {
const obs = new IntersectionObserver((entries) => {
if (entries[0].isIntersecting) { init(); obs.disconnect(); }
}, { threshold: 0.1 });
obs.observe(canvas.parentElement);
} else {
init();
}
})();
</script>
</body>
</html>