-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshowcase.html
More file actions
1024 lines (932 loc) · 59 KB
/
showcase.html
File metadata and controls
1024 lines (932 loc) · 59 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>
<script>
(function() {
try {
var t = localStorage.getItem('sceneview-theme');
if (t !== 'dark' && t !== 'light') {
t = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
}
document.documentElement.setAttribute('data-theme', t);
} catch(e) {
document.documentElement.setAttribute('data-theme', 'dark');
}
})();
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Showcase — SceneView 3D & AR SDK</title>
<meta name="description" content="See SceneView in action: interactive demos, downloadable sample apps for Android, iOS, Web, and TV. Explore 3D and AR across every platform.">
<meta name="robots" content="index, follow">
<link rel="canonical" href="https://sceneview.github.io/showcase.html">
<meta property="og:title" content="Showcase — SceneView 3D & AR SDK">
<meta property="og:description" content="Interactive demos and downloadable sample apps for Android, iOS, Web, and TV. Explore SceneView 3D and AR across every platform.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://sceneview.github.io/showcase.html">
<meta property="og:image" content="https://sceneview.github.io/og-image.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:image:alt" content="SceneView 3D & AR SDK showcase">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Showcase — SceneView 3D & AR SDK">
<meta name="twitter:description" content="Interactive demos and downloadable sample apps. Explore SceneView across every platform.">
<meta name="twitter:image" content="https://sceneview.github.io/og-image.png">
<meta name="theme-color" content="#005bc1">
<meta property="og:site_name" content="SceneView">
<meta property="og:locale" content="en_US">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "CollectionPage",
"name": "SceneView Showcase",
"description": "Interactive demos and downloadable sample apps for Android, iOS, Web, and TV.",
"url": "https://sceneview.github.io/showcase.html",
"isPartOf": { "@type": "WebSite", "name": "SceneView", "url": "https://sceneview.github.io/" }
}
</script>
<link rel="preload" href="styles.css" as="style">
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<link rel="stylesheet" href="styles.css">
<style>
/* ===== SHOWCASE PAGE STYLES ===== */
/* Hero */
.sc-hero {
position: relative;
padding: calc(var(--nav-height) + 80px) 0 80px;
text-align: center;
overflow: hidden;
}
.sc-hero::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: radial-gradient(ellipse 80% 50% at 50% 30%, rgba(0, 91, 193, 0.08) 0%, transparent 70%);
pointer-events: none;
}
[data-theme="dark"] .sc-hero::before {
background: radial-gradient(ellipse 80% 50% at 50% 30%, rgba(13, 65, 157, 0.18) 0%, transparent 70%);
}
.sc-hero__container {
max-width: var(--container-max);
margin: 0 auto;
padding: 0 var(--container-padding);
}
.sc-hero__title {
font-size: clamp(2.5rem, 6vw, 3.75rem);
font-weight: 800;
letter-spacing: -0.03em;
line-height: 1.1;
background: var(--gradient-hero);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 16px;
}
.sc-hero__sub {
font-size: clamp(1.05rem, 2.5vw, 1.25rem);
color: var(--color-on-surface-variant);
max-width: 600px;
margin: 0 auto;
line-height: 1.7;
}
/* Sections */
.sc-section {
padding: 80px 0;
}
.sc-section--alt {
background: var(--color-surface-dim);
}
.sc-container {
max-width: var(--container-max);
margin: 0 auto;
padding: 0 var(--container-padding);
}
.sc-section__header {
text-align: center;
margin-bottom: 48px;
}
.sc-section__title {
font-size: clamp(1.75rem, 4vw, 2.25rem);
font-weight: 800;
letter-spacing: -0.025em;
color: var(--color-on-surface);
margin-bottom: 8px;
}
.sc-section__sub {
font-size: 1.05rem;
color: var(--color-on-surface-variant);
max-width: 560px;
margin: 0 auto;
line-height: 1.7;
}
/* ===== APP CARDS (Sample Apps) ===== */
.sc-apps-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
}
.sc-app-card {
background: var(--color-surface-container-lowest);
border: 1px solid var(--color-outline);
border-radius: 24px;
overflow: hidden;
transition: transform var(--duration-short) var(--ease-spring),
box-shadow var(--duration-short);
}
.sc-app-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-xl);
}
.sc-app-card__visual {
aspect-ratio: 16 / 10;
background: var(--color-surface-container);
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
position: relative;
overflow: hidden;
}
.sc-app-card__body {
padding: 24px;
}
.sc-app-card__top-row {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 8px;
}
.sc-app-card__name {
font-size: 1.25rem;
font-weight: 700;
color: var(--color-on-surface);
}
.sc-app-card__github {
color: var(--color-on-surface-variant);
transition: color var(--duration-short);
display: flex;
align-items: center;
gap: 6px;
font-size: 0.8rem;
font-weight: 500;
}
.sc-app-card__github:hover {
color: var(--color-primary);
}
.sc-app-card__desc {
font-size: 0.9rem;
color: var(--color-on-surface-variant);
line-height: 1.6;
margin-bottom: 16px;
}
.sc-app-card__actions {
display: flex;
align-items: center;
gap: 12px;
flex-wrap: wrap;
}
/* Store badges */
.sc-badge {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 16px;
border-radius: 10px;
background: #000;
color: #fff;
font-size: 0.75rem;
font-weight: 600;
text-decoration: none;
transition: transform var(--duration-short) var(--ease-spring),
opacity var(--duration-short);
line-height: 1.2;
}
.sc-badge:hover {
transform: scale(1.05);
opacity: 0.9;
}
.sc-badge__text-top {
font-size: 0.55rem;
font-weight: 400;
display: block;
opacity: 0.85;
}
.sc-badge__text-bottom {
font-size: 0.8rem;
font-weight: 600;
display: block;
}
.sc-badge--browser {
background: var(--color-primary);
color: var(--color-on-primary);
}
/* ===== TRY IT LIVE CARDS ===== */
.sc-live-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
}
.sc-live-card {
background: var(--color-surface-container-lowest);
border: 1px solid var(--color-outline);
border-radius: 24px;
overflow: hidden;
text-decoration: none;
transition: transform var(--duration-short) var(--ease-spring),
box-shadow var(--duration-short);
}
.sc-live-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-xl);
}
.sc-live-card__visual {
aspect-ratio: 16 / 9;
background: var(--color-surface-container);
display: flex;
align-items: center;
justify-content: center;
padding: 32px;
position: relative;
}
.sc-live-card__body {
padding: 24px;
}
.sc-live-card__name {
font-size: 1.15rem;
font-weight: 700;
color: var(--color-on-surface);
margin-bottom: 6px;
}
.sc-live-card__desc {
font-size: 0.9rem;
color: var(--color-on-surface-variant);
line-height: 1.6;
margin-bottom: 12px;
}
.sc-live-card__link {
display: inline-flex;
align-items: center;
gap: 4px;
font-size: 0.85rem;
font-weight: 600;
color: var(--color-primary);
}
.sc-live-card__link svg {
transition: transform var(--duration-short) var(--ease-spring);
}
.sc-live-card:hover .sc-live-card__link svg {
transform: translateX(4px);
}
/* ===== PLATFORM GALLERY ===== */
.sc-platforms-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}
.sc-platform-card {
background: var(--color-surface-container-lowest);
border: 1px solid var(--color-outline);
border-radius: 20px;
padding: 24px 20px;
text-align: center;
transition: transform var(--duration-short) var(--ease-spring),
box-shadow var(--duration-short);
}
.sc-platform-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-card);
}
.sc-platform-card__device {
width: 100%;
height: 120px;
margin-bottom: 16px;
display: flex;
align-items: center;
justify-content: center;
}
.sc-platform-card__name {
font-size: 0.95rem;
font-weight: 700;
color: var(--color-on-surface);
margin-bottom: 4px;
}
.sc-platform-card__info {
font-size: 0.75rem;
color: var(--color-on-surface-variant);
margin-bottom: 10px;
line-height: 1.5;
}
.sc-status {
display: inline-block;
padding: 3px 10px;
border-radius: 9999px;
font-size: 0.65rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
}
.sc-status--stable { background: rgba(22,163,74,0.12); color: var(--color-status-stable); }
.sc-status--alpha { background: rgba(124,58,237,0.12); color: var(--color-status-alpha); }
.sc-status--soon { background: rgba(76,95,133,0.12); color: var(--color-status-soon); }
.sc-status--placeholder { background: rgba(76,95,133,0.08); color: var(--color-status-soon); }
/* ===== SVG DEVICE MOCKUPS ===== */
.sc-device-svg {
max-height: 100%;
max-width: 100%;
}
/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
.sc-platforms-grid {
grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width: 768px) {
.sc-apps-grid,
.sc-live-grid {
grid-template-columns: 1fr;
}
.sc-platforms-grid {
grid-template-columns: repeat(2, 1fr);
}
.sc-hero {
padding-top: calc(var(--nav-height) + 48px);
padding-bottom: 48px;
}
.sc-section {
padding: 56px 0;
}
}
@media (max-width: 480px) {
.sc-platforms-grid {
grid-template-columns: 1fr;
}
}
</style>
<link href="assets/fonts/fonts.css" rel="stylesheet">
</head>
<body>
<!-- ===== NAVIGATION ===== -->
<nav class="nav" id="nav">
<div class="nav__container">
<a href="/" class="nav__brand" aria-label="SceneView SDK — home">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" width="28" height="28" aria-hidden="true" style="flex-shrink:0">
<defs>
<linearGradient id="navTopGrad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" stop-color="#8AB4F8"/><stop offset="100%" stop-color="#42A5F5"/></linearGradient>
<linearGradient id="navRightGrad" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" stop-color="#4A90D9"/><stop offset="100%" stop-color="#1A73E8"/></linearGradient>
<linearGradient id="navLeftGrad" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" stop-color="#1A73E8"/><stop offset="100%" stop-color="#0D47A1"/></linearGradient>
</defs>
<polygon points="256,272 122,194 122,340 256,418" fill="url(#navLeftGrad)"/>
<polygon points="256,272 390,194 390,340 256,418" fill="url(#navRightGrad)"/>
<polygon points="256,126 390,204 256,282 122,204" fill="url(#navTopGrad)"/>
<polyline points="96,120 96,82 134,82" fill="none" stroke="#1A73E8" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="416,120 416,82 378,82" fill="none" stroke="#1A73E8" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="96,392 96,430 134,430" fill="none" stroke="#1A73E8" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"/>
<polyline points="416,392 416,430 378,430" fill="none" stroke="#1A73E8" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<span>SceneView SDK</span>
</a>
<button class="nav__hamburger" id="hamburger" aria-label="Toggle menu">
<span></span><span></span><span></span>
</button>
<div class="nav__links" id="navLinks">
<a href="/#features" class="nav__link">Features</a>
<a href="/showcase.html" class="nav__link nav__link--active">Showcase</a>
<a href="/playground.html" class="nav__link">Playground</a>
<a href="/docs.html" class="nav__link" target="_blank" rel="noopener">Docs</a>
<button class="nav__theme-toggle" id="themeToggle" aria-label="Toggle dark mode">
<svg class="icon-sun" viewBox="0 0 24 24" width="20" height="20" fill="none" stroke="currentColor" stroke-width="2">
<circle cx="12" cy="12" r="5"/><path d="M12 1v2M12 21v2M4.22 4.22l1.42 1.42M18.36 18.36l1.42 1.42M1 12h2M21 12h2M4.22 19.78l1.42-1.42M18.36 5.64l1.42-1.42"/>
</svg>
<svg class="icon-moon" viewBox="0 0 24 24" width="20" height="20" fill="none" stroke="currentColor" stroke-width="2">
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"/>
</svg>
</button>
</div>
<div class="nav__actions">
<a href="https://github.com/sceneview/sceneview" class="nav__icon-btn" target="_blank" rel="noopener" aria-label="View on GitHub">
<svg viewBox="0 0 24 24" width="20" height="20" fill="currentColor" aria-hidden="true">
<path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0 0 24 12c0-6.63-5.37-12-12-12z"/>
</svg>
</a>
<button class="nav__hamburger nav__hamburger--mobile" id="hamburgerMobile" aria-label="Toggle menu">
<span></span><span></span><span></span>
</button>
</div>
</div>
</nav>
<main>
<!-- ===== HERO ===== -->
<section class="sc-hero">
<div class="sc-hero__container">
<h1 class="sc-hero__title">See SceneView in Action</h1>
<p class="sc-hero__sub">Interactive demos, downloadable sample apps, and a live playground. Explore 3D and AR across every platform SceneView supports.</p>
</div>
</section>
<!-- ===== SAMPLE APPS ===== -->
<section class="sc-section">
<div class="sc-container">
<div class="sc-section__header">
<h2 class="sc-section__title">Sample Apps</h2>
<p class="sc-section__sub">Download and run real apps showcasing SceneView on every platform. All open source.</p>
</div>
<div class="sc-apps-grid">
<!-- Android Demo -->
<div class="sc-app-card">
<div class="sc-app-card__visual">
<!-- Android phone SVG mockup -->
<svg class="sc-device-svg" viewBox="0 0 220 400" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="10" y="10" width="200" height="380" rx="28" fill="#1a1a2e" stroke="var(--color-outline-variant)" stroke-width="2"/>
<rect x="22" y="44" width="176" height="312" rx="4" fill="var(--color-surface-container-high)"/>
<!-- Status bar -->
<rect x="22" y="44" width="176" height="24" rx="4" fill="var(--color-surface-container-highest)"/>
<circle cx="165" cy="56" r="3" fill="var(--color-status-stable)"/>
<rect x="174" y="53" width="16" height="6" rx="2" fill="var(--color-on-surface-variant)" opacity="0.4"/>
<!-- Camera notch -->
<rect x="80" y="16" width="60" height="20" rx="10" fill="#111"/>
<circle cx="110" cy="26" r="5" fill="#222"/>
<!-- 3D cube in viewport -->
<polygon points="110,120 145,140 145,180 110,200 75,180 75,140" fill="var(--color-primary)" opacity="0.3"/>
<polygon points="110,120 145,140 110,160 75,140" fill="var(--color-primary)" opacity="0.5"/>
<polygon points="110,160 145,140 145,180 110,200" fill="var(--color-primary)" opacity="0.4"/>
<polygon points="110,160 75,140 75,180 110,200" fill="var(--color-primary)" opacity="0.2"/>
<!-- Bottom nav -->
<rect x="22" y="326" width="176" height="30" fill="var(--color-surface-container-highest)"/>
<circle cx="55" cy="341" r="6" fill="var(--color-primary)" opacity="0.5"/>
<circle cx="90" cy="341" r="6" fill="var(--color-on-surface-variant)" opacity="0.2"/>
<circle cx="125" cy="341" r="6" fill="var(--color-on-surface-variant)" opacity="0.2"/>
<circle cx="160" cy="341" r="6" fill="var(--color-on-surface-variant)" opacity="0.2"/>
<!-- Label: 3D | AR | Samples | About -->
<text x="55" y="350" text-anchor="middle" font-size="5" fill="var(--color-primary)" font-family="Inter, sans-serif" font-weight="600">3D</text>
<text x="90" y="350" text-anchor="middle" font-size="5" fill="var(--color-on-surface-variant)" font-family="Inter, sans-serif" opacity="0.5">AR</text>
<text x="125" y="350" text-anchor="middle" font-size="5" fill="var(--color-on-surface-variant)" font-family="Inter, sans-serif" opacity="0.5">Samples</text>
<text x="160" y="350" text-anchor="middle" font-size="5" fill="var(--color-on-surface-variant)" font-family="Inter, sans-serif" opacity="0.5">About</text>
<!-- Home indicator -->
<rect x="85" y="368" width="50" height="4" rx="2" fill="var(--color-on-surface-variant)" opacity="0.3"/>
<!-- AR grid dots -->
<circle cx="80" cy="240" r="2" fill="var(--color-primary)" opacity="0.15"/>
<circle cx="100" cy="250" r="2" fill="var(--color-primary)" opacity="0.15"/>
<circle cx="120" cy="240" r="2" fill="var(--color-primary)" opacity="0.15"/>
<circle cx="140" cy="250" r="2" fill="var(--color-primary)" opacity="0.15"/>
<circle cx="80" cy="260" r="2" fill="var(--color-primary)" opacity="0.15"/>
<circle cx="120" cy="260" r="2" fill="var(--color-primary)" opacity="0.15"/>
<circle cx="100" cy="270" r="2" fill="var(--color-primary)" opacity="0.15"/>
<circle cx="140" cy="270" r="2" fill="var(--color-primary)" opacity="0.15"/>
</svg>
</div>
<div class="sc-app-card__body">
<div class="sc-app-card__top-row">
<span class="sc-app-card__name">Android Demo</span>
<a href="https://github.com/sceneview/sceneview/tree/main/samples/android-demo" target="_blank" rel="noopener" class="sc-app-card__github">
<svg viewBox="0 0 24 24" width="16" height="16" fill="currentColor"><path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0 0 24 12c0-6.63-5.37-12-12-12z"/></svg>
Source
</a>
</div>
<p class="sc-app-card__desc">Material 3 showcase with 4 tabs: 3D viewer, AR placement, 14 interactive samples, and about. Jetpack Compose + Filament.</p>
<div class="sc-app-card__actions">
<a href="https://play.google.com/store/apps/details?id=io.github.sceneview.demo" class="sc-badge" target="_blank" rel="noopener">
<svg viewBox="0 0 24 24" width="18" height="18" fill="currentColor"><path d="M3.609 1.814L13.792 12 3.61 22.186a.996.996 0 0 1-.61-.92V2.734a1 1 0 0 1 .609-.92zm10.89 10.893l2.302 2.302-10.937 6.333 8.635-8.635zm3.199-3.199l2.302 1.33-2.302 1.33-1.957-1.957 1.957-1.957zM5.864 3.465l10.937 6.333-2.302 2.302-8.635-8.635z"/></svg>
<div>
<span class="sc-badge__text-top">GET IT ON</span>
<span class="sc-badge__text-bottom">Google Play</span>
</div>
</a>
</div>
</div>
</div>
<!-- iOS Demo -->
<div class="sc-app-card">
<div class="sc-app-card__visual">
<!-- iPhone SVG mockup -->
<svg class="sc-device-svg" viewBox="0 0 220 400" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="10" y="10" width="200" height="380" rx="32" fill="#1a1a2e" stroke="var(--color-outline-variant)" stroke-width="2"/>
<rect x="22" y="44" width="176" height="312" rx="4" fill="var(--color-surface-container-high)"/>
<!-- Dynamic Island -->
<rect x="80" y="18" width="60" height="18" rx="9" fill="#111"/>
<!-- AR scene with plane detection -->
<rect x="22" y="44" width="176" height="200" fill="var(--color-surface-container)" rx="4"/>
<!-- Camera viewfinder grid lines -->
<line x1="80" y1="44" x2="80" y2="244" stroke="var(--color-primary)" stroke-width="0.5" opacity="0.15"/>
<line x1="140" y1="44" x2="140" y2="244" stroke="var(--color-primary)" stroke-width="0.5" opacity="0.15"/>
<line x1="22" y1="110" x2="198" y2="110" stroke="var(--color-primary)" stroke-width="0.5" opacity="0.15"/>
<line x1="22" y1="178" x2="198" y2="178" stroke="var(--color-primary)" stroke-width="0.5" opacity="0.15"/>
<!-- 3D object -->
<ellipse cx="110" cy="180" rx="40" ry="10" fill="var(--color-primary)" opacity="0.1"/>
<rect x="90" y="120" width="40" height="60" rx="4" fill="var(--color-primary)" opacity="0.35"/>
<rect x="90" y="120" width="40" height="15" rx="4" fill="var(--color-primary)" opacity="0.5"/>
<!-- Bottom tab bar -->
<rect x="22" y="326" width="176" height="30" fill="var(--color-surface-container-highest)"/>
<circle cx="65" cy="341" r="6" fill="var(--color-primary)" opacity="0.5"/>
<circle cx="110" cy="341" r="6" fill="var(--color-on-surface-variant)" opacity="0.2"/>
<circle cx="155" cy="341" r="6" fill="var(--color-on-surface-variant)" opacity="0.2"/>
<text x="65" y="350" text-anchor="middle" font-size="5" fill="var(--color-primary)" font-family="Inter, sans-serif" font-weight="600">3D</text>
<text x="110" y="350" text-anchor="middle" font-size="5" fill="var(--color-on-surface-variant)" font-family="Inter, sans-serif" opacity="0.5">AR</text>
<text x="155" y="350" text-anchor="middle" font-size="5" fill="var(--color-on-surface-variant)" font-family="Inter, sans-serif" opacity="0.5">Samples</text>
<!-- UI controls row -->
<rect x="40" y="260" width="50" height="24" rx="12" fill="var(--color-primary)" opacity="0.2"/>
<text x="65" y="276" text-anchor="middle" font-size="7" fill="var(--color-primary)" font-family="Inter, sans-serif" font-weight="600">Place</text>
<rect x="100" y="260" width="50" height="24" rx="12" fill="var(--color-outline-variant)" opacity="0.3"/>
<text x="125" y="276" text-anchor="middle" font-size="7" fill="var(--color-on-surface-variant)" font-family="Inter, sans-serif">Rotate</text>
<!-- Home indicator -->
<rect x="85" y="368" width="50" height="4" rx="2" fill="var(--color-on-surface-variant)" opacity="0.3"/>
</svg>
</div>
<div class="sc-app-card__body">
<div class="sc-app-card__top-row">
<span class="sc-app-card__name">iOS Demo</span>
<a href="https://github.com/sceneview/sceneview/tree/main/samples/ios-demo" target="_blank" rel="noopener" class="sc-app-card__github">
<svg viewBox="0 0 24 24" width="16" height="16" fill="currentColor"><path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0 0 24 12c0-6.63-5.37-12-12-12z"/></svg>
Source
</a>
</div>
<p class="sc-app-card__desc">SwiftUI app with 3 tabs: 3D model viewer, AR scene with placement, and interactive samples. Powered by RealityKit.</p>
<div class="sc-app-card__actions">
<a href="https://apps.apple.com/app/sceneview/id6740174638" class="sc-badge" target="_blank" rel="noopener">
<svg viewBox="0 0 24 24" width="18" height="18" fill="currentColor"><path d="M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.8-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z"/></svg>
<div>
<span class="sc-badge__text-top">Download on the</span>
<span class="sc-badge__text-bottom">App Store</span>
</div>
</a>
</div>
</div>
</div>
<!-- Web Demo -->
<div class="sc-app-card">
<div class="sc-app-card__visual">
<!-- Browser SVG mockup -->
<svg class="sc-device-svg" viewBox="0 0 360 240" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="5" y="5" width="350" height="230" rx="12" fill="#1a1a2e" stroke="var(--color-outline-variant)" stroke-width="2"/>
<!-- Title bar -->
<rect x="5" y="5" width="350" height="32" rx="12" fill="var(--color-surface-container-highest)"/>
<rect x="5" y="25" width="350" height="12" fill="var(--color-surface-container-highest)"/>
<!-- Traffic lights -->
<circle cx="22" cy="21" r="5" fill="#ff5f57"/>
<circle cx="38" cy="21" r="5" fill="#febc2e"/>
<circle cx="54" cy="21" r="5" fill="#28c840"/>
<!-- URL bar -->
<rect x="80" y="14" width="200" height="14" rx="7" fill="var(--color-surface-container)" opacity="0.5"/>
<text x="180" y="24" text-anchor="middle" font-size="6" fill="var(--color-on-surface-variant)" font-family="Inter, sans-serif" opacity="0.5">sceneview.github.io/web-demo</text>
<!-- Content area -->
<rect x="9" y="37" width="342" height="194" fill="var(--color-surface-container)"/>
<!-- 3D viewport -->
<rect x="20" y="50" width="220" height="170" rx="8" fill="var(--color-surface-container-high)"/>
<!-- Wireframe 3D object -->
<polygon points="130,90 170,110 170,160 130,180 90,160 90,110" fill="none" stroke="var(--color-primary)" stroke-width="1.5" opacity="0.4"/>
<polygon points="130,90 170,110 130,130 90,110" fill="var(--color-primary)" opacity="0.2"/>
<line x1="130" y1="130" x2="130" y2="180" stroke="var(--color-primary)" stroke-width="1" opacity="0.3"/>
<!-- Sidebar controls -->
<rect x="252" y="50" width="96" height="170" rx="8" fill="var(--color-surface-container-high)"/>
<rect x="262" y="62" width="76" height="8" rx="4" fill="var(--color-on-surface-variant)" opacity="0.15"/>
<rect x="262" y="78" width="76" height="20" rx="4" fill="var(--color-primary)" opacity="0.15"/>
<rect x="262" y="106" width="76" height="8" rx="4" fill="var(--color-on-surface-variant)" opacity="0.15"/>
<rect x="262" y="122" width="76" height="20" rx="4" fill="var(--color-primary)" opacity="0.15"/>
<rect x="262" y="150" width="76" height="8" rx="4" fill="var(--color-on-surface-variant)" opacity="0.15"/>
<rect x="262" y="166" width="50" height="20" rx="4" fill="var(--color-primary)" opacity="0.15"/>
<!-- WebXR badge -->
<rect x="24" y="54" width="40" height="14" rx="7" fill="var(--color-primary)" opacity="0.25"/>
<text x="44" y="64" text-anchor="middle" font-size="6" fill="var(--color-primary)" font-family="Inter, sans-serif" font-weight="600">WebXR</text>
</svg>
</div>
<div class="sc-app-card__body">
<div class="sc-app-card__top-row">
<span class="sc-app-card__name">Web Demo</span>
<a href="https://github.com/sceneview/sceneview/tree/main/samples/web-demo" target="_blank" rel="noopener" class="sc-app-card__github">
<svg viewBox="0 0 24 24" width="16" height="16" fill="currentColor"><path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0 0 24 12c0-6.63-5.37-12-12-12z"/></svg>
Source
</a>
</div>
<p class="sc-app-card__desc">Browser-based 3D viewer with Filament.js (WebAssembly). Supports WebXR for AR and VR experiences right in the browser.</p>
<div class="sc-app-card__actions">
<a href="https://sceneview.github.io/web-demo/" class="sc-badge sc-badge--browser" target="_blank" rel="noopener">
<svg viewBox="0 0 24 24" width="18" height="18" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="10"/><line x1="2" y1="12" x2="22" y2="12"/><path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"/></svg>
<div>
<span class="sc-badge__text-top">TRY IT</span>
<span class="sc-badge__text-bottom">In Browser</span>
</div>
</a>
</div>
</div>
</div>
<!-- Android TV Demo -->
<div class="sc-app-card">
<div class="sc-app-card__visual">
<!-- TV SVG mockup -->
<svg class="sc-device-svg" viewBox="0 0 360 240" fill="none" xmlns="http://www.w3.org/2000/svg">
<!-- TV body -->
<rect x="20" y="10" width="320" height="190" rx="10" fill="#1a1a2e" stroke="var(--color-outline-variant)" stroke-width="2"/>
<!-- Screen -->
<rect x="30" y="20" width="300" height="170" rx="4" fill="var(--color-surface-container-high)"/>
<!-- TV stand -->
<rect x="130" y="200" width="100" height="6" rx="3" fill="var(--color-outline-variant)"/>
<rect x="155" y="206" width="50" height="20" rx="4" fill="var(--color-outline-variant)" opacity="0.6"/>
<!-- 3D model on screen -->
<polygon points="180,70 230,95 230,150 180,175 130,150 130,95" fill="var(--color-primary)" opacity="0.25"/>
<polygon points="180,70 230,95 180,120 130,95" fill="var(--color-primary)" opacity="0.45"/>
<polygon points="180,120 230,95 230,150 180,175" fill="var(--color-primary)" opacity="0.35"/>
<polygon points="180,120 130,95 130,150 180,175" fill="var(--color-primary)" opacity="0.15"/>
<!-- D-pad hint -->
<rect x="40" y="160" width="60" height="20" rx="10" fill="var(--color-surface-container-highest)" opacity="0.6"/>
<text x="70" y="174" text-anchor="middle" font-size="7" fill="var(--color-on-surface-variant)" font-family="Inter, sans-serif" opacity="0.6">D-pad</text>
<!-- Model name overlay -->
<rect x="240" y="30" width="80" height="16" rx="8" fill="var(--color-primary)" opacity="0.2"/>
<text x="280" y="41" text-anchor="middle" font-size="7" fill="var(--color-primary)" font-family="Inter, sans-serif" font-weight="600">Auto-rotate</text>
</svg>
</div>
<div class="sc-app-card__body">
<div class="sc-app-card__top-row">
<span class="sc-app-card__name">Android TV Demo</span>
<a href="https://github.com/sceneview/sceneview/tree/main/samples/android-tv-demo" target="_blank" rel="noopener" class="sc-app-card__github">
<svg viewBox="0 0 24 24" width="16" height="16" fill="currentColor"><path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0 0 24 12c0-6.63-5.37-12-12-12z"/></svg>
Source
</a>
</div>
<p class="sc-app-card__desc">Optimized for big screens with D-pad navigation, model cycling, and auto-rotation. Built with Compose TV + Filament.</p>
<div class="sc-app-card__actions">
<span style="font-size: 0.8rem; color: var(--color-on-surface-variant); font-weight: 500;">Sideload from source</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ===== TRY IT LIVE ===== -->
<section class="sc-section sc-section--alt">
<div class="sc-container">
<div class="sc-section__header">
<h2 class="sc-section__title">Try it Live</h2>
<p class="sc-section__sub">No install needed. Experiment with 3D and procedural geometry directly in your browser.</p>
</div>
<div class="sc-live-grid">
<!-- 3D Playground -->
<a href="/playground.html" class="sc-live-card">
<div class="sc-live-card__visual">
<!-- Code editor + 3D preview illustration -->
<svg class="sc-device-svg" viewBox="0 0 400 200" fill="none" xmlns="http://www.w3.org/2000/svg">
<!-- Editor panel -->
<rect x="10" y="10" width="180" height="180" rx="10" fill="var(--color-surface-container-lowest)" stroke="var(--color-outline)" stroke-width="1"/>
<rect x="10" y="10" width="180" height="24" rx="10" fill="var(--color-surface-container-highest)"/>
<rect x="10" y="26" width="180" height="8" fill="var(--color-surface-container-highest)"/>
<circle cx="24" cy="22" r="4" fill="#ff5f57"/>
<circle cx="36" cy="22" r="4" fill="#febc2e"/>
<circle cx="48" cy="22" r="4" fill="#28c840"/>
<!-- Code lines -->
<rect x="22" y="44" width="60" height="6" rx="3" fill="var(--color-tertiary)" opacity="0.4"/>
<rect x="22" y="56" width="80" height="6" rx="3" fill="var(--color-primary)" opacity="0.3"/>
<rect x="32" y="68" width="100" height="6" rx="3" fill="var(--color-status-stable)" opacity="0.3"/>
<rect x="32" y="80" width="70" height="6" rx="3" fill="var(--color-on-surface-variant)" opacity="0.2"/>
<rect x="32" y="92" width="120" height="6" rx="3" fill="var(--color-primary)" opacity="0.3"/>
<rect x="32" y="104" width="90" height="6" rx="3" fill="var(--color-status-stable)" opacity="0.3"/>
<rect x="22" y="116" width="40" height="6" rx="3" fill="var(--color-tertiary)" opacity="0.4"/>
<rect x="22" y="128" width="60" height="6" rx="3" fill="var(--color-on-surface-variant)" opacity="0.2"/>
<rect x="22" y="140" width="100" height="6" rx="3" fill="var(--color-primary)" opacity="0.3"/>
<rect x="22" y="152" width="50" height="6" rx="3" fill="var(--color-tertiary)" opacity="0.4"/>
<!-- Divider -->
<line x1="200" y1="20" x2="200" y2="180" stroke="var(--color-outline)" stroke-width="1" opacity="0.5"/>
<!-- 3D preview panel -->
<rect x="210" y="10" width="180" height="180" rx="10" fill="var(--color-surface-container-high)" stroke="var(--color-outline)" stroke-width="1"/>
<!-- 3D object in preview -->
<polygon points="300,55 345,80 345,130 300,155 255,130 255,80" fill="var(--color-primary)" opacity="0.15"/>
<polygon points="300,55 345,80 300,105 255,80" fill="var(--color-primary)" opacity="0.35"/>
<polygon points="300,105 345,80 345,130 300,155" fill="var(--color-primary)" opacity="0.25"/>
<polygon points="300,105 255,80 255,130 300,155" fill="var(--color-primary)" opacity="0.1"/>
<!-- Play button overlay -->
<circle cx="300" cy="105" r="18" fill="var(--color-primary)" opacity="0.15"/>
<polygon points="294,95 312,105 294,115" fill="var(--color-primary)" opacity="0.5"/>
<!-- "LIVE" badge -->
<rect x="360" y="14" width="26" height="12" rx="6" fill="var(--color-status-stable)" opacity="0.2"/>
<text x="373" y="23" text-anchor="middle" font-size="6" fill="var(--color-status-stable)" font-family="Inter, sans-serif" font-weight="700">LIVE</text>
</svg>
</div>
<div class="sc-live-card__body">
<h3 class="sc-live-card__name">3D Playground</h3>
<p class="sc-live-card__desc">Write Kotlin-style code on the left, see the 3D scene update live on the right. 13 examples, 3 platforms, 23 preloaded models.</p>
<span class="sc-live-card__link">
Open Playground
<svg viewBox="0 0 20 20" width="16" height="16" fill="currentColor"><path d="M7.5 5l5 5-5 5" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
</span>
</div>
</a>
<!-- Procedural Geometry -->
<a href="/playground.html#geometry" class="sc-live-card">
<div class="sc-live-card__visual">
<!-- Geometric shapes illustration -->
<svg class="sc-device-svg" viewBox="0 0 400 200" fill="none" xmlns="http://www.w3.org/2000/svg">
<!-- Background grid -->
<defs>
<pattern id="gridPattern" width="20" height="20" patternUnits="userSpaceOnUse">
<path d="M 20 0 L 0 0 0 20" fill="none" stroke="var(--color-outline)" stroke-width="0.3" opacity="0.3"/>
</pattern>
</defs>
<rect x="10" y="10" width="380" height="180" rx="12" fill="var(--color-surface-container-high)" stroke="var(--color-outline)" stroke-width="1"/>
<rect x="14" y="14" width="372" height="172" rx="8" fill="url(#gridPattern)"/>
<!-- Cube -->
<polygon points="80,60 120,45 120,85 80,100 40,85 40,45" fill="none" stroke="var(--color-primary)" stroke-width="1.5"/>
<polygon points="80,60 120,45 80,30 40,45" fill="var(--color-primary)" opacity="0.2"/>
<line x1="80" y1="60" x2="80" y2="100" stroke="var(--color-primary)" stroke-width="1" opacity="0.4"/>
<!-- Sphere -->
<circle cx="180" cy="100" r="35" fill="none" stroke="var(--color-tertiary)" stroke-width="1.5"/>
<ellipse cx="180" cy="100" rx="35" ry="12" fill="none" stroke="var(--color-tertiary)" stroke-width="0.8" opacity="0.4"/>
<ellipse cx="180" cy="100" rx="12" ry="35" fill="none" stroke="var(--color-tertiary)" stroke-width="0.8" opacity="0.4"/>
<circle cx="180" cy="100" r="35" fill="var(--color-tertiary)" opacity="0.08"/>
<!-- Cylinder -->
<ellipse cx="280" cy="70" rx="30" ry="10" fill="none" stroke="var(--color-status-stable)" stroke-width="1.5"/>
<line x1="250" y1="70" x2="250" y2="130" stroke="var(--color-status-stable)" stroke-width="1.5"/>
<line x1="310" y1="70" x2="310" y2="130" stroke="var(--color-status-stable)" stroke-width="1.5"/>
<ellipse cx="280" cy="130" rx="30" ry="10" fill="none" stroke="var(--color-status-stable)" stroke-width="1.5"/>
<ellipse cx="280" cy="130" rx="30" ry="10" fill="var(--color-status-stable)" opacity="0.08"/>
<!-- Torus / ring -->
<ellipse cx="370" cy="100" rx="25" ry="30" fill="none" stroke="var(--color-primary)" stroke-width="1.5" opacity="0.5"/>
<ellipse cx="370" cy="100" rx="12" ry="15" fill="var(--color-surface-container-high)"/>
<ellipse cx="370" cy="100" rx="12" ry="15" fill="none" stroke="var(--color-primary)" stroke-width="1" opacity="0.3"/>
<!-- Labels -->
<text x="80" y="120" text-anchor="middle" font-size="8" fill="var(--color-on-surface-variant)" font-family="Inter, sans-serif" opacity="0.6">Cube</text>
<text x="180" y="150" text-anchor="middle" font-size="8" fill="var(--color-on-surface-variant)" font-family="Inter, sans-serif" opacity="0.6">Sphere</text>
<text x="280" y="156" text-anchor="middle" font-size="8" fill="var(--color-on-surface-variant)" font-family="Inter, sans-serif" opacity="0.6">Cylinder</text>
<text x="370" y="148" text-anchor="middle" font-size="8" fill="var(--color-on-surface-variant)" font-family="Inter, sans-serif" opacity="0.6">Torus</text>
</svg>
</div>
<div class="sc-live-card__body">
<h3 class="sc-live-card__name">Procedural Geometry</h3>
<p class="sc-live-card__desc">Generate cubes, spheres, cylinders, planes, paths, and custom shapes at runtime using the KMP geometry API.</p>
<span class="sc-live-card__link">
Explore Shapes
<svg viewBox="0 0 20 20" width="16" height="16" fill="currentColor"><path d="M7.5 5l5 5-5 5" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>
</span>
</div>
</a>
</div>
</div>
</section>
<!-- ===== PLATFORM GALLERY ===== -->
<section class="sc-section">
<div class="sc-container">
<div class="sc-section__header">
<h2 class="sc-section__title">Platform Gallery</h2>
<p class="sc-section__sub">One SDK, every screen. SceneView runs natively on each platform with the best renderer available.</p>
</div>
<div class="sc-platforms-grid">
<!-- Android Phone -->
<div class="sc-platform-card">
<div class="sc-platform-card__device">
<svg class="sc-device-svg" viewBox="0 0 60 110" fill="none"><rect x="2" y="2" width="56" height="106" rx="8" fill="var(--color-surface-container)" stroke="var(--color-outline-variant)" stroke-width="1.5"/><rect x="6" y="14" width="48" height="82" fill="var(--color-surface-container-high)"/><rect x="20" y="5" width="20" height="6" rx="3" fill="var(--color-outline-variant)" opacity="0.4"/><rect x="20" y="100" width="20" height="3" rx="1.5" fill="var(--color-outline-variant)" opacity="0.3"/><polygon points="30,35 42,42 42,56 30,63 18,56 18,42" fill="var(--color-primary)" opacity="0.3"/><polygon points="30,35 42,42 30,49 18,42" fill="var(--color-primary)" opacity="0.5"/></svg>
</div>
<div class="sc-platform-card__name">Android Phone</div>
<div class="sc-platform-card__info">Compose + Filament</div>
<span class="sc-status sc-status--stable">Stable</span>
</div>
<!-- Android Tablet -->
<div class="sc-platform-card">
<div class="sc-platform-card__device">
<svg class="sc-device-svg" viewBox="0 0 100 75" fill="none"><rect x="2" y="2" width="96" height="71" rx="8" fill="var(--color-surface-container)" stroke="var(--color-outline-variant)" stroke-width="1.5"/><rect x="6" y="8" width="88" height="57" fill="var(--color-surface-container-high)"/><circle cx="50" cy="4.5" r="1.5" fill="var(--color-outline-variant)" opacity="0.4"/><polygon points="50,25 62,32 62,46 50,53 38,46 38,32" fill="var(--color-primary)" opacity="0.3"/><polygon points="50,25 62,32 50,39 38,32" fill="var(--color-primary)" opacity="0.5"/></svg>
</div>
<div class="sc-platform-card__name">Android Tablet</div>
<div class="sc-platform-card__info">Compose + Filament</div>
<span class="sc-status sc-status--stable">Stable</span>
</div>
<!-- Android TV -->
<div class="sc-platform-card">
<div class="sc-platform-card__device">
<svg class="sc-device-svg" viewBox="0 0 110 80" fill="none"><rect x="5" y="2" width="100" height="60" rx="4" fill="var(--color-surface-container)" stroke="var(--color-outline-variant)" stroke-width="1.5"/><rect x="9" y="6" width="92" height="52" fill="var(--color-surface-container-high)"/><rect x="35" y="62" width="40" height="3" rx="1.5" fill="var(--color-outline-variant)"/><rect x="45" y="65" width="20" height="12" rx="2" fill="var(--color-outline-variant)" opacity="0.5"/><polygon points="55,20 70,28 70,44 55,52 40,44 40,28" fill="var(--color-primary)" opacity="0.3"/><polygon points="55,20 70,28 55,36 40,28" fill="var(--color-primary)" opacity="0.5"/></svg>
</div>
<div class="sc-platform-card__name">Android TV</div>
<div class="sc-platform-card__info">Compose TV + Filament</div>
<span class="sc-status sc-status--alpha">Alpha</span>
</div>
<!-- Android XR -->
<div class="sc-platform-card">
<div class="sc-platform-card__device">
<svg class="sc-device-svg" viewBox="0 0 110 60" fill="none"><rect x="5" y="12" width="100" height="36" rx="18" fill="var(--color-surface-container)" stroke="var(--color-outline-variant)" stroke-width="1.5"/><circle cx="38" cy="30" r="12" fill="var(--color-surface-container-high)" stroke="var(--color-outline-variant)" stroke-width="1"/><circle cx="72" cy="30" r="12" fill="var(--color-surface-container-high)" stroke="var(--color-outline-variant)" stroke-width="1"/><circle cx="38" cy="30" r="5" fill="var(--color-primary)" opacity="0.25"/><circle cx="72" cy="30" r="5" fill="var(--color-primary)" opacity="0.25"/><line x1="0" y1="30" x2="5" y2="30" stroke="var(--color-outline-variant)" stroke-width="1.5"/><line x1="105" y1="30" x2="110" y2="30" stroke="var(--color-outline-variant)" stroke-width="1.5"/></svg>
</div>
<div class="sc-platform-card__name">Android XR</div>
<div class="sc-platform-card__info">Compose XR + SceneCore</div>
<span class="sc-status sc-status--soon">Coming Soon</span>
</div>
<!-- iPhone -->
<div class="sc-platform-card">
<div class="sc-platform-card__device">
<svg class="sc-device-svg" viewBox="0 0 60 110" fill="none"><rect x="2" y="2" width="56" height="106" rx="10" fill="var(--color-surface-container)" stroke="var(--color-outline-variant)" stroke-width="1.5"/><rect x="6" y="14" width="48" height="82" fill="var(--color-surface-container-high)"/><rect x="20" y="5" width="20" height="6" rx="3" fill="var(--color-outline-variant)" opacity="0.5"/><rect x="20" y="100" width="20" height="3" rx="1.5" fill="var(--color-outline-variant)" opacity="0.3"/><polygon points="30,35 42,42 42,56 30,63 18,56 18,42" fill="var(--color-tertiary)" opacity="0.3"/><polygon points="30,35 42,42 30,49 18,42" fill="var(--color-tertiary)" opacity="0.5"/></svg>
</div>
<div class="sc-platform-card__name">iPhone</div>
<div class="sc-platform-card__info">SwiftUI + RealityKit</div>
<span class="sc-status sc-status--alpha">Alpha</span>
</div>
<!-- iPad -->
<div class="sc-platform-card">
<div class="sc-platform-card__device">
<svg class="sc-device-svg" viewBox="0 0 100 75" fill="none"><rect x="2" y="2" width="96" height="71" rx="8" fill="var(--color-surface-container)" stroke="var(--color-outline-variant)" stroke-width="1.5"/><rect x="6" y="8" width="88" height="57" fill="var(--color-surface-container-high)"/><circle cx="50" cy="4.5" r="1.5" fill="var(--color-outline-variant)" opacity="0.4"/><polygon points="50,25 62,32 62,46 50,53 38,46 38,32" fill="var(--color-tertiary)" opacity="0.3"/><polygon points="50,25 62,32 50,39 38,32" fill="var(--color-tertiary)" opacity="0.5"/></svg>
</div>
<div class="sc-platform-card__name">iPad</div>
<div class="sc-platform-card__info">SwiftUI + RealityKit</div>
<span class="sc-status sc-status--alpha">Alpha</span>
</div>
<!-- Mac -->
<div class="sc-platform-card">
<div class="sc-platform-card__device">
<svg class="sc-device-svg" viewBox="0 0 110 85" fill="none"><rect x="10" y="2" width="90" height="58" rx="4" fill="var(--color-surface-container)" stroke="var(--color-outline-variant)" stroke-width="1.5"/><rect x="14" y="6" width="82" height="50" fill="var(--color-surface-container-high)"/><path d="M30 60 L80 60 L90 72 L20 72 Z" fill="var(--color-outline-variant)" opacity="0.4"/><rect x="20" y="72" width="70" height="3" rx="1.5" fill="var(--color-outline-variant)" opacity="0.6"/><polygon points="55,20 67,27 67,41 55,48 43,41 43,27" fill="var(--color-tertiary)" opacity="0.3"/><polygon points="55,20 67,27 55,34 43,27" fill="var(--color-tertiary)" opacity="0.5"/></svg>
</div>
<div class="sc-platform-card__name">Mac</div>
<div class="sc-platform-card__info">SwiftUI + RealityKit</div>
<span class="sc-status sc-status--alpha">Alpha</span>
</div>
<!-- Apple Vision Pro -->
<div class="sc-platform-card">
<div class="sc-platform-card__device">
<svg class="sc-device-svg" viewBox="0 0 110 60" fill="none"><path d="M10 20 Q10 10 25 10 L85 10 Q100 10 100 20 L100 40 Q100 50 85 50 L25 50 Q10 50 10 40 Z" fill="var(--color-surface-container)" stroke="var(--color-outline-variant)" stroke-width="1.5"/><rect x="22" y="18" width="26" height="24" rx="6" fill="var(--color-surface-container-high)" stroke="var(--color-outline-variant)" stroke-width="0.8"/><rect x="62" y="18" width="26" height="24" rx="6" fill="var(--color-surface-container-high)" stroke="var(--color-outline-variant)" stroke-width="0.8"/><circle cx="35" cy="30" r="6" fill="var(--color-tertiary)" opacity="0.2"/><circle cx="75" cy="30" r="6" fill="var(--color-tertiary)" opacity="0.2"/><line x1="3" y1="30" x2="10" y2="30" stroke="var(--color-outline-variant)" stroke-width="1.5" stroke-linecap="round"/><line x1="100" y1="30" x2="107" y2="30" stroke="var(--color-outline-variant)" stroke-width="1.5" stroke-linecap="round"/></svg>
</div>
<div class="sc-platform-card__name">Apple Vision Pro</div>
<div class="sc-platform-card__info">SwiftUI + RealityKit</div>
<span class="sc-status sc-status--alpha">Alpha</span>
</div>
<!-- Web Browser -->
<div class="sc-platform-card">
<div class="sc-platform-card__device">
<svg class="sc-device-svg" viewBox="0 0 110 75" fill="none"><rect x="5" y="2" width="100" height="71" rx="6" fill="var(--color-surface-container)" stroke="var(--color-outline-variant)" stroke-width="1.5"/><rect x="5" y="2" width="100" height="16" rx="6" fill="var(--color-surface-container-highest)"/><rect x="5" y="12" width="100" height="6" fill="var(--color-surface-container-highest)"/><circle cx="15" cy="10" r="3" fill="#ff5f57"/><circle cx="25" cy="10" r="3" fill="#febc2e"/><circle cx="35" cy="10" r="3" fill="#28c840"/><rect x="45" y="7" width="50" height="6" rx="3" fill="var(--color-surface-container)" opacity="0.5"/><rect x="9" y="18" width="92" height="51" fill="var(--color-surface-container-high)"/><polygon points="55,30 67,37 67,51 55,58 43,51 43,37" fill="var(--color-primary)" opacity="0.3"/><polygon points="55,30 67,37 55,44 43,37" fill="var(--color-primary)" opacity="0.5"/></svg>
</div>
<div class="sc-platform-card__name">Web Browser</div>
<div class="sc-platform-card__info">Kotlin/JS + Filament.js</div>
<span class="sc-status sc-status--alpha">Alpha</span>
</div>
<!-- Desktop -->
<div class="sc-platform-card">
<div class="sc-platform-card__device">
<svg class="sc-device-svg" viewBox="0 0 110 85" fill="none"><rect x="10" y="2" width="90" height="58" rx="4" fill="var(--color-surface-container)" stroke="var(--color-outline-variant)" stroke-width="1.5"/><rect x="14" y="6" width="82" height="50" fill="var(--color-surface-container-high)"/><path d="M30 60 L80 60 L90 72 L20 72 Z" fill="var(--color-outline-variant)" opacity="0.4"/><rect x="20" y="72" width="70" height="3" rx="1.5" fill="var(--color-outline-variant)" opacity="0.6"/><rect x="30" y="22" width="50" height="6" rx="3" fill="var(--color-on-surface-variant)" opacity="0.15"/><rect x="30" y="32" width="35" height="6" rx="3" fill="var(--color-on-surface-variant)" opacity="0.1"/><rect x="30" y="42" width="45" height="6" rx="3" fill="var(--color-on-surface-variant)" opacity="0.08"/><text x="55" y="40" text-anchor="middle" font-size="7" fill="var(--color-on-surface-variant)" font-family="Inter, sans-serif" opacity="0.3">Wireframe</text></svg>
</div>
<div class="sc-platform-card__name">Desktop</div>
<div class="sc-platform-card__info">Compose Desktop</div>
<span class="sc-status sc-status--placeholder">Placeholder</span>
</div>
<!-- Flutter -->
<div class="sc-platform-card">
<div class="sc-platform-card__device">
<svg class="sc-device-svg" viewBox="0 0 80 80" fill="none">
<!-- Flutter bird logo stylized -->
<polygon points="20,40 40,20 50,20 30,40 50,60 40,60" fill="var(--color-primary)" opacity="0.4"/>
<polygon points="30,40 50,20 60,20 40,40 60,60 50,60" fill="var(--color-primary)" opacity="0.6"/>
<polygon points="40,40 60,20 60,30 45,45" fill="var(--color-primary)" opacity="0.3"/>
<polygon points="40,40 60,60 60,50 45,45" fill="var(--color-primary)" opacity="0.3"/>
</svg>
</div>
<div class="sc-platform-card__name">Flutter</div>
<div class="sc-platform-card__info">PlatformView bridge</div>
<span class="sc-status sc-status--alpha">Alpha</span>
</div>
<!-- React Native -->
<div class="sc-platform-card">
<div class="sc-platform-card__device">
<svg class="sc-device-svg" viewBox="0 0 80 80" fill="none">
<!-- React atom logo stylized -->
<circle cx="40" cy="40" r="5" fill="var(--color-primary)" opacity="0.6"/>
<ellipse cx="40" cy="40" rx="28" ry="10" fill="none" stroke="var(--color-primary)" stroke-width="1.5" opacity="0.4"/>
<ellipse cx="40" cy="40" rx="28" ry="10" fill="none" stroke="var(--color-primary)" stroke-width="1.5" opacity="0.4" transform="rotate(60, 40, 40)"/>
<ellipse cx="40" cy="40" rx="28" ry="10" fill="none" stroke="var(--color-primary)" stroke-width="1.5" opacity="0.4" transform="rotate(120, 40, 40)"/>
</svg>
</div>
<div class="sc-platform-card__name">React Native</div>
<div class="sc-platform-card__info">Fabric bridge</div>
<span class="sc-status sc-status--alpha">Alpha</span>
</div>
</div>
</div>
</section>
</main>
<!-- ===== FOOTER ===== -->
<footer class="footer">
<div class="footer__container">
<div class="footer__grid">
<div class="footer__brand-col">
<div class="footer__brand-name">SceneView SDK</div>
<p class="footer__brand-desc">The architectural logic for building high-performance 3D spatial experiences across all modern platforms.</p>
<div class="footer__copyright">© 2026 SceneView SDK. Architectural Logic.</div>
</div>
<div class="footer__col">
<h4 class="footer__col-title">Documentation</h4>
<ul class="footer__col-list">
<li><a href="/docs.html" target="_blank" rel="noopener">Examples</a></li>
<li><a href="/showcase.html">Showcase</a></li>
</ul>