-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2420 lines (2270 loc) · 103 KB
/
Copy pathindex.html
File metadata and controls
2420 lines (2270 loc) · 103 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ROMANALABS — AI Systems Shipped to Production in 4 Weeks</title>
<meta name="description" content="We build the AI systems that help you scale without hiring. Live in 4 weeks. Owned by your team.">
<meta property="og:title" content="ROMANALABS — AI Systems Shipped to Production in 4 Weeks">
<meta property="og:description" content="We build AI systems your team actually uses — from idea to production in 4 weeks. No pilots, no PowerPoints.">
<meta property="og:type" content="website">
<link rel="icon" type="image/svg+xml" href="brand_assets/Ministerstwo_Lacznosci_logo%20(1).svg">
<link rel="stylesheet" href="assets/site.css">
<script src="https://cdn.tailwindcss.com" data-cfasync="false"></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=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
/* Brand tokens (--accent, --emerald, etc.) live in assets/site.css */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
font-family: 'Inter', sans-serif;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
background-color: var(--bg-primary);
color: var(--text-secondary);
overflow-x: hidden;
}
/* Noise texture */
body::before {
content: '';
position: fixed;
inset: 0;
z-index: 9999;
pointer-events: none;
opacity: 0.025;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
background-repeat: repeat;
background-size: 256px;
will-change: transform;
transform: translateZ(0);
}
/* ===== Site Header (monkgroup-style) ===== */
.site-header {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 100;
padding: 0 clamp(20px, 4vw, 40px);
transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
background: transparent;
border-bottom: 1px solid transparent;
}
.site-header.scrolled {
background: rgba(249, 249, 247, 0.88);
backdrop-filter: blur(16px) saturate(1.4);
-webkit-backdrop-filter: blur(16px) saturate(1.4);
border-bottom-color: rgba(18, 18, 18, 0.07);
will-change: transform;
transform: translateZ(0);
}
.site-header-inner {
max-width: 1280px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
height: 72px;
}
.site-header .logo-link {
display: flex;
align-items: center;
gap: 10px;
text-decoration: none;
}
.site-header .logo-link .logo-mark {
transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-header .logo-link:hover .logo-mark {
transform: translateX(-2px);
}
.site-header .logo-link:hover .logo-text {
color: var(--emerald);
letter-spacing: 0.21em;
}
.site-header .logo-text {
font-family: 'Space Grotesk', sans-serif;
font-size: 15px;
font-weight: 600;
color: var(--text-primary);
letter-spacing: 0.18em;
transition:
color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
letter-spacing 0.45s cubic-bezier(0.22, 1, 0.36, 1);
text-transform: uppercase;
}
.site-header .nav-links {
display: flex;
align-items: center;
gap: 36px;
}
.site-header .nav-link {
font-family: 'Space Grotesk', sans-serif;
font-size: 14px;
font-weight: 500;
color: var(--text-secondary);
text-decoration: none;
position: relative;
transition: color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header .nav-link:hover { color: var(--text-primary); }
.site-header .nav-link::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 1.5px;
background: var(--emerald);
transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header .nav-link:hover::after { width: 100%; }
.site-header .nav-cta {
position: relative;
overflow: hidden;
font-family: 'Inter', sans-serif;
font-size: 14px;
font-weight: 600;
color: #0A0D0B;
background: var(--accent);
border: none;
padding: 10px 22px;
border-radius: 6px;
text-decoration: none;
box-shadow: 0 2px 8px rgba(212,175,55,0.1), 0 0 0 1px rgba(212,175,55,0.1);
transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease, background 0.25s ease;
}
.site-header .nav-cta::after {
content: '';
position: absolute;
top: -50%;
left: -80%;
width: 50%;
height: 200%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), transparent);
transform: skewX(-20deg);
transition: left 0s;
}
.site-header .nav-cta:hover::after {
left: 130%;
transition: left 0.55s ease;
}
.site-header .nav-cta:hover {
background: var(--accent-hover);
transform: translateY(-2px);
box-shadow: 0 4px 18px rgba(212,175,55,0.16), 0 0 0 1px rgba(212,175,55,0.12);
}
/* Mobile book button (next to hamburger) */
.mobile-book-btn {
display: none;
font-family: 'Space Grotesk', sans-serif;
font-size: 13px;
font-weight: 600;
color: #0A0D0B;
background: var(--accent);
padding: 8px 16px;
border-radius: 8px;
text-decoration: none;
white-space: nowrap;
align-items: center;
transition: background 0.2s ease, transform 0.2s ease;
}
.mobile-book-btn:hover { background: var(--accent-hover); transform: translateY(-1px); }
/* Hamburger — 2 lines */
.hamburger {
display: none;
width: 40px;
height: 40px;
border-radius: 8px;
border: 1px solid rgba(0,0,0,0.1);
background: transparent;
align-items: center;
justify-content: center;
cursor: pointer;
transition: background 0.3s ease;
flex-direction: column;
gap: 0;
padding: 0;
}
.hamburger:hover { background: rgba(0,0,0,0.04); }
.hamburger span {
display: block;
width: 18px;
height: 1.5px;
background: var(--text-primary);
transition: transform 0.3s ease;
margin: 3px 0;
}
/* 2-line X: each span meets in the center */
.hamburger.active span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.hamburger.active span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }
/* Mobile nav panel — opacity+transform only (GPU-accelerated, no jank) */
.mobile-nav-panel {
position: fixed;
top: 72px;
left: 0;
right: 0;
z-index: 99;
background: rgba(249, 249, 247, 0.98);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(0,0,0,0.06);
padding: 24px clamp(20px, 4vw, 40px) 32px;
/* Hidden state */
opacity: 0;
transform: translateY(-8px);
visibility: hidden;
pointer-events: none;
transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.16,1,0.3,1), visibility 0s linear 0.28s;
}
.mobile-nav-panel.open {
opacity: 1;
transform: translateY(0);
visibility: visible;
pointer-events: auto;
transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.16,1,0.3,1), visibility 0s linear 0s;
}
.mobile-nav-panel a {
display: block;
font-family: 'Space Grotesk', sans-serif;
font-size: 16px;
font-weight: 500;
color: var(--text-secondary);
text-decoration: none;
padding: 12px 0;
transition: color 0.3s ease;
border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mobile-nav-panel a:last-child { border-bottom: none; }
.mobile-nav-panel a:hover { color: var(--text-primary); }
.mobile-nav-panel .mobile-cta {
display: inline-flex;
align-items: center;
justify-content: center;
margin-top: 16px;
font-weight: 600;
background: var(--accent);
color: #0A0D0B;
padding: 12px 28px;
border-radius: 10px;
border-bottom: none;
width: 100%;
text-align: center;
}
@media (max-width: 810px) {
.site-header .nav-links { display: none; }
.site-header .nav-cta-desktop { display: none; }
.hamburger { display: flex; }
.mobile-book-btn { display: inline-flex; }
.logo-mark { width: 26px !important; height: 26px !important; }
.logo-text { font-size: 11px !important; letter-spacing: 0.14em !important; }
}
/* ===== Typography ===== */
.heading-xl {
font-family: 'Space Grotesk', sans-serif;
font-size: clamp(38px, 7vw, 72px);
font-weight: 700;
line-height: 1.05;
letter-spacing: -0.03em;
color: var(--text-primary);
}
.heading-lg {
font-family: 'Space Grotesk', sans-serif;
font-size: clamp(28px, 5vw, 46px);
font-weight: 700;
line-height: 1.08;
letter-spacing: -0.025em;
color: var(--text-primary);
}
.heading-md {
font-family: 'Space Grotesk', sans-serif;
font-size: clamp(18px, 3vw, 22px);
font-weight: 500;
line-height: 1.3;
color: var(--text-primary);
}
.section-label {
font-family: 'Inter', sans-serif;
font-size: 11px;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--emerald);
font-weight: 600;
}
.brand { color: var(--accent); }
.brand-serif { color: var(--accent); }
.section-pad { padding: clamp(72px, 7vw, 96px) clamp(24px, 5vw, 40px); }
.max-content { max-width: 1400px; margin: 0 auto; }
/* Large-screen typography boost so content doesn't feel small on 1920+ displays */
@media (min-width: 1600px) {
.heading-xl { font-size: clamp(56px, 5.2vw, 88px); }
.heading-lg { font-size: clamp(38px, 3.6vw, 56px); }
body { font-size: 17px; }
}
@media (min-width: 2200px) {
.max-content { max-width: 1600px; }
.heading-xl { font-size: clamp(72px, 5vw, 104px); }
.heading-lg { font-size: clamp(46px, 3.4vw, 64px); }
}
/* ===== CTA Button ===== */
.btn-cta {
position: relative;
overflow: hidden;
transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background-color 0.25s ease;
}
.btn-cta:hover {
transform: translateY(-2px);
box-shadow: 0 0 32px var(--accent-glow), 0 6px 28px rgba(212,175,55,0.18);
}
.btn-cta::after {
content: '';
position: absolute;
top: -50%;
left: -60%;
width: 40%;
height: 200%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
transform: skewX(-20deg);
animation: shimmer 3.5s ease-in-out infinite;
}
@keyframes shimmer {
0%, 100% { left: -60%; }
50% { left: 120%; }
}
/* ===== Button with shimmer ===== */
.btn-shine {
position: relative;
overflow: hidden;
background: var(--accent);
border: none;
box-shadow: 0 2px 8px rgba(212,175,55,0.1), 0 0 0 1px rgba(212,175,55,0.1);
transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease, background 0.25s ease;
}
.btn-shine:hover {
transform: translateY(-2px);
background: var(--accent-hover);
box-shadow: 0 4px 18px rgba(212,175,55,0.16), 0 0 0 1px rgba(212,175,55,0.12);
}
.btn-shine::after {
content: '';
position: absolute;
top: -50%;
left: -80%;
width: 50%;
height: 200%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
transform: skewX(-20deg);
transition: left 0s;
}
.btn-shine:hover::after {
left: 130%;
transition: left 0.6s ease;
}
/* ===== Scroll Reveal (bounce) ===== */
.reveal {
opacity: 0;
transform: translateY(40px) translateZ(0);
transition: opacity 0.7s ease-out, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
backface-visibility: hidden;
}
.reveal.visible {
opacity: 1;
transform: translateY(0) translateZ(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-left {
opacity: 0;
transform: translateX(-40px) translateZ(0);
transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
backface-visibility: hidden;
}
.reveal-left.visible {
opacity: 1;
transform: translateX(0) translateZ(0);
}
.reveal-right {
opacity: 0;
transform: translateX(40px) translateZ(0);
transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
backface-visibility: hidden;
}
.reveal-right.visible {
opacity: 1;
transform: translateX(0) translateZ(0);
}
.reveal-scale {
opacity: 0;
transform: scale(0.92) translateZ(0);
transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
backface-visibility: hidden;
}
.reveal-scale.visible {
opacity: 1;
transform: scale(1) translateZ(0);
}
/* ===== Marquee ===== */
@keyframes marquee {
0% { transform: translate3d(0, 0, 0); }
100% { transform: translate3d(-50%, 0, 0); }
}
.marquee-track {
display: flex;
animation: marquee 50s linear infinite;
width: max-content;
will-change: transform;
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
}
.marquee-track img {
opacity: 0.85;
}
/* ===== Cards ===== */
.card {
position: relative;
background: var(--bg-card);
border: 0.5px solid rgba(255,255,255,0.1);
border-radius: 16px;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
--glow-start: 0;
--glow-spread: 60;
--glow-active: 0;
}
.card:hover {
border-color: transparent;
transform: translateY(-4px);
box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}
.card h3 { color: var(--text-on-card) !important; }
/* Glowing border effect */
.card::before,
.card::after {
content: '';
position: absolute;
inset: -1px;
border-radius: inherit;
pointer-events: none;
opacity: 0;
transition: opacity 0.4s ease;
transform: translateZ(0);
will-change: opacity;
}
/* Sharp glow border */
.card::before {
padding: 1.5px;
background: conic-gradient(
from calc((var(--glow-start) - var(--glow-spread)) * 1deg),
transparent 0deg,
#D4AF37 calc(var(--glow-spread) * 1deg),
#E5C84A calc(var(--glow-spread) * 1.5deg),
#D4AF37 calc(var(--glow-spread) * 2deg),
transparent calc(var(--glow-spread) * 2deg)
);
-webkit-mask:
linear-gradient(#fff 0 0) content-box,
linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
opacity: var(--glow-active);
}
/* Soft ambient glow behind */
.card::after {
inset: -2px;
padding: 3px;
background: conic-gradient(
from calc((var(--glow-start) - var(--glow-spread)) * 1deg),
transparent 0deg,
rgba(212, 175, 55, 0.35) calc(var(--glow-spread) * 1deg),
rgba(229, 200, 74, 0.2) calc(var(--glow-spread) * 1.5deg),
rgba(212, 175, 55, 0.35) calc(var(--glow-spread) * 2deg),
transparent calc(var(--glow-spread) * 2deg)
);
filter: blur(8px);
-webkit-mask:
linear-gradient(#fff 0 0) content-box,
linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
opacity: var(--glow-active);
z-index: -1;
}
/* ===== Image containers ===== */
.img-container {
overflow: hidden;
border-radius: 12px;
border: 1px solid var(--border);
}
.img-container img {
transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.img-container:hover img {
transform: scale(1.04);
}
/* ===== Stat counter ===== */
.stat-num {
font-family: 'Inter', sans-serif;
font-size: clamp(40px, 8vw, 62px);
font-weight: 800;
color: var(--text-primary);
line-height: 1;
letter-spacing: -3px;
}
/* ===== Horizontal divider ===== */
.divider {
height: 1px;
background: linear-gradient(90deg, transparent, rgba(18,18,18,0.08), transparent);
border: none;
}
/* ===== Palette overrides for hardcoded Tailwind color classes ===== */
.text-\[\#1B2A21\] { color: #121212 !important; }
.text-\[\#4A5D52\] { color: #4A4A4A !important; }
.text-\[\#8A9690\] { color: #888888 !important; }
.text-\[\#8A9E8F\] { color: #888888 !important; }
.text-\[\#A8BDA8\] { color: #AAAAAA !important; }
.text-\[\#5A7A62\] { color: #666666 !important; }
/* card context overrides take precedence via specificity + !important */
.card .text-\[\#1B2A21\] { color: var(--text-on-card) !important; }
.card .text-\[\#4A5D52\] { color: var(--text-on-card-muted) !important; }
.card .text-\[\#8A9690\] { color: var(--text-on-card-muted) !important; }
/* ===== Logo mark ===== */
.logo-mark {
width: 36px;
height: 36px;
object-fit: contain;
flex-shrink: 0;
image-rendering: crisp-edges;
}
/* .logo-mark-footer removed — footer now uses .footer-logo-mark in assets/site.css */
/* ===== Testimonial Slider ===== */
.slider-viewport { overflow: hidden; position: relative; }
.slider-track {
display: flex;
transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.slider-slide { min-width: 100%; padding: 0 8px; }
@media (min-width: 768px) { .slider-slide { min-width: 50%; } }
@media (min-width: 1024px) { .slider-slide { min-width: 33.333%; } }
.slider-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--text-muted);
border: none;
cursor: pointer;
transition: background 0.3s ease, transform 0.3s ease;
padding: 0;
}
.slider-dot.active {
background: var(--accent);
transform: scale(1.4);
}
.slider-btn {
width: 42px;
height: 42px;
border-radius: 50%;
border: 1px solid var(--border);
background: var(--bg-primary);
color: var(--text-primary);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: border-color 0.3s ease, background 0.3s ease, transform 0.2s ease;
}
.slider-btn:hover {
border-color: var(--border-hover);
background: rgba(27,67,50,0.07);
transform: scale(1.08);
}
/* ===== Floating gradient orbs ===== */
.glow-orb {
position: absolute;
border-radius: 50%;
filter: blur(120px);
pointer-events: none;
transform: translateZ(0);
contain: layout style paint;
}
/* Animated drifting orbs */
.glow-drift {
position: absolute;
border-radius: 50%;
pointer-events: none;
filter: blur(100px);
will-change: transform;
transform: translateZ(0);
contain: layout style paint;
}
@keyframes orbDrift1 {
0% { transform: translate(0, 0) scale(1); }
25% { transform: translate(60px, -40px) scale(1.1); }
50% { transform: translate(-30px, -80px) scale(0.95); }
75% { transform: translate(-60px, 20px) scale(1.05); }
100% { transform: translate(0, 0) scale(1); }
}
@keyframes orbDrift2 {
0% { transform: translate(0, 0) scale(1); }
25% { transform: translate(-50px, 50px) scale(1.08); }
50% { transform: translate(40px, 30px) scale(0.9); }
75% { transform: translate(70px, -30px) scale(1.12); }
100% { transform: translate(0, 0) scale(1); }
}
@keyframes orbPulse {
0%, 100% { opacity: 0.5; }
50% { opacity: 1; }
}
/* ===== Hero Animated Grid ===== */
@keyframes gridDrift {
0% { background-position: 0px 0px; }
100% { background-position: 40px 40px; }
}
.hero-grid {
position: absolute;
inset: 0;
z-index: 1;
pointer-events: none;
background-image:
linear-gradient(to right, rgba(27, 67, 50, 0.18) 1px, transparent 1px),
linear-gradient(to bottom, rgba(27, 67, 50, 0.18) 1px, transparent 1px);
background-size: 40px 40px;
animation: gridDrift 5s linear infinite;
-webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black 0%, black 30%, transparent 78%);
mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black 0%, black 30%, transparent 78%);
opacity: 0.7;
will-change: background-position;
}
/* ===== Display Cards (stacked animated) ===== */
/* ===== Display Cards (stacked) ===== */
.display-cards-stack {
display: grid;
grid-template-areas: 'stack';
place-items: center;
}
.display-card {
grid-area: stack;
position: relative;
display: flex;
flex-direction: column;
justify-content: space-between;
width: 22rem;
height: 9rem;
user-select: none;
border-radius: 14px;
border: 1.5px solid rgba(255,255,255,0.07);
border-top-color: rgba(255,255,255,0.18);
border-left-color: rgba(255,255,255,0.12);
background: var(--bg-card);
backdrop-filter: blur(8px);
padding: 14px 18px;
overflow: hidden;
opacity: 0;
filter: grayscale(100%);
will-change: transform, filter, opacity;
box-shadow: inset 1px 0 0 rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.35);
transition: opacity 0.6s ease, filter 0.5s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1) 0.15s, border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}
.display-card.dc-back {
z-index: 1;
transform: skewY(-8deg) translateY(0);
}
.display-card.dc-mid {
z-index: 2;
transform: skewY(-8deg) translate(56px, 40px);
}
.display-card.dc-front {
z-index: 3;
transform: skewY(-8deg) translate(112px, 80px);
}
.display-card::before {
content: '';
position: absolute;
inset: 0;
border-radius: inherit;
background: rgba(0,0,0,0.3);
pointer-events: none;
transition: opacity 0.5s ease;
}
/* No gradient overlay — border shine only */
.display-card::after {
content: '';
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
background: none;
border-radius: inherit;
pointer-events: none;
opacity: 0;
}
/* Stagger fade-in delays */
.display-card.dc-mid { transition-delay: 0.15s; }
.display-card.dc-front { transition-delay: 0.3s; }
/* Revealed state — cards fade in, still grayscale */
.process-phase.cards-visible .display-card {
opacity: 1;
filter: grayscale(100%);
}
/* Hover state — color + pop-up + shiny gloss */
.process-phase.cards-visible .display-card:hover {
filter: grayscale(0%);
border-top-color: rgba(255,255,255,0.35);
border-left-color: rgba(255,255,255,0.22);
border-right-color: rgba(255,255,255,0.08);
border-bottom-color: rgba(255,255,255,0.05);
background: var(--bg-elevated);
box-shadow: inset 1px 0 0 rgba(255,255,255,0.12), 0 12px 40px rgba(0,0,0,0.4);
transition-delay: 0s;
}
.process-phase.cards-visible .display-card:hover::before { opacity: 0; }
.process-phase.cards-visible .display-card:hover::after {
background: none;
opacity: 0;
}
.process-phase.cards-visible .display-card.dc-back:hover {
transform: skewY(-8deg) translateY(-40px);
}
.process-phase.cards-visible .display-card.dc-mid:hover {
transform: skewY(-8deg) translate(56px, -4px);
}
.process-phase.cards-visible .display-card.dc-front:hover {
transform: skewY(-8deg) translate(112px, 40px);
}
.display-card .dc-icon-wrap {
display: inline-flex;
align-items: center;
justify-content: center;
width: 26px;
height: 26px;
border-radius: 50%;
background: rgba(212,175,55,0.18);
flex-shrink: 0;
}
.display-card .dc-icon-wrap svg {
width: 14px;
height: 14px;
color: #D4AF37;
}
.display-card .dc-row {
display: flex;
align-items: center;
gap: 8px;
}
.display-card .dc-title {
font-family: 'Inter', sans-serif;
font-size: 15px;
font-weight: 600;
color: #D4AF37;
}
.display-card .dc-desc {
font-size: 14px;
color: var(--text-on-card);
white-space: nowrap;
}
.display-card .dc-meta {
font-size: 12px;
color: var(--text-on-card-muted);
}
/* Process step layout */
.process-phase {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 48px;
align-items: center;
}
.process-phase.reversed .process-text { order: 2; }
.process-phase.reversed .process-cards { order: 1; }
@media (max-width: 768px) {
.process-phase {
grid-template-columns: 1fr;
gap: 16px;
}
.process-phase.reversed .process-text { order: 1; }
.process-phase.reversed .process-cards { order: 2; }
}
/* ===== Process step connector ===== */
.step-number {
width: 48px;
height: 48px;
border-radius: 14px;
background: rgba(27, 67, 50, 0.08);
border: 1.5px solid rgba(27, 67, 50, 0.28);
display: flex;
align-items: center;
justify-content: center;
font-family: 'Inter', sans-serif;
font-size: 18px;
font-weight: 800;
color: var(--emerald);
flex-shrink: 0;
}
/* ===== Process with images ===== */
.process-step {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 32px;
align-items: center;
}
.process-step.reversed .process-content { order: 2; }
.process-step.reversed .process-image { order: 1; }
@media (max-width: 768px) {
.process-step {
grid-template-columns: 1fr;
gap: 20px;
}
.process-step.reversed .process-content { order: 1; }
.process-step.reversed .process-image { order: 2; }
}
/* ===== Hero status widget ===== */
.status-widget {
background: var(--bg-card);
border: 1.5px solid rgba(255,255,255,0.1);
border-radius: 16px;
padding: 20px 24px;
max-width: 340px;
box-shadow: 0 8px 32px rgba(13,40,24,0.08);
transform: translateZ(0);
}
.status-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: #22C55E;
animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse {
0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.spinner {
width: 16px;
height: 16px;
border: 2px solid rgba(13,40,24,0.1);
border-top-color: var(--accent);
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.status-counter {
font-family: 'Space Grotesk', sans-serif;
font-variant-numeric: tabular-nums;
}
/* ===== Challenge cards ===== */
.challenge-card {
background: var(--bg-primary);
border: 0.5px solid rgba(18,18,18,0.12);
border-radius: 14px;
padding: 28px 24px;
box-shadow: 0 6px 24px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease, border-color 0.35s ease;
position: relative;
overflow: hidden;
}
.challenge-card:hover {
transform: translateY(-3px);
box-shadow: 0 12px 40px rgba(0,0,0,0.1);
border-color: rgba(212,175,55,0.25);
}
.challenge-stat {
font-family: 'Inter', sans-serif;
font-size: clamp(36px,6vw,48px);
font-weight: 800;
line-height: 1;
color: var(--emerald);
letter-spacing: -2px;
}
/* ===== Differentiator cards ===== */
.diff-card {
background: var(--bg-primary);
border: 1px solid rgba(18,18,18,0.07);
border-radius: 14px;
padding: 24px;
transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.diff-card:hover {
transform: translateY(-3px);
box-shadow: 0 8px 32px rgba(0,0,0,0.08);
border-color: rgba(212,175,55,0.25);
}
.diff-icon {
width: 42px;
height: 42px;
border-radius: 12px;
background: rgba(200,150,93,0.08);
display: flex;
align-items: center;
justify-content: center;
color: var(--accent);
flex-shrink: 0;
}
/* ===== Feature grid with hover effects ===== */
.feature-grid {
display: grid;
grid-template-columns: 1fr;
position: relative;
z-index: 10;
}
@media (min-width: 768px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: 1fr 1fr 1fr; } }
.feature-card {
display: flex;
flex-direction: column;
padding: 40px;
position: relative;
border-right: 0.5px solid rgba(18,18,18,0.1);
border-bottom: 0.5px solid rgba(18,18,18,0.1);
}
/* Remove right border on last column per breakpoint */
.feature-card:nth-child(3n) { border-right: none; }
@media (max-width: 1023px) {
.feature-card { border-right: 0.5px solid rgba(18,18,18,0.1); }
.feature-card:nth-child(3n) { border-right: 0.5px solid rgba(18,18,18,0.1); }
.feature-card:nth-child(2n) { border-right: none; }
}
@media (max-width: 767px) {
.feature-card { border-right: none; }
}
/* Remove bottom border on last row (3 cols → last 3 cards; 2 cols → last 2) */
@media (min-width: 1024px) {
.feature-card:nth-child(n+4) { border-bottom: none; }
}
@media (min-width: 768px) and (max-width: 1023px) {
.feature-card:nth-child(n+5) { border-bottom: none; }
}
@media (max-width: 767px) {
.feature-card:last-child { border-bottom: none; }
}
/* Hover gradient overlay */
.feature-card .hover-gradient {
position: absolute;
inset: 0;
opacity: 0;
transition: opacity 0.25s ease;
pointer-events: none;
}
.feature-card:hover .hover-gradient { opacity: 1; }
.feature-card.top-row .hover-gradient {
background: linear-gradient(to top, rgba(13,40,24,0.10), transparent);
}
.feature-card.bottom-row .hover-gradient {
background: linear-gradient(to bottom, rgba(13,40,24,0.10), transparent);
}
/* Directional shadows — in-depth effect */