-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1027 lines (989 loc) · 86.4 KB
/
Copy pathindex.html
File metadata and controls
1027 lines (989 loc) · 86.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<title>BITBI | My Digital Playground</title>
<meta name="description" content="BITBI — create in Generate Lab, save account-bound AI output to Assets Manager, and manage credits, Pro status, and profile in one member workspace.">
<meta name="robots" content="index, follow, max-image-preview:large">
<meta name="keywords" content="BITBI, digital art, AI creations, creative coding">
<meta name="author" content="BITBI Studio">
<link rel="canonical" href="https://bitbi.ai/">
<link rel="alternate" hreflang="en" href="https://bitbi.ai/">
<link rel="alternate" hreflang="de" href="https://bitbi.ai/de/">
<link rel="alternate" hreflang="x-default" href="https://bitbi.ai/">
<meta property="og:title" content="BITBI | My Digital Playground">
<meta property="og:description" content="Create in Generate Lab, save account-bound AI output to Assets Manager, and manage credits, Pro status, and profile in one member workspace.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://bitbi.ai/">
<meta property="og:site_name" content="BITBI">
<meta property="og:locale" content="en_US">
<meta property="og:locale:alternate" content="de_DE">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@bitbi_ai">
<meta name="twitter:title" content="BITBI | My Digital Playground">
<meta name="twitter:description" content="Create in Generate Lab, save account-bound AI output to Assets Manager, and manage credits, Pro status, and profile in one member workspace.">
<meta property="og:image" content="https://bitbi.ai/assets/images/1.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="600">
<meta property="og:image:height" content="391">
<meta property="og:image:alt" content="BITBI logo on a dark studio background">
<meta name="twitter:image" content="https://bitbi.ai/assets/images/1.png">
<meta name="twitter:image:alt" content="BITBI logo on a dark studio background">
<meta name="theme-color" content="#0A0A0A">
<meta name="referrer" content="strict-origin-when-cross-origin">
<link rel="icon" href="/assets/favicons/favicon.ico" sizes="48x48">
<link rel="icon" href="/assets/favicons/favicon-16x16.png" sizes="16x16" type="image/png">
<link rel="icon" href="/assets/favicons/favicon-32x32.png" sizes="32x32" type="image/png">
<link rel="icon" href="/assets/favicons/android-chrome-512x512.png" sizes="512x512" type="image/png">
<link rel="apple-touch-icon" href="/assets/favicons/apple-touch-icon.png" sizes="180x180">
<link rel="manifest" href="/assets/favicons/site.webmanifest">
<link rel="preload" href="fonts/inter-v20-latin_latin-ext-regular.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="fonts/playfair-display-latin.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="assets/images/1.png" as="image" fetchpriority="high">
<style>@layer tokens, reset, base, components, pages, utilities;</style>
<link rel="stylesheet" href="css/base/tokens.css?v=__ASSET_VERSION__">
<link rel="stylesheet" href="css/base/reset.css?v=__ASSET_VERSION__">
<link rel="stylesheet" href="css/base/base.css?v=__ASSET_VERSION__">
<link rel="stylesheet" href="css/components/components.css?v=__ASSET_VERSION__">
<link rel="stylesheet" href="css/components/news-pulse.css?v=__ASSET_VERSION__">
<link rel="stylesheet" href="css/pages/index.css?v=__ASSET_VERSION__">
<link rel="stylesheet" href="css/components/auth.css?v=__ASSET_VERSION__">
<link rel="stylesheet" href="css/base/utilities.css?v=__ASSET_VERSION__">
<script>(function(){try{var categoryHashes={'#gallery':true,'#video-creations':true,'#soundlab':true};if(!categoryHashes[window.location.hash])return;var desktopHoverMedia='(min-width: 1024px) and (hover: hover) and (pointer: fine)';var tabletDesktopLayoutMedia='(min-width: 768px) and (max-width: 1023px) and (min-height: 700px), (min-width: 1024px) and (hover: none) and (pointer: coarse) and (min-height: 700px)';var stagedLayoutQuery=window.matchMedia(desktopHoverMedia+', '+tabletDesktopLayoutMedia);if(!stagedLayoutQuery.matches)return;sessionStorage.setItem('bitbi:pending-home-category',window.location.hash);history.replaceState(history.state,'',window.location.pathname+window.location.search);window.scrollTo(0,0)}catch(_err){}})()</script>
<script>(function(){var restoreKey='bitbi_home_scroll_restore_v2';document.documentElement.classList.add('js-ready');try{if('scrollRestoration'in history){history.scrollRestoration='manual'}var navEntry=performance.getEntriesByType&&performance.getEntriesByType('navigation')[0];var legacyReload=!!(performance.navigation&&performance.navigation.type===1);var isReload=!!((navEntry&&navEntry.type==='reload')||legacyReload);var savedY=isReload?Number(sessionStorage.getItem(restoreKey)):NaN;var canRestore=Number.isFinite(savedY)&&savedY>=0;var restoreCancelled=false;var saveScroll=function(){sessionStorage.setItem(restoreKey,String(Math.round(window.scrollY||window.pageYOffset||0)))};var cancelRestore=function(){restoreCancelled=true};var restoreScroll=function(){if(!canRestore||restoreCancelled)return;window.scrollTo(0,savedY)};var restoreWithLayoutSettling=function(){restoreScroll();var started=performance.now();var step=function(){restoreScroll();if(performance.now()-started<5200){window.requestAnimationFrame(step)}};window.requestAnimationFrame(step);[50,120,260,520,900,1400,2100,2800,3600,4600,5200].forEach(function(delay){window.setTimeout(restoreScroll,delay)})};window.addEventListener('pagehide',saveScroll);window.addEventListener('beforeunload',saveScroll);window.addEventListener('scroll',function(){window.clearTimeout(window.__bitbiHomeScrollSaveTimer);window.__bitbiHomeScrollSaveTimer=window.setTimeout(saveScroll,80)},{passive:true});['wheel','touchstart','keydown','mousedown'].forEach(function(type){window.addEventListener(type,cancelRestore,{once:true,passive:true})});if(canRestore){restoreScroll();if(document.readyState==='loading'){document.addEventListener('DOMContentLoaded',restoreWithLayoutSettling,{once:true})}else{restoreWithLayoutSettling()}window.addEventListener('load',restoreWithLayoutSettling,{once:true})}}catch(_err){}setTimeout(function(){document.querySelectorAll('.reveal:not(.visible)').forEach(function(el){el.classList.add('visible')})},4000)})()</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Organization",
"@id": "https://bitbi.ai/#organization",
"name": "BITBI",
"url": "https://bitbi.ai/",
"logo": {
"@type": "ImageObject",
"url": "https://bitbi.ai/assets/favicons/android-chrome-512x512.png",
"width": 512,
"height": 512
},
"sameAs": [
"https://x.com/bitbi_ai"
]
},
{
"@type": "WebSite",
"@id": "https://bitbi.ai/#website",
"name": "BITBI",
"url": "https://bitbi.ai/",
"description": "Create in Generate Lab, save account-bound AI output to Assets Manager, and manage credits, Pro status, and profile in one member workspace.",
"inLanguage": "en",
"publisher": {
"@id": "https://bitbi.ai/#organization"
}
},
{
"@type": "WebPage",
"@id": "https://bitbi.ai/#webpage",
"name": "BITBI | My Digital Playground",
"url": "https://bitbi.ai/",
"description": "Create in Generate Lab, save account-bound AI output to Assets Manager, and manage credits, Pro status, and profile in one member workspace.",
"inLanguage": "en",
"isPartOf": {
"@id": "https://bitbi.ai/#website"
},
"image": "https://bitbi.ai/assets/images/1.png"
}
]
}
</script>
</head>
<body>
<a href="#main-content" class="skip-link">Skip to main content</a>
<!-- BACKGROUND FAVICON WATERMARK -->
<div class="watermark" aria-hidden="true">
<img src="/assets/favicons/android-chrome-512x512.png" alt="" class="watermark__img" role="presentation" width="512" height="512" fetchpriority="low" loading="lazy" decoding="async">
</div>
<!-- NAVBAR -->
<header>
<nav id="navbar" class="site-nav glass-nav" aria-label="Main navigation">
<div class="container">
<div class="site-nav__bar">
<a href="#hero" class="site-nav__logo">
<span class="site-nav__logo-text gt-hero">BITBI</span>
<span class="site-nav__logo-glow" aria-hidden="true"></span>
</a>
<div class="site-nav__links">
<a href="#gallery" class="site-nav__link nav-link" data-category-link="gallery">Gallery</a>
<a href="#video-creations" class="site-nav__link nav-link" data-category-link="video">Video</a>
<a href="#soundlab" class="site-nav__link nav-link" data-category-link="sound">Sound Lab</a>
</div>
<div class="site-nav__actions">
<span class="site-nav__mood">Mood: <span class="site-nav__mood-value">Creating</span></span>
<span data-locale-switcher></span>
</div>
<button type="button" id="mobileMenuBtn" class="site-nav__menu-btn" aria-label="Toggle menu" aria-expanded="false" aria-controls="mobileNav">
<span class="site-nav__menu-bar" id="bar1"></span>
<span class="site-nav__menu-bar" id="bar2"></span>
<span class="site-nav__menu-bar site-nav__menu-bar--short" id="bar3"></span>
</button>
</div>
</div>
</nav>
</header>
<div id="mobileNav" class="mobile-nav-panel" role="dialog" aria-modal="true" aria-label="Navigation menu" aria-hidden="true">
<div id="frozenBackdrop" class="mobile-nav__backdrop" aria-hidden="true"></div>
<div id="frozenRainLayer" class="mobile-nav__rain-layer" aria-hidden="true"></div>
<button id="mobileNavClose" class="mobile-nav__close" type="button" aria-label="Close menu">×</button>
<div class="mobile-nav__inner">
<div id="mobileNavAuth" class="mobile-nav__auth"></div>
<nav class="mobile-nav__section" aria-label="Explore">
<span class="mobile-nav__label">Explore</span>
<a href="#gallery" class="mobile-nav__link mobile-nav__link--primary" data-category-link="gallery">Gallery</a>
<a href="#video-creations" class="mobile-nav__link mobile-nav__link--primary" data-category-link="video">Video</a>
<a href="#soundlab" class="mobile-nav__link mobile-nav__link--primary" data-category-link="sound">Sound Lab</a>
<button type="button" class="mobile-nav__link mobile-nav__link--primary" data-models-link="mobile">Models</button>
</nav>
<nav class="mobile-nav__section" aria-label="Connect">
<span class="mobile-nav__label">Connect</span>
<a href="#contact" class="mobile-nav__link">Contact</a>
</nav>
<div class="mobile-nav__footer">
<div class="mobile-nav__social">
<a href="https://x.com/bitbi_ai" target="_blank" rel="noopener noreferrer" class="mobile-nav__social-link" aria-label="X (Twitter)"><svg width="18" height="18" fill="currentColor" viewBox="0 0 24 24"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg></a>
</div>
<div class="mobile-nav__legal">
<a href="legal/imprint.html" class="mobile-nav__legal-link">Imprint</a>
<span class="mobile-nav__legal-dot">•</span>
<a href="legal/privacy.html" class="mobile-nav__legal-link">Privacy</a>
<span class="mobile-nav__legal-dot">•</span>
<a href="legal/terms.html" class="mobile-nav__legal-link">Terms</a>
<span class="mobile-nav__legal-dot">•</span>
<button id="mobileOpenCookieSettings" class="mobile-nav__legal-link" type="button">Cookie Settings</button>
</div>
</div>
</div>
</div>
<main id="main-content">
<!-- HERO -->
<section id="hero" class="hero hero--homepage" data-homepage-auth-state="loading" aria-label="Hero">
<canvas id="heroCanvas" aria-hidden="true"></canvas>
<div class="hero__gradient-overlay" style="background:linear-gradient(180deg,#0A0A0A 0%,rgba(13,27,42,0.5) 40%,rgba(13,27,42,0.3) 60%,#0A0A0A 100%)" aria-hidden="true"></div>
<div class="hero__glow hero__glow--cyan" style="top:20%;left:15%;width:400px;height:400px" aria-hidden="true"></div>
<div class="hero__glow hero__glow--gold" style="bottom:20%;right:15%;width:350px;height:350px" aria-hidden="true"></div>
<div class="hero__glow hero__glow--magenta" style="top:50%;left:50%;transform:translate(-50%,-50%);width:600px;height:600px" aria-hidden="true"></div>
<div class="hero__binary-rain" id="binaryRain" aria-hidden="true"></div>
<section id="newsPulse" class="news-pulse" data-news-pulse data-news-pulse-locale="en" aria-label="Bitbi Live Pulse"></section>
<div id="homepageGuestFallback" class="hero__guest-fallback" data-homepage-guest-fallback hidden>
<div class="hero__guest-fallback-inner">
<p class="hero__guest-fallback-copy">
<span>Create AI images, videos and music in one studio.</span>
<span>Generate, save, organize and publish creative media with credits for real usage.</span>
</p>
</div>
</div>
<div class="hero__creation-stream hero__creation-stream--right" data-creation-stream-side="right" aria-hidden="true">
<svg class="hero__creation-stream-svg" viewBox="0 0 1440 760" preserveAspectRatio="none" focusable="false" aria-hidden="true">
<defs>
<linearGradient id="creationStreamCyanGradient" x1="670" y1="590" x2="1180" y2="240" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#ffffff" stop-opacity="0"/>
<stop offset="0.12" stop-color="#ffffff" stop-opacity="0.92"/>
<stop offset="0.22" stop-color="#00f0ff"/>
<stop offset="0.58" stop-color="#22d3ee"/>
<stop offset="1" stop-color="#60a5fa"/>
</linearGradient>
<linearGradient id="creationStreamMagentaGradient" x1="680" y1="610" x2="1190" y2="440" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#00f0ff" stop-opacity="0"/>
<stop offset="0.12" stop-color="#00f0ff" stop-opacity="0.72"/>
<stop offset="0.46" stop-color="#c084fc"/>
<stop offset="1" stop-color="#ff4fd8"/>
</linearGradient>
<linearGradient id="creationStreamVioletGradient" x1="690" y1="580" x2="1195" y2="470" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#67e8f9" stop-opacity="0"/>
<stop offset="0.12" stop-color="#67e8f9" stop-opacity="0.54"/>
<stop offset="0.5" stop-color="#7c3aed"/>
<stop offset="1" stop-color="#a78bfa" stop-opacity="0.86"/>
</linearGradient>
<linearGradient id="creationStreamGoldGradient" x1="705" y1="575" x2="1180" y2="380" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#ffffff" stop-opacity="0"/>
<stop offset="0.12" stop-color="#ffffff" stop-opacity="0.55"/>
<stop offset="0.45" stop-color="#00f0ff" stop-opacity="0.75"/>
<stop offset="1" stop-color="#ffcf66"/>
</linearGradient>
<linearGradient id="creationStreamWhiteCoreGradient" x1="690" y1="588" x2="1180" y2="320" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#ffffff" stop-opacity="0"/>
<stop offset="0.28" stop-color="#ffffff" stop-opacity="0.98"/>
<stop offset="0.58" stop-color="#9ffbff"/>
<stop offset="1" stop-color="#ffffff" stop-opacity="0.16"/>
</linearGradient>
<radialGradient id="creationStreamFlareGradient" cx="50%" cy="50%" r="50%">
<stop offset="0" stop-color="#ffffff" stop-opacity="0.96"/>
<stop offset="0.28" stop-color="#00f0ff" stop-opacity="0.72"/>
<stop offset="0.66" stop-color="#a855f7" stop-opacity="0.2"/>
<stop offset="1" stop-color="#00f0ff" stop-opacity="0"/>
</radialGradient>
<radialGradient id="creationStreamSparkGradient" cx="50%" cy="50%" r="50%">
<stop offset="0" stop-color="#ffffff"/>
<stop offset="0.42" stop-color="#67e8f9"/>
<stop offset="1" stop-color="#00f0ff" stop-opacity="0"/>
</radialGradient>
<filter id="creationStreamSoftGlow" x="-18%" y="-22%" width="136%" height="144%" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="5.2" result="softGlow"/>
<feGaussianBlur stdDeviation="1.8" in="SourceGraphic" result="nearGlow"/>
<feMerge>
<feMergeNode in="softGlow"/>
<feMergeNode in="nearGlow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<filter id="creationStreamCoreGlow" x="-12%" y="-16%" width="124%" height="132%" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="1.45" result="coreGlow"/>
<feMerge>
<feMergeNode in="coreGlow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<filter id="creationStreamParticleGlow" x="-80%" y="-80%" width="260%" height="260%" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="1.25" result="particleGlow"/>
<feMerge>
<feMergeNode in="particleGlow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<g class="hero__creation-stream-layer hero__creation-stream-layer--halo" filter="url(#creationStreamSoftGlow)">
<path class="hero__creation-stream-path hero__creation-stream-halo hero__creation-stream-halo--main" stroke="url(#creationStreamCyanGradient)" d="M 716 584 C 795 586, 868 562, 944 500 C 1020 438, 1084 312, 1156 246"></path>
<path class="hero__creation-stream-path hero__creation-stream-halo hero__creation-stream-halo--upper" stroke="url(#creationStreamCyanGradient)" d="M 704 578 C 785 582, 858 550, 936 486 C 1014 420, 1080 300, 1150 230"></path>
<path class="hero__creation-stream-path hero__creation-stream-halo hero__creation-stream-halo--lower" stroke="url(#creationStreamMagentaGradient)" d="M 720 592 C 812 608, 930 570, 1042 498 C 1096 470, 1142 450, 1184 434"></path>
<path class="hero__creation-stream-path hero__creation-stream-halo hero__creation-stream-halo--violet" stroke="url(#creationStreamVioletGradient)" d="M 710 596 C 820 628, 944 598, 1050 536 C 1106 508, 1155 486, 1200 470"></path>
</g>
<g class="hero__creation-stream-layer hero__creation-stream-layer--strands" filter="url(#creationStreamCoreGlow)">
<path class="hero__creation-stream-path hero__creation-stream-strand hero__creation-stream-strand--core" stroke="url(#creationStreamCyanGradient)" d="M 706 584 C 790 586, 858 562, 934 502 C 1012 440, 1078 316, 1155 246"></path>
<path class="hero__creation-stream-path hero__creation-stream-strand hero__creation-stream-strand--upper" stroke="url(#creationStreamCyanGradient)" d="M 722 578 C 802 580, 876 548, 952 482 C 1026 418, 1088 316, 1165 285"></path>
<path class="hero__creation-stream-path hero__creation-stream-strand hero__creation-stream-strand--cyan-a" stroke="url(#creationStreamCyanGradient)" d="M 690 574 C 780 566, 852 526, 930 452 C 1008 378, 1074 282, 1148 225"></path>
<path class="hero__creation-stream-path hero__creation-stream-strand hero__creation-stream-strand--cyan-b" stroke="url(#creationStreamCyanGradient)" d="M 734 586 C 816 576, 890 535, 968 468 C 1038 405, 1100 340, 1160 260"></path>
<path class="hero__creation-stream-path hero__creation-stream-strand hero__creation-stream-strand--cyan-c" stroke="url(#creationStreamCyanGradient)" d="M 748 592 C 830 586, 912 545, 990 486 C 1060 434, 1120 368, 1178 318"></path>
<path class="hero__creation-stream-path hero__creation-stream-strand hero__creation-stream-strand--lower" stroke="url(#creationStreamCyanGradient)" d="M 712 590 C 808 602, 920 570, 1010 505 C 1080 470, 1135 452, 1180 440"></path>
<path class="hero__creation-stream-path hero__creation-stream-strand hero__creation-stream-strand--teal-low" stroke="url(#creationStreamCyanGradient)" d="M 730 596 C 822 616, 936 586, 1036 518 C 1092 490, 1140 466, 1192 454"></path>
<path class="hero__creation-stream-path hero__creation-stream-strand hero__creation-stream-strand--magenta" stroke="url(#creationStreamMagentaGradient)" d="M 704 588 C 818 608, 938 568, 1045 500 C 1095 475, 1140 455, 1180 435"></path>
<path class="hero__creation-stream-path hero__creation-stream-strand hero__creation-stream-strand--magenta-b" stroke="url(#creationStreamMagentaGradient)" d="M 722 582 C 830 590, 940 542, 1035 475 C 1095 442, 1142 410, 1175 385"></path>
<path class="hero__creation-stream-path hero__creation-stream-strand hero__creation-stream-strand--violet" stroke="url(#creationStreamVioletGradient)" d="M 720 596 C 830 625, 945 592, 1050 535 C 1105 506, 1155 485, 1200 470"></path>
<path class="hero__creation-stream-path hero__creation-stream-strand hero__creation-stream-strand--violet-bridge" stroke="url(#creationStreamVioletGradient)" d="M 736 588 C 836 600, 942 558, 1018 494 C 1078 460, 1120 420, 1174 366"></path>
<path class="hero__creation-stream-path hero__creation-stream-strand hero__creation-stream-strand--gold" stroke="url(#creationStreamGoldGradient)" d="M 714 584 C 812 578, 932 522, 1035 455 C 1090 428, 1138 402, 1175 380"></path>
<path class="hero__creation-stream-path hero__creation-stream-strand hero__creation-stream-strand--gold-fine" stroke="url(#creationStreamGoldGradient)" d="M 734 592 C 830 590, 940 540, 1026 470 C 1082 438, 1130 410, 1186 398"></path>
<path class="hero__creation-stream-path hero__creation-stream-strand hero__creation-stream-strand--upper-fine" stroke="url(#creationStreamWhiteCoreGradient)" d="M 700 578 C 790 570, 870 528, 956 462 C 1035 400, 1098 292, 1155 260"></path>
<path class="hero__creation-stream-path hero__creation-stream-strand hero__creation-stream-strand--thread" stroke="url(#creationStreamWhiteCoreGradient)" d="M 728 594 C 820 600, 935 565, 1042 508 C 1100 484, 1150 462, 1186 445"></path>
</g>
<g class="hero__creation-stream-layer hero__creation-stream-layer--highlights" filter="url(#creationStreamCoreGlow)">
<path class="hero__creation-stream-path hero__creation-stream-highlight hero__creation-stream-highlight--one" stroke="url(#creationStreamWhiteCoreGradient)" d="M 706 584 C 790 586, 858 562, 934 502 C 1012 440, 1078 316, 1155 246"></path>
<path class="hero__creation-stream-path hero__creation-stream-highlight hero__creation-stream-highlight--two" stroke="url(#creationStreamWhiteCoreGradient)" d="M 690 574 C 780 566, 852 526, 930 452 C 1008 378, 1074 282, 1148 225"></path>
<path class="hero__creation-stream-path hero__creation-stream-highlight hero__creation-stream-highlight--three" stroke="url(#creationStreamWhiteCoreGradient)" d="M 712 590 C 808 602, 920 570, 1010 505 C 1080 470, 1135 452, 1180 440"></path>
<path class="hero__creation-stream-path hero__creation-stream-highlight hero__creation-stream-highlight--four" stroke="url(#creationStreamGoldGradient)" d="M 714 584 C 812 578, 932 522, 1035 455 C 1090 428, 1138 402, 1175 380"></path>
<path class="hero__creation-stream-path hero__creation-stream-highlight hero__creation-stream-highlight--five" stroke="url(#creationStreamMagentaGradient)" d="M 722 582 C 830 590, 940 542, 1035 475 C 1095 442, 1142 410, 1175 385"></path>
<path class="hero__creation-stream-path hero__creation-stream-highlight hero__creation-stream-highlight--six" stroke="url(#creationStreamWhiteCoreGradient)" d="M 730 596 C 822 616, 936 586, 1036 518 C 1092 490, 1140 466, 1192 454"></path>
<path class="hero__creation-stream-path hero__creation-stream-highlight hero__creation-stream-highlight--seven" stroke="url(#creationStreamMagentaGradient)" d="M 736 588 C 836 600, 942 558, 1018 494 C 1078 460, 1120 420, 1174 366"></path>
</g>
<g class="hero__creation-stream-layer hero__creation-stream-layer--particles" filter="url(#creationStreamParticleGlow)">
<circle class="hero__creation-stream-particle hero__creation-stream-particle--white" cx="694" cy="578" r="1"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--cyan" cx="720" cy="584" r="1.5"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--magenta" cx="748" cy="590" r="1.1"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--gold" cx="790" cy="578" r="1"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--cyan" cx="840" cy="564" r="1.4"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--white" cx="880" cy="540" r="0.9"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--cyan" cx="912" cy="510" r="1.6"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--magenta" cx="944" cy="476" r="1"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--white" cx="972" cy="438" r="0.9"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--cyan" cx="1010" cy="388" r="1.4"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--violet" cx="910" cy="434" r="1.2"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--white" cx="942" cy="402" r="0.9"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--cyan" cx="974" cy="366" r="1.4"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--magenta" cx="1010" cy="334" r="1"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--cyan" cx="1048" cy="304" r="1.6"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--gold" cx="1086" cy="284" r="1"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--white" cx="1124" cy="260" r="0.9"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--cyan" cx="1156" cy="242" r="1.8"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--magenta" cx="700" cy="574" r="1.2"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--violet" cx="742" cy="586" r="1"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--cyan" cx="786" cy="592" r="1.5"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--white" cx="830" cy="588" r="0.8"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--magenta" cx="876" cy="574" r="1.2"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--cyan" cx="920" cy="558" r="1.5"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--gold" cx="962" cy="540" r="0.9"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--violet" cx="1004" cy="516" r="1.2"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--white" cx="1048" cy="496" r="0.8"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--cyan" cx="1090" cy="476" r="1.5"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--magenta" cx="1134" cy="454" r="1.1"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--cyan" cx="1180" cy="440" r="1.7"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--gold" cx="1168" cy="386" r="0.9"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--white" cx="1174" cy="470" r="0.9"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--cyan" cx="1194" cy="460" r="1.3"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--magenta" cx="1146" cy="410" r="1"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--white" cx="690" cy="588" r="0.8"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--cyan" cx="760" cy="570" r="1.1"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--cyan" cx="706" cy="580" r="1"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--white" cx="728" cy="572" r="0.85"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--magenta" cx="756" cy="582" r="1"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--gold" cx="812" cy="572" r="0.85"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--cyan" cx="850" cy="556" r="1.2"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--violet" cx="870" cy="552" r="0.95"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--white" cx="898" cy="532" r="0.8"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--cyan" cx="926" cy="502" r="1.2"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--cyan" cx="884" cy="470" r="1"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--magenta" cx="908" cy="446" r="0.9"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--white" cx="936" cy="420" r="0.8"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--cyan" cx="960" cy="392" r="1.15"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--violet" cx="990" cy="360" r="1"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--cyan" cx="1022" cy="330" r="1.2"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--gold" cx="1058" cy="300" r="0.8"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--white" cx="1098" cy="274" r="0.75"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--cyan" cx="1138" cy="252" r="1.3"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--magenta" cx="1168" cy="238" r="0.9"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--violet" cx="852" cy="596" r="1"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--cyan" cx="890" cy="588" r="1.2"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--magenta" cx="930" cy="572" r="0.95"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--gold" cx="968" cy="552" r="0.85"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--white" cx="1008" cy="528" r="0.8"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--cyan" cx="1046" cy="506" r="1.2"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--violet" cx="1084" cy="486" r="0.95"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--cyan" cx="1122" cy="466" r="1.25"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--magenta" cx="1160" cy="448" r="0.95"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--white" cx="1190" cy="436" r="0.75"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--gold" cx="822" cy="548" r="0.8"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--cyan" cx="864" cy="528" r="1.05"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--magenta" cx="904" cy="494" r="0.9"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--white" cx="946" cy="462" r="0.75"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--violet" cx="986" cy="430" r="0.95"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--cyan" cx="1030" cy="398" r="1.15"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--gold" cx="1074" cy="370" r="0.8"></circle>
<circle class="hero__creation-stream-particle hero__creation-stream-particle--magenta" cx="1120" cy="348" r="0.9"></circle>
</g>
<g class="hero__creation-stream-layer hero__creation-stream-layer--flares" filter="url(#creationStreamParticleGlow)">
<circle class="hero__creation-stream-flare hero__creation-stream-flare--origin" fill="url(#creationStreamFlareGradient)" cx="720" cy="584" r="15"></circle>
<circle class="hero__creation-stream-flare hero__creation-stream-flare--top" fill="url(#creationStreamFlareGradient)" cx="1156" cy="246" r="19"></circle>
<circle class="hero__creation-stream-flare hero__creation-stream-flare--bottom" fill="url(#creationStreamFlareGradient)" cx="1180" cy="440" r="22"></circle>
<path class="hero__creation-stream-flare-ray hero__creation-stream-flare-ray--top" stroke="url(#creationStreamWhiteCoreGradient)" d="M 1138 242 L 1174 242 M 1156 224 L 1156 260"></path>
<path class="hero__creation-stream-flare-ray hero__creation-stream-flare-ray--bottom" stroke="url(#creationStreamWhiteCoreGradient)" d="M 1160 440 L 1200 440 M 1180 420 L 1180 460"></path>
</g>
</svg>
</div>
<div class="hero__models-cta-wrap hero__models-cta-wrap--left">
<button type="button" class="hero__models-cta hero__models-cta--left" data-models-link="desktop-left" aria-label="Open Models">
<span class="latest-models-video-module latest-models-video-module--left" data-latest-models-video-module data-latest-models-video-module-side="left" aria-hidden="true">
<svg class="latest-models-video-module__edge-glow" viewBox="0 0 100 100" preserveAspectRatio="none" aria-hidden="true" focusable="false">
<defs>
<linearGradient id="latestModelsLeftEdgeGlowGradient" x1="90" y1="0" x2="80" y2="100" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#00f0ff" stop-opacity="0.82"/>
<stop offset="0.28" stop-color="#38bdf8" stop-opacity="0.78"/>
<stop offset="0.5" stop-color="#d354ff" stop-opacity="0.62"/>
<stop offset="0.74" stop-color="#14f1d9" stop-opacity="0.68"/>
<stop offset="1" stop-color="#8b5cf6" stop-opacity="0.42"/>
</linearGradient>
<linearGradient id="latestModelsLeftEdgeHighlightGradient" x1="90" y1="0" x2="80" y2="100" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#ffffff" stop-opacity="0.7"/>
<stop offset="0.32" stop-color="#9ffbff" stop-opacity="0.86"/>
<stop offset="0.54" stop-color="#ff6ff0" stop-opacity="0.46"/>
<stop offset="0.78" stop-color="#67e8f9" stop-opacity="0.78"/>
<stop offset="1" stop-color="#ffffff" stop-opacity="0.18"/>
</linearGradient>
<filter id="latestModelsLeftEdgeGlowSoft" filterUnits="userSpaceOnUse" x="-70" y="-20" width="240" height="140" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="5.6" result="edgeGlow"/>
<feMerge>
<feMergeNode in="edgeGlow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<path class="latest-models-video-module__edge-glow-path latest-models-video-module__edge-glow-path--halo" d="M 66 0 C 84 2 96 18 96 34 C 96 48 82 56 86 64 C 92 76 97 86 80 100"></path>
<path class="latest-models-video-module__edge-glow-path latest-models-video-module__edge-glow-path--core" d="M 66 0 C 84 2 96 18 96 34 C 96 48 82 56 86 64 C 92 76 97 86 80 100"></path>
<path class="latest-models-video-module__edge-glow-path latest-models-video-module__edge-glow-path--highlight" d="M 66 0 C 84 2 96 18 96 34 C 96 48 82 56 86 64 C 92 76 97 86 80 100"></path>
</svg>
<svg class="latest-models-video-module__mask" width="0" height="0" viewBox="0 0 1 1" aria-hidden="true" focusable="false">
<defs>
<clipPath id="latestModelsLeftTopClip" clipPathUnits="objectBoundingBox">
<path d="M 0 0 L 0.66 0 C 0.84 0.02 0.96 0.18 0.96 0.34 C 0.96 0.403945 0.930793 0.455372 0.902872 0.5 C 0.69 0.545 0.42 0.47 0 0.5 Z"></path>
</clipPath>
<clipPath id="latestModelsLeftBottomClip" clipPathUnits="objectBoundingBox">
<path d="M 0 0.486 C 0.42 0.456 0.69 0.531 0.911499 0.486 C 0.875492 0.545559 0.83639 0.59278 0.86 0.64 C 0.92 0.76 0.97 0.86 0.8 1 L 0 1 Z"></path>
</clipPath>
<clipPath id="latestModelsLeftModuleClip" clipPathUnits="objectBoundingBox">
<path d="M 0 0 L 0.66 0 C 0.84 0.02 0.96 0.18 0.96 0.34 C 0.96 0.48 0.82 0.56 0.86 0.64 C 0.92 0.76 0.97 0.86 0.8 1 L 0 1 Z"></path>
</clipPath>
</defs>
</svg>
<span class="latest-models-video-module__label">Platform Models</span>
<span class="latest-models-video-module__slot latest-models-video-module__slot--top" data-latest-models-slot="top">
<span class="latest-models-video-module__fallback" aria-hidden="true"></span>
</span>
<span class="latest-models-video-module__slot latest-models-video-module__slot--bottom" data-latest-models-slot="bottom">
<span class="latest-models-video-module__fallback" aria-hidden="true"></span>
</span>
</span>
</button>
</div>
<div class="hero__models-cta-wrap hero__models-cta-wrap--right">
<button type="button" class="hero__models-cta hero__models-cta--right" data-models-link="desktop" aria-label="Open Models">
<span class="latest-models-video-module latest-models-video-module--right" data-latest-models-video-module data-latest-models-video-module-side="right" aria-hidden="true">
<svg class="latest-models-video-module__edge-glow" viewBox="0 0 100 100" preserveAspectRatio="none" aria-hidden="true" focusable="false">
<defs>
<linearGradient id="latestModelsEdgeGlowGradient" x1="10" y1="0" x2="20" y2="100" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#00f0ff" stop-opacity="0.82"/>
<stop offset="0.28" stop-color="#38bdf8" stop-opacity="0.78"/>
<stop offset="0.5" stop-color="#d354ff" stop-opacity="0.62"/>
<stop offset="0.74" stop-color="#14f1d9" stop-opacity="0.68"/>
<stop offset="1" stop-color="#8b5cf6" stop-opacity="0.42"/>
</linearGradient>
<linearGradient id="latestModelsEdgeHighlightGradient" x1="10" y1="0" x2="20" y2="100" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#ffffff" stop-opacity="0.7"/>
<stop offset="0.32" stop-color="#9ffbff" stop-opacity="0.86"/>
<stop offset="0.54" stop-color="#ff6ff0" stop-opacity="0.46"/>
<stop offset="0.78" stop-color="#67e8f9" stop-opacity="0.78"/>
<stop offset="1" stop-color="#ffffff" stop-opacity="0.18"/>
</linearGradient>
<filter id="latestModelsEdgeGlowSoft" x="-80%" y="-12%" width="190%" height="124%" color-interpolation-filters="sRGB">
<feGaussianBlur stdDeviation="5.6" result="edgeGlow"/>
<feMerge>
<feMergeNode in="edgeGlow"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
</defs>
<path class="latest-models-video-module__edge-glow-path latest-models-video-module__edge-glow-path--halo" d="M 34 0 C 16 2 4 18 4 34 C 4 48 18 56 14 64 C 8 76 3 86 20 100"></path>
<path class="latest-models-video-module__edge-glow-path latest-models-video-module__edge-glow-path--core" d="M 34 0 C 16 2 4 18 4 34 C 4 48 18 56 14 64 C 8 76 3 86 20 100"></path>
<path class="latest-models-video-module__edge-glow-path latest-models-video-module__edge-glow-path--highlight" d="M 34 0 C 16 2 4 18 4 34 C 4 48 18 56 14 64 C 8 76 3 86 20 100"></path>
</svg>
<svg class="latest-models-video-module__mask" width="0" height="0" viewBox="0 0 1 1" aria-hidden="true" focusable="false">
<defs>
<clipPath id="latestModelsTopClip" clipPathUnits="objectBoundingBox">
<path d="M 1 0 L 0.34 0 C 0.16 0.02 0.04 0.18 0.04 0.34 C 0.04 0.403945 0.069207 0.455372 0.097128 0.5 C 0.31 0.545 0.58 0.47 1 0.5 Z"></path>
</clipPath>
<clipPath id="latestModelsBottomClip" clipPathUnits="objectBoundingBox">
<path d="M 1 0.486 C 0.58 0.456 0.31 0.531 0.088501 0.486 C 0.124508 0.545559 0.16361 0.59278 0.14 0.64 C 0.08 0.76 0.03 0.86 0.2 1 L 1 1 Z"></path>
</clipPath>
<clipPath id="latestModelsModuleClip" clipPathUnits="objectBoundingBox">
<path d="M 1 0 L 0.34 0 C 0.16 0.02 0.04 0.18 0.04 0.34 C 0.04 0.48 0.18 0.56 0.14 0.64 C 0.08 0.76 0.03 0.86 0.2 1 L 1 1 Z"></path>
</clipPath>
</defs>
</svg>
<span class="latest-models-video-module__label">Platform Models</span>
<span class="latest-models-video-module__slot latest-models-video-module__slot--top" data-latest-models-slot="top">
<span class="latest-models-video-module__fallback" aria-hidden="true"></span>
</span>
<span class="latest-models-video-module__slot latest-models-video-module__slot--bottom" data-latest-models-slot="bottom">
<span class="latest-models-video-module__fallback" aria-hidden="true"></span>
</span>
</span>
</button>
</div>
<div class="hero__content">
<div class="hero__title-wrap float-anim">
<h1 class="hero__title">
<img src="assets/images/1.png" alt="BITBI" class="hero__title-img"
width="600" height="391" fetchpriority="high" decoding="async">
</h1>
</div>
<p class="hero__saas-copy" aria-hidden="true">
<span>Create AI images, videos, and music in one studio.</span>
<span>Generate, save, organize, and publish creative media with credits built for real use.</span>
</p>
<div class="hero__actions hero__actions--single-cta">
<a href="/generate-lab/" class="hero__lab-teaser" target="bitbi-generate-lab" rel="noopener noreferrer" aria-label="Open Generate Lab in a new tab">
<span class="hero__lab-teaser-icon" aria-hidden="true">⚗️</span>
<span class="hero__lab-teaser-text">Open Generate Lab</span>
</a>
<a href="/canvas/" class="hero__canvas-teaser" aria-label="Open Canvas">
<span aria-hidden="true">◇</span><span>Canvas</span>
</a>
</div>
</div>
<div class="hero__scroll-hint" aria-hidden="true">
<span class="hero__scroll-text">Scroll</span>
<svg width="16" height="16" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24" style="color:rgba(0,240,255,0.4)"><path stroke-linecap="round" stroke-linejoin="round" d="M19 14l-7 7m0 0l-7-7m7 7V3"/></svg>
</div>
</section>
<!-- CATEGORY CAROUSEL -->
<div class="section-divider" aria-hidden="true"></div>
<div id="homeCategories" class="home-categories" data-active-category="video">
<div class="home-categories__viewport">
<!-- GALLERY -->
<section id="gallery" class="section home-categories__panel is-before" data-category-panel="gallery" aria-label="AI Creations Gallery" aria-hidden="true" inert>
<div class="section__inner">
<div class="section__header--sm reveal">
<div style="text-align:center">
<h2 class="section__title gt-cyan-mag" style="margin-block-start:0">AI Creations Gallery</h2>
</div>
</div>
<div class="gallery-mode reveal" role="tablist" aria-label="Gallery mode">
<div class="gallery-mode__item">
<button class="gallery-mode__btn gallery-mode__btn--explore active" data-mode="explore" role="tab" aria-selected="true" tabindex="0">
<svg class="gallery-mode__icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><circle cx="11" cy="11" r="8"/><path d="m21 21-4.35-4.35"/></svg>
<span class="gallery-mode__label">Explore</span>
</button>
</div>
<div class="gallery-mode__item">
<button class="gallery-mode__btn gallery-mode__btn--create gallery-mode__btn--locked" data-mode="create" role="tab" aria-selected="false" tabindex="-1">
<svg class="gallery-mode__icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="m21.64 3.64-1.28-1.28a1.21 1.21 0 0 0-1.72 0L2.36 18.64a1.21 1.21 0 0 0 0 1.72l1.28 1.28a1.21 1.21 0 0 0 1.72 0L21.64 5.36a1.21 1.21 0 0 0 0-1.72Z"/><path d="m14 7 3 3"/><path d="M5 6v4"/><path d="M7 8H3"/><path d="M19 14v4"/><path d="M21 16h-4"/></svg>
<span class="gallery-mode__label">Create</span>
<span class="gallery-mode__lock" aria-hidden="true">🔒</span>
</button>
</div>
</div>
<div id="galleryExplore">
<div id="galleryGrid" class="grid-gallery"></div>
<div id="galleryPagination" class="browse-pagination" style="display:none"></div>
</div>
<div id="galleryStudio" class="creator-create gallery-create" style="display:none">
<div class="studio creator-create__studio">
<div class="studio__grid creator-create__shell">
<section class="studio__card creator-create__panel creator-create__panel--controls reveal" aria-labelledby="galleryCreateTitle">
<div class="creator-create__panel-head">
<div>
<p class="creator-create__eyebrow">Gallery Create</p>
<h2 id="galleryCreateTitle" class="creator-create__title">FLUX.1 Schnell</h2>
</div>
<span class="creator-create__badge">Text to image</span>
</div>
<div class="creator-create__group creator-create__group--prompt">
<label for="galStudioPrompt" class="creator-create__label">Describe your image</label>
<textarea id="galStudioPrompt" class="studio__prompt creator-create__textarea creator-create__textarea--prompt" placeholder="A luminous glass sculpture in a rain-soaked cyberpunk gallery..." maxlength="1000" rows="6"></textarea>
<p class="creator-create__help">Describe the subject, setting, style, mood, and lighting.</p>
</div>
<div class="creator-create__group">
<div class="creator-create__group-head">
<h3 class="creator-create__group-title">Image settings</h3>
<span class="creator-create__optional">Fast generation</span>
</div>
<div class="studio__controls creator-create__settings-grid gallery-create__settings-grid">
<div class="studio__field creator-create__field">
<label for="galStudioModel" class="studio__field-label creator-create__label">Model</label>
<select id="galStudioModel" class="studio__field-input creator-create__select"></select>
</div>
<div class="studio__field creator-create__field">
<label for="galStudioSteps" class="studio__field-label creator-create__label">Steps</label>
<select id="galStudioSteps" class="studio__field-input creator-create__select">
<option value="2">2</option>
<option value="3">3</option>
<option value="4" selected>4 (default)</option>
<option value="6">6</option>
<option value="8">8 (max)</option>
</select>
</div>
<div class="studio__field creator-create__field">
<label for="galStudioSeed" class="studio__field-label creator-create__label">Seed</label>
<div class="studio__seed-wrap creator-create__seed-wrap">
<input type="number" id="galStudioSeed" class="studio__field-input creator-create__input" placeholder="Random" min="0">
<button type="button" id="galStudioRandomize" class="studio__randomize creator-create__icon-btn" title="Randomize seed" aria-label="Randomize seed">🎲</button>
</div>
</div>
</div>
</div>
<div class="creator-create__action-card" aria-live="polite">
<div class="creator-create__cost">
<span>Estimated cost</span>
<strong id="galStudioCreditEstimate">1 credit</strong>
</div>
<div class="studio__actions">
<button type="button" id="galStudioGenerate" class="studio__generate-btn creator-create__generate">Generate</button>
<span class="studio__hint creator-create__hint">Ctrl+Enter</span>
</div>
</div>
<div id="galStudioGenMsg" class="studio__msg creator-create__msg" role="status"></div>
<div id="galStudioSaveBar" class="studio__save-bar creator-create__save-bar">
<select id="galStudioFolderSelect" class="studio__folder-select creator-create__select"><option value="">Assets</option></select>
<button type="button" id="galStudioSaveBtn" class="studio__save-btn creator-create__save-btn">Save</button>
</div>
</section>
<section class="studio__card creator-create__panel creator-create__panel--preview reveal" aria-labelledby="galleryPreviewTitle">
<div class="creator-create__panel-head">
<div>
<p class="creator-create__eyebrow">Result</p>
<h2 id="galleryPreviewTitle" class="creator-create__title">Preview</h2>
</div>
<span class="creator-create__preview-note">Save to Assets Manager</span>
</div>
<div id="galStudioPreview" class="studio__preview creator-create__preview">
<div class="studio__preview-empty creator-create__empty">
<span class="creator-create__empty-icon" aria-hidden="true">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="3" width="18" height="18" rx="3"/><circle cx="8.5" cy="8.5" r="1.5"/><path d="m21 16-5-5L5 21"/></svg>
</span>
<strong>Your generated image will appear here.</strong>
<span>Save the result into Assets Manager when you are ready.</span>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</section>
<!-- VIDEO CREATIONS -->
<section id="video-creations" class="section home-categories__panel is-active" data-category-panel="video" aria-label="AI Video Creations" aria-hidden="false">
<div class="section__inner">
<div class="section__header--sm reveal">
<div style="text-align:center">
<h2 class="section__title gt-gold-cyan" style="margin-block-start:0">Video Creations</h2>
</div>
</div>
<div class="video-mode reveal" role="tablist" aria-label="Video actions">
<div class="video-mode__item">
<button type="button" class="video-mode__btn video-mode__btn--explore active" data-video-mode="explore" role="tab" aria-selected="true" tabindex="0">
<svg class="video-mode__icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><circle cx="11" cy="11" r="8"/><path d="m21 21-4.35-4.35"/></svg>
<span class="video-mode__label">Explore</span>
</button>
</div>
<div class="video-mode__item">
<button type="button" class="video-mode__btn video-mode__btn--create video-mode__btn--locked" data-video-mode="create" role="tab" aria-selected="false" tabindex="-1">
<svg class="video-mode__icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="m21.64 3.64-1.28-1.28a1.21 1.21 0 0 0-1.72 0L2.36 18.64a1.21 1.21 0 0 0 0 1.72l1.28 1.28a1.21 1.21 0 0 0 1.72 0L21.64 5.36a1.21 1.21 0 0 0 0-1.72Z"/><path d="m14 7 3 3"/><path d="M5 6v4"/><path d="M7 8H3"/><path d="M19 14v4"/><path d="M21 16h-4"/></svg>
<span class="video-mode__label">Create</span>
</button>
</div>
</div>
<div id="videoExplore" class="video-explore reveal"></div>
<div id="videoPagination" class="browse-pagination" style="display:none"></div>
<div id="videoCreate" class="video-create" style="display:none">
<div class="video-create__shell">
<section class="video-create__panel video-create__panel--controls reveal" aria-labelledby="videoCreateTitle">
<div class="video-create__panel-head">
<div>
<p class="video-create__eyebrow">Video Create</p>
<h2 id="videoCreateTitle" class="video-create__title">PixVerse V6</h2>
</div>
<span class="video-create__badge">Text & image to video</span>
</div>
<div class="video-create__group video-create__group--prompt">
<label for="videoPrompt" class="video-create__label">Describe your video</label>
<textarea id="videoPrompt" class="video-create__textarea video-create__textarea--prompt" maxlength="2048" placeholder="A cinematic neon city street at night, slow camera push-in, rain reflections, dramatic lighting..." rows="6"></textarea>
<p class="video-create__help">Describe the scene, motion, subject, light, and camera feel.</p>
</div>
<div class="video-create__group">
<div class="video-create__group-head">
<h3 class="video-create__group-title">Creative controls</h3>
<span class="video-create__optional">Optional</span>
</div>
<div class="video-create__creative-grid">
<div class="video-create__field">
<label for="videoNegativePrompt" class="video-create__label">Negative prompt</label>
<textarea id="videoNegativePrompt" class="video-create__textarea" maxlength="2048" placeholder="Optional: blur, distorted faces, low quality..." rows="3"></textarea>
</div>
<div class="video-create__field">
<label class="video-create__label" for="videoReferenceImage">Reference image</label>
<div class="video-create__upload-shell">
<input id="videoReferenceImage" class="video-create__file-input" type="file" accept="image/*">
<label for="videoReferenceImage" class="video-create__upload">
<span class="video-create__upload-icon" aria-hidden="true">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M12 5v14"/><path d="m5 12 7-7 7 7"/><path d="M4 19h16"/></svg>
</span>
<span id="videoReferenceThumb" class="video-create__reference-thumb" hidden aria-hidden="true"></span>
<span class="video-create__upload-copy">
<strong>Add reference image</strong>
<span id="videoReferencePreview" class="video-create__reference-preview">Optional image-to-video reference</span>
</span>
</label>
<button id="videoReferenceRemove" class="video-create__upload-remove" type="button" hidden>Remove</button>
</div>
</div>
</div>
</div>
<div class="video-create__group">
<h3 class="video-create__group-title">Video settings</h3>
<div class="video-create__settings-grid">
<label class="video-create__field">
<span class="video-create__label">Duration</span>
<select id="videoDuration" class="video-create__select" aria-label="Video duration">
<option value="1">1 second</option>
<option value="2">2 seconds</option>
<option value="3">3 seconds</option>
<option value="4">4 seconds</option>
<option value="5" selected>5 seconds</option>
<option value="6">6 seconds</option>
<option value="7">7 seconds</option>
<option value="8">8 seconds</option>
<option value="9">9 seconds</option>
<option value="10">10 seconds</option>
<option value="11">11 seconds</option>
<option value="12">12 seconds</option>
<option value="13">13 seconds</option>
<option value="14">14 seconds</option>
<option value="15">15 seconds</option>
</select>
</label>
<label class="video-create__field">
<span class="video-create__label">Aspect</span>
<select id="videoAspectRatio" class="video-create__select" aria-label="Video aspect ratio">
<option value="16:9" selected>16:9</option>
<option value="4:3">4:3</option>
<option value="1:1">1:1</option>
<option value="3:4">3:4</option>
<option value="9:16">9:16</option>
<option value="2:3">2:3</option>
<option value="3:2">3:2</option>
<option value="21:9">21:9</option>
</select>
</label>
<label class="video-create__field">
<span class="video-create__label">Quality</span>
<select id="videoQuality" class="video-create__select" aria-label="Video quality">
<option value="360p">360p</option>
<option value="540p">540p</option>
<option value="720p" selected>720p</option>
<option value="1080p">1080p</option>
</select>
</label>
<label class="video-create__toggle">
<input id="videoGenerateAudio" type="checkbox" checked>
<span class="video-create__toggle-ui" aria-hidden="true"></span>
<span class="video-create__toggle-copy">
<strong>Audio</strong>
<span>Generate sound with the clip</span>
</span>
</label>
</div>
<details class="video-create__advanced">
<summary>Advanced seed</summary>
<label class="video-create__field">
<span class="video-create__label">Seed</span>
<input id="videoSeed" class="video-create__input" type="number" min="0" max="2147483647" step="1" inputmode="numeric" placeholder="Optional">
</label>
</details>
</div>
<div class="video-create__action-card" aria-live="polite">
<div class="video-create__cost">
<span>Estimated cost</span>
<strong id="videoCreditEstimate">185 credits</strong>
</div>
<div id="videoCreditBalance" class="video-create__balance">Checking balance...</div>
<button id="videoGenerate" type="button" class="video-create__generate">Generate Video</button>
</div>
<div id="videoMsg" class="studio__msg video-create__msg" aria-live="polite"></div>
</section>
<section class="video-create__panel video-create__panel--preview reveal" aria-labelledby="videoPreviewTitle">
<div class="video-create__panel-head">
<div>
<p class="video-create__eyebrow">Result</p>
<h2 id="videoPreviewTitle" class="video-create__title">Preview</h2>
</div>
<span class="video-create__preview-note">Private until published</span>
</div>
<div id="videoPreview" class="video-create__preview" tabindex="-1">
<div class="video-create__empty">
<span class="video-create__empty-icon" aria-hidden="true">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><path d="M15 10.5 20 7v10l-5-3.5V17a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2z"/><path d="M7 9h4"/><path d="M7 13h2"/></svg>
</span>
<strong>Your generated video will appear here.</strong>
<span>PixVerse clips save into Assets Manager so you can review and publish them later.</span>
</div>
</div>
</section>
</div>
</div>
</div>
</section>
<!-- SOUND LAB -->
<section id="soundlab" class="section home-categories__panel is-after" data-category-panel="sound" aria-label="Sound Lab" aria-hidden="true" inert>
<div class="section__inner">
<div class="section__header--sm reveal">
<div style="text-align:center">
<h2 class="section__title gt-gold-cyan" style="margin-block-start:0">Sound Lab</h2>
</div>
</div>
<div class="video-mode reveal" role="tablist" aria-label="Sound Lab actions">
<div class="video-mode__item">
<button type="button" class="video-mode__btn video-mode__btn--explore active" data-sound-mode="explore" role="tab" aria-selected="true" tabindex="0">
<svg class="video-mode__icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><circle cx="11" cy="11" r="8"/><path d="m21 21-4.35-4.35"/></svg>
<span class="video-mode__label">Explore</span>
</button>
</div>
<div class="video-mode__item">
<button type="button" class="video-mode__btn video-mode__btn--create video-mode__btn--locked" data-sound-mode="create" role="tab" aria-selected="false" tabindex="-1">
<svg class="video-mode__icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="m21.64 3.64-1.28-1.28a1.21 1.21 0 0 0-1.72 0L2.36 18.64a1.21 1.21 0 0 0 0 1.72l1.28 1.28a1.21 1.21 0 0 0 1.72 0L21.64 5.36a1.21 1.21 0 0 0 0-1.72Z"/><path d="m14 7 3 3"/><path d="M5 6v4"/><path d="M7 8H3"/><path d="M19 14v4"/><path d="M21 16h-4"/></svg>
<span class="video-mode__label">Create</span>
</button>
</div>
</div>
<div id="soundLabExplore" class="section__inner section__inner--soundlab">
<div class="card-stack" id="soundLabTracks"></div>
<div id="playlistPlayer" class="reveal" style="margin-block-start:var(--space-4)"></div>
</div>
<div id="soundLabCreate" class="section__inner section__inner--soundlab sound-create creator-create" style="display:none">
<div class="studio sound-create__studio creator-create__studio">
<div class="studio__grid creator-create__shell">
<section class="studio__card creator-create__panel creator-create__panel--controls reveal" aria-labelledby="soundCreateTitle">
<div class="creator-create__panel-head">
<div>
<p class="creator-create__eyebrow">Sound Lab Create</p>
<h2 id="soundCreateTitle" class="creator-create__title">Music 2.6</h2>
</div>
<span class="creator-create__badge">Text to music</span>
</div>
<div class="creator-create__group creator-create__group--prompt">
<label for="soundMusicPrompt" class="creator-create__label">Describe your track</label>
<textarea id="soundMusicPrompt" class="studio__prompt creator-create__textarea creator-create__textarea--prompt" placeholder="A glossy synth-pop track with warm bass, late-night city energy, and bright vocal hooks..." maxlength="2000" rows="6"></textarea>
<p class="creator-create__help">Describe style, energy, instruments, vocal feel, and mood.</p>
</div>
<div class="creator-create__group">
<div class="creator-create__group-head">
<h3 class="creator-create__group-title">Lyrics</h3>
<span class="creator-create__optional">Optional</span>
</div>
<div class="studio__controls sound-create__controls">
<div class="studio__field sound-create__lyrics-field creator-create__field">
<label for="soundMusicLyrics" class="studio__field-label creator-create__label">Manual lyrics</label>
<textarea id="soundMusicLyrics" class="studio__field-input sound-create__lyrics creator-create__textarea" placeholder="Optional lyrics" maxlength="3500" rows="5"></textarea>
</div>
</div>
</div>
<div class="creator-create__group">
<h3 class="creator-create__group-title">Music options</h3>
<div class="sound-create__toggles">
<label class="sound-create__toggle creator-create__toggle">
<input type="checkbox" id="soundMusicInstrumental">
<span class="creator-create__toggle-ui" aria-hidden="true"></span>
<span class="creator-create__toggle-copy">
<strong>Instrumental</strong>
<span>No vocals or lyrics</span>
</span>
</label>
<label class="sound-create__toggle creator-create__toggle">
<input type="checkbox" id="soundMusicGenerateLyrics">
<span class="creator-create__toggle-ui" aria-hidden="true"></span>
<span class="creator-create__toggle-copy">
<strong>Generate lyrics first</strong>
<span>Adds the lyrics step</span>
</span>
</label>
</div>
</div>
<div class="creator-create__action-card" aria-live="polite">
<div class="creator-create__cost">
<span>Estimated cost</span>
<strong id="soundMusicCreditEstimate">150 credits</strong>
</div>
<div class="studio__actions">
<button type="button" id="soundMusicGenerate" class="studio__generate-btn creator-create__generate">Generate Music — 150 Credits</button>
<span class="studio__hint creator-create__hint">Ctrl+Enter</span>
</div>
</div>
<div id="soundMusicMsg" class="studio__msg creator-create__msg" role="status"></div>
</section>
<section class="studio__card creator-create__panel creator-create__panel--preview reveal" aria-labelledby="soundPreviewTitle">
<div class="creator-create__panel-head">
<div>
<p class="creator-create__eyebrow">Result</p>
<h2 id="soundPreviewTitle" class="creator-create__title">Preview</h2>
</div>
<span class="creator-create__preview-note">Saved automatically</span>
</div>
<p class="sound-create__info">Music generation can take up to 2 minutes.</p>
<div id="soundMusicPreview" class="studio__preview sound-create__preview creator-create__preview">
<div class="studio__preview-empty creator-create__empty">
<span class="creator-create__empty-icon" aria-hidden="true">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><path d="M9 18V5l12-2v13"/><circle cx="6" cy="18" r="3"/><circle cx="18" cy="16" r="3"/></svg>
</span>
<strong>Your generated music will appear here.</strong>
<span>The track saves into Assets Manager with its cover when generation completes.</span>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
<!-- Gallery Modal -->
<div id="galleryModal" class="modal-overlay" role="dialog" aria-modal="true" aria-hidden="true" aria-labelledby="modalTitle">
<div class="modal-content">
<div class="modal-card">
<a id="modalFullLink" class="modal-action modal-action--left modal-action--detail-full" href="#" target="_blank" rel="noopener noreferrer" aria-label="Open full resolution image" title="Open full size" hidden>
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"/><polyline points="15 3 21 3 21 9"/><line x1="10" y1="14" x2="21" y2="3"/></svg>
</a>
<button type="button" class="modal-action modal-action--left modal-action--detail-close modal-close" aria-label="Close gallery modal" title="Close">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><line x1="18" y1="6" x2="6" y2="18"/><line x1="6" y1="6" x2="18" y2="18"/></svg>
</button>
<div id="modalImage" class="modal-image"></div>
<div class="modal-body">
<h3 id="modalTitle" class="modal-title"></h3>
<p id="modalCaption" class="modal-caption"></p>
</div>
</div>
</div>
</div>
</main>
<!-- FOOTER -->
<footer class="site-footer">
<div class="site-footer__inner">
<section id="contact" class="contact-drawer site-footer__contact-drawer" aria-label="Contact">
<div class="site-footer__top">
<div class="site-footer__brand">
<span class="site-footer__brand-name gt-hero">BITBI</span>
<p class="site-footer__tagline">My Digital Playground</p>
</div>
<h2 class="contact-drawer__heading reveal">
<button
type="button"
id="contactDrawerTrigger"
class="contact-drawer__trigger glass"
aria-expanded="false"
aria-controls="contactDrawerPanel"
>
<span class="contact-drawer__trigger-label">Contact</span>
<span class="contact-drawer__chevron" aria-hidden="true">
<svg width="22" height="22" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round">
<path d="m6 9 6 6 6-6"/>
</svg>
</span>
</button>
</h2>
<div class="site-footer__social">
<a href="https://x.com/bitbi_ai" target="_blank" rel="noopener noreferrer" class="site-footer__social-link" aria-label="X (Twitter)"><svg width="18" height="18" fill="currentColor" viewBox="0 0 24 24"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg></a>
</div>
</div>
<div id="contactDrawerPanel" class="contact-drawer__panel" aria-hidden="true">
<div class="contact-drawer__panel-inner">
<div class="contact-drawer__panel-header">
<h3 class="contact-drawer__panel-title gt-gold-cyan">Say Hello</h3>
</div>
<div class="contact-drawer__form-shell">
<form id="contactForm" class="glass rounded-2xl contact-form" style="padding:var(--space-6)">
<div aria-hidden="true" style="position:absolute;left:-9999px;top:-9999px">
<label for="hp_website">Website</label>
<input type="text" name="website" id="hp_website" tabindex="-1" autocomplete="off">
</div>
<div class="grid-form">
<div>
<label for="contactName" class="sr-only">Name</label>
<input type="text" name="name" id="contactName" placeholder="Name" required class="form-input" autocomplete="name">
</div>
<div>
<label for="contactEmail" class="sr-only">Email</label>
<input type="email" name="email" id="contactEmail" placeholder="Email" required class="form-input" autocomplete="email" spellcheck="false" autocapitalize="off">
</div>
</div>
<label for="contactSubject" class="sr-only">Subject</label>
<input type="text" name="subject" id="contactSubject" placeholder="Subject" class="form-input">