@deriv-web-design/ui-templates 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.css ADDED
@@ -0,0 +1,2519 @@
1
+ /* templates/FeatureCards/FeatureCards.css */
2
+ .fc-section {
3
+ width: 100%;
4
+ background-color: var(--color-slate-50);
5
+ }
6
+ .fc-container {
7
+ display: flex;
8
+ flex-direction: column;
9
+ gap: var(--spacing-48);
10
+ max-width: var(--content-width-1280);
11
+ margin: 0 auto;
12
+ padding: var(--spacing-56) var(--spacing-16);
13
+ box-sizing: border-box;
14
+ }
15
+ @media (min-width: 992px) {
16
+ .fc-container {
17
+ padding: var(--spacing-112) var(--spacing-24);
18
+ }
19
+ }
20
+ .fc-header {
21
+ display: flex;
22
+ flex-direction: column;
23
+ align-items: flex-start;
24
+ gap: var(--spacing-16);
25
+ text-align: left;
26
+ }
27
+ @media (min-width: 768px) {
28
+ .fc-header {
29
+ align-items: center;
30
+ text-align: center;
31
+ }
32
+ }
33
+ .fc-sectionTitle {
34
+ font-family: var(--typography-h2-font-family);
35
+ font-size: var(--typography-h2-font-size);
36
+ font-weight: var(--typography-h2-font-weight);
37
+ line-height: var(--typography-h2-line-height);
38
+ color: var(--text-primary);
39
+ margin: 0;
40
+ }
41
+ .fc-sectionDescription {
42
+ font-family: var(--typography-body-md-font-family);
43
+ font-size: var(--typography-body-md-font-size);
44
+ font-weight: var(--typography-body-md-font-weight);
45
+ line-height: var(--typography-body-md-line-height);
46
+ color: var(--color-slate-1200);
47
+ margin: 0;
48
+ max-width: 640px;
49
+ }
50
+ .fc-grid {
51
+ display: grid;
52
+ grid-template-columns: 1fr;
53
+ gap: var(--spacing-16);
54
+ width: 100%;
55
+ }
56
+ @media (min-width: 768px) {
57
+ .fc-grid {
58
+ grid-template-columns: repeat(2, 1fr);
59
+ gap: var(--spacing-24);
60
+ }
61
+ }
62
+ @media (min-width: 992px) {
63
+ .fc-grid {
64
+ grid-template-columns: repeat(3, 1fr);
65
+ }
66
+ }
67
+
68
+ /* templates/FeatureCardsSecondary/FeatureCardsSecondary.css */
69
+ .fcs-section {
70
+ width: 100%;
71
+ background-color: var(--color-slate-50);
72
+ }
73
+ .fcs-container {
74
+ display: flex;
75
+ flex-direction: column;
76
+ gap: var(--spacing-48);
77
+ max-width: var(--content-width-1280);
78
+ margin: 0 auto;
79
+ padding: var(--spacing-56) var(--spacing-16);
80
+ box-sizing: border-box;
81
+ }
82
+ @media (min-width: 992px) {
83
+ .fcs-container {
84
+ padding: var(--spacing-112) var(--spacing-24);
85
+ }
86
+ }
87
+ .fcs-header {
88
+ display: flex;
89
+ flex-direction: column;
90
+ align-items: flex-start;
91
+ gap: var(--spacing-16);
92
+ text-align: left;
93
+ }
94
+ @media (min-width: 768px) {
95
+ .fcs-header {
96
+ align-items: center;
97
+ text-align: center;
98
+ }
99
+ }
100
+ .fcs-sectionTitle {
101
+ font-family: var(--typography-h2-font-family);
102
+ font-size: var(--typography-h2-font-size);
103
+ font-weight: var(--typography-h2-font-weight);
104
+ line-height: var(--typography-h2-line-height);
105
+ color: var(--text-primary);
106
+ margin: 0;
107
+ }
108
+ .fcs-sectionDescription {
109
+ font-family: var(--typography-body-md-font-family);
110
+ font-size: var(--typography-body-md-font-size);
111
+ font-weight: var(--typography-body-md-font-weight);
112
+ line-height: var(--typography-body-md-line-height);
113
+ color: var(--color-slate-1200);
114
+ margin: 0;
115
+ max-width: 640px;
116
+ }
117
+ .fcs-grid {
118
+ display: grid;
119
+ grid-template-columns: 1fr;
120
+ gap: var(--spacing-16);
121
+ width: 100%;
122
+ }
123
+ @media (min-width: 768px) {
124
+ .fcs-grid {
125
+ grid-template-columns: repeat(2, 1fr);
126
+ gap: var(--spacing-24);
127
+ }
128
+ }
129
+ @media (min-width: 992px) {
130
+ .fcs-grid--3 {
131
+ grid-template-columns: repeat(3, 1fr);
132
+ }
133
+ .fcs-grid--4 {
134
+ grid-template-columns: repeat(4, 1fr);
135
+ }
136
+ }
137
+
138
+ /* templates/Hero/Hero.css */
139
+ :root {
140
+ --hero-dark-bg: var(--color-slate-1200);
141
+ --hero-light-bg: var(--color-slate-75);
142
+ --hero-text-light: var(--color-slate-50);
143
+ --hero-text-dark: var(--text-primary);
144
+ --hero-subtitle-size: var(--typography-body-md-font-size);
145
+ --hero-subtitle-lh: var(--typography-body-md-line-height);
146
+ --hero-subtitle-weight: var(--font-weight-semi-bold);
147
+ --hero-title-size-mobile: var(--typography-h1-font-size);
148
+ --hero-title-lh-mobile: var(--typography-h1-line-height);
149
+ --hero-body-size: var(--typography-body-md-font-size);
150
+ --hero-body-lh: var(--typography-body-md-line-height);
151
+ --hero-primary-padding-top-mobile: var(--spacing-80);
152
+ --hero-primary-padding-top-tablet: var(--spacing-96);
153
+ --hero-primary-padding-top-desktop: var(--spacing-96);
154
+ --hero-secondary-shrink-radius: 3.5rem;
155
+ --hero-secondary-padding-top-mobile: var(--spacing-80);
156
+ --hero-secondary-padding-top-tablet: var(--spacing-96);
157
+ --hero-secondary-padding-top-desktop: var(--spacing-112);
158
+ }
159
+ .hero {
160
+ position: relative;
161
+ width: 100%;
162
+ font-family: var(--font-family-base);
163
+ box-sizing: border-box;
164
+ overflow: hidden;
165
+ }
166
+ .hero__bg-image {
167
+ position: absolute;
168
+ inset: 0;
169
+ width: 100%;
170
+ height: 100%;
171
+ object-fit: cover;
172
+ object-position: center;
173
+ pointer-events: none;
174
+ display: block;
175
+ z-index: 0;
176
+ }
177
+ .hero__overlay {
178
+ position: absolute;
179
+ inset: 0;
180
+ pointer-events: none;
181
+ z-index: 2;
182
+ }
183
+ .hero__inner {
184
+ position: relative;
185
+ z-index: 3;
186
+ width: 100%;
187
+ max-width: var(--content-width-1280);
188
+ margin: 0 auto;
189
+ box-sizing: border-box;
190
+ padding: var(--spacing-24) var(--spacing-16);
191
+ }
192
+ .hero__text {
193
+ display: flex;
194
+ flex-direction: column;
195
+ gap: var(--spacing-16);
196
+ }
197
+ .hero__subtitle {
198
+ font-size: var(--hero-subtitle-size);
199
+ font-weight: var(--hero-subtitle-weight);
200
+ line-height: var(--hero-subtitle-lh);
201
+ margin: 0;
202
+ }
203
+ .hero__title {
204
+ font-size: var(--hero-title-size-mobile);
205
+ font-weight: var(--typography-h1-font-weight);
206
+ line-height: var(--hero-title-lh-mobile);
207
+ margin: 0;
208
+ }
209
+ .hero__description {
210
+ font-size: var(--hero-body-size);
211
+ font-weight: var(--typography-body-md-font-weight);
212
+ line-height: var(--hero-body-lh);
213
+ margin: 0;
214
+ }
215
+ .hero__buttons {
216
+ display: flex;
217
+ flex-direction: column;
218
+ gap: var(--spacing-8);
219
+ width: 100%;
220
+ align-items: stretch;
221
+ }
222
+ .hero__body {
223
+ display: flex;
224
+ flex-direction: column;
225
+ gap: var(--spacing-24);
226
+ }
227
+ .hero--split {
228
+ background-color: var(--hero-dark-bg);
229
+ background-size: cover;
230
+ background-position: center;
231
+ background-repeat: no-repeat;
232
+ height: 100vh;
233
+ display: flex;
234
+ align-items: flex-start;
235
+ overflow: hidden;
236
+ animation: hero-split-shrink linear both;
237
+ animation-timeline: view();
238
+ animation-range: exit 0% exit 40%;
239
+ }
240
+ @keyframes hero-split-shrink {
241
+ 0% {
242
+ border-bottom-left-radius: 0px;
243
+ border-bottom-right-radius: 0px;
244
+ scale: 1;
245
+ }
246
+ 100% {
247
+ border-bottom-left-radius: var(--hero-secondary-shrink-radius);
248
+ border-bottom-right-radius: var(--hero-secondary-shrink-radius);
249
+ scale: 0.94;
250
+ }
251
+ }
252
+ .hero--split .hero__overlay {
253
+ background:
254
+ linear-gradient(
255
+ 180deg,
256
+ transparent 0%,
257
+ transparent 30%,
258
+ var(--color-opacity-slate-48) 55%,
259
+ var(--color-opacity-slate-88) 75%,
260
+ var(--hero-dark-bg) 100%);
261
+ }
262
+ .hero--split .hero__inner {
263
+ display: flex;
264
+ flex-direction: column;
265
+ justify-content: flex-end;
266
+ width: 100%;
267
+ height: 100vh;
268
+ padding-top: 0;
269
+ padding-bottom: var(--spacing-40);
270
+ padding-left: var(--spacing-16);
271
+ padding-right: var(--spacing-16);
272
+ }
273
+ .hero--split .hero__content {
274
+ display: flex;
275
+ flex-direction: column;
276
+ gap: var(--spacing-24);
277
+ width: 100%;
278
+ }
279
+ .hero--split .hero__image-slot {
280
+ position: absolute;
281
+ top: 10vh;
282
+ bottom: auto;
283
+ left: 0;
284
+ right: 0;
285
+ height: 80vh;
286
+ z-index: 1;
287
+ overflow: visible;
288
+ pointer-events: none;
289
+ display: flex;
290
+ align-items: center;
291
+ justify-content: center;
292
+ }
293
+ .hero--split .hero__image-slot img {
294
+ width: 100%;
295
+ max-height: 100%;
296
+ object-fit: contain;
297
+ object-position: center;
298
+ display: block;
299
+ }
300
+ .hero--split .hero__image-slot > *:not(img) {
301
+ width: 100%;
302
+ height: 100%;
303
+ display: block;
304
+ }
305
+ .hero--split .hero__subtitle,
306
+ .hero--split .hero__title,
307
+ .hero--split .hero__description {
308
+ color: var(--hero-text-light);
309
+ }
310
+ .hero--split .hero__subtitle {
311
+ font-size: var(--typography-h4-font-size);
312
+ line-height: var(--typography-h4-line-height);
313
+ }
314
+ .hero--split .hero__title {
315
+ font-size: var(--typography-h1-font-size);
316
+ line-height: var(--typography-h1-line-height);
317
+ }
318
+ .hero--split .hero__description {
319
+ font-size: var(--typography-body-md-font-size);
320
+ line-height: var(--typography-body-md-line-height);
321
+ }
322
+ .hero--split .hero__buttons {
323
+ align-items: stretch;
324
+ }
325
+ .hero--centered {
326
+ background-color: var(--hero-dark-bg);
327
+ background-size: cover;
328
+ background-position: center;
329
+ background-repeat: no-repeat;
330
+ height: 100vh;
331
+ display: flex;
332
+ align-items: flex-start;
333
+ overflow: hidden;
334
+ animation: hero-centered-shrink linear both;
335
+ animation-timeline: view();
336
+ animation-range: exit 0% exit 40%;
337
+ }
338
+ @keyframes hero-centered-shrink {
339
+ 0% {
340
+ border-bottom-left-radius: 0px;
341
+ border-bottom-right-radius: 0px;
342
+ scale: 1;
343
+ }
344
+ 100% {
345
+ border-bottom-left-radius: var(--hero-secondary-shrink-radius);
346
+ border-bottom-right-radius: var(--hero-secondary-shrink-radius);
347
+ scale: 0.94;
348
+ }
349
+ }
350
+ .hero--centered .hero__overlay {
351
+ background:
352
+ linear-gradient(
353
+ 180deg,
354
+ var(--hero-dark-bg) 0%,
355
+ var(--color-opacity-slate-88) 20%,
356
+ var(--color-opacity-slate-48) 45%,
357
+ transparent 70%);
358
+ }
359
+ .hero--centered .hero__inner {
360
+ display: flex;
361
+ align-items: flex-start;
362
+ justify-content: center;
363
+ width: 100%;
364
+ height: calc(100vh - 16px);
365
+ padding-top: var(--hero-secondary-padding-top-mobile);
366
+ padding-bottom: 0;
367
+ }
368
+ .hero--centered .hero__content {
369
+ display: flex;
370
+ flex-direction: column;
371
+ align-items: flex-start;
372
+ gap: var(--spacing-24);
373
+ width: 100%;
374
+ height: 100vh;
375
+ padding-bottom: var(--spacing-48);
376
+ text-align: left;
377
+ justify-content: flex-start;
378
+ }
379
+ .hero--centered .hero__text {
380
+ display: flex;
381
+ flex-direction: column;
382
+ align-items: flex-start;
383
+ gap: var(--spacing-16);
384
+ max-width: 640px;
385
+ width: 100%;
386
+ }
387
+ .hero--centered .hero__subtitle {
388
+ font-size: var(--hero-subtitle-size);
389
+ font-weight: var(--typography-h2-font-weight);
390
+ line-height: var(--hero-subtitle-lh);
391
+ color: var(--hero-text-light);
392
+ margin: 0;
393
+ }
394
+ .hero--centered .hero__title {
395
+ font-size: var(--hero-title-size-mobile);
396
+ font-weight: var(--typography-h1-font-weight);
397
+ line-height: var(--hero-title-lh-mobile);
398
+ color: var(--hero-text-light);
399
+ margin: 0;
400
+ }
401
+ .hero--centered .hero__description {
402
+ font-size: var(--hero-body-size);
403
+ font-weight: var(--typography-body-md-font-weight);
404
+ line-height: var(--hero-body-lh);
405
+ color: var(--hero-text-light);
406
+ margin: 0;
407
+ opacity: 0.8;
408
+ }
409
+ .hero--centered .hero__buttons {
410
+ display: flex;
411
+ flex-direction: column;
412
+ gap: var(--spacing-12);
413
+ align-items: stretch;
414
+ width: 100%;
415
+ justify-content: center;
416
+ }
417
+ .hero--visuals,
418
+ .hero--minimal {
419
+ background-color: var(--hero-light-bg);
420
+ min-height: 540px;
421
+ display: flex;
422
+ align-items: center;
423
+ }
424
+ .hero--visuals .hero__grid,
425
+ .hero--minimal .hero__grid {
426
+ position: absolute;
427
+ inset: 0;
428
+ pointer-events: none;
429
+ z-index: 0;
430
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M 40 0 L 0 0 0 40' fill='none' stroke='%23cfd4d8' stroke-width='0.5' opacity='0.5'/%3E%3C/svg%3E");
431
+ background-repeat: repeat;
432
+ background-size: 40px 40px;
433
+ }
434
+ .hero--visuals .hero__overlay,
435
+ .hero--minimal .hero__overlay {
436
+ background:
437
+ linear-gradient(
438
+ to right,
439
+ var(--hero-light-bg) 0%,
440
+ rgba(246, 247, 248, 0) 18%,
441
+ rgba(246, 247, 248, 0) 82%,
442
+ var(--hero-light-bg) 100%),
443
+ linear-gradient(
444
+ to bottom,
445
+ var(--hero-light-bg) 0%,
446
+ rgba(246, 247, 248, 0) 30%,
447
+ rgba(246, 247, 248, 0) 70%,
448
+ var(--hero-light-bg) 100%);
449
+ }
450
+ .hero--visuals .hero__inner,
451
+ .hero--minimal .hero__inner {
452
+ display: flex;
453
+ flex-direction: column;
454
+ align-items: flex-start;
455
+ justify-content: center;
456
+ padding-top: var(--spacing-32);
457
+ padding-bottom: var(--spacing-32);
458
+ min-height: 540px;
459
+ }
460
+ .hero--visuals .hero__content,
461
+ .hero--minimal .hero__content {
462
+ display: flex;
463
+ flex-direction: column;
464
+ align-items: flex-start;
465
+ gap: var(--spacing-32);
466
+ width: 100%;
467
+ text-align: left;
468
+ }
469
+ .hero--visuals .hero__text,
470
+ .hero--minimal .hero__text {
471
+ align-items: flex-start;
472
+ max-width: var(--content-width-846);
473
+ }
474
+ .hero--visuals .hero__subtitle,
475
+ .hero--minimal .hero__subtitle {
476
+ color: var(--hero-text-dark);
477
+ font-size: var(--hero-subtitle-size);
478
+ font-weight: var(--hero-subtitle-weight);
479
+ line-height: var(--hero-subtitle-lh);
480
+ }
481
+ .hero--visuals .hero__title,
482
+ .hero--minimal .hero__title {
483
+ color: var(--hero-text-dark);
484
+ font-size: var(--hero-title-size-mobile);
485
+ font-weight: var(--typography-h1-font-weight);
486
+ line-height: var(--hero-title-lh-mobile);
487
+ }
488
+ .hero--visuals .hero__description,
489
+ .hero--minimal .hero__description {
490
+ color: var(--hero-text-dark);
491
+ font-size: var(--hero-body-size);
492
+ font-weight: var(--typography-body-md-font-weight);
493
+ line-height: var(--hero-body-lh);
494
+ }
495
+ .hero--visuals .hero__buttons,
496
+ .hero--minimal .hero__buttons {
497
+ align-items: stretch;
498
+ justify-content: flex-start;
499
+ flex-direction: column;
500
+ width: 100%;
501
+ }
502
+ .hero__visual {
503
+ position: absolute;
504
+ z-index: 1;
505
+ overflow: hidden;
506
+ pointer-events: none;
507
+ }
508
+ .hero__visual img,
509
+ .hero__visual > * {
510
+ display: block;
511
+ width: 100%;
512
+ height: 100%;
513
+ object-fit: contain;
514
+ object-position: center;
515
+ }
516
+ .hero__visual--left {
517
+ width: 160px;
518
+ height: 160px;
519
+ top: calc(50% - 80px);
520
+ left: -20px;
521
+ bottom: auto;
522
+ will-change: transform;
523
+ }
524
+ .hero__visual--right {
525
+ width: 160px;
526
+ height: 160px;
527
+ top: calc(50% - 80px);
528
+ right: -20px;
529
+ bottom: auto;
530
+ will-change: transform;
531
+ }
532
+ .hero--showcase {
533
+ background-color: var(--hero-dark-bg);
534
+ background-size: cover;
535
+ background-position: center;
536
+ background-repeat: no-repeat;
537
+ height: 100vh;
538
+ display: flex;
539
+ align-items: flex-start;
540
+ overflow: hidden;
541
+ animation: hero-showcase-shrink linear both;
542
+ animation-timeline: view();
543
+ animation-range: exit 0% exit 40%;
544
+ }
545
+ @keyframes hero-showcase-shrink {
546
+ 0% {
547
+ border-bottom-left-radius: 0px;
548
+ border-bottom-right-radius: 0px;
549
+ scale: 1;
550
+ }
551
+ 100% {
552
+ border-bottom-left-radius: var(--hero-secondary-shrink-radius);
553
+ border-bottom-right-radius: var(--hero-secondary-shrink-radius);
554
+ scale: 0.94;
555
+ }
556
+ }
557
+ .hero--showcase .hero__overlay {
558
+ background:
559
+ linear-gradient(
560
+ 180deg,
561
+ var(--hero-dark-bg) 0%,
562
+ var(--color-opacity-slate-88) 20%,
563
+ var(--color-opacity-slate-48) 45%,
564
+ transparent 70%);
565
+ }
566
+ .hero--showcase .hero__inner {
567
+ display: flex;
568
+ align-items: flex-start;
569
+ justify-content: center;
570
+ width: 100%;
571
+ height: calc(100vh - 16px);
572
+ padding-top: var(--hero-secondary-padding-top-mobile);
573
+ padding-bottom: 0;
574
+ }
575
+ .hero--showcase .hero__content {
576
+ display: flex;
577
+ flex-direction: column;
578
+ align-items: flex-start;
579
+ gap: var(--spacing-24);
580
+ width: 100%;
581
+ height: 100vh;
582
+ padding-bottom: var(--spacing-48);
583
+ text-align: left;
584
+ }
585
+ .hero--showcase .hero__text {
586
+ display: flex;
587
+ flex-direction: column;
588
+ align-items: flex-start;
589
+ gap: var(--spacing-16);
590
+ max-width: 640px;
591
+ width: 100%;
592
+ }
593
+ .hero--showcase .hero__subtitle {
594
+ font-size: var(--hero-subtitle-size);
595
+ font-weight: var(--typography-h2-font-weight);
596
+ line-height: var(--hero-subtitle-lh);
597
+ color: var(--hero-text-light);
598
+ margin: 0;
599
+ }
600
+ .hero--showcase .hero__title {
601
+ font-size: var(--hero-title-size-mobile);
602
+ font-weight: var(--typography-h1-font-weight);
603
+ line-height: var(--hero-title-lh-mobile);
604
+ color: var(--hero-text-light);
605
+ margin: 0;
606
+ }
607
+ .hero--showcase .hero__description {
608
+ font-size: var(--hero-body-size);
609
+ font-weight: var(--typography-body-md-font-weight);
610
+ line-height: var(--hero-body-lh);
611
+ color: var(--hero-text-light);
612
+ margin: 0;
613
+ opacity: 0.8;
614
+ }
615
+ .hero--showcase .hero__buttons {
616
+ display: flex;
617
+ flex-direction: column;
618
+ gap: var(--spacing-12);
619
+ align-items: stretch;
620
+ width: 100%;
621
+ }
622
+ .hero--showcase .hero__product-image {
623
+ position: relative;
624
+ width: 100%;
625
+ max-width: 100%;
626
+ height: 100%;
627
+ min-height: 17.5rem;
628
+ max-height: 50vh;
629
+ overflow: clip;
630
+ margin-top: auto;
631
+ margin-bottom: 8px;
632
+ }
633
+ .hero--showcase .hero__product-image img,
634
+ .hero--showcase .hero__product-image > * {
635
+ width: 100%;
636
+ height: 100%;
637
+ display: block;
638
+ object-fit: contain;
639
+ object-position: center;
640
+ }
641
+ .hero--showcase .hero__floating-image {
642
+ width: 100%;
643
+ max-width: 160px;
644
+ margin-top: auto;
645
+ margin-bottom: var(--spacing-40);
646
+ aspect-ratio: 1 / 1;
647
+ }
648
+ .hero--showcase .hero__floating-image img,
649
+ .hero--showcase .hero__floating-image > * {
650
+ width: 100%;
651
+ height: 100%;
652
+ display: block;
653
+ object-fit: cover;
654
+ object-position: center;
655
+ }
656
+ @media (min-width: 768px) {
657
+ .hero__inner {
658
+ padding: var(--spacing-40) var(--spacing-24);
659
+ }
660
+ .hero--split .hero__inner {
661
+ padding-top: var(--hero-primary-padding-top-tablet);
662
+ padding-bottom: var(--spacing-40);
663
+ padding-left: var(--spacing-24);
664
+ padding-right: var(--spacing-24);
665
+ justify-content: flex-end;
666
+ }
667
+ .hero--centered .hero__inner {
668
+ padding-top: var(--hero-secondary-padding-top-tablet);
669
+ padding-bottom: 0;
670
+ }
671
+ .hero--centered .hero__content {
672
+ align-items: center;
673
+ text-align: center;
674
+ }
675
+ .hero--centered .hero__text {
676
+ align-items: center;
677
+ }
678
+ .hero--centered .hero__buttons {
679
+ flex-direction: row;
680
+ align-items: center;
681
+ justify-content: center;
682
+ max-width: none;
683
+ width: auto;
684
+ }
685
+ .hero--split .hero__buttons {
686
+ flex-direction: row;
687
+ align-items: center;
688
+ width: auto;
689
+ }
690
+ .hero--visuals .hero__inner,
691
+ .hero--minimal .hero__inner {
692
+ align-items: center;
693
+ }
694
+ .hero--visuals .hero__content,
695
+ .hero--minimal .hero__content {
696
+ align-items: center;
697
+ text-align: center;
698
+ }
699
+ .hero--visuals .hero__text,
700
+ .hero--minimal .hero__text {
701
+ align-items: center;
702
+ }
703
+ .hero--visuals .hero__buttons,
704
+ .hero--minimal .hero__buttons {
705
+ flex-direction: row;
706
+ align-items: center;
707
+ justify-content: center;
708
+ width: auto;
709
+ }
710
+ .hero--showcase .hero__inner {
711
+ padding-top: var(--hero-secondary-padding-top-tablet);
712
+ padding-bottom: 0;
713
+ }
714
+ .hero--showcase .hero__content {
715
+ align-items: center;
716
+ text-align: center;
717
+ }
718
+ .hero--showcase .hero__text {
719
+ align-items: center;
720
+ }
721
+ .hero--showcase .hero__buttons {
722
+ flex-direction: row;
723
+ align-items: center;
724
+ justify-content: center;
725
+ max-width: none;
726
+ width: auto;
727
+ }
728
+ .hero--showcase .hero__product-image {
729
+ max-width: 640px;
730
+ }
731
+ .hero--showcase .hero__floating-image {
732
+ max-width: 180px;
733
+ }
734
+ }
735
+ @media (min-width: 992px) {
736
+ .hero__inner {
737
+ padding: var(--spacing-48) var(--spacing-32);
738
+ }
739
+ .hero--split .hero__inner {
740
+ max-width: var(--content-width-1280);
741
+ padding-top: var(--hero-primary-padding-top-desktop);
742
+ padding-bottom: var(--spacing-96);
743
+ padding-left: var(--spacing-32);
744
+ padding-right: var(--spacing-32);
745
+ height: 100vh;
746
+ justify-content: center;
747
+ align-items: flex-start;
748
+ }
749
+ .hero--split .hero__content {
750
+ flex-direction: column;
751
+ gap: var(--spacing-32);
752
+ max-width: 600px;
753
+ }
754
+ .hero--split .hero__left {
755
+ width: 100%;
756
+ }
757
+ .hero--split .hero__body {
758
+ gap: var(--spacing-32);
759
+ }
760
+ .hero--split .hero__subtitle {
761
+ line-height: var(--typography-h5-line-height);
762
+ }
763
+ .hero--split .hero__image-slot {
764
+ position: absolute;
765
+ top: var(--spacing-72);
766
+ right: auto;
767
+ left: 50%;
768
+ transform: none;
769
+ z-index: 4;
770
+ width: 50%;
771
+ height: calc(100% - 5px);
772
+ display: flex;
773
+ align-items: center;
774
+ justify-content: center;
775
+ overflow: visible;
776
+ pointer-events: none;
777
+ max-width: none;
778
+ }
779
+ .hero--split .hero__image-slot img {
780
+ height: 100%;
781
+ width: auto;
782
+ max-height: none;
783
+ max-width: none;
784
+ object-fit: contain;
785
+ object-position: center;
786
+ }
787
+ .hero--split .hero__buttons {
788
+ flex-direction: row;
789
+ align-items: center;
790
+ width: auto;
791
+ gap: var(--spacing-16);
792
+ }
793
+ .hero--split .hero__overlay {
794
+ background:
795
+ linear-gradient(
796
+ to right,
797
+ var(--hero-dark-bg) 0%,
798
+ var(--color-opacity-slate-88) 40%,
799
+ var(--color-opacity-slate-24) 100%);
800
+ }
801
+ .hero--centered .hero__inner {
802
+ padding-top: var(--hero-secondary-padding-top-desktop);
803
+ padding-bottom: 0;
804
+ }
805
+ .hero--centered .hero__text {
806
+ max-width: 760px;
807
+ }
808
+ .hero--centered .hero__buttons {
809
+ flex-direction: row;
810
+ align-items: center;
811
+ justify-content: center;
812
+ width: auto;
813
+ }
814
+ .hero--visuals .hero__buttons,
815
+ .hero--minimal .hero__buttons {
816
+ flex-direction: row;
817
+ width: auto;
818
+ }
819
+ .hero--visuals .hero__inner,
820
+ .hero--minimal .hero__inner {
821
+ position: relative;
822
+ }
823
+ .hero__visuals-wrapper {
824
+ flex-direction: row;
825
+ justify-content: center;
826
+ position: relative;
827
+ }
828
+ .hero--visuals .hero__visual--left {
829
+ width: 241px;
830
+ height: 241px;
831
+ top: calc(50% - 120px);
832
+ left: 48px;
833
+ bottom: auto;
834
+ right: auto;
835
+ }
836
+ .hero--visuals .hero__visual--right {
837
+ width: 241px;
838
+ height: 241px;
839
+ top: calc(50% - 120px);
840
+ right: 48px;
841
+ bottom: auto;
842
+ left: auto;
843
+ }
844
+ .hero--visuals .hero__content,
845
+ .hero--minimal .hero__content {
846
+ max-width: var(--content-width-846);
847
+ width: 100%;
848
+ }
849
+ .hero--showcase .hero__inner {
850
+ padding-top: var(--hero-secondary-padding-top-desktop);
851
+ padding-bottom: 0;
852
+ }
853
+ .hero--showcase .hero__text {
854
+ max-width: 760px;
855
+ }
856
+ .hero--showcase .hero__product-image {
857
+ width: auto;
858
+ max-width: none;
859
+ height: 50vh;
860
+ max-height: none;
861
+ aspect-ratio: 1 / 1;
862
+ margin-bottom: 8vh;
863
+ }
864
+ .hero--showcase .hero__floating-image {
865
+ max-width: 200px;
866
+ }
867
+ }
868
+ @media (min-width: 1280px) {
869
+ .hero--showcase .hero__product-image {
870
+ width: auto;
871
+ max-width: none;
872
+ height: 50vh;
873
+ max-height: none;
874
+ aspect-ratio: 1 / 1;
875
+ }
876
+ .hero--showcase .hero__floating-image {
877
+ max-width: 220px;
878
+ }
879
+ }
880
+
881
+ /* templates/Stats/Stats.css */
882
+ :root {
883
+ --stats-bg: var(--color-slate-50);
884
+ --stats-card-bg: var(--color-slate-75);
885
+ --stats-text-primary: var(--text-primary);
886
+ --stats-title-size: var(--typography-h2-font-size);
887
+ --stats-title-lh: var(--typography-h2-line-height);
888
+ --stats-desc-size: var(--typography-body-md-font-size);
889
+ --stats-desc-lh: var(--typography-body-md-line-height);
890
+ --stats-value-size: var(--font-size-3xl);
891
+ --stats-value-lh: var(--line-height-3xl);
892
+ --stats-value-featured-size: var(--font-size-5xl);
893
+ --stats-value-featured-lh: var(--line-height-5xl);
894
+ --stats-label-size: var(--font-size-lg);
895
+ --stats-label-lh: var(--line-height-lg);
896
+ }
897
+ .stats {
898
+ width: 100%;
899
+ background-color: var(--stats-bg);
900
+ font-family: var(--font-family-base);
901
+ box-sizing: border-box;
902
+ }
903
+ .stats__inner {
904
+ max-width: var(--content-width-1280);
905
+ margin: 0 auto;
906
+ padding: var(--spacing-56) var(--spacing-16);
907
+ display: flex;
908
+ flex-direction: column;
909
+ gap: var(--spacing-24);
910
+ box-sizing: border-box;
911
+ }
912
+ .stats__header {
913
+ display: flex;
914
+ flex-direction: column;
915
+ gap: var(--spacing-16);
916
+ }
917
+ .stats__title {
918
+ font-size: var(--stats-title-size);
919
+ font-weight: var(--font-weight-extra-bold);
920
+ line-height: var(--stats-title-lh);
921
+ color: var(--stats-text-primary);
922
+ margin: 0;
923
+ }
924
+ .stats__description {
925
+ font-size: var(--stats-desc-size);
926
+ font-weight: var(--font-weight-regular);
927
+ line-height: var(--stats-desc-lh);
928
+ color: var(--stats-text-primary);
929
+ margin: 0;
930
+ }
931
+ .stats__content {
932
+ display: flex;
933
+ flex-direction: column;
934
+ align-items: center;
935
+ gap: var(--spacing-32);
936
+ width: 100%;
937
+ }
938
+ .stats__card {
939
+ background-color: var(--stats-card-bg);
940
+ border-radius: var(--radius-2xl);
941
+ padding: var(--spacing-24);
942
+ width: 100%;
943
+ overflow: hidden;
944
+ position: relative;
945
+ box-sizing: border-box;
946
+ display: flex;
947
+ align-items: center;
948
+ justify-content: center;
949
+ }
950
+ .stats__card-track {
951
+ position: relative;
952
+ width: 100%;
953
+ height: 320px;
954
+ overflow: visible;
955
+ }
956
+ .stats__stat {
957
+ position: absolute;
958
+ top: 50%;
959
+ left: 0;
960
+ right: 0;
961
+ display: flex;
962
+ flex-direction: column;
963
+ align-items: center;
964
+ text-align: center;
965
+ will-change: transform, opacity;
966
+ transform: translateY(-50%) scale(1);
967
+ opacity: 1;
968
+ }
969
+ .stats__stat-value {
970
+ display: block;
971
+ font-family: var(--font-family-base);
972
+ font-size: var(--stats-value-size);
973
+ font-weight: var(--font-weight-extra-bold);
974
+ line-height: var(--stats-value-lh);
975
+ text-transform: uppercase;
976
+ color: var(--stats-text-primary);
977
+ }
978
+ .stats__stat-label {
979
+ display: block;
980
+ font-family: var(--font-family-base);
981
+ font-size: var(--stats-label-size);
982
+ font-weight: var(--font-weight-regular);
983
+ line-height: var(--stats-label-lh);
984
+ color: var(--stats-text-primary);
985
+ }
986
+ .stats__stat--active .stats__stat-value {
987
+ font-size: var(--stats-value-featured-size);
988
+ line-height: var(--stats-value-featured-lh);
989
+ font-weight: var(--font-weight-extra-bold);
990
+ }
991
+ .stats__stat--inactive .stats__stat-value {
992
+ font-size: var(--stats-value-size);
993
+ line-height: var(--stats-value-lh);
994
+ font-weight: var(--font-weight-extra-bold);
995
+ color: var(--color-slate-400);
996
+ }
997
+ .stats__stat--inactive .stats__stat-label {
998
+ color: var(--color-slate-400);
999
+ }
1000
+ .stats__fade {
1001
+ position: absolute;
1002
+ left: 0;
1003
+ right: 0;
1004
+ height: 100px;
1005
+ pointer-events: none;
1006
+ z-index: 3;
1007
+ }
1008
+ .stats__fade--top {
1009
+ top: 0;
1010
+ background:
1011
+ linear-gradient(
1012
+ 180deg,
1013
+ var(--stats-card-bg) 0%,
1014
+ rgba(246, 247, 248, 0) 100%);
1015
+ }
1016
+ .stats__fade--bottom {
1017
+ bottom: 0;
1018
+ background:
1019
+ linear-gradient(
1020
+ 0deg,
1021
+ var(--stats-card-bg) 0%,
1022
+ rgba(246, 247, 248, 0) 100%);
1023
+ }
1024
+ .stats__award {
1025
+ display: flex;
1026
+ align-items: center;
1027
+ justify-content: center;
1028
+ }
1029
+ .stats__award-image {
1030
+ display: block;
1031
+ width: 100px;
1032
+ height: 100px;
1033
+ object-fit: contain;
1034
+ object-position: center;
1035
+ }
1036
+ .stats__awards-col {
1037
+ display: none;
1038
+ }
1039
+ .stats__awards-mobile {
1040
+ display: grid;
1041
+ grid-template-columns: 1fr 1fr;
1042
+ gap: var(--spacing-16);
1043
+ width: 100%;
1044
+ }
1045
+ @media (min-width: 768px) {
1046
+ .stats__header {
1047
+ align-items: center;
1048
+ text-align: center;
1049
+ }
1050
+ .stats__inner {
1051
+ gap: var(--spacing-48);
1052
+ }
1053
+ }
1054
+ @media (min-width: 992px) {
1055
+ .stats__inner {
1056
+ padding: var(--spacing-112) var(--spacing-24);
1057
+ gap: var(--spacing-80);
1058
+ }
1059
+ .stats__header {
1060
+ max-width: var(--content-width-846);
1061
+ margin-left: auto;
1062
+ margin-right: auto;
1063
+ }
1064
+ .stats__content {
1065
+ flex-direction: row;
1066
+ align-items: stretch;
1067
+ justify-content: center;
1068
+ gap: var(--spacing-24);
1069
+ }
1070
+ .stats__card {
1071
+ width: 414px;
1072
+ height: 414px;
1073
+ padding: var(--spacing-72);
1074
+ flex-shrink: 0;
1075
+ }
1076
+ .stats__card-track {
1077
+ height: 270px;
1078
+ }
1079
+ .stats__fade {
1080
+ height: 65px;
1081
+ }
1082
+ .stats__awards-col {
1083
+ display: flex;
1084
+ flex-direction: column;
1085
+ gap: var(--spacing-32);
1086
+ width: 196px;
1087
+ flex-shrink: 0;
1088
+ align-items: center;
1089
+ }
1090
+ .stats__awards-col--left,
1091
+ .stats__awards-col--right {
1092
+ justify-content: center;
1093
+ }
1094
+ .stats__awards-col .stats__award-image {
1095
+ width: 140px;
1096
+ height: 140px;
1097
+ }
1098
+ .stats__awards-mobile {
1099
+ display: none;
1100
+ }
1101
+ }
1102
+
1103
+ /* templates/FeatureScroll/FeatureScroll.css */
1104
+ :root {
1105
+ --fs-bg: var(--color-slate-50);
1106
+ --fs-text-primary: var(--text-primary);
1107
+ --fs-text-muted: var(--color-slate-500);
1108
+ --fs-link-color: var(--color-coral-700);
1109
+ --fs-link-hover: var(--color-coral-800);
1110
+ --fs-media-bg: transparent;
1111
+ --fs-font-family: var(--font-family-base);
1112
+ --fs-header-family: var(--typography-h2-font-family);
1113
+ --fs-header-size: var(--typography-h2-font-size);
1114
+ --fs-header-weight: var(--typography-h2-font-weight);
1115
+ --fs-header-lh: var(--typography-h2-line-height);
1116
+ --fs-title-family: var(--typography-h3-font-family);
1117
+ --fs-title-size: var(--typography-h3-font-size);
1118
+ --fs-title-weight: var(--typography-h3-font-weight);
1119
+ --fs-title-lh: var(--typography-h3-line-height);
1120
+ --fs-body-family: var(--typography-body-md-font-family);
1121
+ --fs-body-size: var(--typography-body-md-font-size);
1122
+ --fs-body-weight: var(--typography-body-md-font-weight);
1123
+ --fs-body-lh: var(--typography-body-md-line-height);
1124
+ --fs-link-family: var(--typography-link-md-font-family);
1125
+ --fs-link-size: var(--typography-link-md-font-size);
1126
+ --fs-link-weight: var(--typography-link-md-font-weight);
1127
+ --fs-link-lh: var(--typography-link-md-line-height);
1128
+ --fs-col-gap: var(--spacing-112);
1129
+ --fs-media-radius: var(--radius-2xl);
1130
+ --fs-mobile-radius: var(--radius-2xl);
1131
+ --fs-sticky-top: var(--spacing-80);
1132
+ }
1133
+ .fs {
1134
+ width: 100%;
1135
+ background-color: var(--fs-bg);
1136
+ font-family: var(--fs-font-family);
1137
+ box-sizing: border-box;
1138
+ }
1139
+ .fs__inner {
1140
+ max-width: var(--content-width-1280);
1141
+ margin: 0 auto;
1142
+ padding: var(--spacing-56) var(--spacing-16);
1143
+ display: flex;
1144
+ flex-direction: column;
1145
+ gap: var(--spacing-32);
1146
+ box-sizing: border-box;
1147
+ }
1148
+ .fs__header {
1149
+ font-family: var(--fs-header-family);
1150
+ font-size: var(--fs-header-size);
1151
+ font-weight: var(--fs-header-weight);
1152
+ line-height: var(--fs-header-lh);
1153
+ color: var(--fs-text-primary);
1154
+ margin: 0;
1155
+ }
1156
+ .fs__layout {
1157
+ display: none;
1158
+ }
1159
+ .fs__mobile-list {
1160
+ display: flex;
1161
+ flex-direction: column;
1162
+ gap: var(--spacing-48);
1163
+ }
1164
+ .fs__mobile-item {
1165
+ display: flex;
1166
+ flex-direction: column;
1167
+ gap: var(--spacing-16);
1168
+ }
1169
+ .fs__mobile-media {
1170
+ width: 100%;
1171
+ aspect-ratio: 1 / 1;
1172
+ border-radius: var(--fs-mobile-radius);
1173
+ background-color: var(--fs-media-bg);
1174
+ overflow: hidden;
1175
+ display: flex;
1176
+ align-items: center;
1177
+ justify-content: center;
1178
+ }
1179
+ .fs__mobile-media img,
1180
+ .fs__mobile-media > * {
1181
+ width: 100%;
1182
+ height: 100%;
1183
+ object-fit: cover;
1184
+ object-position: center;
1185
+ display: block;
1186
+ }
1187
+ .fs__item-title {
1188
+ font-family: var(--fs-title-family);
1189
+ font-size: var(--fs-title-size);
1190
+ font-weight: var(--fs-title-weight);
1191
+ line-height: var(--fs-title-lh);
1192
+ color: var(--fs-text-primary);
1193
+ margin: 0;
1194
+ }
1195
+ .fs__item-desc {
1196
+ font-family: var(--fs-body-family);
1197
+ font-size: var(--fs-body-size);
1198
+ font-weight: var(--fs-body-weight);
1199
+ line-height: var(--fs-body-lh);
1200
+ color: var(--fs-text-muted);
1201
+ margin: 0;
1202
+ }
1203
+ .fs__item-link {
1204
+ display: inline-flex;
1205
+ align-items: center;
1206
+ gap: var(--spacing-8);
1207
+ font-family: var(--fs-link-family);
1208
+ font-size: var(--fs-link-size);
1209
+ font-weight: var(--fs-link-weight);
1210
+ line-height: var(--fs-link-lh);
1211
+ color: var(--fs-link-color);
1212
+ text-decoration: none;
1213
+ transition: color 0.2s ease;
1214
+ cursor: pointer;
1215
+ }
1216
+ .fs__item-link:hover {
1217
+ color: var(--fs-link-hover);
1218
+ }
1219
+ .fs__item-link-icon {
1220
+ display: inline-flex;
1221
+ align-items: center;
1222
+ flex-shrink: 0;
1223
+ transition: transform 0.2s ease;
1224
+ }
1225
+ .fs__item-link:hover .fs__item-link-icon {
1226
+ transform: translateX(var(--spacing-4));
1227
+ }
1228
+ @media (min-width: 768px) {
1229
+ .fs__inner {
1230
+ padding: var(--spacing-56) var(--spacing-24);
1231
+ gap: var(--spacing-40);
1232
+ }
1233
+ }
1234
+ @media (min-width: 992px) {
1235
+ .fs__header {
1236
+ text-align: center;
1237
+ }
1238
+ .fs__inner {
1239
+ padding: var(--spacing-112) var(--spacing-24);
1240
+ gap: var(--spacing-56);
1241
+ }
1242
+ .fs__layout {
1243
+ display: flex;
1244
+ flex-direction: row;
1245
+ gap: var(--fs-col-gap);
1246
+ align-items: flex-start;
1247
+ width: 100%;
1248
+ --fs-step-band: calc(100svh - var(--fs-sticky-top));
1249
+ }
1250
+ .fs__mobile-list {
1251
+ display: none;
1252
+ }
1253
+ .fs--media-left .fs__layout {
1254
+ flex-direction: row-reverse;
1255
+ }
1256
+ .fs__media-col {
1257
+ flex: 1 0 0;
1258
+ min-width: 0;
1259
+ align-self: stretch;
1260
+ display: flex;
1261
+ flex-direction: column;
1262
+ box-sizing: border-box;
1263
+ }
1264
+ .fs__media-sticky {
1265
+ flex: 0 0 auto;
1266
+ width: 100%;
1267
+ position: sticky;
1268
+ top: var(--fs-sticky-top);
1269
+ display: flex;
1270
+ flex-direction: column;
1271
+ justify-content: center;
1272
+ align-items: stretch;
1273
+ min-height: var(--fs-step-band);
1274
+ box-sizing: border-box;
1275
+ }
1276
+ .fs__media-wrap {
1277
+ width: 100%;
1278
+ aspect-ratio: 1 / 1;
1279
+ position: relative;
1280
+ border-radius: var(--fs-media-radius);
1281
+ background-color: var(--fs-media-bg);
1282
+ overflow: hidden;
1283
+ }
1284
+ .fs__media-item {
1285
+ position: absolute;
1286
+ inset: 0;
1287
+ opacity: 0;
1288
+ transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1);
1289
+ will-change: opacity;
1290
+ display: flex;
1291
+ align-items: center;
1292
+ justify-content: center;
1293
+ }
1294
+ .fs__media-item--active {
1295
+ opacity: 1;
1296
+ }
1297
+ .fs__media-item img {
1298
+ width: 100%;
1299
+ height: 100%;
1300
+ object-fit: cover;
1301
+ object-position: center;
1302
+ display: block;
1303
+ }
1304
+ .fs__media-item > * {
1305
+ width: 100% !important;
1306
+ height: 100% !important;
1307
+ }
1308
+ .fs__content-col {
1309
+ flex: 1 0 0;
1310
+ min-width: 0;
1311
+ display: flex;
1312
+ flex-direction: column;
1313
+ gap: 0;
1314
+ }
1315
+ .fs__item {
1316
+ display: flex;
1317
+ flex-direction: column;
1318
+ justify-content: center;
1319
+ flex-shrink: 0;
1320
+ margin: 0;
1321
+ min-height: var(--fs-step-band);
1322
+ gap: var(--spacing-24);
1323
+ padding-left: var(--spacing-32);
1324
+ box-sizing: border-box;
1325
+ }
1326
+ }
1327
+
1328
+ /* templates/StickyStackedCards/StickyStackedCards.css */
1329
+ :root {
1330
+ --ssc-bg: var(--color-slate-50);
1331
+ --ssc-font-family: var(--font-family-base);
1332
+ --ssc-header-color: var(--text-primary);
1333
+ --ssc-card-light-bg: var(--color-slate-75);
1334
+ --ssc-card-light-text: var(--color-slate-1200);
1335
+ --ssc-card-coral-bg: var(--color-coral-700);
1336
+ --ssc-card-coral-text: var(--color-slate-50);
1337
+ --ssc-card-dark-bg: var(--color-slate-1200);
1338
+ --ssc-card-dark-text: var(--color-slate-50);
1339
+ --ssc-header-size: var(--typography-h2-font-size);
1340
+ --ssc-header-lh: var(--typography-h2-line-height);
1341
+ --ssc-header-weight: var(--typography-h2-font-weight);
1342
+ --ssc-title-size: var(--typography-h3-font-size);
1343
+ --ssc-title-lh: var(--typography-h3-line-height);
1344
+ --ssc-title-weight: var(--typography-h3-font-weight);
1345
+ --ssc-body-size: var(--typography-body-md-font-size);
1346
+ --ssc-body-lh: var(--typography-body-md-line-height);
1347
+ --ssc-body-weight: var(--typography-body-md-font-weight);
1348
+ --ssc-card-radius: var(--radius-2xl);
1349
+ --ssc-content-gap: var(--spacing-24);
1350
+ --ssc-sticky-top: var(--spacing-80);
1351
+ --ssc-peek-offset: var(--spacing-16);
1352
+ --ssc-card-min-height: 60vh;
1353
+ --ssc-img-height-mobile: 21rem;
1354
+ }
1355
+ .ssc {
1356
+ width: 100%;
1357
+ background-color: var(--ssc-bg);
1358
+ font-family: var(--ssc-font-family);
1359
+ box-sizing: border-box;
1360
+ }
1361
+ .ssc__inner {
1362
+ max-width: var(--content-width-1280);
1363
+ margin: 0 auto;
1364
+ padding: var(--spacing-56) var(--spacing-16);
1365
+ display: flex;
1366
+ flex-direction: column;
1367
+ gap: var(--spacing-48);
1368
+ box-sizing: border-box;
1369
+ }
1370
+ .ssc__header {
1371
+ font-size: var(--ssc-header-size);
1372
+ font-weight: var(--ssc-header-weight);
1373
+ line-height: var(--ssc-header-lh);
1374
+ color: var(--ssc-header-color);
1375
+ margin: 0;
1376
+ }
1377
+ .ssc__track {
1378
+ display: block;
1379
+ padding-bottom: var(--ssc-img-height-mobile);
1380
+ }
1381
+ .ssc__card {
1382
+ border-radius: var(--ssc-card-radius);
1383
+ overflow: hidden;
1384
+ display: flex;
1385
+ flex-direction: column;
1386
+ box-sizing: border-box;
1387
+ width: 100%;
1388
+ margin-bottom: var(--ssc-peek-offset);
1389
+ position: sticky;
1390
+ transform: scale(var(--card-scale, 1));
1391
+ transform-origin: top center;
1392
+ will-change: transform;
1393
+ transition: transform 0.12s ease-out;
1394
+ }
1395
+ .ssc__card:last-child {
1396
+ margin-bottom: 0;
1397
+ }
1398
+ .ssc__card--light {
1399
+ background-color: var(--ssc-card-light-bg);
1400
+ color: var(--ssc-card-light-text);
1401
+ }
1402
+ .ssc__card--coral {
1403
+ background-color: var(--ssc-card-coral-bg);
1404
+ color: var(--ssc-card-coral-text);
1405
+ }
1406
+ .ssc__card--dark {
1407
+ background-color: var(--ssc-card-dark-bg);
1408
+ color: var(--ssc-card-dark-text);
1409
+ }
1410
+ .ssc__card-content {
1411
+ display: flex;
1412
+ flex-direction: column;
1413
+ gap: var(--ssc-content-gap);
1414
+ padding: var(--spacing-32);
1415
+ }
1416
+ .ssc__card-title {
1417
+ font-size: var(--ssc-title-size);
1418
+ font-weight: var(--ssc-title-weight);
1419
+ line-height: var(--ssc-title-lh);
1420
+ color: inherit;
1421
+ margin: 0;
1422
+ }
1423
+ .ssc__card-desc {
1424
+ font-size: var(--ssc-body-size);
1425
+ font-weight: var(--ssc-body-weight);
1426
+ line-height: var(--ssc-body-lh);
1427
+ color: inherit;
1428
+ margin: 0;
1429
+ }
1430
+ .ssc__card-image {
1431
+ position: relative;
1432
+ height: var(--ssc-img-height-mobile);
1433
+ flex-shrink: 0;
1434
+ overflow: hidden;
1435
+ background-color: transparent;
1436
+ }
1437
+ .ssc__card-image img {
1438
+ position: absolute;
1439
+ inset: 0;
1440
+ width: 100%;
1441
+ height: 100%;
1442
+ object-fit: cover;
1443
+ object-position: center;
1444
+ display: block;
1445
+ }
1446
+ @media (min-width: 768px) {
1447
+ .ssc__inner {
1448
+ padding: var(--spacing-56) var(--spacing-24);
1449
+ gap: var(--spacing-64);
1450
+ }
1451
+ .ssc__header {
1452
+ text-align: center;
1453
+ }
1454
+ }
1455
+ @media (min-width: 992px) {
1456
+ .ssc__inner {
1457
+ padding: var(--spacing-112) var(--spacing-24);
1458
+ gap: var(--spacing-80);
1459
+ }
1460
+ .ssc__track {
1461
+ padding-bottom: var(--ssc-card-min-height);
1462
+ }
1463
+ .ssc__card {
1464
+ display: grid;
1465
+ grid-template-columns: 1fr 1fr;
1466
+ grid-template-rows: 1fr;
1467
+ min-height: var(--ssc-card-min-height);
1468
+ }
1469
+ .ssc__card-content {
1470
+ padding: var(--spacing-32);
1471
+ justify-content: flex-start;
1472
+ align-self: stretch;
1473
+ }
1474
+ .ssc__card-image {
1475
+ height: auto;
1476
+ min-height: 100%;
1477
+ align-self: stretch;
1478
+ }
1479
+ }
1480
+
1481
+ /* templates/CTABanner/CTABanner.css */
1482
+ :root {
1483
+ --ctab-max-width: var(--content-width-1280);
1484
+ --ctab-stage-height: calc(11 * var(--ctab-grid-cell));
1485
+ --ctab-hero-max-width: 90%;
1486
+ --ctab-avatar-radius: var(--radius-xl);
1487
+ --ctab-grid-cell: calc(100vw / 5);
1488
+ --ctab-avatar-size: var(--ctab-grid-cell);
1489
+ --ctab-section-min-height: var(--ctab-stage-height);
1490
+ }
1491
+ @media (min-width: 480px) and (max-width: 767px) {
1492
+ :root {
1493
+ --ctab-hero-max-width: 80%;
1494
+ --ctab-grid-cell: calc(100vw / 7);
1495
+ }
1496
+ }
1497
+ @media (min-width: 768px) and (max-width: 991px) {
1498
+ :root {
1499
+ --ctab-stage-height: 48rem;
1500
+ --ctab-hero-max-width: 70%;
1501
+ --ctab-avatar-radius: var(--radius-2xl);
1502
+ --ctab-grid-cell: calc(100vw / 11);
1503
+ --ctab-section-min-height: var(--ctab-stage-height);
1504
+ }
1505
+ }
1506
+ @media (min-width: 992px) {
1507
+ :root {
1508
+ --ctab-stage-height: 42.5rem;
1509
+ --ctab-hero-max-width: var(--content-width-846);
1510
+ --ctab-avatar-radius: var(--radius-2xl);
1511
+ --ctab-grid-cell: 6rem;
1512
+ --ctab-avatar-size: 6rem;
1513
+ --ctab-section-min-height: 42.5rem;
1514
+ }
1515
+ .ctab:not(.ctab--compact) {
1516
+ --ctab-stage-height: 54rem;
1517
+ --ctab-section-min-height: 54rem;
1518
+ }
1519
+ }
1520
+ .ctab {
1521
+ position: relative;
1522
+ width: 100%;
1523
+ min-height: var(--ctab-section-min-height);
1524
+ background-color: var(--color-coral-700);
1525
+ font-family: var(--font-family-base);
1526
+ box-sizing: border-box;
1527
+ overflow: hidden;
1528
+ }
1529
+ .ctab__grid {
1530
+ position: absolute;
1531
+ inset: 0;
1532
+ pointer-events: none;
1533
+ -webkit-mask-image:
1534
+ linear-gradient(
1535
+ to right,
1536
+ transparent 0%,
1537
+ black 20%,
1538
+ black 80%,
1539
+ transparent 100%),
1540
+ linear-gradient(
1541
+ to bottom,
1542
+ transparent 0%,
1543
+ black 20%,
1544
+ black 80%,
1545
+ transparent 100%);
1546
+ -webkit-mask-composite: destination-in;
1547
+ mask-image:
1548
+ linear-gradient(
1549
+ to right,
1550
+ transparent 0%,
1551
+ black 20%,
1552
+ black 80%,
1553
+ transparent 100%),
1554
+ linear-gradient(
1555
+ to bottom,
1556
+ transparent 0%,
1557
+ black 20%,
1558
+ black 80%,
1559
+ transparent 100%);
1560
+ mask-composite: intersect;
1561
+ background-image:
1562
+ repeating-linear-gradient(
1563
+ to right,
1564
+ transparent 0,
1565
+ transparent calc(var(--ctab-grid-cell) - 1px),
1566
+ var(--color-opacity-white-16) calc(var(--ctab-grid-cell) - 1px),
1567
+ var(--color-opacity-white-16) var(--ctab-grid-cell)),
1568
+ repeating-linear-gradient(
1569
+ to bottom,
1570
+ transparent 0,
1571
+ transparent calc(var(--ctab-grid-cell) - 1px),
1572
+ var(--color-opacity-white-16) calc(var(--ctab-grid-cell) - 1px),
1573
+ var(--color-opacity-white-16) var(--ctab-grid-cell));
1574
+ background-position: 0px calc(1px - var(--ctab-grid-cell));
1575
+ }
1576
+ @media (min-width: 992px) {
1577
+ .ctab__grid {
1578
+ background-position: max(0px, calc((100vw - var(--ctab-max-width)) / 2)) calc(1px - var(--ctab-grid-cell));
1579
+ }
1580
+ }
1581
+ .ctab__inner {
1582
+ position: relative;
1583
+ z-index: 1;
1584
+ display: flex;
1585
+ align-items: center;
1586
+ justify-content: center;
1587
+ min-height: var(--ctab-section-min-height);
1588
+ max-width: var(--ctab-max-width);
1589
+ margin: 0 auto;
1590
+ padding: 0 var(--spacing-24);
1591
+ box-sizing: border-box;
1592
+ }
1593
+ @media (min-width: 992px) {
1594
+ .ctab__inner {
1595
+ padding: 0;
1596
+ }
1597
+ }
1598
+ .ctab__stage {
1599
+ position: relative;
1600
+ width: 100%;
1601
+ height: var(--ctab-stage-height);
1602
+ display: flex;
1603
+ align-items: center;
1604
+ justify-content: center;
1605
+ }
1606
+ .ctab__hero {
1607
+ position: relative;
1608
+ z-index: 2;
1609
+ display: flex;
1610
+ flex-direction: column;
1611
+ align-items: center;
1612
+ gap: var(--spacing-16);
1613
+ width: var(--ctab-hero-max-width);
1614
+ max-width: 100%;
1615
+ text-align: center;
1616
+ padding: var(--spacing-48) 0;
1617
+ }
1618
+ .ctab__headline {
1619
+ margin: 0;
1620
+ font-family: var(--typography-h1-font-family);
1621
+ font-size: var(--typography-h1-font-size);
1622
+ font-weight: var(--typography-h1-font-weight);
1623
+ line-height: var(--typography-h1-line-height);
1624
+ color: var(--color-slate-50);
1625
+ }
1626
+ .ctab__avatar {
1627
+ position: absolute;
1628
+ width: var(--ctab-avatar-size);
1629
+ height: var(--ctab-avatar-size);
1630
+ border-radius: var(--ctab-avatar-radius);
1631
+ overflow: hidden;
1632
+ box-shadow: var(--shadow-md);
1633
+ flex-shrink: 0;
1634
+ left: var(--av-d-left, auto);
1635
+ right: var(--av-d-right, auto);
1636
+ top: var(--av-d-top, auto);
1637
+ }
1638
+ .ctab__avatar img {
1639
+ width: 100%;
1640
+ height: 100%;
1641
+ object-fit: cover;
1642
+ object-position: center;
1643
+ display: block;
1644
+ border-radius: var(--ctab-avatar-radius);
1645
+ }
1646
+ @media (max-width: 991px) {
1647
+ .ctab__avatar {
1648
+ left: var(--av-m-left, auto);
1649
+ right: var(--av-m-right, auto);
1650
+ top: var(--av-m-top, auto);
1651
+ }
1652
+ .ctab__avatar--desktop-only {
1653
+ display: none;
1654
+ }
1655
+ }
1656
+
1657
+ /* templates/DayNightTransition/DayNightTransition.css */
1658
+ :root {
1659
+ --dnt-text-day: var(--color-slate-1400);
1660
+ --dnt-text-night: var(--color-slate-50);
1661
+ --dnt-btn-bg: var(--color-coral-700);
1662
+ --dnt-btn-bg-hover: var(--color-coral-800);
1663
+ --dnt-btn-text: var(--color-slate-50);
1664
+ --dnt-btn-radius: var(--radius-full);
1665
+ --dnt-btn-px: var(--spacing-24);
1666
+ --dnt-btn-py: var(--spacing-16);
1667
+ --dnt-btn-size: var(--font-size-md);
1668
+ --dnt-btn-lh: var(--line-height-xs);
1669
+ --dnt-btn-weight: var(--font-weight-extra-bold);
1670
+ --dnt-wrapper-height: 250vh;
1671
+ --dnt-text-max-width: 37.5rem;
1672
+ --dnt-content-py: var(--spacing-56);
1673
+ --dnt-content-px: var(--spacing-16);
1674
+ --dnt-desc-size: var(--typography-body-md-font-size);
1675
+ --dnt-desc-lh: var(--typography-body-md-line-height);
1676
+ --dnt-desc-weight: var(--typography-body-md-font-weight);
1677
+ --dnt-gap: var(--spacing-16);
1678
+ }
1679
+ @media (min-width: 992px) {
1680
+ :root {
1681
+ --dnt-content-py: var(--spacing-112);
1682
+ --dnt-content-px: var(--spacing-24);
1683
+ }
1684
+ }
1685
+ .dnt {
1686
+ position: relative;
1687
+ height: var(--dnt-wrapper-height);
1688
+ width: 100%;
1689
+ font-family: var(--font-family-base);
1690
+ }
1691
+ .dnt--webflow-v2 {
1692
+ --dnt-wrapper-height: 200vh;
1693
+ }
1694
+ .dnt__sticky {
1695
+ position: sticky;
1696
+ top: 0;
1697
+ height: 100vh;
1698
+ width: 100%;
1699
+ overflow: hidden;
1700
+ }
1701
+ .dnt__bg {
1702
+ position: absolute;
1703
+ inset: 0;
1704
+ width: 100%;
1705
+ height: 100%;
1706
+ object-fit: cover;
1707
+ object-position: bottom;
1708
+ display: block;
1709
+ pointer-events: none;
1710
+ }
1711
+ .dnt__bg--day {
1712
+ z-index: 0;
1713
+ }
1714
+ .dnt__bg--night {
1715
+ z-index: 1;
1716
+ }
1717
+ .dnt__v2-background-wrapper {
1718
+ z-index: -1;
1719
+ width: 100%;
1720
+ height: 100%;
1721
+ position: absolute;
1722
+ inset: 0;
1723
+ pointer-events: none;
1724
+ }
1725
+ .dnt__v2-bg-day {
1726
+ z-index: 1;
1727
+ opacity: 1;
1728
+ width: 100%;
1729
+ box-sizing: border-box;
1730
+ position: relative;
1731
+ top: 0;
1732
+ left: 0;
1733
+ right: 0;
1734
+ background-repeat: no-repeat;
1735
+ background-size: cover;
1736
+ background-position: 100% 100%;
1737
+ overflow: hidden;
1738
+ }
1739
+ .dnt__v2-bg-night {
1740
+ z-index: 0;
1741
+ width: 100%;
1742
+ height: 100vh;
1743
+ margin-top: -100vh;
1744
+ position: sticky;
1745
+ top: 0;
1746
+ left: 0;
1747
+ right: 0;
1748
+ box-sizing: border-box;
1749
+ background-repeat: no-repeat;
1750
+ background-size: cover;
1751
+ background-position: 100% 100%;
1752
+ }
1753
+ .dnt--webflow-v2 .dnt__v2-bg-day,
1754
+ .dnt--webflow-v2 .dnt__v2-bg-night {
1755
+ background-attachment: fixed;
1756
+ }
1757
+ .dnt__sticky--webflow-v2 {
1758
+ z-index: 0;
1759
+ }
1760
+ .dnt--webflow-v2 .dnt__sticky--webflow-v2 {
1761
+ height: 100dvh;
1762
+ min-height: 100vh;
1763
+ }
1764
+ @media screen and (max-width: 991px) {
1765
+ .dnt--webflow-v2 .dnt__v2-bg-day {
1766
+ position: sticky;
1767
+ top: 0;
1768
+ background-position: 30% 0;
1769
+ background-repeat: repeat;
1770
+ background-size: auto 100vh;
1771
+ }
1772
+ .dnt--webflow-v2 .dnt__v2-bg-night {
1773
+ background-position: 30% 0;
1774
+ background-repeat: repeat;
1775
+ background-size: auto 100vh;
1776
+ }
1777
+ .dnt--webflow-v2 .dnt__sticky--webflow-v2 .dnt__content {
1778
+ flex-flow: column nowrap;
1779
+ justify-content: flex-start;
1780
+ align-items: flex-start;
1781
+ padding: var(--spacing-112) var(--dnt-content-px) var(--dnt-content-py) var(--dnt-content-px);
1782
+ }
1783
+ .dnt--webflow-v2 .dnt__text-wrap {
1784
+ max-width: 100%;
1785
+ width: 100%;
1786
+ }
1787
+ .dnt--webflow-v2 .dnt__headline--inline-day-night {
1788
+ width: 60%;
1789
+ }
1790
+ }
1791
+ @media screen and (max-width: 767px) {
1792
+ .dnt--webflow-v2 .dnt__headline--inline-day-night {
1793
+ width: 80%;
1794
+ }
1795
+ }
1796
+ @media screen and (max-width: 479px) {
1797
+ .dnt--webflow-v2 .dnt__v2-bg-day {
1798
+ background-position: 40% 0;
1799
+ }
1800
+ .dnt--webflow-v2 .dnt__v2-bg-night {
1801
+ background-position: 40% 0;
1802
+ }
1803
+ .dnt--webflow-v2 .dnt__sticky--webflow-v2 .dnt__content {
1804
+ padding: var(--spacing-80) var(--dnt-content-px) var(--dnt-content-py) var(--dnt-content-px);
1805
+ }
1806
+ .dnt--layout-v2 .dnt__inner {
1807
+ padding-left: var(--spacing-16);
1808
+ padding-right: var(--spacing-16);
1809
+ }
1810
+ .dnt--webflow-v2.dnt--headline-h1 .dnt__headline {
1811
+ font-size: 3.5rem;
1812
+ line-height: 4rem;
1813
+ }
1814
+ .dnt--webflow-v2 .dnt__description {
1815
+ margin-top: 0;
1816
+ }
1817
+ }
1818
+ .dnt__content {
1819
+ position: relative;
1820
+ z-index: 2;
1821
+ display: flex;
1822
+ align-items: flex-start;
1823
+ height: 100%;
1824
+ padding: var(--dnt-content-py) var(--dnt-content-px);
1825
+ box-sizing: border-box;
1826
+ }
1827
+ @media (min-width: 992px) {
1828
+ .dnt__content {
1829
+ align-items: center;
1830
+ }
1831
+ }
1832
+ .dnt__inner {
1833
+ width: 100%;
1834
+ max-width: var(--content-width-1280);
1835
+ margin: 0 auto;
1836
+ box-sizing: border-box;
1837
+ }
1838
+ .dnt--layout-v2 .dnt__inner {
1839
+ max-width: 83rem;
1840
+ }
1841
+ .dnt__text-wrap {
1842
+ display: flex;
1843
+ flex-direction: column;
1844
+ gap: var(--dnt-gap);
1845
+ max-width: var(--dnt-text-max-width);
1846
+ }
1847
+ .dnt__crossfade-wrap {
1848
+ display: grid;
1849
+ grid-template-areas: "stack";
1850
+ }
1851
+ .dnt__crossfade-wrap > * {
1852
+ grid-area: stack;
1853
+ }
1854
+ .dnt__headline {
1855
+ margin: 0;
1856
+ font-family: var(--typography-h2-font-family);
1857
+ font-size: var(--typography-h2-font-size);
1858
+ font-weight: var(--typography-h2-font-weight);
1859
+ line-height: var(--typography-h2-line-height);
1860
+ }
1861
+ .dnt__headline--inline-day-night {
1862
+ display: block;
1863
+ }
1864
+ .dnt__headline-prefix {
1865
+ white-space: pre;
1866
+ }
1867
+ .dnt__headline-pair {
1868
+ display: inline-block;
1869
+ position: relative;
1870
+ vertical-align: bottom;
1871
+ }
1872
+ .dnt__headline-wday,
1873
+ .dnt__headline-wnight {
1874
+ display: inline-block;
1875
+ }
1876
+ .dnt__headline-wnight {
1877
+ vertical-align: bottom;
1878
+ }
1879
+ .dnt--headline-h1 .dnt__headline {
1880
+ font-family: var(--typography-h1-font-family);
1881
+ font-size: var(--typography-h1-font-size);
1882
+ font-weight: var(--typography-h1-font-weight);
1883
+ line-height: var(--typography-h1-line-height);
1884
+ }
1885
+ .dnt__description {
1886
+ margin: 0;
1887
+ font-family: var(--font-family-base);
1888
+ font-size: var(--dnt-desc-size);
1889
+ font-weight: var(--dnt-desc-weight);
1890
+ line-height: var(--dnt-desc-lh);
1891
+ }
1892
+ .dnt--desc-body-lg .dnt__description {
1893
+ font-family: var(--typography-body-lg-font-family);
1894
+ font-size: var(--typography-body-lg-font-size);
1895
+ font-weight: var(--typography-body-lg-font-weight);
1896
+ line-height: var(--typography-body-lg-line-height);
1897
+ }
1898
+ .dnt__btn {
1899
+ display: inline-flex;
1900
+ align-items: center;
1901
+ justify-content: center;
1902
+ align-self: flex-start;
1903
+ width: auto;
1904
+ padding: var(--dnt-btn-py) var(--dnt-btn-px);
1905
+ background-color: var(--dnt-btn-bg);
1906
+ color: var(--dnt-btn-text);
1907
+ border-radius: var(--dnt-btn-radius);
1908
+ font-family: var(--font-family-base);
1909
+ font-size: var(--dnt-btn-size);
1910
+ font-weight: var(--dnt-btn-weight);
1911
+ line-height: var(--dnt-btn-lh);
1912
+ text-decoration: none;
1913
+ cursor: pointer;
1914
+ border: none;
1915
+ transition: background-color 0.3s ease;
1916
+ white-space: nowrap;
1917
+ box-sizing: border-box;
1918
+ }
1919
+ .dnt__btn:hover {
1920
+ background-color: var(--dnt-btn-bg-hover);
1921
+ }
1922
+ @media screen and (max-width: 991px) {
1923
+ .dnt__btn {
1924
+ width: 100%;
1925
+ align-self: stretch;
1926
+ }
1927
+ }
1928
+
1929
+ /* templates/LogoMarquee/LogoMarquee.css */
1930
+ :root {
1931
+ --lm-bg: var(--color-slate-1200);
1932
+ --lm-section-py: var(--spacing-112);
1933
+ --lm-section-px: var(--spacing-24);
1934
+ --lm-section-height: 50rem;
1935
+ --lm-max-width: var(--content-width-1280);
1936
+ --lm-layout-gap: var(--spacing-112);
1937
+ --lm-card-bg: var(--color-slate-1000);
1938
+ --lm-card-radius: var(--radius-lg);
1939
+ --lm-card-radius-mobile: var(--radius-2xl);
1940
+ --lm-card-px: var(--spacing-16);
1941
+ --lm-card-py: var(--spacing-24);
1942
+ --lm-card-px-mobile: var(--spacing-12);
1943
+ --lm-card-py-mobile: var(--spacing-12);
1944
+ --lm-card-img-h: var(--spacing-112);
1945
+ --lm-card-img-h-mobile: 5.375rem;
1946
+ --lm-card-gap: var(--spacing-24);
1947
+ --lm-col-gap: var(--spacing-24);
1948
+ --lm-carousel-height: 39.375rem;
1949
+ --lm-carousel-height-mob: 20.5rem;
1950
+ --lm-fade-height: var(--spacing-64);
1951
+ --lm-headline-size: var(--typography-h2-font-size);
1952
+ --lm-headline-lh: var(--typography-h2-line-height);
1953
+ --lm-headline-color: var(--color-slate-50);
1954
+ --lm-headline-weight: var(--typography-h2-font-weight);
1955
+ --lm-body-size: var(--typography-body-md-font-size);
1956
+ --lm-body-lh: var(--typography-body-md-line-height);
1957
+ --lm-body-color: var(--color-slate-50);
1958
+ --lm-body-weight: var(--typography-body-md-font-weight);
1959
+ --lm-disc-size: var(--typography-body-sm-font-size);
1960
+ --lm-disc-lh: var(--typography-body-sm-line-height);
1961
+ --lm-disc-color: var(--color-slate-400);
1962
+ --lm-disc-weight: var(--typography-body-sm-font-weight);
1963
+ --lm-link-color: var(--color-coral-700);
1964
+ --lm-link-size: var(--typography-link-md-font-size);
1965
+ --lm-link-weight: var(--typography-link-md-font-weight);
1966
+ --lm-text-width: 32.625rem;
1967
+ --lm-section-py-mobile: var(--spacing-56);
1968
+ --lm-section-px-mobile: var(--spacing-16);
1969
+ }
1970
+ .lm {
1971
+ position: relative;
1972
+ width: 100%;
1973
+ background-color: var(--lm-bg);
1974
+ font-family: var(--font-family-base);
1975
+ box-sizing: border-box;
1976
+ }
1977
+ .lm__inner {
1978
+ display: flex;
1979
+ flex-direction: column;
1980
+ gap: var(--spacing-24);
1981
+ align-items: flex-start;
1982
+ max-width: var(--lm-max-width);
1983
+ margin: 0 auto;
1984
+ padding: var(--lm-section-py-mobile) var(--lm-section-px-mobile);
1985
+ box-sizing: border-box;
1986
+ }
1987
+ @media (min-width: 992px) {
1988
+ .lm__inner {
1989
+ flex-direction: row;
1990
+ align-items: center;
1991
+ justify-content: center;
1992
+ gap: var(--lm-layout-gap);
1993
+ padding: var(--lm-section-py) var(--lm-section-px);
1994
+ min-height: var(--lm-section-height);
1995
+ }
1996
+ }
1997
+ .lm__content {
1998
+ display: flex;
1999
+ flex-direction: column;
2000
+ gap: var(--spacing-24);
2001
+ align-items: flex-start;
2002
+ width: 100%;
2003
+ order: 1;
2004
+ }
2005
+ @media (min-width: 992px) {
2006
+ .lm__content {
2007
+ flex-shrink: 0;
2008
+ width: var(--lm-text-width);
2009
+ order: 2;
2010
+ }
2011
+ }
2012
+ .lm__headline {
2013
+ margin: 0;
2014
+ font-family: var(--font-family-base);
2015
+ font-size: var(--lm-headline-size);
2016
+ font-weight: var(--lm-headline-weight);
2017
+ line-height: var(--lm-headline-lh);
2018
+ color: var(--lm-headline-color);
2019
+ }
2020
+ .lm__text-group {
2021
+ display: flex;
2022
+ flex-direction: column;
2023
+ gap: var(--spacing-16);
2024
+ }
2025
+ .lm__body {
2026
+ margin: 0;
2027
+ font-family: var(--font-family-base);
2028
+ font-size: var(--lm-body-size);
2029
+ font-weight: var(--lm-body-weight);
2030
+ line-height: var(--lm-body-lh);
2031
+ color: var(--lm-body-color);
2032
+ }
2033
+ .lm__disclaimer {
2034
+ margin: 0;
2035
+ font-family: var(--font-family-base);
2036
+ font-size: var(--lm-disc-size);
2037
+ font-weight: var(--lm-disc-weight);
2038
+ line-height: var(--lm-disc-lh);
2039
+ color: var(--lm-disc-color);
2040
+ }
2041
+ .lm__link {
2042
+ display: inline-flex;
2043
+ align-items: center;
2044
+ gap: var(--spacing-8);
2045
+ font-family: var(--typography-link-md-font-family);
2046
+ font-size: var(--lm-link-size);
2047
+ font-weight: var(--lm-link-weight);
2048
+ line-height: var(--typography-link-md-line-height);
2049
+ color: var(--lm-link-color);
2050
+ text-decoration: none;
2051
+ cursor: pointer;
2052
+ white-space: nowrap;
2053
+ transition: color 0.2s ease;
2054
+ }
2055
+ .lm__link:hover {
2056
+ color: var(--color-coral-800);
2057
+ }
2058
+ .lm__link-icon {
2059
+ display: inline-flex;
2060
+ align-items: center;
2061
+ flex-shrink: 0;
2062
+ transition: transform 0.2s ease;
2063
+ }
2064
+ .lm__link:hover .lm__link-icon {
2065
+ transform: translateX(var(--spacing-4));
2066
+ }
2067
+ .lm__media {
2068
+ position: relative;
2069
+ width: 100%;
2070
+ order: 2;
2071
+ flex-shrink: 0;
2072
+ }
2073
+ @media (min-width: 992px) {
2074
+ .lm__media {
2075
+ flex: 1 0 0;
2076
+ min-width: 0;
2077
+ order: 1;
2078
+ align-self: stretch;
2079
+ }
2080
+ }
2081
+ .lm__carousel {
2082
+ position: relative;
2083
+ display: flex;
2084
+ align-items: flex-start;
2085
+ gap: var(--lm-col-gap);
2086
+ height: var(--lm-carousel-height-mob);
2087
+ overflow: hidden;
2088
+ }
2089
+ @media (min-width: 992px) {
2090
+ .lm__carousel {
2091
+ height: var(--lm-carousel-height);
2092
+ }
2093
+ }
2094
+ .lm__fade {
2095
+ position: absolute;
2096
+ left: 0;
2097
+ right: 0;
2098
+ height: var(--lm-fade-height);
2099
+ pointer-events: none;
2100
+ z-index: 2;
2101
+ }
2102
+ .lm__fade--top {
2103
+ top: 0;
2104
+ background:
2105
+ linear-gradient(
2106
+ to bottom,
2107
+ var(--lm-bg) 0%,
2108
+ rgba(0, 0, 0, 0) 100%);
2109
+ }
2110
+ .lm__fade--bottom {
2111
+ bottom: 0;
2112
+ background:
2113
+ linear-gradient(
2114
+ to top,
2115
+ var(--lm-bg) 0%,
2116
+ rgba(0, 0, 0, 0) 100%);
2117
+ }
2118
+ .lm__col {
2119
+ flex: 1 0 0;
2120
+ align-self: flex-start;
2121
+ display: flex;
2122
+ flex-direction: column;
2123
+ gap: var(--lm-card-gap);
2124
+ min-width: 0;
2125
+ will-change: transform;
2126
+ }
2127
+ .lm__card {
2128
+ flex-shrink: 0;
2129
+ background-color: var(--lm-card-bg);
2130
+ border-radius: var(--lm-card-radius-mobile);
2131
+ aspect-ratio: 4 / 3;
2132
+ display: flex;
2133
+ align-items: center;
2134
+ justify-content: center;
2135
+ box-sizing: border-box;
2136
+ width: 100%;
2137
+ overflow: hidden;
2138
+ }
2139
+ @media (min-width: 992px) {
2140
+ .lm__card {
2141
+ border-radius: var(--lm-card-radius);
2142
+ }
2143
+ }
2144
+ .lm__card-img-wrap {
2145
+ width: 100%;
2146
+ height: 100%;
2147
+ display: flex;
2148
+ align-items: center;
2149
+ justify-content: center;
2150
+ overflow: hidden;
2151
+ }
2152
+ .lm__card-img-wrap img {
2153
+ max-width: 90%;
2154
+ max-height: 90%;
2155
+ width: auto;
2156
+ height: auto;
2157
+ object-fit: contain;
2158
+ object-position: center;
2159
+ display: block;
2160
+ }
2161
+
2162
+ /* templates/Steps/Steps.css */
2163
+ :root {
2164
+ --steps-bg: var(--color-slate-50);
2165
+ --steps-title-color: var(--text-primary);
2166
+ --steps-number-color: var(--color-coral-700);
2167
+ --steps-item-title-color: var(--text-primary);
2168
+ --steps-item-desc-color: var(--color-slate-600);
2169
+ --steps-divider-color: var(--color-slate-200);
2170
+ }
2171
+ .steps {
2172
+ width: 100%;
2173
+ background-color: var(--steps-bg);
2174
+ font-family: var(--font-family-base);
2175
+ box-sizing: border-box;
2176
+ }
2177
+ .steps__container {
2178
+ max-width: var(--content-width-1280);
2179
+ margin: 0 auto;
2180
+ padding: var(--spacing-56) var(--spacing-16);
2181
+ display: flex;
2182
+ flex-direction: column;
2183
+ gap: var(--spacing-40);
2184
+ box-sizing: border-box;
2185
+ }
2186
+ @media (min-width: 992px) {
2187
+ .steps__container {
2188
+ flex-direction: row;
2189
+ align-items: center;
2190
+ gap: var(--spacing-96);
2191
+ padding: var(--spacing-112) var(--spacing-24);
2192
+ }
2193
+ .steps__container--image-right {
2194
+ flex-direction: row-reverse;
2195
+ }
2196
+ }
2197
+ .steps__image-wrapper {
2198
+ width: 100%;
2199
+ aspect-ratio: 1 / 1;
2200
+ border-radius: var(--radius-2xl);
2201
+ overflow: hidden;
2202
+ flex-shrink: 0;
2203
+ background-color: transparent;
2204
+ }
2205
+ @media (min-width: 992px) {
2206
+ .steps__image-wrapper {
2207
+ flex: 1 0 0;
2208
+ width: auto;
2209
+ }
2210
+ }
2211
+ .steps__image {
2212
+ width: 100%;
2213
+ height: 100%;
2214
+ object-fit: cover;
2215
+ object-position: center;
2216
+ display: block;
2217
+ }
2218
+ .steps__content {
2219
+ display: flex;
2220
+ flex-direction: column;
2221
+ gap: var(--spacing-24);
2222
+ width: 100%;
2223
+ }
2224
+ @media (min-width: 992px) {
2225
+ .steps__content {
2226
+ flex: 1 0 0;
2227
+ width: auto;
2228
+ }
2229
+ }
2230
+ .steps__title {
2231
+ font-family: var(--typography-h2-font-family);
2232
+ font-size: var(--typography-h2-font-size);
2233
+ font-weight: var(--typography-h2-font-weight);
2234
+ line-height: var(--typography-h2-line-height);
2235
+ color: var(--steps-title-color);
2236
+ margin: 0;
2237
+ }
2238
+ .steps__list {
2239
+ list-style: none;
2240
+ margin: 0;
2241
+ padding: 0;
2242
+ display: flex;
2243
+ flex-direction: column;
2244
+ }
2245
+ .steps__item {
2246
+ border-bottom: 1px solid var(--steps-divider-color);
2247
+ }
2248
+ .steps__item:last-child {
2249
+ border-bottom: none;
2250
+ }
2251
+ .steps__item-inner {
2252
+ display: flex;
2253
+ flex-direction: row;
2254
+ align-items: flex-start;
2255
+ gap: var(--spacing-16);
2256
+ padding: var(--spacing-16) 0;
2257
+ }
2258
+ .steps__number {
2259
+ font-family: var(--font-family-base);
2260
+ font-size: var(--typography-h5-font-size);
2261
+ font-weight: var(--font-weight-extra-bold);
2262
+ line-height: var(--typography-h5-line-height);
2263
+ color: var(--steps-number-color);
2264
+ flex-shrink: 0;
2265
+ min-width: var(--spacing-16);
2266
+ padding-top: 2px;
2267
+ }
2268
+ .steps__item-body {
2269
+ display: flex;
2270
+ flex-direction: column;
2271
+ gap: var(--spacing-4);
2272
+ }
2273
+ .steps__item-title {
2274
+ font-family: var(--typography-h5-font-family);
2275
+ font-size: var(--typography-h5-font-size);
2276
+ font-weight: var(--typography-h5-font-weight);
2277
+ line-height: var(--typography-h5-line-height);
2278
+ color: var(--steps-item-title-color);
2279
+ margin: 0;
2280
+ }
2281
+ .steps__item-description {
2282
+ font-family: var(--font-family-base);
2283
+ font-size: var(--typography-body-md-font-size);
2284
+ font-weight: var(--typography-body-md-font-weight);
2285
+ line-height: var(--typography-body-md-line-height);
2286
+ color: var(--steps-item-desc-color);
2287
+ margin: 0;
2288
+ }
2289
+
2290
+ /* templates/DownloadBanner/DownloadBanner.css */
2291
+ :root {
2292
+ --db-section-bg-light: var(--color-slate-100);
2293
+ --db-section-bg-light-2: var(--color-slate-50);
2294
+ --db-section-bg-dark: var(--color-slate-50);
2295
+ --db-card-bg-light: var(--color-slate-50);
2296
+ --db-card-bg-light-2: var(--color-slate-100);
2297
+ --db-card-bg-dark: var(--color-slate-1200);
2298
+ --db-title-color-light: var(--text-primary);
2299
+ --db-title-color-dark: var(--color-slate-50);
2300
+ --db-subtitle-color-light: var(--text-primary);
2301
+ --db-subtitle-color-dark: var(--color-slate-50);
2302
+ --db-disclaimer-color-light: var(--color-slate-500);
2303
+ --db-disclaimer-color-dark: var(--color-slate-500);
2304
+ --db-card-radius: var(--radius-2xl);
2305
+ }
2306
+ .db-section {
2307
+ width: 100%;
2308
+ box-sizing: border-box;
2309
+ }
2310
+ .db-section--light {
2311
+ background-color: var(--db-section-bg-light);
2312
+ }
2313
+ .db-section--light-2 {
2314
+ background-color: var(--db-section-bg-light-2);
2315
+ }
2316
+ .db-section--dark {
2317
+ background-color: var(--db-section-bg-dark);
2318
+ }
2319
+ .db-container {
2320
+ max-width: var(--content-width-1280);
2321
+ margin: 0 auto;
2322
+ padding: var(--spacing-56) var(--spacing-16);
2323
+ box-sizing: border-box;
2324
+ }
2325
+ @media (min-width: 768px) {
2326
+ .db-container {
2327
+ padding: var(--spacing-56) var(--spacing-24);
2328
+ }
2329
+ }
2330
+ @media (min-width: 992px) {
2331
+ .db-container {
2332
+ padding: var(--spacing-112) var(--spacing-24);
2333
+ }
2334
+ }
2335
+ .db-card {
2336
+ border-radius: var(--db-card-radius);
2337
+ padding: var(--spacing-24);
2338
+ display: flex;
2339
+ flex-direction: column;
2340
+ gap: var(--spacing-32);
2341
+ box-sizing: border-box;
2342
+ }
2343
+ .db-section--light .db-card {
2344
+ background-color: var(--db-card-bg-light);
2345
+ }
2346
+ .db-section--light-2 .db-card {
2347
+ background-color: var(--db-card-bg-light-2);
2348
+ }
2349
+ .db-section--dark .db-card {
2350
+ background-color: var(--db-card-bg-dark);
2351
+ }
2352
+ @media (min-width: 992px) {
2353
+ .db-card {
2354
+ flex-direction: row;
2355
+ align-items: center;
2356
+ gap: var(--spacing-80);
2357
+ padding: var(--spacing-48);
2358
+ }
2359
+ }
2360
+ .db-qr-block {
2361
+ display: flex;
2362
+ flex-direction: column;
2363
+ gap: var(--spacing-16);
2364
+ }
2365
+ @media (min-width: 992px) {
2366
+ .db-qr-block {
2367
+ flex-direction: row;
2368
+ align-items: center;
2369
+ gap: var(--spacing-32);
2370
+ flex-shrink: 0;
2371
+ }
2372
+ }
2373
+ .db-qr-image {
2374
+ width: 128px;
2375
+ height: 128px;
2376
+ object-fit: contain;
2377
+ object-position: center;
2378
+ display: none;
2379
+ flex-shrink: 0;
2380
+ }
2381
+ @media (min-width: 992px) {
2382
+ .db-qr-image {
2383
+ display: block;
2384
+ }
2385
+ }
2386
+ .db-qr-text {
2387
+ display: flex;
2388
+ flex-direction: column;
2389
+ gap: var(--spacing-8);
2390
+ }
2391
+ .db-qr-text__title--desktop,
2392
+ .db-qr-text__subtitle--desktop {
2393
+ display: none;
2394
+ }
2395
+ .db-qr-text__title--mobile {
2396
+ display: block;
2397
+ }
2398
+ @media (min-width: 992px) {
2399
+ .db-qr-text__title--desktop,
2400
+ .db-qr-text__subtitle--desktop {
2401
+ display: block;
2402
+ }
2403
+ .db-qr-text__title--mobile {
2404
+ display: none;
2405
+ }
2406
+ }
2407
+ .db-qr-text__title--desktop {
2408
+ font-family: var(--typography-h5-font-family);
2409
+ font-size: var(--typography-h5-font-size);
2410
+ font-weight: var(--typography-h5-font-weight);
2411
+ line-height: var(--typography-h5-line-height);
2412
+ }
2413
+ .db-qr-text__subtitle--desktop {
2414
+ margin: 0;
2415
+ font-family: var(--typography-h3-font-family);
2416
+ font-size: var(--typography-h3-font-size);
2417
+ font-weight: var(--typography-h3-font-weight);
2418
+ line-height: var(--typography-h3-line-height);
2419
+ }
2420
+ .db-qr-text__title--mobile {
2421
+ font-family: var(--typography-h5-font-family);
2422
+ font-size: var(--typography-h5-font-size);
2423
+ font-weight: var(--typography-h5-font-weight);
2424
+ line-height: var(--typography-h5-line-height);
2425
+ }
2426
+ .db-section--light .db-qr-text__title--desktop,
2427
+ .db-section--light .db-qr-text__title--mobile,
2428
+ .db-section--light-2 .db-qr-text__title--desktop,
2429
+ .db-section--light-2 .db-qr-text__title--mobile {
2430
+ color: var(--db-title-color-light);
2431
+ }
2432
+ .db-section--dark .db-qr-text__title--desktop,
2433
+ .db-section--dark .db-qr-text__title--mobile {
2434
+ color: var(--db-title-color-dark);
2435
+ }
2436
+ .db-section--light .db-qr-text__subtitle--desktop,
2437
+ .db-section--light-2 .db-qr-text__subtitle--desktop {
2438
+ color: var(--db-subtitle-color-light);
2439
+ }
2440
+ .db-section--dark .db-qr-text__subtitle--desktop {
2441
+ color: var(--db-subtitle-color-dark);
2442
+ }
2443
+ .db-disclaimer {
2444
+ display: block;
2445
+ font-family: var(--typography-body-sm-font-family);
2446
+ font-size: var(--typography-body-sm-font-size);
2447
+ font-weight: var(--typography-body-sm-font-weight);
2448
+ line-height: var(--typography-body-sm-line-height);
2449
+ margin-top: var(--spacing-4);
2450
+ }
2451
+ .db-section--light .db-disclaimer,
2452
+ .db-section--light-2 .db-disclaimer {
2453
+ color: var(--db-disclaimer-color-light);
2454
+ }
2455
+ .db-section--dark .db-disclaimer {
2456
+ color: var(--db-disclaimer-color-dark);
2457
+ }
2458
+ .db-badges {
2459
+ display: grid;
2460
+ grid-template-columns: 1fr 1fr;
2461
+ gap: var(--spacing-8);
2462
+ }
2463
+ .db-badges .download-badge {
2464
+ width: 100%;
2465
+ }
2466
+ @media (min-width: 992px) {
2467
+ .db-badges {
2468
+ flex: unset;
2469
+ display: flex;
2470
+ flex-wrap: wrap;
2471
+ justify-content: flex-end;
2472
+ align-content: center;
2473
+ align-items: center;
2474
+ }
2475
+ .db-badges .download-badge {
2476
+ width: auto;
2477
+ }
2478
+ }
2479
+
2480
+ /* templates/TextScroll/TextScroll.css */
2481
+ .ts {
2482
+ font-family: var(--font-family-base);
2483
+ box-sizing: border-box;
2484
+ }
2485
+ .ts__inner {
2486
+ max-width: var(--content-width-1280);
2487
+ margin: 0 auto;
2488
+ padding: var(--spacing-56) var(--spacing-16);
2489
+ box-sizing: border-box;
2490
+ }
2491
+ @media (min-width: 768px) {
2492
+ .ts__inner {
2493
+ padding: var(--spacing-56) var(--spacing-24);
2494
+ }
2495
+ }
2496
+ @media (min-width: 1280px) {
2497
+ .ts__inner {
2498
+ padding: var(--spacing-112) var(--spacing-24);
2499
+ }
2500
+ }
2501
+ .ts__text {
2502
+ margin: 0;
2503
+ font-family: var(--typography-h4-font-family);
2504
+ font-size: var(--typography-h4-font-size);
2505
+ font-weight: var(--typography-h4-font-weight);
2506
+ line-height: var(--typography-h4-line-height);
2507
+ color: var(--text-primary);
2508
+ }
2509
+ @media (min-width: 768px) {
2510
+ .ts__text {
2511
+ text-align: center;
2512
+ }
2513
+ }
2514
+ .ts__word {
2515
+ display: inline;
2516
+ white-space: pre-wrap;
2517
+ will-change: opacity;
2518
+ }
2519
+ /*# sourceMappingURL=index.css.map */