-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
9129 lines (8031 loc) · 452 KB
/
index.html
File metadata and controls
9129 lines (8031 loc) · 452 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!--
UP2CLOUD — IT Consulting & Cloud Solutions
─────────────────────────────────────────────
CONTACT FORM SETUP (Formspree):
1. Go to https://formspree.io and sign up for free
2. Create a new form → use email: cesarnogueira1210@gmail.com
3. Copy your form endpoint (looks like: https://formspree.io/f/xyzabcde)
4. Replace FORMSPREE_ENDPOINT below with that URL
-->
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>UP2CLOUD — Enterprise Platform Engineering & FinOps Consultancy</title>
<meta name="description" content="Specialized Platform Engineering, FinOps, and DevOps consultancy for AWS, Azure, and Google Cloud. We build immutable infrastructure and automated governance for global engineering teams." />
<meta name="author" content="Cesar A. Nogueira" />
<meta name="robots" content="index, follow" />
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-inline' https://cdn.tailwindcss.com https://unpkg.com https://static.hotjar.com https://script.hotjar.com https://static.cloudflareinsights.com; script-src-elem 'self' 'unsafe-inline' https://cdn.tailwindcss.com https://unpkg.com https://static.hotjar.com https://script.hotjar.com https://static.cloudflareinsights.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://cdn.tailwindcss.com https://unpkg.com; font-src 'self' https://fonts.gstatic.com data:; img-src 'self' data: https: blob:; connect-src 'self' https://api.groq.com https://formspree.io https://static.hotjar.com https://script.hotjar.com https://cloudflareinsights.com; frame-src 'self' https://vars.hotjar.com; worker-src 'self' blob:; base-uri 'self'; form-action 'self' https://formspree.io; object-src 'none'" />
<meta property="og:title" content="UP2CLOUD — Enterprise Platform Engineering" />
<meta property="og:description" content="Build cloud platforms that scale, ship, and pay for themselves. Expert Platform Engineering and FinOps for AWS, Azure, and Google Cloud." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://up2cloud.tech/" />
<link rel="canonical" href="https://up2cloud.tech/" />
<meta property="og:image" content="https://up2cloud.tech/assets/img/og-image.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="UP2CLOUD — Enterprise Cloud & DevOps Consulting" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image" content="https://up2cloud.tech/assets/img/og-image.png" />
<meta name="twitter:title" content="UP2CLOUD — Platform Engineering, FinOps & DevOps Consulting" />
<meta name="twitter:description" content="Build cloud platforms that scale, ship, and pay for themselves. Expert Platform Engineering, FinOps, and AI-driven DevOps for AWS, Azure, and Google Cloud." />
<!-- Hotjar delayed for mobile performance; loaded after idle/user interaction -->
<script>
window.addEventListener('load', function () {
var loadHotjar = function () {
if (window.__up2cloudHotjarLoaded || location.protocol !== 'https:') return;
window.__up2cloudHotjarLoaded = true;
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:6705514,hjsv:6};
a=o.getElementsByTagName('head')[0];
r=o.createElement('script');r.async=1;
r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
};
['pointerdown','keydown','scroll','touchstart'].forEach(function(eventName){
window.addEventListener(eventName, loadHotjar, { once:true, passive:true });
});
if ('requestIdleCallback' in window) {
requestIdleCallback(loadHotjar, { timeout: 6000 });
} else {
setTimeout(loadHotjar, 6000);
}
});
</script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- Mobile performance resource hints -->
<link rel="dns-prefetch" href="//cdn.simpleicons.org" />
<link rel="dns-prefetch" href="//logo.clearbit.com" />
<link rel="dns-prefetch" href="//static.hotjar.com" />
<link rel="dns-prefetch" href="//script.hotjar.com" />
<!-- Performance resource hints -->
<link rel="dns-prefetch" href="//cdn.simpleicons.org" />
<link rel="preconnect" href="https://cdn.simpleicons.org" crossorigin />
<link rel="dns-prefetch" href="//static.hotjar.com" />
<link rel="dns-prefetch" href="//script.hotjar.com" />
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;700&display=swap" />
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;700&display=swap" rel="stylesheet" media="print" onload="this.media='all'" />
<noscript><link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;700&display=swap" />
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;700&display=swap" rel="stylesheet" media="print" onload="this.media='all'" />
<noscript><link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;700&display=swap" rel="stylesheet" /></noscript></noscript>
<!-- UP2CLOUD favicon — cloud SVG inline data URL -->
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect width='24' height='24' rx='5' fill='%230F172A'/%3E%3Cpath d='M3 15a4 4 0 004 4h9a5 5 0 10-.1-9.999 5.002 5.002 0 10-9.78 2.096A4.001 4.001 0 003 15z' stroke='%230EA5E9' stroke-width='2' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E" />
<link rel="preload" href="assets/css/tailwind.min.css" as="style" />
<link rel="stylesheet" href="assets/css/tailwind.min.css" />
<!-- Structured Data (Schema.org) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "UP2CLOUD",
"url": "https://up2cloud.tech",
"potentialAction": {
"@type": "SearchAction",
"target": "https://up2cloud.tech/blog/?s={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "UP2CLOUD",
"url": "https://up2cloud.tech",
"logo": "https://up2cloud.tech/assets/img/og-image.png",
"contactPoint": {
"@type": "ContactPoint",
"email": "hello@up2cloud.io",
"contactType": "Sales",
"telephone": "+351 937 471 554"
},
"sameAs": [
"https://www.linkedin.com/company/up2cloud/",
"https://github.com/UP2CLOUD"
]
}
</script> <script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"name": "UP2CLOUD",
"image": "https://up2cloud.tech/assets/img/og-image.png",
"telephone": "+351 937 471 554",
"email": "hello@up2cloud.io",
"address": {
"@type": "PostalAddress",
"addressLocality": "Vila Real",
"addressCountry": "PT"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": 41.3006,
"longitude": -7.7441
},
"url": "https://up2cloud.tech"
}
</script>
<script>
const FORMSPREE_ENDPOINT = 'https://formspree.io/f/REPLACE_WITH_YOUR_ID';
const CHAT_API_PROXY_URL = '/api/chat';
</script>
<!-- All custom CSS is now compiled into assets/css/tailwind.min.css via src/input.css -->
<style>
/* legacy overrides only — kept for specificity safety */
html{scroll-behavior:smooth}
.glass{background:rgba(255,255,255,.08);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border:1px solid rgba(255,255,255,.15)}
.premium-glow{position:relative;overflow:hidden}
.premium-glow::before{content:"";position:absolute;inset:-1px;background:linear-gradient(120deg,rgba(14,165,233,.45),rgba(124,58,237,.32),rgba(249,115,22,.35));opacity:.7;z-index:-1;filter:blur(18px)}
.shine{position:relative;overflow:hidden}
.shine::after{content:"";position:absolute;top:-120%;left:-30%;width:35%;height:320%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.18),transparent);transform:rotate(25deg);animation:shineSweep 7s ease-in-out infinite}
@keyframes shineSweep{0%,72%{left:-45%;opacity:0}78%{opacity:1}100%{left:125%;opacity:0}}
.orb-ring{position:absolute;border-radius:999px;border:1px solid rgba(255,255,255,.14);box-shadow:0 0 80px rgba(14,165,233,.16) inset;animation:slowSpin 26s linear infinite}
@keyframes slowSpin{to{transform:rotate(360deg)}}
@keyframes ptrSpin{to{transform:rotate(360deg)}}
@keyframes termCursor{0%,100%{opacity:1}50%{opacity:0}}
.tf-cursor{display:inline-block;animation:termCursor .7s step-end infinite;color:#38BDF8}
.command-chip{background:rgba(15,23,42,.72);border:1px solid rgba(148,163,184,.25);box-shadow:0 18px 45px rgba(2,6,23,.28);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px)}
.hero-bg{background:radial-gradient(circle at 15% 20%,rgba(14,165,233,.28),transparent 28%),radial-gradient(circle at 85% 15%,rgba(124,58,237,.28),transparent 26%),radial-gradient(circle at 50% 85%,rgba(249,115,22,.18),transparent 30%),linear-gradient(135deg,#020617 0%,#0F172A 35%,#0C4A6E 68%,#0369A1 100%)}
.ai-bg{background:linear-gradient(135deg,#1e0533 0%,#2d1060 40%,#0F172A 100%)}
.blob{position:absolute;border-radius:50%;filter:blur(80px);opacity:.22;animation:float 8s ease-in-out infinite}
@keyframes float{0%,100%{transform:translateY(0) scale(1)}50%{transform:translateY(-28px) scale(1.04)}}
.reveal{opacity:0;transform:translateY(32px);transition:opacity .6s ease,transform .6s ease}
.reveal.visible{opacity:1;transform:none}
section[id]{scroll-margin-top:6rem}
nav.scrolled{background:rgba(2,6,23,.93);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);box-shadow:0 0 0 1px rgba(255,255,255,.06),0 4px 32px rgba(0,0,0,.4)}
.service-card{transition:transform .28s cubic-bezier(.25,.46,.45,.94),box-shadow .28s ease,border-color .28s ease;background:linear-gradient(180deg,#fff 0%,#F8FAFC 100%);will-change:transform}.service-card:hover{border-color:rgba(14,165,233,.3)!important;box-shadow:0 6px 20px rgba(14,165,233,.1),0 20px 48px rgba(0,0,0,.09)!important}
.service-card:hover{transform:translateY(-8px);box-shadow:0 28px 70px rgba(3,105,161,.20);border-color:rgba(14,165,233,.28)}
.ai-card:hover{box-shadow:0 20px 40px rgba(124,58,237,.22)}
.btn-primary{background:#F97316;color:#fff;font-family:'Space Grotesk',sans-serif;font-weight:600;padding:.875rem 2rem;border-radius:8px;transition:background .2s,transform .15s,box-shadow .2s;cursor:pointer;border:none;display:inline-flex;align-items:center;gap:.5rem;min-height:44px}
.btn-primary:hover{background:#ea6500;transform:translateY(-1px);box-shadow:0 8px 20px rgba(249,115,22,.35)}
.btn-primary:active{transform:translateY(0)}
.btn-primary:focus-visible{outline:3px solid #F97316;outline-offset:3px}
.btn-outline{background:transparent;color:#fff;font-family:'Space Grotesk',sans-serif;font-weight:600;padding:.875rem 2rem;border-radius:8px;border:2px solid rgba(255,255,255,.4);transition:border-color .2s,background .2s;cursor:pointer;display:inline-flex;align-items:center;gap:.5rem;min-height:44px}
.btn-outline:hover{border-color:#fff;background:rgba(255,255,255,.08)}
.btn-outline:focus-visible{outline:3px solid #fff;outline-offset:3px}
input:focus,textarea:focus,select:focus{outline:3px solid #0369A1;outline-offset:0}
/* Burger menu animation */
.burger-wrap{display:flex;flex-direction:column;gap:5px;width:22px}
.burger-bar{display:block;height:2px;width:100%;background:currentColor;border-radius:2px;transform-origin:center;transition:transform .3s cubic-bezier(.23,1,.32,1),opacity .2s ease,width .3s ease}
#menu-btn.is-open .burger-top{transform:translateY(7px) rotate(45deg)}
#menu-btn.is-open .burger-mid{opacity:0;transform:scaleX(0)}
#menu-btn.is-open .burger-bot{transform:translateY(-7px) rotate(-45deg)}
/* Mobile menu slide animation */
@keyframes menuSlideDown{from{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:translateY(0)}}
#mobile-menu:not(.hidden){animation:menuSlideDown .22s cubic-bezier(.23,1,.32,1) both}
/* Skip link (sr-only utility) */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}
.badge{background:rgba(3,105,161,.09);color:#0369A1;font-size:.73rem;font-weight:700;padding:.28rem .85rem;border-radius:999px;letter-spacing:.07em;text-transform:uppercase;border:1px solid rgba(3,105,161,.18)}
.badge-ai{background:rgba(124,58,237,.15);color:#7C3AED}
.step-dot{width:48px;height:48px;min-width:48px;border-radius:50%;background:linear-gradient(135deg,#0369A1,#0EA5E9);display:flex;align-items:center;justify-content:center;color:#fff;font-family:'Space Grotesk',sans-serif;font-weight:700;font-size:1.1rem;box-shadow:0 4px 12px rgba(3,105,161,.3)}
.gradient-text{background:linear-gradient(90deg,#0EA5E9,#38BDF8,#7DD3FC);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.gradient-text-ai{background:linear-gradient(90deg,#C084FC,#A78BFA,#7C3AED);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.cert-badge{background:#fff;border:1px solid #E2E8F0;border-radius:12px;padding:.75rem 1rem;display:flex;align-items:center;gap:.75rem;box-shadow:0 1px 4px rgba(0,0,0,.06)}
.timeline-line{border-left:2px solid #E2E8F0;padding-left:1.5rem;margin-left:.75rem}
.timeline-dot{width:14px;height:14px;border-radius:50%;background:linear-gradient(135deg,#0369A1,#0EA5E9);margin-left:-1.65rem;margin-top:.3rem;flex-shrink:0;box-shadow:0 0 0 3px #F0F9FF}
@media(prefers-reduced-motion:reduce){.blob,.reveal,.service-card,.btn-primary,.btn-outline{animation:none;transition:none}}
.section-divider{height:1px;background:linear-gradient(90deg,transparent 0%,rgba(14,165,233,.35) 30%,rgba(124,58,237,.35) 70%,transparent 100%);margin:0}
.service-card .svc-icon-wrap{transition:transform .28s ease,box-shadow .28s ease}
.service-card:hover .svc-icon-wrap{transform:scale(1.08);box-shadow:0 4px 16px rgba(0,0,0,.12)}
.stat-num{font-variant-numeric:tabular-nums}
/* ── Typewriter cursor ── */
.typewriter-cursor{display:inline-block;width:3px;height:.9em;background:#0EA5E9;margin-left:4px;vertical-align:middle;animation:blink .7s step-end infinite}
@keyframes blink{0%,100%{opacity:1}50%{opacity:0}}
/* Hero H1 line-by-line reveal */
@keyframes heroLineReveal{0%{clip-path:inset(0 100% 0 0);opacity:0}100%{clip-path:inset(0 0% 0 0);opacity:1}}
.hero-line{display:block;opacity:0;animation:heroLineReveal .65s cubic-bezier(.25,.46,.45,.94) forwards}
/* Floating cloud+dollar bill */
@keyframes moneyFloat{0%,100%{transform:translateY(0) rotate(-1.5deg)}50%{transform:translateY(-20px) rotate(2deg)}}
@keyframes moneyFloatAlt{0%,100%{transform:translateY(0) rotate(2deg)}50%{transform:translateY(-14px) rotate(-2.5deg)}}
.money-cloud{position:absolute;pointer-events:none;animation:moneyFloat 7s ease-in-out infinite;opacity:.55;z-index:12}
.money-cloud.alt{animation-name:moneyFloatAlt}
/* ── Ripple on buttons ── */
.btn-primary,.btn-outline{position:relative;overflow:hidden}
.ripple{position:absolute;border-radius:50%;background:rgba(255,255,255,.35);transform:scale(0);animation:ripple-anim .55s linear;pointer-events:none}
@keyframes ripple-anim{to{transform:scale(4);opacity:0}}
/* ── Hero bar animate ── */
.hero-bar{transition:width 1.2s cubic-bezier(.22,1,.36,1)}
/* ── Glow pulse on primary CTA ── */
@keyframes ctaPulse{0%,100%{box-shadow:0 8px 20px rgba(249,115,22,.35)}50%{box-shadow:0 8px 36px rgba(249,115,22,.65),0 0 0 8px rgba(249,115,22,.10)}}
.btn-primary.glow-pulse{animation:ctaPulse 2.4s ease-in-out infinite}
/* ── Animated gradient border on AI cards ── */
@keyframes borderSpin{to{--angle:360deg}}
@supports(background:conic-gradient(from 0deg,red,blue)){
@property --angle{syntax:'<angle>';initial-value:0deg;inherits:false}
.ai-glow-border::before{content:'';position:absolute;inset:-1px;border-radius:inherit;background:conic-gradient(from var(--angle),#7C3AED,#0EA5E9,#F97316,#7C3AED);animation:borderSpin 4s linear infinite;z-index:-1;padding:1px}
}
.ai-glow-border{position:relative}
/* ── Floating badge wobble ── */
@keyframes floatBadge{0%,100%{transform:translateY(0) rotate(-1deg)}50%{transform:translateY(-6px) rotate(1deg)}}
.float-badge{animation:floatBadge 3.5s ease-in-out infinite}
/* ── Staggered reveal for stats cards ── */
.stat-card{opacity:0;transform:scale(.92) translateY(20px);transition:opacity .6s ease,transform .6s cubic-bezier(.34,1.56,.64,1)}
.stat-card.visible{opacity:1;transform:scale(1) translateY(0)}
/* ── Shine mini-cards in portfolio ── */
.shine-card{position:relative;overflow:hidden;transition:transform .2s ease,box-shadow .2s ease}
.shine-card:hover{transform:translateY(-3px);box-shadow:0 8px 20px rgba(3,105,161,.15)}
.shine-card::after{content:'';position:absolute;top:-80%;left:-30%;width:40%;height:260%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.5),transparent);transform:rotate(20deg);animation:miniShine 4s ease-in-out infinite}
@keyframes miniShine{0%,70%{left:-45%;opacity:0}76%{opacity:1}100%{left:120%;opacity:0}}
/* ── Profile photo ring pulse ── */
@keyframes ringPulse{0%,100%{box-shadow:0 0 0 3px #0EA5E9,0 0 0 6px rgba(14,165,233,.18),0 8px 24px rgba(3,105,161,.3)}50%{box-shadow:0 0 0 3px #38BDF8,0 0 0 10px rgba(14,165,233,.25),0 12px 32px rgba(3,105,161,.4)}}
.profile-avatar-ring{animation:ringPulse 3s ease-in-out infinite}
/* ── Section heading gradient shimmer ── */
@keyframes gradShimmer{0%{background-position:0% 50%}100%{background-position:200% 50%}}
.shimmer-heading{background:linear-gradient(90deg,#0F172A 0%,#0369A1 30%,#0EA5E9 50%,#7C3AED 70%,#0F172A 100%);background-size:200% auto;-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;animation:gradShimmer 5s linear infinite}
/* ── Tech ticker ── */
@keyframes tickerScroll{ from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-track{ display:flex; width:max-content; animation:tickerScroll 40s linear infinite; }
.ticker-track:hover{ animation-play-state:paused; }
/* ── Circuit dot overlay for light sections ── */
.circuit-bg::after{
content:''; position:absolute; inset:0; pointer-events:none; z-index:0;
background-image:radial-gradient(circle,rgba(3,105,161,.07) 1px,transparent 1px);
background-size:28px 28px;
}
.circuit-bg{ position:relative; }
.circuit-bg > *{ position:relative; z-index:1; }
/* ── Terminal / code block ── */
.term-block{
background:#020617; border:1px solid rgba(14,165,233,.2); border-radius:12px;
font-family:'Courier New',monospace; font-size:.76rem; line-height:1.7;
overflow:hidden;
}
.term-titlebar{ background:rgba(255,255,255,.04); padding:8px 14px; display:flex; gap:6px; align-items:center; border-bottom:1px solid rgba(255,255,255,.06); }
.term-dot{ width:10px; height:10px; border-radius:50%; }
.term-body{ padding:14px 16px; color:#94A3B8; }
.term-body .t-cmd{ color:#38BDF8; }
.term-body .t-ok{ color:#22C55E; }
.term-body .t-dim{ color:#475569; }
.term-body .t-warn{ color:#F97316; }
/* ── Leaflet popup style override ── */
.leaflet-popup-content-wrapper{border-radius:14px!important;box-shadow:0 12px 36px rgba(3,105,161,.22)!important;border:1px solid #E2E8F0}
.leaflet-popup-tip{background:#fff!important}
/* ── Card inner glow on hover ── */
.service-card:hover::after{content:'';position:absolute;inset:0;border-radius:inherit;background:radial-gradient(circle at var(--mx,50%) var(--my,50%),rgba(14,165,233,.07),transparent 60%);pointer-events:none}
/* ── Engineering stack pills ── */
.stack-pill{display:inline-flex;align-items:center;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.13);border-radius:6px;padding:4px 11px;font-size:.74rem;font-family:'Space Grotesk',sans-serif;font-weight:500;color:rgba(255,255,255,.62);transition:background .2s,border-color .2s,color .2s;white-space:nowrap}
.stack-pill:hover{background:rgba(14,165,233,.15);border-color:rgba(14,165,233,.38);color:#fff}
/* ── How We Work step numbers (used light bg) ── */
.process-num{display:flex;align-items:center;justify-content:center;width:44px;height:44px;min-width:44px;border-radius:50%;font-family:'Space Grotesk',sans-serif;font-weight:700;font-size:.9rem;color:#fff}
/* ── Global delivery TZ bar ── */
.tz-bar-outer{height:32px;background:rgba(255,255,255,.06);border-radius:8px;overflow:hidden;position:relative}
.tz-bar-fill{position:absolute;top:0;height:100%;border-radius:6px;display:flex;align-items:center;justify-content:center}
</style>
<style>
/* ── UP2CLOUD cinematic hero: reference-aligned layout and 3D provider model ── */
.hero-bg{
background:
radial-gradient(circle at 12% 22%,rgba(14,165,233,.18),transparent 26%),
radial-gradient(circle at 76% 18%,rgba(124,58,237,.22),transparent 32%),
radial-gradient(circle at 64% 82%,rgba(14,165,233,.18),transparent 34%),
radial-gradient(circle at 88% 74%,rgba(249,115,22,.10),transparent 24%),
linear-gradient(135deg,#020617 0%,#050B1C 38%,#08152E 70%,#030712 100%)!important;
}
.hero-bg::before{
content:"";
position:absolute;
inset:0;
pointer-events:none;
z-index:1;
background:
radial-gradient(circle at 42% 46%,rgba(14,165,233,.18),transparent 20%),
radial-gradient(circle at 77% 62%,rgba(124,58,237,.22),transparent 28%),
linear-gradient(90deg,rgba(2,6,23,.12),transparent 38%,rgba(2,6,23,.24));
opacity:.85;
}
.hero-bg::after{
content:"";
position:absolute;
inset:0;
pointer-events:none;
z-index:2;
background-image:
radial-gradient(circle,rgba(56,189,248,.35) 1px,transparent 1.5px),
radial-gradient(circle,rgba(192,132,252,.22) 1px,transparent 1.5px);
background-size:70px 70px,112px 112px;
background-position:0 0,28px 42px;
mask-image:linear-gradient(90deg,transparent 0%,rgba(0,0,0,.75) 34%,rgba(0,0,0,.95) 100%);
opacity:.22;
}
.hero-network-wave{
position:absolute;
left:39%;
top:35%;
width:34rem;
height:17rem;
z-index:3;
pointer-events:none;
opacity:.36;
transform:rotate(-6deg);
background:
repeating-radial-gradient(ellipse at 50% 50%,rgba(56,189,248,.42) 0 1px,transparent 1px 17px),
radial-gradient(ellipse at 50% 50%,rgba(14,165,233,.22),transparent 66%);
filter:blur(.25px);
mask-image:linear-gradient(90deg,transparent,rgba(0,0,0,.9),transparent);
animation:networkWave 10s ease-in-out infinite;
}
@keyframes networkWave{
0%,100%{transform:rotate(-6deg) translateY(0) scale(1);opacity:.28}
50%{transform:rotate(-3deg) translateY(-14px) scale(1.05);opacity:.42}
}
.hero-visual-column{
min-height:720px;
position:relative;
transform-style:preserve-3d;
}
.hero-draggable-card{
user-select:none;
backdrop-filter:blur(22px);
-webkit-backdrop-filter:blur(22px);
background:linear-gradient(135deg,rgba(15,23,42,.84),rgba(30,41,59,.56) 46%,rgba(88,28,135,.34))!important;
border:1px solid rgba(96,165,250,.30)!important;
box-shadow:0 28px 90px rgba(2,6,23,.46),0 0 0 1px rgba(255,255,255,.07),inset 0 1px 0 rgba(255,255,255,.14);
}
.hero-draggable-card.is-floating{
position:absolute!important;
width:min(30rem,calc(100vw - 2rem));
max-width:30rem;
z-index:70!important;
box-shadow:0 42px 120px rgba(2,6,23,.52),0 0 0 1px rgba(56,189,248,.38);
}
.hero-draggable-card.is-dragging{
cursor:grabbing!important;
transform:scale(1.012);
box-shadow:0 48px 130px rgba(2,6,23,.62),0 0 0 1px rgba(56,189,248,.55);
}
.hero-draggable-card::after{
content:"Drag me";
position:absolute;
right:2.45rem;
top:.55rem;
font-size:.62rem;
letter-spacing:.08em;
text-transform:uppercase;
color:rgba(255,255,255,.38);
pointer-events:none;
}
.hero-cloud-cubes{
position:relative;
width:min(100%,570px);
height:370px;
margin-top:1rem;
margin-right:-.35rem;
align-items:center;
justify-content:center;
perspective:1300px;
transform-style:preserve-3d;
z-index:20;
pointer-events:none;
}
.hero-cloud-cubes::before{
content:"";
position:absolute;
left:50%;
top:67%;
width:540px;
height:190px;
transform:translate(-50%,-50%) rotateX(66deg);
border-radius:999px;
background:
radial-gradient(circle,rgba(14,165,233,.28),rgba(124,58,237,.16) 36%,transparent 68%),
repeating-radial-gradient(circle,rgba(56,189,248,.28) 0 1px,transparent 1px 18px);
border:1px solid rgba(56,189,248,.30);
box-shadow:0 0 95px rgba(14,165,233,.35), inset 0 0 76px rgba(124,58,237,.16);
}
.hero-cloud-cubes::after{
content:"";
position:absolute;
left:50%;
top:67%;
width:420px;
height:420px;
transform:translate(-50%,-50%) rotateX(72deg);
border-radius:999px;
background:conic-gradient(from 90deg,rgba(14,165,233,0),rgba(14,165,233,.55),rgba(124,58,237,.54),rgba(249,115,22,.45),rgba(14,165,233,0));
filter:blur(1px);
opacity:.62;
mask-image:radial-gradient(circle,transparent 0 42%,#000 43% 45%,transparent 47%);
animation:providerOrbitGlow 16s linear infinite;
}
.cube-orbit-ring{
position:absolute;
left:50%;
top:67%;
border-radius:999px;
border:1px dashed rgba(56,189,248,.40);
transform:translate(-50%,-50%) rotateX(68deg);
box-shadow:0 0 38px rgba(14,165,233,.18);
}
.cube-orbit-ring-one{width:500px;height:170px;animation:cubeOrbit 18s linear infinite}
.cube-orbit-ring-two{width:375px;height:126px;border-color:rgba(192,132,252,.38);animation:cubeOrbit 13s linear infinite reverse}
.cloud-cube{
--cube-size:136px;
position:absolute;
width:var(--cube-size);
height:var(--cube-size);
transform-style:preserve-3d;
animation:cloudCubeFloat 6.5s ease-in-out infinite;
filter:drop-shadow(0 34px 46px rgba(2,6,23,.55));
}
.cloud-cube-aws{--cube-size:146px;left:49%;top:14%;transform:translateX(-50%) rotateX(-18deg) rotateY(-28deg);animation-delay:-1.2s}
.cloud-cube-azure{--cube-size:136px;left:18%;top:51%;transform:rotateX(-18deg) rotateY(28deg);animation-delay:-2.5s}
.cloud-cube-gcp{--cube-size:136px;left:61%;top:52%;transform:rotateX(-18deg) rotateY(-28deg);animation-delay:-.4s}
.cube-face{
position:absolute;
inset:0;
display:flex;
align-items:center;
justify-content:center;
border:1px solid rgba(96,165,250,.68);
background:
radial-gradient(circle at 30% 18%,rgba(56,189,248,.42),transparent 34%),
linear-gradient(135deg,rgba(15,23,42,.96),rgba(30,41,59,.9) 45%,rgba(30,64,175,.66));
color:rgba(255,255,255,.96);
font-family:'Space Grotesk',sans-serif;
font-weight:800;
font-size:1.62rem;
letter-spacing:-.04em;
border-radius:20px;
text-shadow:0 2px 18px rgba(14,165,233,.45);
box-shadow:inset 0 0 42px rgba(14,165,233,.16),0 0 30px rgba(14,165,233,.28);
backface-visibility:hidden;
overflow:hidden;
}
.aws-logo{font-size:2.25rem;text-transform:lowercase;position:relative;padding-bottom:.38rem}
.aws-logo::after{
content:"";
position:absolute;
width:74px;
height:24px;
left:50%;
top:58%;
transform:translateX(-50%) rotate(-7deg);
border-bottom:7px solid #ff9900;
border-radius:0 0 90px 90px;
}
.azure-logo{
font-size:4.3rem;
font-weight:900;
line-height:1;
background:linear-gradient(135deg,#38bdf8,#2563eb 65%,#1d4ed8);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
background-clip:text;
text-shadow:none;
}
.cloud-cube-gcp .cube-face{border-color:rgba(192,132,252,.70);box-shadow:inset 0 0 42px rgba(124,58,237,.20),0 0 34px rgba(124,58,237,.32)}
.gcp-logo{
width:76px;
height:50px;
background:
radial-gradient(circle at 74% 54%,transparent 0 12px,#4285f4 13px 20px,transparent 21px),
conic-gradient(from 210deg at 50% 58%,#34a853 0 24%,#fbbc05 0 49%,#ea4335 0 72%,#4285f4 0 100%);
clip-path:path("M18 47 C8 47 0 39 0 29 C0 20 6 12 14 10 C18 4 25 0 34 0 C45 0 54 7 58 17 C67 18 74 25 74 34 C74 41 68 47 60 47 Z");
filter:drop-shadow(0 6px 10px rgba(0,0,0,.25));
display:block;
}
.cube-back,.cube-right,.cube-left{font-size:.78rem;opacity:.82;text-transform:uppercase;letter-spacing:.06em}
.cube-top{background:linear-gradient(135deg,rgba(56,189,248,.46),rgba(124,58,237,.22))}
.cube-bottom{background:rgba(2,6,23,.88)}
.cube-front{transform:translateZ(calc(var(--cube-size) / 2))}
.cube-back{transform:rotateY(180deg) translateZ(calc(var(--cube-size) / 2))}
.cube-right{transform:rotateY(90deg) translateZ(calc(var(--cube-size) / 2))}
.cube-left{transform:rotateY(-90deg) translateZ(calc(var(--cube-size) / 2))}
.cube-top{transform:rotateX(90deg) translateZ(calc(var(--cube-size) / 2))}
.cube-bottom{transform:rotateX(-90deg) translateZ(calc(var(--cube-size) / 2))}
@keyframes cloudCubeFloat{0%,100%{margin-top:0}50%{margin-top:-14px}}
@keyframes cubeOrbit{to{transform:translate(-50%,-50%) rotateX(68deg) rotateZ(360deg)}}
@keyframes providerOrbitGlow{to{transform:translate(-50%,-50%) rotateX(72deg) rotateZ(360deg)}}
@media(max-width:1180px){
.hero-visual-column{min-height:660px}
.hero-cloud-cubes{width:450px;height:310px}
.cloud-cube{--cube-size:110px}
.cloud-cube-aws{--cube-size:124px}
.cube-face{font-size:1.25rem}
}
@media(max-width:1023px){
.hero-draggable-card::after{display:none}
}
@media(prefers-reduced-motion:reduce){
.cloud-cube,.cube-orbit-ring,.hero-cloud-cubes::after,.hero-network-wave{animation:none}
}
</style>
<!-- Moved body styles into head for valid HTML -->
<style>
@keyframes spin { to { transform: rotate(360deg); transform-origin: center; } }
/* ── 3D Parallax ── */
.parallax-scene { transform-style: preserve-3d; perspective: 1200px; }
.parallax-layer-bg { transform: translateZ(-60px) scale(1.06); }
.parallax-layer-mid { transform: translateZ(-30px) scale(1.03); }
/* 3D tilt card */
.tilt-card { transition: transform 0.25s ease, box-shadow 0.25s ease; transform-style: preserve-3d; }
.tilt-card:hover { box-shadow: 0 32px 64px rgba(3,105,161,.2); }
/* ── Hero draggable infrastructure panel ── */
.hero-draggable-card { user-select:none; }
.hero-draggable-card.is-floating {
position:absolute!important;
width:min(28rem,calc(100vw - 2rem));
max-width:28rem;
z-index:60!important;
box-shadow:0 34px 90px rgba(2,6,23,.38),0 0 0 1px rgba(255,255,255,.18);
}
.hero-draggable-card.is-dragging {
cursor:grabbing!important;
transform:scale(1.015);
box-shadow:0 44px 110px rgba(2,6,23,.48),0 0 0 1px rgba(56,189,248,.45);
}
.hero-draggable-card::after {
content:"Drag me";
position:absolute;
right:2.45rem;
top:.55rem;
font-size:.62rem;
letter-spacing:.08em;
text-transform:uppercase;
color:rgba(255,255,255,.34);
pointer-events:none;
}
@media(max-width:1023px){
.hero-draggable-card::after{display:none}
}
/* Fancy scroll-reveal 3D */
.reveal-3d { opacity: 0; transform: perspective(800px) rotateX(12deg) translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal-3d.visible { opacity: 1; transform: perspective(800px) rotateX(0deg) translateY(0); }
/* Floating shapes */
.float-shape { position: absolute; pointer-events: none; animation: floatShape 10s ease-in-out infinite; }
@keyframes floatShape { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-20px) rotate(8deg)} }
/* Chatbot */
#chatbot-btn { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 10001; width: 60px; height: 60px; border-radius: 50%; background: radial-gradient(circle at 30% 25%,#38BDF8,#0369A1 55%,#7C3AED); color: #fff; border: 1px solid rgba(255,255,255,.2); cursor: pointer; box-shadow: 0 10px 28px rgba(3,105,161,.45),0 0 0 8px rgba(14,165,233,.08); display: flex; align-items: center; justify-content: center; transition: transform .2s, box-shadow .2s; }
#chatbot-btn:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(3,105,161,.5); }
#chatbot-panel { position: fixed; bottom: 5.5rem; right: 1.5rem; z-index: 10001; width: 360px; max-width: calc(100vw - 3rem); background: #fff; border-radius: 20px; box-shadow: 0 24px 60px rgba(0,0,0,.18); border: 1px solid #E2E8F0; overflow: hidden; display: none; flex-direction: column; max-height: 520px; }
#chatbot-panel.open { display: flex; animation: chatOpen .25s ease; }
@keyframes chatOpen { from{opacity:0;transform:scale(.9) translateY(20px)}to{opacity:1;transform:scale(1) translateY(0)} }
#chat-messages { flex: 1; overflow-y: auto; padding: 1.25rem; display: flex; flex-direction: column; gap: .75rem; scroll-behavior: smooth; }
.chat-msg { max-width: 85%; padding: .65rem 1rem; border-radius: 16px; font-size: .83rem; line-height: 1.5; }
.chat-msg.bot { background: #F1F5F9; color: #0F172A; border-radius: 4px 16px 16px 16px; }
.chat-msg.user { background: linear-gradient(135deg,#0369A1,#0EA5E9); color: #fff; align-self: flex-end; border-radius: 16px 4px 16px 16px; }
.chat-faq-btn { background: #F0F9FF; border: 1px solid #BAE6FD; color: #0369A1; padding: .4rem .85rem; border-radius: 999px; font-size: .78rem; font-weight: 500; cursor: pointer; transition: background .2s; text-align: left; }
.chat-faq-btn:hover { background: #E0F2FE; }
#chat-input-row { display: flex; gap: .5rem; padding: .75rem 1rem; border-top: 1px solid #F1F5F9; background: #FAFAFA; }
#chat-input { flex: 1; border: 1px solid #E2E8F0; border-radius: 8px; padding: .5rem .75rem; font-size: .83rem; font-family: inherit; }
#chat-input:focus { outline: 2px solid #0369A1; }
#chat-send { background: #0369A1; color: #fff; border: none; border-radius: 8px; padding: .5rem .85rem; font-size: .83rem; cursor: pointer; font-weight: 600; transition: background .2s; }
#chat-send:hover { background: #025b88; }
#chat-send:disabled { background: #94A3B8; cursor: not-allowed; }
#chat-input:disabled { background: #F8FAFC; }
.chat-typing { display: flex; align-items: center; gap: 4px; padding: .65rem 1rem; background: #F1F5F9; border-radius: 4px 16px 16px 16px; width: fit-content; }
.chat-typing span { width: 7px; height: 7px; background: #94A3B8; border-radius: 50%; animation: typingDot .9s ease-in-out infinite; }
.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .30s; }
@keyframes typingDot { 0%,60%,100%{transform:translateY(0);opacity:.4} 30%{transform:translateY(-6px);opacity:1} }
.chat-msg.bot a { color: #0369A1; text-decoration: underline; }
.ai-badge { display:inline-flex;align-items:center;gap:4px;background:linear-gradient(90deg,rgba(124,58,237,.15),rgba(14,165,233,.15));color:#7C3AED;font-size:.65rem;font-weight:700;padding:2px 7px;border-radius:999px;letter-spacing:.05em;text-transform:uppercase; }
</style>
<style>
@keyframes nlPulse{
0%,100%{box-shadow:0 4px 20px rgba(3,105,161,.4),0 0 0 0 rgba(14,165,233,.35)}
50%{box-shadow:0 4px 28px rgba(3,105,161,.55),0 0 0 8px rgba(14,165,233,.0)}
}
@keyframes nlDotPop{from{transform:scale(0)}to{transform:scale(1)}}
#nl-fab:hover{transform:translateY(-2px) scale(1.03);box-shadow:0 8px 30px rgba(3,105,161,.55),0 0 0 0 rgba(14,165,233,.0)!important;animation:none}
#nl-fab:active{transform:scale(.97)}
#nl-fab-wrap {
transition: opacity 0.4s ease, transform 0.4s ease;
pointer-events: auto;
}
#nl-fab-wrap.hidden {
opacity: 0;
transform: translateY(20px);
pointer-events: none;
}
@media(max-width:480px){
#nl-fab-wrap{bottom:1.25rem;left:1.25rem}
#nl-fab-tooltip{display:none}
}
/* ── Newsletter dynamic transitions ─────────────────────────────── */
/* FAB click bounce — fires when user opens the modal */
#nl-fab.is-clicked{animation:nlFabBounce .55s cubic-bezier(.4,1.6,.6,1) both}
@keyframes nlFabBounce{
0% {transform:scale(1) translateY(0)}
30% {transform:scale(.86) translateY(2px)}
55% {transform:scale(1.1) translateY(-4px)}
80% {transform:scale(.97) translateY(0)}
100%{transform:scale(1) translateY(0)}
}
/* Overlay fade-in / fade-out */
#nl-overlay{
opacity:0;
transition:opacity .35s ease, backdrop-filter .35s ease;
will-change:opacity, backdrop-filter;
}
#nl-overlay.is-open{opacity:1}
#nl-overlay.is-closing{opacity:0;transition:opacity .28s ease}
/* Modal entrance — slide-up + scale with gentle overshoot */
#nl-modal{
opacity:0;
transform:translateY(36px) scale(.92);
transition:
transform .5s cubic-bezier(.22,1.2,.36,1),
opacity .4s ease,
box-shadow .35s ease;
will-change:transform, opacity;
}
#nl-overlay.is-open #nl-modal{
opacity:1;
transform:translateY(0) scale(1);
animation:nlModalIn .65s cubic-bezier(.22,1.2,.36,1) both;
}
@keyframes nlModalIn{
0% {opacity:0;transform:translateY(40px) scale(.9)}
60% {opacity:1;transform:translateY(-6px) scale(1.015)}
100% {opacity:1;transform:translateY(0) scale(1)}
}
/* Modal exit — drops + shrinks away */
#nl-overlay.is-closing #nl-modal{
animation:nlModalOut .35s cubic-bezier(.4,0,.7,.2) both;
}
@keyframes nlModalOut{
0% {opacity:1;transform:translateY(0) scale(1)}
100% {opacity:0;transform:translateY(48px) scale(.88)}
}
/* Close button — hover/active + click spin */
#nl-close{
transition:
background .25s ease,
color .25s ease,
border-color .25s ease,
transform .3s cubic-bezier(.4,1.6,.6,1),
box-shadow .25s ease;
}
#nl-close:hover{
background:rgba(239,68,68,.18)!important;
color:#FCA5A5!important;
border-color:rgba(239,68,68,.4)!important;
transform:rotate(90deg) scale(1.08);
box-shadow:0 6px 18px rgba(239,68,68,.22);
}
#nl-close:active{transform:rotate(180deg) scale(.92)}
#nl-close.is-closing{
animation:nlCloseSpin .45s cubic-bezier(.4,1.5,.6,1) forwards;
pointer-events:none;
}
@keyframes nlCloseSpin{
0% {transform:rotate(0deg) scale(1)}
35% {transform:rotate(135deg) scale(1.2);background:rgba(239,68,68,.25);color:#FCA5A5;border-color:rgba(239,68,68,.5)}
70% {transform:rotate(280deg) scale(.95)}
100% {transform:rotate(360deg) scale(.5);opacity:.2}
}
/* Subscribe button micro-interactions */
#nl-btn{
transition:
transform .28s cubic-bezier(.34,1.56,.64,1),
box-shadow .25s ease,
opacity .25s ease,
background .25s ease;
}
#nl-btn:hover:not(:disabled){
transform:translateY(-2px) scale(1.03);
box-shadow:0 10px 26px rgba(14,165,233,.45);
}
#nl-btn:active:not(:disabled){transform:scale(.95)}
#nl-btn:disabled{opacity:.7;cursor:wait}
/* Email field — soft lift on focus */
#nl-email{
transition:
border-color .25s ease,
box-shadow .3s ease,
transform .25s ease,
background .25s ease;
}
#nl-email:focus{
border-color:rgba(14,165,233,.55)!important;
box-shadow:0 0 0 4px rgba(14,165,233,.15), 0 4px 14px rgba(14,165,233,.12);
transform:translateY(-1px);
background:rgba(255,255,255,.10)!important;
}
/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce){
#nl-overlay,#nl-modal,#nl-close,#nl-btn,#nl-email,#nl-fab{
transition:opacity .15s linear!important;
animation:none!important;
}
#nl-modal{transform:none!important}
#nl-overlay.is-open #nl-modal{animation:none!important;transform:none!important}
#nl-overlay.is-closing #nl-modal{animation:none!important;transform:none!important;opacity:0}
}
</style>
<style>
/* ─────────────────────────────────────────────
UP2CLOUD hero layout + ambient cloud animation
Clean split: logo/content left, Infrastructure right
───────────────────────────────────────────── */
#hero {
isolation: isolate;
}
#hero .up2cloud-hero-grid {
display: grid;
grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.88fr);
align-items: center;
gap: clamp(2.5rem, 6vw, 6rem);
min-height: calc(100svh - 8rem);
}
#hero .up2cloud-hero-brand {
max-width: 45rem;
justify-self: center;
position: relative;
z-index: 5;
}
#hero .hero-visual-column {
justify-self: end;
align-self: center;
min-height: 620px;
width: min(100%, 34rem);
position: relative;
z-index: 6;
transform-style: preserve-3d;
}
#hero #infra-card {
width: min(100%, 30rem);
max-width: 30rem;
margin-left: auto;
background:
linear-gradient(135deg, rgba(15,23,42,.86), rgba(30,41,59,.58) 46%, rgba(88,28,135,.32)) !important;
border: 1px solid rgba(96,165,250,.30) !important;
box-shadow:
0 28px 90px rgba(2,6,23,.48),
0 0 0 1px rgba(255,255,255,.07),
inset 0 1px 0 rgba(255,255,255,.14);
backdrop-filter: blur(22px);
-webkit-backdrop-filter: blur(22px);
}
#hero #infra-card.is-floating {
position: absolute !important;
width: min(30rem, calc(100vw - 2rem));
max-width: 30rem;
z-index: 70 !important;
}
/* Decorative elements stay behind real UI */
#particle-canvas,
#hero .blob,
#hero .orb-ring,
#hero .hero-network-wave,
#hero .ambient-cloud-layer {
z-index: 1;
}
#hero .command-chip,
#hero .money-cloud {
z-index: 2 !important;
opacity: .28 !important;
}
/* Hide old random money/cloud items on the left; keep hero clean */
#hero .money-cloud {
pointer-events: none;
mix-blend-mode: screen;
}
.ambient-cloud-layer {
position: absolute;
inset: 0;
pointer-events: none;
overflow: hidden;
z-index: 2;
}
.ambient-cloud {
position: absolute;
width: var(--cloud-size, 96px);
height: auto;
color: #0EA5E9;
opacity: 0;
filter:
drop-shadow(0 0 8px rgba(14,165,233,.28))
drop-shadow(0 0 18px rgba(14,165,233,.16));
transform: translate3d(0, 0, 0) scale(.86);
animation: ambientCloudOpen var(--cloud-duration, 9s) ease-in-out infinite;
animation-delay: var(--cloud-delay, 0s);
will-change: opacity, transform, filter;
}
.ambient-cloud svg {
width: 100%;
height: auto;
display: block;
}
.ambient-cloud path {
fill: none;
stroke: currentColor;
stroke-width: 2.2;
stroke-linecap: round;
stroke-linejoin: round;
}
@keyframes ambientCloudOpen {
0%, 100% {
opacity: 0;
transform: translateY(10px) scale(.78);
filter: drop-shadow(0 0 0 rgba(14,165,233,0));
}
18% {
opacity: .14;
}
42% {
opacity: .28;
transform: translateY(-4px) scale(1);
filter:
drop-shadow(0 0 8px rgba(14,165,233,.30))
drop-shadow(0 0 18px rgba(14,165,233,.18));
}
72% {
opacity: .11;
transform: translateY(-14px) scale(.94);
}
}
/* Keep ambient clouds out of text/panel zones by design */
.ambient-cloud.zone-left { left: 5%; top: 24%; }
.ambient-cloud.zone-mid { left: 45%; top: 18%; }
.ambient-cloud.zone-right { right: 5%; top: 72%; }
.ambient-cloud.zone-low { left: 35%; bottom: 11%; }
@media (max-width: 1180px) {
#hero .up2cloud-hero-grid {
grid-template-columns: minmax(0, 1fr) minmax(390px, .86fr);
gap: 3rem;
}
#hero .hero-visual-column {
width: min(100%, 30rem);
}
}
@media (max-width: 1023px) {
#hero .up2cloud-hero-grid {
grid-template-columns: 1fr;
min-height: auto;
}
#hero .up2cloud-hero-brand {
justify-self: start;
max-width: 46rem;
}
#hero .hero-visual-column {
display: flex !important;
width: 100%;
min-height: auto;
margin-top: 2rem;
}
#hero #infra-card {
margin-inline: auto;
width: min(100%, 32rem);
}
#hero .ambient-cloud {
width: calc(var(--cloud-size, 96px) * .72);
opacity: .18;
}
.ambient-cloud.zone-mid,
.ambient-cloud.zone-low {
display: none;
}
}
@media (max-width: 640px) {
#hero .up2cloud-hero-brand {
text-align: left;
}
#hero .ambient-cloud {
opacity: .10;
}
}
@media (prefers-reduced-motion: reduce) {
.ambient-cloud {
animation: none;
opacity: .10;
}
}
</style>
<style>
/* ─────────────────────────────────────────────
UP2CLOUD Hero vNext — cloud zones + premium 3D panel
───────────────────────────────────────────── */
#hero {
isolation: isolate;
}
#hero > canvas,
#hero .blob,
#hero .orb-ring,
#hero .hero-network-wave,
#hero .ambient-cloud-layer {
z-index: 0 !important;
pointer-events: none;
}
#hero #main-content {
position: relative;
z-index: 10;
}