-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdesign-experiments.html
More file actions
3211 lines (2864 loc) · 171 KB
/
design-experiments.html
File metadata and controls
3211 lines (2864 loc) · 171 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>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-K8MPGKVX');</script>
<!-- End Google Tag Manager -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tryll Engine — On-Device AI for Games</title>
<!-- SEO Meta Tags -->
<meta name="description" content="The standard for on-device AI in games. Tryll gives developers a simple API to ship intelligent game features — running entirely on player hardware. No cloud, no latency, no per-player costs.">
<meta name="keywords" content="game AI SDK, on-device AI platform, game development AI, NPC AI engine, local AI gaming, AI middleware for games, game AI API">
<meta name="author" content="Tryll Engine">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://tryllengine.com/">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://tryllengine.com/">
<meta property="og:title" content="Tryll Engine — The On-Device AI Platform for Games">
<meta property="og:description" content="The standard for on-device AI in games. Ship AI features with a simple API — running on player hardware.">
<meta property="og:image" content="https://tryllengine.com/assets/logo/logo-mark/blue.svg">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://tryllengine.com/">
<meta property="twitter:title" content="Tryll Engine — The On-Device AI Platform for Games">
<meta property="twitter:description" content="The standard for on-device AI in games. Ship AI features with a simple API — running on player hardware.">
<meta property="twitter:image" content="https://tryllengine.com/assets/logo/logo-mark/blue.svg">
<!-- Favicon -->
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon/favicon-16x16.png">
<link rel="manifest" href="/assets/favicon/site.webmanifest">
<!-- Schema.org Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "Tryll Engine",
"applicationCategory": "GameApplication",
"operatingSystem": "Windows, macOS, Linux",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"description": "The on-device AI platform for games. A simple API to ship intelligent game features — running entirely on player hardware. No cloud costs, no latency, infinite scale.",
"featureList": [
"On-device AI SDK for games",
"Hardware-adaptive model management",
"High-level game AI API",
"Persistent NPC memory and relationships",
"Agent action system",
"Runtime content generation"
],
"creator": {
"@type": "Organization",
"name": "Tryll Engine",
"url": "https://tryllengine.com"
}
}
</script>
<!-- FAQ Schema Markup -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What kind of hardware is needed to run both the game and AI at 90 FPS?",
"acceptedAnswer": {
"@type": "Answer",
"text": "To maintain 90 FPS while running local AI inference, we recommend a GPU like the RTX 4070 Ti Super or equivalent. Tryll automatically selects the most efficient model and quantization for the user's system to ensure smooth gameplay without compromising AI responsiveness."
}
},
{
"@type": "Question",
"name": "How many gamers can actually run these models?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Our benchmarks show that ~40% of PC gamers can already run Tryll's default models (7B–13B) at acceptable speeds. As open-source models get smaller and faster every month, and gamers continue upgrading hardware, this percentage grows - unlocking scalable deployment without cloud reliance."
}
},
{
"@type": "Question",
"name": "Why is local AI better than using a cloud API?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Local AI advantages: Zero cost per player - no API or infrastructure bills. Offline capable - your game keeps working without an internet connection. Private by design - no personal data leaves the device. Cloud-based AI adds legal and UX risks: Immersion-breaking outages during play sessions. Legal compliance challenges (GDPR, AI Act, export laws). Tryll's local-first approach is not just cheaper - it's safer, faster, and scalable to millions of players."
}
},
{
"@type": "Question",
"name": "How does the platform handle different player hardware?",
"acceptedAnswer": {
"@type": "Answer",
"text": "This is the core problem Tryll solves — like how DirectX abstracts GPU differences for graphics. Tryll's Model Manager automatically detects available GPU, VRAM, and RAM, selects the optimal model size and quantization (4B-14B), and auto-updates models as better open-source options become available. You write one integration, the platform handles every hardware configuration."
}
},
{
"@type": "Question",
"name": "What game engines will Tryll support?",
"acceptedAnswer": {
"@type": "Answer",
"text": "We're building Unreal and Unity plugins first, with an SDK API to follow. The platform is engine-agnostic at its core — the engine-specific plugins are convenience layers on top of the same underlying runtime."
}
}
]
}
</script>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#232E41',
secondary: '#F6F0EB',
'primary-light': '#2a3750',
'primary-dark': '#1a232f',
'secondary-light': '#ffffff',
'secondary-dark': '#e8e2dd',
dark: {
900: '#0a0d12',
800: '#0f1419',
700: '#141a20',
600: '#1a2026',
500: '#1f262d',
}
},
animation: {
'float': 'float 6s ease-in-out infinite',
'pulse-slow': 'pulse 6s infinite',
'gradient-x': 'gradient-x 8s ease infinite',
'gradient-y': 'gradient-y 8s ease infinite',
'gradient-xy': 'gradient-xy 8s ease infinite',
'fade-in-up': 'fade-in-up 0.8s ease-out',
'fade-in-down': 'fade-in-down 0.8s ease-out',
'fade-in-left': 'fade-in-left 0.8s ease-out',
'fade-in-right': 'fade-in-right 0.8s ease-out',
'scale-in': 'scale-in 0.5s ease-out',
'rotate-in': 'rotate-in 0.6s ease-out',
'slide-up': 'slide-up 0.6s ease-out',
'glow-pulse': 'glow-pulse 2s ease-in-out infinite alternate',
},
keyframes: {
'float': {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-20px)' },
},
'gradient-y': {
'0%, 100%': {
'background-size':'400% 400%',
'background-position': 'center top'
},
'50%': {
'background-size':'200% 200%',
'background-position': 'center center'
}
},
'gradient-x': {
'0%, 100%': {
'background-size':'400% 400%',
'background-position': 'left center'
},
'50%': {
'background-size':'200% 200%',
'background-position': 'right center'
}
},
'gradient-xy': {
'0%, 100%': {
'background-size':'400% 400%',
'background-position': 'left center'
},
'50%': {
'background-size':'200% 200%',
'background-position': 'right center'
}
},
'fade-in-up': {
'0%': { opacity: '0', transform: 'translateY(30px)' },
'100%': { opacity: '1', transform: 'translateY(0)' }
},
'fade-in-down': {
'0%': { opacity: '0', transform: 'translateY(-30px)' },
'100%': { opacity: '1', transform: 'translateY(0)' }
},
'fade-in-left': {
'0%': { opacity: '0', transform: 'translateX(-30px)' },
'100%': { opacity: '1', transform: 'translateX(0)' }
},
'fade-in-right': {
'0%': { opacity: '0', transform: 'translateX(30px)' },
'100%': { opacity: '1', transform: 'translateX(0)' }
},
'scale-in': {
'0%': { opacity: '0', transform: 'scale(0.8)' },
'100%': { opacity: '1', transform: 'scale(1)' }
},
'rotate-in': {
'0%': { opacity: '0', transform: 'rotate(-5deg) scale(0.9)' },
'100%': { opacity: '1', transform: 'rotate(0deg) scale(1)' }
},
'slide-up': {
'0%': { transform: 'translateY(100%)' },
'100%': { transform: 'translateY(0)' }
},
'glow-pulse': {
'0%': { filter: 'brightness(1) saturate(1)' },
'100%': { filter: 'brightness(1.2) saturate(1.3)' }
}
}
}
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap');
html {
scroll-behavior: smooth;
scroll-padding-top: 100px; /* Account for fixed header height */
}
/* Additional offset for anchor targets */
section[id] {
scroll-margin-top: 100px;
}
:root {
/* Typography scale */
--typo-label: 12px;
--typo-copy: 14px;
--typo-largecopy: 16px;
--typo-subtitle: 20px;
--typo-title: 32px;
--typo-hero: 48px;
}
@media (min-width: 768px) {
:root {
--typo-label: 13px;
--typo-copy: 16px;
--typo-largecopy: 18px;
--typo-subtitle: 24px;
--typo-title: 48px;
--typo-hero: 62px;
}
}
body {
font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
background-color: #000000;
background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
background-size: 24px 24px;
color: rgba(255, 255, 255, 0.85);
overflow-x: hidden;
line-height: 1.5em;
letter-spacing: -0.011em;
font-weight: 449;
font-size: var(--typo-copy);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}
body::after {
content: '';
position: fixed;
inset: 0;
z-index: 9998;
pointer-events: none;
opacity: 0.018;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
background-repeat: repeat;
background-size: 256px 256px;
}
.heading-primary {
font-family: 'Plus Jakarta Sans', sans-serif;
font-weight: 700;
letter-spacing: -0.03em;
line-height: 1.05;
color: #ffffff;
}
.heading-secondary {
font-family: 'Plus Jakarta Sans', sans-serif;
font-weight: 600;
letter-spacing: -0.02em;
line-height: 1.15;
color: #ffffff;
}
.heading-tertiary {
font-family: 'Plus Jakarta Sans', sans-serif;
font-weight: 600;
letter-spacing: -0.015em;
line-height: 1.25;
color: #ffffff;
}
.body-large {
font-size: var(--typo-largecopy);
line-height: 1.6;
font-weight: 449;
color: rgba(255, 255, 255, 0.75);
letter-spacing: -0.008em;
text-wrap: balance;
}
.body-medium {
font-size: var(--typo-copy);
line-height: 1.5em;
font-weight: 449;
color: rgba(255, 255, 255, 0.7);
letter-spacing: -0.006em;
text-wrap: balance;
}
.body-small {
font-size: var(--typo-label);
line-height: 1.45;
font-weight: 449;
color: rgba(255, 255, 255, 0.65);
letter-spacing: -0.004em;
text-wrap: balance;
}
.mono-text {
font-family: 'JetBrains Mono', monospace;
font-weight: 500;
letter-spacing: 0.025em;
}
.terminal-label {
font-family: 'JetBrains Mono', monospace;
font-size: 0.75rem;
font-weight: 500;
letter-spacing: 0.1em;
color: rgba(59, 130, 246, 0.7);
text-transform: uppercase;
margin-bottom: 1.5rem;
display: block;
}
.terminal-label::before {
content: '// ';
opacity: 0.5;
}
/* Button and interactive element text weight */
button, [role="button"], a {
font-weight: 500;
}
/* Code and pre elements */
code, pre {
font-weight: 500;
}
/* Enhanced card backgrounds */
.bg-white\/10 {
background-color: rgba(255, 255, 255, 0.08) !important;
}
.bg-white\/\[0\.12\] {
background-color: rgba(255, 255, 255, 0.12) !important;
}
.hover\:bg-white\/20:hover {
background-color: rgba(255, 255, 255, 0.15) !important;
}
/* Button styles */
.btn-primary {
background-color: #3B82F6;
color: #ffffff;
border: none;
font-weight: 600;
font-family: 'DM Sans', sans-serif;
transition: all 0.12s ease-out;
text-transform: uppercase;
letter-spacing: 0.05em;
font-size: 0.85em;
border-radius: 3px;
}
.btn-primary:hover {
background-color: #2563EB;
transform: none;
box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.5);
}
.btn-primary:focus {
outline: none;
box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.4);
}
.btn-primary:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.btn-secondary {
background-color: transparent;
color: rgba(255, 255, 255, 0.9);
border: 1px solid rgba(255, 255, 255, 0.15);
font-weight: 600;
font-family: 'DM Sans', sans-serif;
transition: all 0.12s ease-out;
text-transform: uppercase;
letter-spacing: 0.05em;
font-size: 0.85em;
border-radius: 3px;
}
.btn-secondary:hover {
background-color: rgba(255, 255, 255, 0.06);
border-color: rgba(255, 255, 255, 0.25);
color: #ffffff;
transform: none;
}
.btn-secondary:focus {
outline: none;
box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
}
/* Form control styles */
.form-input {
background-color: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.2);
color: rgba(255, 255, 255, 0.9);
transition: all 0.2s ease;
}
.form-input:focus {
outline: none;
border-color: rgba(255, 255, 255, 0.4);
box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}
.form-input::placeholder {
color: rgba(255, 255, 255, 0.5);
}
/* Checkbox and radio styles */
input[type="checkbox"],
input[type="radio"] {
outline: none !important;
box-shadow: none !important;
}
input[type="checkbox"]:focus,
input[type="radio"]:focus {
outline: none !important;
box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3) !important;
}
input[type="checkbox"]:checked,
input[type="radio"]:checked {
accent-color: #3B82F6;
}
/* Legacy button enhancements */
.bg-primary-500, .bg-blue-500 {
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.15) !important;
color: #ffffff !important;
}
.bg-primary-500:hover, .bg-blue-500:hover {
background: rgba(255, 255, 255, 0.12);
border-color: rgba(255, 255, 255, 0.25) !important;
box-shadow: none;
transform: none;
}
/* Better borders */
.border-white\/20 {
border-color: rgba(255, 255, 255, 0.15) !important;
}
/* Card shadow for depth */
.card-shadow {
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3),
0 4px 6px rgba(0, 0, 0, 0.1),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
/* Section backgrounds */
.section-gradient {
background: transparent;
}
/* Pricing cards */
.pricing-card {
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.06);
border-radius: 4px;
}
/* Feature cards */
.feature-card {
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.06);
border-radius: 4px;
}
.feature-card:hover {
background: rgba(255, 255, 255, 0.04);
border-color: rgba(255, 255, 255, 0.1);
}
/* FAQ cards contrast */
.faq-item {
background: rgba(255, 255, 255, 0.04);
border: 1px solid rgba(255, 255, 255, 0.08);
}
.faq-item:hover {
background: rgba(255, 255, 255, 0.06);
border-color: rgba(255, 255, 255, 0.12);
}
/* Code blocks */
.code-block, pre, code {
background: rgba(0, 0, 0, 0.5);
border: 1px solid rgba(255, 255, 255, 0.1);
}
/* Input fields */
input, textarea {
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.15);
}
input:focus, textarea:focus {
background: rgba(255, 255, 255, 0.12);
border-color: rgba(255, 255, 255, 0.3);
}
/* Grid background pattern */
.grid-bg {
background-image:
linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
background-size: 50px 50px;
background-position: -1px -1px;
}
/* Dot pattern background */
.dot-bg {
background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
background-size: 20px 20px;
}
/* Radio button selector styling */
.peer:checked ~ div {
background: rgba(255, 255, 255, 0.95) !important;
color: #000000 !important;
border-color: rgba(255, 255, 255, 1) !important;
font-weight: 600;
box-shadow: 0 0 20px rgba(255, 255, 255, 0.4), inset 0 0 0 2px rgba(0, 0, 0, 0.1);
}
html {
scroll-behavior: smooth;
}
/* Better font rendering for all text */
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}
/* Default font weight for all elements */
*, *::before, *::after {
font-weight: inherit;
}
/* Restore Font Awesome icon weights (overridden by inherit rule above) */
.fas, .fa-solid, .fas::before, .fa-solid::before { font-weight: 900 !important; }
.far, .fa-regular, .far::before, .fa-regular::before { font-weight: 400 !important; }
.fab, .fa-brands, .fab::before, .fa-brands::before { font-weight: 400 !important; }
/* Tailwind font weight overrides */
.font-normal { font-weight: 449 !important; }
.font-medium { font-weight: 500 !important; }
.font-semibold { font-weight: 600 !important; }
.font-bold { font-weight: 650 !important; }
/* Text color adjustments for better readability */
.text-gray-400 { color: rgba(255, 255, 255, 0.75); }
.text-gray-500 { color: rgba(255, 255, 255, 0.65); }
.text-gray-600 { color: rgba(255, 255, 255, 0.55); }
.text-white { color: rgba(255, 255, 255, 0.9); }
.text-white\/80 { color: rgba(255, 255, 255, 0.75); }
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
/* Improve readability for smaller text */
.text-sm {
font-weight: 500;
letter-spacing: -0.004em;
}
.text-xs {
font-weight: 500;
letter-spacing: 0;
}
/* Ensure all paragraphs have better weight */
p {
font-weight: 449;
text-wrap: balance;
line-height: 1.5em;
color: rgba(255, 255, 255, 0.8);
}
/* Lead paragraphs */
.text-lg, .text-xl {
font-weight: 449;
opacity: 0.85;
}
/* Better weight for all list items */
li {
font-weight: 449;
line-height: 1.5em;
}
.glass-card {
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.06);
border-radius: 4px !important;
transition: all 0.15s ease-out;
border-top: 2px solid rgba(59, 130, 246, 0.3);
}
.glass-card:hover {
border-color: rgba(255, 255, 255, 0.12);
background: rgba(255, 255, 255, 0.04);
box-shadow: none;
border-top-color: rgba(59, 130, 246, 0.5);
}
.nav-glass-card {
position: relative;
border-radius: 4px;
overflow: hidden;
transition: all 0.15s ease-out;
background: rgba(0, 0, 0, 0.88);
border: 1px solid rgba(255, 255, 255, 0.08);
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.nav-glass-card > * {
position: relative;
z-index: 2;
}
.nav-glass-card:hover {
border-color: rgba(255, 255, 255, 0.12);
}
.gradient-bg {
background: rgba(255, 255, 255, 0.06);
}
.hero-gradient {
background: transparent;
}
.fade-in {
opacity: 0;
transform: translateY(12px);
transition: opacity 0.35s ease-out, transform 0.35s ease-out;
}
.fade-in.visible {
opacity: 1;
transform: translateY(0);
}
.ripple {
position: absolute;
border-radius: 50%;
background: radial-gradient(circle, rgba(246, 240, 235, 0.6) 0%, rgba(35, 46, 65, 0.3) 100%);
transform: scale(0);
animation: ripple 0.8s cubic-bezier(0.4, 0, 0.2, 1);
pointer-events: none;
}
@keyframes ripple {
to {
transform: scale(4);
opacity: 0;
}
}
.stagger-fade {
opacity: 0;
transform: translateY(20px);
animation: stagger-fade 0.8s ease-out forwards;
}
@keyframes stagger-fade {
to {
opacity: 1;
transform: translateY(0);
}
}
.text-secondary {
color: rgba(255, 255, 255, 0.65);
font-weight: 449;
text-wrap: balance;
}
.text-primary {
color: #232E41;
}
.text-accent {
color: #F6F0EB;
}
.feature-item-left.active {
background: rgba(255, 255, 255, 0.08);
box-shadow: 0 0 0 2px rgba(35, 46, 65, 0.8);
transform: translateX(4px);
transition: all 0.3s ease-in-out;
}
.feature-item-mobile.active {
background: rgba(255, 255, 255, 0.08);
box-shadow: 0 0 0 2px rgba(35, 46, 65, 0.8);
transition: all 0.3s ease-in-out;
}
.feature-item-left.active h3,
.feature-item-mobile.active h3 {
color: #ffffff;
}
/* Faster transition when becoming inactive */
.feature-item-left:not(.active) {
transition: all 0.15s ease-out;
}
.feature-item-mobile:not(.active) {
transition: all 0.15s ease-out;
}
/* Dropdown styling */
select option {
background-color: #0f1419 !important;
color: #ffffff !important;
}
select {
color-scheme: dark;
}
/* Hide scrollbar for horizontal scroll */
.scrollbar-hide {
-ms-overflow-style: none;
scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
display: none;
}
/* Feature item active state - enhanced */
.feature-item-left.active {
background: rgba(255, 255, 255, 0.08) !important;
box-shadow: 0 0 0 2px rgba(35, 46, 65, 0.8) !important;
transform: translateX(4px) !important;
transition: all 0.3s ease-in-out !important;
}
.feature-item-mobile.active {
background: rgba(255, 255, 255, 0.08) !important;
box-shadow: 0 0 0 2px rgba(35, 46, 65, 0.8) !important;
transition: all 0.3s ease-in-out !important;
}
.feature-item-left.active h3,
.feature-item-mobile.active h3 {
color: #ffffff !important;
}
/* Faster transition when becoming inactive */
.feature-item-left:not(.active) {
transition: all 0.15s ease-out !important;
}
.feature-item-mobile:not(.active) {
transition: all 0.15s ease-out !important;
}
/* Mobile feature improvements */
@media (max-width: 768px) {
.feature-tabs-container {
width: 100%;
}
.feature-item-mobile h3 {
font-size: 1rem;
line-height: 1.5;
}
.feature-item-mobile p {
font-size: 0.875rem;
line-height: 1.4;
}
/* Ensure proper scrolling */
.scrollbar-hide {
-ms-overflow-style: none;
scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
display: none;
}
/* Horizontal scroll with snap */
.feature-scroll-container {
scroll-snap-type: x mandatory;
scroll-behavior: smooth;
-webkit-overflow-scrolling: touch;
}
.feature-scroll-container .feature-item-mobile {
scroll-snap-align: center;
scroll-snap-stop: always;
}
/* Add initial padding for first item to center */
.feature-scroll-container > div {
padding-left: calc(50vw - 140px);
padding-right: calc(50vw - 140px);
}
/* Feature card styling for mobile */
.feature-item-mobile {
background: rgba(255, 255, 255, 0.03) !important;
min-height: 120px;
}
.feature-item-mobile.active {
background: rgba(255, 255, 255, 0.08) !important;
box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.4) !important;
transform: none !important;
}
/* Add visual indicator dots */
.feature-dots {
display: flex;
justify-content: center;
gap: 8px;
margin-top: 16px;
}
.feature-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.2);
transition: all 0.3s ease;
cursor: pointer;
}
.feature-dot.active {
background: rgba(246, 240, 235, 0.8);
transform: scale(1.5);
}
}
/* Feature video animations */
#feature-video-desktop,
#feature-video-mobile {
transition: opacity 0.3s ease-out, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
#feature-video-desktop.transitioning {
filter: blur(2px);
opacity: 0.95;
}
/* Content animations */
@keyframes fade-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes scale-in {
from {
transform: scale(0.8);
opacity: 0;
}
to {
transform: scale(1);
opacity: 1;
}
}
@keyframes slide-up {
from {
transform: translateY(20px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
.animate-fade-in {
animation: fade-in 0.6s ease-out forwards;
}
.animate-scale-in {
animation: scale-in 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.animate-slide-up {
animation: slide-up 0.6s ease-out forwards;
animation-delay: 0.1s;
animation-fill-mode: both;
}
.animate-slide-up-delay {
animation: slide-up 0.6s ease-out forwards;
animation-delay: 0.2s;
animation-fill-mode: both;
}
.animate-fade-in-delay {
animation: fade-in 0.6s ease-out forwards;
animation-delay: 0.3s;
animation-fill-mode: both;
}
/* Feature item hover effects */
.feature-item-left {
position: relative;
overflow: hidden;
transition: all 0.15s ease-out;
}
.feature-item-left:hover {
background: rgba(255, 255, 255, 0.04) !important;
transform: translateX(2px);
}
/* Video container shadow and glow effect */
#feature-video-desktop {
box-shadow: 0 0 40px rgba(35, 46, 65, 0.3);
}
#feature-video-desktop.transitioning {
box-shadow: 0 0 60px rgba(35, 46, 65, 0.5);