-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2146 lines (1939 loc) · 141 KB
/
Copy pathindex.html
File metadata and controls
2146 lines (1939 loc) · 141 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" class="overflow-x-hidden">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Shape Generator Pro</title>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Syne:wght@400;500;700;800&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: ['Space Grotesk', 'sans-serif'],
display: ['Syne', 'sans-serif'],
},
colors: {
'neo-black': '#000000',
'neo-white': '#ffffff',
'neo-yellow': '#FFDE59',
'neo-pink': '#FF66C4',
'neo-blue': '#5CE1E6',
'neo-green': '#7ED957',
'neo-purple': '#8C52FF',
},
boxShadow: {
'neo': '5px 5px 0px 0px #000000',
'neo-lg': '8px 8px 0px 0px #000000',
'neo-xl': '12px 12px 0px 0px #000000',
}
}
}
}
</script>
<style>
body {
background-color: #f0f0f0;
background-image: radial-gradient(#000 1px, transparent 1px);
background-size: 20px 20px;
}
/* Smooth scrolling with a bit of 'snap' feel if desired, but standard is fine for brutalism */
html {
scroll-behavior: smooth;
}
.text-outline {
-webkit-text-stroke: 2px black;
color: transparent;
}
.hover-wiggle:hover {
animation: wiggle 0.5s ease-in-out infinite;
}
@keyframes wiggle {
0% {
transform: rotate(0deg);
}
25% {
transform: rotate(-2deg);
}
75% {
transform: rotate(2deg);
}
100% {
transform: rotate(0deg);
}
}
.marquee-container {
overflow: hidden;
white-space: nowrap;
}
.marquee-content {
display: inline-block;
animation: marquee 20s linear infinite;
}
@keyframes marquee {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-50%);
}
}
@keyframes marquee-rev {
0% {
transform: translateX(-50%);
}
100% {
transform: translateX(0);
}
}
@keyframes float {
0%,
100% {
transform: translateX(0) translateY(0);
}
25% {
transform: translateX(-120px) translateY(0);
}
50% {
transform: translateX(-120px) translateY(-120px);
}
75% {
transform: translateX(0) translateY(-120px);
}
}
/* Interactive Blob */
.blob-shape {
transition: border-radius 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.blob-shape:hover {
border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}
/* New Animations for Demo Section */
.striped-bg {
background-image: repeating-linear-gradient(45deg, #000 0px, #000 1px, transparent 1px, transparent 6px);
background-size: 10px 10px;
opacity: 0.3;
}
.blinking-text {
animation: blink 1s step-end infinite;
}
@keyframes blink {
0%,
100% {
opacity: 1;
}
50% {
opacity: 0;
}
}
@keyframes blob {
0% {
transform: translate(0px, 0px) scale(1);
}
33% {
transform: translate(5px, -10px) scale(1.05);
}
66% {
transform: translate(-5px, 5px) scale(0.95);
}
100% {
transform: translate(0px, 0px) scale(1);
}
}
.animate-blob {
animation: blob 10s infinite;
}
.animate-spin-slow {
animation: spin 8s linear infinite;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
/* Glitch Effect */
.glitch-text {
position: relative;
}
.glitch-text::before,
.glitch-text::after {
content: attr(data-text);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #FFDE59;
/* Match header background */
}
.glitch-text::before {
left: 2px;
text-shadow: -1px 0 #ff00c1;
clip: rect(44px, 450px, 56px, 0);
animation: glitch-anim 5s infinite linear alternate-reverse;
}
.glitch-text::after {
left: -2px;
text-shadow: -1px 0 #00fff9;
clip: rect(44px, 450px, 56px, 0);
animation: glitch-anim2 5s infinite linear alternate-reverse;
}
@keyframes glitch-anim {
0% {
clip: rect(30px, 9999px, 10px, 0);
}
5% {
clip: rect(78px, 9999px, 88px, 0);
}
10% {
clip: rect(12px, 9999px, 6px, 0);
}
15% {
clip: rect(55px, 9999px, 15px, 0);
}
20% {
clip: rect(89px, 9999px, 44px, 0);
}
100% {
clip: rect(66px, 9999px, 33px, 0);
}
}
@keyframes glitch-anim2 {
0% {
clip: rect(10px, 9999px, 89px, 0);
}
5% {
clip: rect(5px, 9999px, 22px, 0);
}
10% {
clip: rect(33px, 9999px, 11px, 0);
}
15% {
clip: rect(66px, 9999px, 6px, 0);
}
20% {
clip: rect(11px, 9999px, 55px, 0);
}
100% {
clip: rect(44px, 9999px, 22px, 0);
}
}
</style>
</head>
<body class="overflow-x-hidden text-neo-black">
<!-- Navbar -->
<nav id="navbar"
class="fixed top-0 w-full z-50 px-4 md:px-6 py-4 pointer-events-none transition-transform duration-300">
<div
class="max-w-7xl mx-auto flex justify-between items-center bg-neo-yellow border-4 border-neo-black shadow-neo rounded-xl px-4 md:px-6 py-3 pointer-events-auto transform md:hover:-translate-y-1 transition-transform relative">
<div class="flex items-center gap-3">
<div
class="w-10 h-10 bg-neo-white border-4 border-black shadow-neo flex items-center justify-center text-black font-bold shadow-neo-sm hover:translate-x-0.5 hover:translate-y-0.5 hover:shadow-none transition-all cursor-pointer shrink-0">
<i class="fa-solid fa-shapes"></i>
</div>
<!-- Brand Text (Hidden on very small screens, visible on mobile otherwise) -->
<div class="flex flex-col xs:flex">
<h1
class="flex flex-col md:block font-display font-black text-xs md:text-lg tracking-teghter md:tracking-wider leading-none">
CSS <span>SHAPE</span></h1>
<div class="flex items-center gap-1 leading-none">
<span
class="font-display hidden md:block font-black text-[9px] md:text-sm tracking-tighter text-neo-pink">GENERATOR</span>
<span
class="font-display md:hidden font-black text-xs tracking-tighter text-neo-pink">GEN</span>
<span
class="bg-black text-white px-1 text-[10px] font-bold border-2 border-neo-black transform -rotate-3 shadow-[2px_2px_0_0_#ccc]">PRO</span>
</div>
</div>
</div>
<!-- Desktop Menu -->
<div class="hidden md:flex gap-6 font-bold text-sm uppercase tracking-wide">
<a href="#about" class="hover:text-neo-purple hover:underline decoration-4 underline-offset-4">How it
works</a>
<a href="#features"
class="hover:text-neo-blue hover:underline decoration-4 underline-offset-4">Features</a>
<a href="#community" class="hover:text-neo-green hover:underline decoration-4 underline-offset-4">Cool
Stuff</a>
</div>
<!-- Right Side (Button + Hamburger) -->
<div class="flex items-center gap-4">
<a href="/editor"
class="bg-neo-black text-neo-white text-sm md:text-base font-bold px-4 md:px-6 py-2 border-2 border-neo-black shadow-neo hover:shadow-none hover:translate-x-1 hover:translate-y-1 transition-all group overflow-hidden relative">
<span class="relative z-10 group-hover:text-neo-black">START NOW</span>
<div
class="absolute inset-0 bg-white transform -translate-x-full group-hover:translate-x-0 transition-transform mix-blend-difference">
</div>
</a>
<!-- Hamburger Button -->
<button id="mobileMenuBtn"
class="md:hidden w-10 h-10 bg-neo-yellow shadow-neo onclick:shadow-none border-2 border-black flex items-center justify-center text-xl shadow-neo-sm active:shadow-none active:translate-x-0.5 active:translate-y-0.5 transition-all">
<i class="fa-solid fa-bars"></i>
</button>
</div>
<!-- Mobile Menu Dropdown -->
<div id="mobileMenu"
class="absolute top-full left-0 right-0 mt-4 bg-neo-yellow border-4 border-black shadow-neo-xl p-4 flex-col gap-4 hidden md:hidden z-50 mx-4">
<a href="#about"
class="block bg-white border-2 border-black p-3 font-bold uppercase shadow-neo-lg hover:bg-neo-purple hover:text-white transition-colors text-center"
onclick="toggleMobileMenu()">How it works</a>
<a href="#features"
class="block bg-white border-2 border-black p-3 font-bold uppercase shadow-neo-lg hover:bg-neo-blue hover:text-white transition-colors text-center"
onclick="toggleMobileMenu()">Features</a>
<a href="#community"
class="block bg-white border-2 border-black p-3 font-bold uppercase shadow-neo-lg hover:bg-neo-green hover:text-white transition-colors text-center"
onclick="toggleMobileMenu()">Cool Stuff</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<header class="min-h-screen flex items-center justify-center pt-24 pb-12 md:pt-32 relative overflow-hidden">
<!-- Floating Shapes Decoration -->
<div class="absolute top-40 left-20 w-24 h-24 opacity-75 bg-neo-yellow rounded-full animate-bounce delay-700">
</div>
<div class="absolute bottom-20 left-10 w-[400px] h-[400px] bg-neo-green opacity-75"
style="animation: spin 10s ease-in-out infinite; clip-path: polygon(46.11% 35.27%, 46.50% 34.67%, 46.89% 34.14%, 47.28% 33.67%, 47.67% 33.27%, 48.06% 32.92%, 48.45% 32.64%, 48.83% 32.42%, 49.22% 32.27%, 49.61% 32.17%, 50.00% 32.14%, 50.39% 32.17%, 50.78% 32.27%, 51.17% 32.42%, 51.55% 32.64%, 51.94% 32.92%, 52.33% 33.27%, 52.72% 33.67%, 53.11% 34.14%, 53.50% 34.67%, 53.89% 35.27%, 57.77% 41.52%, 64.92% 43.28%, 65.60% 43.47%, 66.23% 43.67%, 66.79% 43.90%, 67.30% 44.14%, 67.75% 44.41%, 68.14% 44.69%, 68.46% 44.99%, 68.73% 45.31%, 68.94% 45.65%, 69.09% 46.01%, 69.18% 46.39%, 69.21% 46.79%, 69.18% 47.21%, 69.10% 47.65%, 68.95% 48.10%, 68.74% 48.58%, 68.48% 49.07%, 68.15% 49.59%, 67.77% 50.12%, 67.32% 50.67%, 62.58% 56.30%, 63.11% 63.64%, 63.14% 64.35%, 63.14% 65.01%, 63.10% 65.62%, 63.02% 66.18%, 62.91% 66.68%, 62.76% 67.14%, 62.58% 67.54%, 62.35% 67.90%, 62.10% 68.20%, 61.80% 68.46%, 61.47% 68.66%, 61.10% 68.81%, 60.69% 68.91%, 60.25% 68.97%, 59.77% 68.97%, 59.25% 68.92%, 58.70% 68.82%, 58.11% 68.67%, 57.48% 68.46%, 56.82% 68.21%, 50.00% 65.44%, 43.18% 68.21%, 42.52% 68.46%, 41.89% 68.67%, 41.30% 68.82%, 40.75% 68.92%, 40.23% 68.97%, 39.75% 68.97%, 39.31% 68.91%, 38.90% 68.81%, 38.53% 68.66%, 38.20% 68.46%, 37.90% 68.20%, 37.65% 67.90%, 37.42% 67.54%, 37.24% 67.14%, 37.09% 66.68%, 36.98% 66.18%, 36.90% 65.62%, 36.86% 65.01%, 36.86% 64.35%, 36.89% 63.64%, 37.42% 56.30%, 32.68% 50.67%, 32.23% 50.12%, 31.85% 49.59%, 31.52% 49.07%, 31.26% 48.58%, 31.05% 48.10%, 30.90% 47.65%, 30.82% 47.21%, 30.79% 46.79%, 30.82% 46.39%, 30.91% 46.01%, 31.06% 45.65%, 31.27% 45.31%, 31.54% 44.99%, 31.86% 44.69%, 32.25% 44.41%, 32.70% 44.14%, 33.21% 43.90%, 33.77% 43.67%, 34.40% 43.47%, 35.08% 43.28%, 42.23% 41.52%);">
</div>
<div class="absolute bottom-20 right-10 w-64 h-64 bg-neo-pink opacity-75"
style="animation: float 10s ease-in-out infinite; clip-path: polygon(41.30% 23.90%, 41.48% 23.73%, 41.69% 23.57%, 41.91% 23.41%, 42.15% 23.26%, 42.41% 23.12%, 42.69% 22.98%, 42.98% 22.85%, 43.29% 22.73%, 43.61% 22.62%, 43.94% 22.51%, 44.29% 22.41%, 44.65% 22.31%, 45.02% 22.23%, 45.40% 22.15%, 45.79% 22.07%, 46.19% 22.01%, 46.59% 21.95%, 47.00% 21.90%, 47.42% 21.85%, 47.84% 21.81%, 48.27% 21.78%, 48.70% 21.76%, 49.13% 21.74%, 49.57% 21.73%, 50.00% 21.73%, 50.43% 21.73%, 50.87% 21.74%, 51.30% 21.76%, 51.73% 21.78%, 52.16% 21.81%, 52.58% 21.85%, 53.00% 21.90%, 53.41% 21.95%, 53.81% 22.01%, 54.21% 22.07%, 54.60% 22.15%, 54.98% 22.23%, 55.35% 22.31%, 55.71% 22.41%, 56.06% 22.51%, 56.39% 22.62%, 56.71% 22.73%, 57.02% 22.85%, 57.31% 22.98%, 57.59% 23.12%, 57.85% 23.26%, 58.09% 23.41%, 58.31% 23.57%, 58.52% 23.73%, 58.70% 23.90%, 58.86% 24.08%, 59.01% 24.29%, 59.13% 24.51%, 59.24% 24.75%, 59.33% 25.01%, 59.40% 25.29%, 59.45% 25.58%, 59.50% 25.89%, 59.52% 26.21%, 59.54% 26.54%, 59.54% 26.89%, 59.53% 27.25%, 59.50% 27.62%, 59.47% 28.00%, 59.43% 28.39%, 59.38% 28.79%, 59.32% 29.19%, 59.26% 29.60%, 59.19% 30.02%, 59.12% 30.44%, 59.04% 30.87%, 58.96% 31.30%, 58.87% 31.73%, 58.79% 32.17%, 58.70% 32.60%, 58.61% 33.03%, 58.53% 33.47%, 58.44% 33.90%, 58.36% 34.33%, 58.28% 34.76%, 58.21% 35.18%, 58.14% 35.60%, 58.08% 36.01%, 58.02% 36.41%, 57.97% 36.81%, 57.93% 37.20%, 57.90% 37.58%, 57.87% 37.95%, 57.86% 38.31%, 57.86% 38.66%, 57.88% 38.99%, 57.90% 39.31%, 57.95% 39.62%, 58.00% 39.91%, 58.07% 40.19%, 58.16% 40.45%, 58.27% 40.69%, 58.39% 40.91%, 58.54% 41.12%, 58.70% 41.30%, 58.88% 41.46%, 59.09% 41.61%, 59.31% 41.73%, 59.55% 41.84%, 59.81% 41.93%, 60.09% 42.00%, 60.38% 42.05%, 60.69% 42.10%, 61.01% 42.12%, 61.34% 42.14%, 61.69% 42.14%, 62.05% 42.13%, 62.42% 42.10%, 62.80% 42.07%, 63.19% 42.03%, 63.59% 41.98%, 63.99% 41.92%, 64.40% 41.86%, 64.82% 41.79%, 65.24% 41.72%, 65.67% 41.64%, 66.10% 41.56%, 66.53% 41.47%, 66.97% 41.39%, 67.40% 41.30%, 67.83% 41.21%, 68.27% 41.13%, 68.70% 41.04%, 69.13% 40.96%, 69.56% 40.88%, 69.98% 40.81%, 70.40% 40.74%, 70.81% 40.68%, 71.21% 40.62%, 71.61% 40.57%, 72.00% 40.53%, 72.38% 40.50%, 72.75% 40.47%, 73.11% 40.46%, 73.46% 40.46%, 73.79% 40.48%, 74.11% 40.50%, 74.42% 40.55%, 74.71% 40.60%, 74.99% 40.67%, 75.25% 40.76%, 75.49% 40.87%, 75.71% 40.99%, 75.92% 41.14%, 76.10% 41.30%, 76.27% 41.48%, 76.43% 41.69%, 76.59% 41.91%, 76.74% 42.15%, 76.88% 42.41%, 77.02% 42.69%, 77.15% 42.98%, 77.27% 43.29%, 77.38% 43.61%, 77.49% 43.94%, 77.59% 44.29%, 77.69% 44.65%, 77.77% 45.02%, 77.85% 45.40%, 77.93% 45.79%, 77.99% 46.19%, 78.05% 46.59%, 78.10% 47.00%, 78.15% 47.42%, 78.19% 47.84%, 78.22% 48.27%, 78.24% 48.70%, 78.26% 49.13%, 78.27% 49.57%, 78.27% 50.00%, 78.27% 50.43%, 78.26% 50.87%, 78.24% 51.30%, 78.22% 51.73%, 78.19% 52.16%, 78.15% 52.58%, 78.10% 53.00%, 78.05% 53.41%, 77.99% 53.81%, 77.93% 54.21%, 77.85% 54.60%, 77.77% 54.98%, 77.69% 55.35%, 77.59% 55.71%, 77.49% 56.06%, 77.38% 56.39%, 77.27% 56.71%, 77.15% 57.02%, 77.02% 57.31%, 76.88% 57.59%, 76.74% 57.85%, 76.59% 58.09%, 76.43% 58.31%, 76.27% 58.52%, 76.10% 58.70%, 75.92% 58.86%, 75.71% 59.01%, 75.49% 59.13%, 75.25% 59.24%, 74.99% 59.33%, 74.71% 59.40%, 74.42% 59.45%, 74.11% 59.50%, 73.79% 59.52%, 73.46% 59.54%, 73.11% 59.54%, 72.75% 59.53%, 72.38% 59.50%, 72.00% 59.47%, 71.61% 59.43%, 71.21% 59.38%, 70.81% 59.32%, 70.40% 59.26%, 69.98% 59.19%, 69.56% 59.12%, 69.13% 59.04%, 68.70% 58.96%, 68.27% 58.87%, 67.83% 58.79%, 67.40% 58.70%, 66.97% 58.61%, 66.53% 58.53%, 66.10% 58.44%, 65.67% 58.36%, 65.24% 58.28%, 64.82% 58.21%, 64.40% 58.14%, 63.99% 58.08%, 63.59% 58.02%, 63.19% 57.97%, 62.80% 57.93%, 62.42% 57.90%, 62.05% 57.87%, 61.69% 57.86%, 61.34% 57.86%, 61.01% 57.88%, 60.69% 57.90%, 60.38% 57.95%, 60.09% 58.00%, 59.81% 58.07%, 59.55% 58.16%, 59.31% 58.27%, 59.09% 58.39%, 58.88% 58.54%, 58.70% 58.70%, 58.54% 58.88%, 58.39% 59.09%, 58.27% 59.31%, 58.16% 59.55%, 58.07% 59.81%, 58.00% 60.09%, 57.95% 60.38%, 57.90% 60.69%, 57.88% 61.01%, 57.86% 61.34%, 57.86% 61.69%, 57.87% 62.05%, 57.90% 62.42%, 57.93% 62.80%, 57.97% 63.19%, 58.02% 63.59%, 58.08% 63.99%, 58.14% 64.40%, 58.21% 64.82%, 58.28% 65.24%, 58.36% 65.67%, 58.44% 66.10%, 58.53% 66.53%, 58.61% 66.97%, 58.70% 67.40%, 58.79% 67.83%, 58.87% 68.27%, 58.96% 68.70%, 59.04% 69.13%, 59.12% 69.56%, 59.19% 69.98%, 59.26% 70.40%, 59.32% 70.81%, 59.38% 71.21%, 59.43% 71.61%, 59.47% 72.00%, 59.50% 72.38%, 59.53% 72.75%, 59.54% 73.11%, 59.54% 73.46%, 59.52% 73.79%, 59.50% 74.11%, 59.45% 74.42%, 59.40% 74.71%, 59.33% 74.99%, 59.24% 75.25%, 59.13% 75.49%, 59.01% 75.71%, 58.86% 75.92%, 58.70% 76.10%, 58.52% 76.27%, 58.31% 76.43%, 58.09% 76.59%, 57.85% 76.74%, 57.59% 76.88%, 57.31% 77.02%, 57.02% 77.15%, 56.71% 77.27%, 56.39% 77.38%, 56.06% 77.49%, 55.71% 77.59%, 55.35% 77.69%, 54.98% 77.77%, 54.60% 77.85%, 54.21% 77.93%, 53.81% 77.99%, 53.41% 78.05%, 53.00% 78.10%, 52.58% 78.15%, 52.16% 78.19%, 51.73% 78.22%, 51.30% 78.24%, 50.87% 78.26%, 50.43% 78.27%, 50.00% 78.27%, 49.57% 78.27%, 49.13% 78.26%, 48.70% 78.24%, 48.27% 78.22%, 47.84% 78.19%, 47.42% 78.15%, 47.00% 78.10%, 46.59% 78.05%, 46.19% 77.99%, 45.79% 77.93%, 45.40% 77.85%, 45.02% 77.77%, 44.65% 77.69%, 44.29% 77.59%, 43.94% 77.49%, 43.61% 77.38%, 43.29% 77.27%, 42.98% 77.15%, 42.69% 77.02%, 42.41% 76.88%, 42.15% 76.74%, 41.91% 76.59%, 41.69% 76.43%, 41.48% 76.27%, 41.30% 76.10%, 41.14% 75.92%, 40.99% 75.71%, 40.87% 75.49%, 40.76% 75.25%, 40.67% 74.99%, 40.60% 74.71%, 40.55% 74.42%, 40.50% 74.11%, 40.48% 73.79%, 40.46% 73.46%, 40.46% 73.11%, 40.47% 72.75%, 40.50% 72.38%, 40.53% 72.00%, 40.57% 71.61%, 40.62% 71.21%, 40.68% 70.81%, 40.74% 70.40%, 40.81% 69.98%, 40.88% 69.56%, 40.96% 69.13%, 41.04% 68.70%, 41.13% 68.27%, 41.21% 67.83%, 41.30% 67.40%, 41.39% 66.97%, 41.47% 66.53%, 41.56% 66.10%, 41.64% 65.67%, 41.72% 65.24%, 41.79% 64.82%, 41.86% 64.40%, 41.92% 63.99%, 41.98% 63.59%, 42.03% 63.19%, 42.07% 62.80%, 42.10% 62.42%, 42.13% 62.05%, 42.14% 61.69%, 42.14% 61.34%, 42.12% 61.01%, 42.10% 60.69%, 42.05% 60.38%, 42.00% 60.09%, 41.93% 59.81%, 41.84% 59.55%, 41.73% 59.31%, 41.61% 59.09%, 41.46% 58.88%, 41.30% 58.70%, 41.12% 58.54%, 40.91% 58.39%, 40.69% 58.27%, 40.45% 58.16%, 40.19% 58.07%, 39.91% 58.00%, 39.62% 57.95%, 39.31% 57.90%, 38.99% 57.88%, 38.66% 57.86%, 38.31% 57.86%, 37.95% 57.87%, 37.58% 57.90%, 37.20% 57.93%, 36.81% 57.97%, 36.41% 58.02%, 36.01% 58.08%, 35.60% 58.14%, 35.18% 58.21%, 34.76% 58.28%, 34.33% 58.36%, 33.90% 58.44%, 33.47% 58.53%, 33.03% 58.61%, 32.60% 58.70%, 32.17% 58.79%, 31.73% 58.87%, 31.30% 58.96%, 30.87% 59.04%, 30.44% 59.12%, 30.02% 59.19%, 29.60% 59.26%, 29.19% 59.32%, 28.79% 59.38%, 28.39% 59.43%, 28.00% 59.47%, 27.62% 59.50%, 27.25% 59.53%, 26.89% 59.54%, 26.54% 59.54%, 26.21% 59.52%, 25.89% 59.50%, 25.58% 59.45%, 25.29% 59.40%, 25.01% 59.33%, 24.75% 59.24%, 24.51% 59.13%, 24.29% 59.01%, 24.08% 58.86%, 23.90% 58.70%, 23.73% 58.52%, 23.57% 58.31%, 23.41% 58.09%, 23.26% 57.85%, 23.12% 57.59%, 22.98% 57.31%, 22.85% 57.02%, 22.73% 56.71%, 22.62% 56.39%, 22.51% 56.06%, 22.41% 55.71%, 22.31% 55.35%, 22.23% 54.98%, 22.15% 54.60%, 22.07% 54.21%, 22.01% 53.81%, 21.95% 53.41%, 21.90% 53.00%, 21.85% 52.58%, 21.81% 52.16%, 21.78% 51.73%, 21.76% 51.30%, 21.74% 50.87%, 21.73% 50.43%, 21.73% 50.00%, 21.73% 49.57%, 21.74% 49.13%, 21.76% 48.70%, 21.78% 48.27%, 21.81% 47.84%, 21.85% 47.42%, 21.90% 47.00%, 21.95% 46.59%, 22.01% 46.19%, 22.07% 45.79%, 22.15% 45.40%, 22.23% 45.02%, 22.31% 44.65%, 22.41% 44.29%, 22.51% 43.94%, 22.62% 43.61%, 22.73% 43.29%, 22.85% 42.98%, 22.98% 42.69%, 23.12% 42.41%, 23.26% 42.15%, 23.41% 41.91%, 23.57% 41.69%, 23.73% 41.48%, 23.90% 41.30%, 24.08% 41.14%, 24.29% 40.99%, 24.51% 40.87%, 24.75% 40.76%, 25.01% 40.67%, 25.29% 40.60%, 25.58% 40.55%, 25.89% 40.50%, 26.21% 40.48%, 26.54% 40.46%, 26.89% 40.46%, 27.25% 40.47%, 27.62% 40.50%, 28.00% 40.53%, 28.39% 40.57%, 28.79% 40.62%, 29.19% 40.68%, 29.60% 40.74%, 30.02% 40.81%, 30.44% 40.88%, 30.87% 40.96%, 31.30% 41.04%, 31.73% 41.13%, 32.17% 41.21%, 32.60% 41.30%, 33.03% 41.39%, 33.47% 41.47%, 33.90% 41.56%, 34.33% 41.64%, 34.76% 41.72%, 35.18% 41.79%, 35.60% 41.86%, 36.01% 41.92%, 36.41% 41.98%, 36.81% 42.03%, 37.20% 42.07%, 37.58% 42.10%, 37.95% 42.13%, 38.31% 42.14%, 38.66% 42.14%, 38.99% 42.12%, 39.31% 42.10%, 39.62% 42.05%, 39.91% 42.00%, 40.19% 41.93%, 40.45% 41.84%, 40.69% 41.73%, 40.91% 41.61%, 41.12% 41.46%, 41.30% 41.30%, 41.46% 41.12%, 41.61% 40.91%, 41.73% 40.69%, 41.84% 40.45%, 41.93% 40.19%, 42.00% 39.91%, 42.05% 39.62%, 42.10% 39.31%, 42.12% 38.99%, 42.14% 38.66%, 42.14% 38.31%, 42.13% 37.95%, 42.10% 37.58%, 42.07% 37.20%, 42.03% 36.81%, 41.98% 36.41%, 41.92% 36.01%, 41.86% 35.60%, 41.79% 35.18%, 41.72% 34.76%, 41.64% 34.33%, 41.56% 33.90%, 41.47% 33.47%, 41.39% 33.03%, 41.30% 32.60%, 41.21% 32.17%, 41.13% 31.73%, 41.04% 31.30%, 40.96% 30.87%, 40.88% 30.44%, 40.81% 30.02%, 40.74% 29.60%, 40.68% 29.19%, 40.62% 28.79%, 40.57% 28.39%, 40.53% 28.00%, 40.50% 27.62%, 40.47% 27.25%, 40.46% 26.89%, 40.46% 26.54%, 40.48% 26.21%, 40.50% 25.89%, 40.55% 25.58%, 40.60% 25.29%, 40.67% 25.01%, 40.76% 24.75%, 40.87% 24.51%, 40.99% 24.29%, 41.14% 24.08%);">
</div>
<div class="absolute top-40 right-20 w-48 h-48 opacity-60 bg-neo-blue border-4 border-neo-black shadow-neo"
style="animation: spin 10s linear infinite reverse; clip-path: polygon(21.00% 35.50%, 21.21% 35.24%, 21.44% 35.00%, 21.69% 34.79%, 21.95% 34.61%, 22.24% 34.46%, 22.54% 34.33%, 22.86% 34.23%, 23.20% 34.15%, 23.55% 34.09%, 23.92% 34.05%, 24.30% 34.03%, 24.69% 34.03%, 25.09% 34.04%, 25.51% 34.08%, 25.93% 34.12%, 26.37% 34.18%, 26.81% 34.26%, 27.26% 34.34%, 27.72% 34.44%, 28.18% 34.54%, 28.65% 34.66%, 29.12% 34.78%, 29.60% 34.90%, 30.08% 35.04%, 30.56% 35.17%, 31.04% 35.31%, 31.52% 35.45%, 32.00% 35.59%, 32.48% 35.73%, 32.96% 35.87%, 33.43% 36.00%, 33.90% 36.13%, 34.36% 36.26%, 34.82% 36.38%, 35.27% 36.49%, 35.72% 36.59%, 36.15% 36.69%, 36.58% 36.77%, 37.00% 36.84%, 37.41% 36.90%, 37.80% 36.94%, 38.18% 36.97%, 38.55% 36.99%, 38.91% 36.98%, 39.25% 36.96%, 39.57% 36.92%, 39.88% 36.85%, 40.17% 36.77%, 40.45% 36.66%, 40.70% 36.53%, 40.93% 36.36%, 41.14% 36.18%, 41.33% 35.96%, 41.50% 35.71%, 41.65% 35.44%, 41.78% 35.15%, 41.89% 34.83%, 41.99% 34.50%, 42.07% 34.14%, 42.13% 33.77%, 42.19% 33.38%, 42.23% 32.97%, 42.26% 32.55%, 42.28% 32.12%, 42.30% 31.68%, 42.30% 31.23%, 42.30% 30.77%, 42.29% 30.31%, 42.28% 29.84%, 42.27% 29.37%, 42.25% 28.90%, 42.23% 28.42%, 42.21% 27.95%, 42.19% 27.48%, 42.17% 27.01%, 42.16% 26.55%, 42.15% 26.10%, 42.14% 25.66%, 42.14% 25.22%, 42.15% 24.80%, 42.16% 24.39%, 42.19% 23.99%, 42.22% 23.61%, 42.27% 23.25%, 42.33% 22.91%, 42.40% 22.58%, 42.48% 22.28%, 42.59% 22.00%, 42.70% 21.75%, 42.84% 21.52%, 42.99% 21.32%, 43.17% 21.15%, 43.36% 21.01%, 43.58% 20.90%, 43.81% 20.82%, 44.08% 20.78%, 44.36% 20.78%, 44.68% 20.81%, 45.02% 20.89%, 45.39% 21.00%, 45.79% 21.15%, 46.25% 21.34%, 46.75% 21.56%, 47.29% 21.81%, 47.88% 22.10%, 48.50% 22.41%, 49.16% 22.75%, 49.85% 23.13%, 50.58% 23.53%, 51.33% 23.95%, 52.11% 24.40%, 52.92% 24.87%, 53.75% 25.37%, 54.60% 25.89%, 55.46% 26.43%, 56.34% 26.99%, 57.24% 27.56%, 58.14% 28.16%, 59.06% 28.77%, 59.98% 29.39%, 60.90% 30.03%, 61.82% 30.69%, 62.75% 31.35%, 63.67% 32.03%, 64.59% 32.72%, 65.50% 33.41%, 66.39% 34.12%, 67.28% 34.83%, 68.15% 35.54%, 69.01% 36.26%, 69.84% 36.99%, 70.66% 37.71%, 71.45% 38.44%, 72.21% 39.17%, 72.95% 39.90%, 73.65% 40.62%, 74.32% 41.35%, 74.96% 42.07%, 75.56% 42.78%, 76.12% 43.49%, 76.63% 44.19%, 77.11% 44.88%, 77.53% 45.56%, 77.91% 46.24%, 78.23% 46.90%, 78.50% 47.55%, 78.72% 48.18%, 78.87% 48.81%, 78.97% 49.41%, 79.00% 50.00%, 78.97% 50.59%, 78.87% 51.19%, 78.72% 51.82%, 78.50% 52.45%, 78.23% 53.10%, 77.91% 53.76%, 77.53% 54.44%, 77.11% 55.12%, 76.63% 55.81%, 76.12% 56.51%, 75.56% 57.22%, 74.96% 57.93%, 74.32% 58.65%, 73.65% 59.38%, 72.95% 60.10%, 72.21% 60.83%, 71.45% 61.56%, 70.66% 62.29%, 69.84% 63.01%, 69.01% 63.74%, 68.15% 64.46%, 67.28% 65.17%, 66.39% 65.88%, 65.50% 66.59%, 64.59% 67.28%, 63.67% 67.97%, 62.75% 68.65%, 61.82% 69.31%, 60.90% 69.97%, 59.98% 70.61%, 59.06% 71.23%, 58.14% 71.84%, 57.24% 72.44%, 56.34% 73.01%, 55.46% 73.57%, 54.60% 74.11%, 53.75% 74.63%, 52.92% 75.13%, 52.11% 75.60%, 51.33% 76.05%, 50.58% 76.47%, 49.85% 76.87%, 49.16% 77.25%, 48.50% 77.59%, 47.88% 77.90%, 47.29% 78.19%, 46.75% 78.44%, 46.25% 78.66%, 45.79% 78.85%, 45.39% 79.00%, 45.02% 79.11%, 44.68% 79.19%, 44.36% 79.22%, 44.08% 79.22%, 43.81% 79.18%, 43.58% 79.10%, 43.36% 78.99%, 43.17% 78.85%, 42.99% 78.68%, 42.84% 78.48%, 42.70% 78.25%, 42.59% 78.00%, 42.48% 77.72%, 42.40% 77.42%, 42.33% 77.09%, 42.27% 76.75%, 42.22% 76.39%, 42.19% 76.01%, 42.16% 75.61%, 42.15% 75.20%, 42.14% 74.78%, 42.14% 74.34%, 42.15% 73.90%, 42.16% 73.45%, 42.17% 72.99%, 42.19% 72.52%, 42.21% 72.05%, 42.23% 71.58%, 42.25% 71.10%, 42.27% 70.63%, 42.28% 70.16%, 42.29% 69.69%, 42.30% 69.23%, 42.30% 68.77%, 42.30% 68.32%, 42.28% 67.88%, 42.26% 67.45%, 42.23% 67.03%, 42.19% 66.62%, 42.13% 66.23%, 42.07% 65.86%, 41.99% 65.50%, 41.89% 65.17%, 41.78% 64.85%, 41.65% 64.56%, 41.50% 64.29%, 41.33% 64.04%, 41.14% 63.82%, 40.93% 63.64%, 40.70% 63.47%, 40.45% 63.34%, 40.17% 63.23%, 39.88% 63.15%, 39.57% 63.08%, 39.25% 63.04%, 38.91% 63.02%, 38.55% 63.01%, 38.18% 63.03%, 37.80% 63.06%, 37.41% 63.10%, 37.00% 63.16%, 36.58% 63.23%, 36.15% 63.31%, 35.72% 63.41%, 35.27% 63.51%, 34.82% 63.62%, 34.36% 63.74%, 33.90% 63.87%, 33.43% 64.00%, 32.96% 64.13%, 32.48% 64.27%, 32.00% 64.41%, 31.52% 64.55%, 31.04% 64.69%, 30.56% 64.83%, 30.08% 64.96%, 29.60% 65.10%, 29.12% 65.22%, 28.65% 65.34%, 28.18% 65.46%, 27.72% 65.56%, 27.26% 65.66%, 26.81% 65.74%, 26.37% 65.82%, 25.93% 65.88%, 25.51% 65.92%, 25.09% 65.96%, 24.69% 65.97%, 24.30% 65.97%, 23.92% 65.95%, 23.55% 65.91%, 23.20% 65.85%, 22.86% 65.77%, 22.54% 65.67%, 22.24% 65.54%, 21.95% 65.39%, 21.69% 65.21%, 21.44% 65.00%, 21.21% 64.76%, 21.00% 64.50%, 20.81% 64.20%, 20.62% 63.87%, 20.44% 63.51%, 20.28% 63.11%, 20.11% 62.68%, 19.96% 62.22%, 19.81% 61.74%, 19.68% 61.23%, 19.55% 60.70%, 19.42% 60.14%, 19.31% 59.56%, 19.20% 58.96%, 19.10% 58.35%, 19.01% 57.71%, 18.93% 57.06%, 18.86% 56.40%, 18.79% 55.72%, 18.73% 55.03%, 18.68% 54.33%, 18.64% 53.62%, 18.60% 52.91%, 18.57% 52.18%, 18.55% 51.46%, 18.54% 50.73%, 18.54% 50.00%, 18.54% 49.27%, 18.55% 48.54%, 18.57% 47.82%, 18.60% 47.09%, 18.64% 46.38%, 18.68% 45.67%, 18.73% 44.97%, 18.79% 44.28%, 18.86% 43.60%, 18.93% 42.94%, 19.01% 42.29%, 19.10% 41.65%, 19.20% 41.04%, 19.31% 40.44%, 19.42% 39.86%, 19.55% 39.30%, 19.68% 38.77%, 19.81% 38.26%, 19.96% 37.78%, 20.11% 37.32%, 20.28% 36.89%, 20.44% 36.49%, 20.62% 36.13%, 20.81% 35.80%);">
</div>
<!-- 3D Mock Container Background -->
<div
class="absolute inset-0 z-0 opacity-5 pointer-events-none flex items-center justify-center overflow-hidden">
<div
class="w-[800px] h-[600px] border-8 border-black transform -rotate-12 translate-x-40 translate-y-20 bg-white opacity-20">
</div>
</div>
<div class="max-w-6xl mx-auto px-6 text-center relative z-10">
<div
class="inline-block bg-neo-green border-4 border-neo-black shadow-neo px-4 py-2 font-bold mb-6 rotate-[-2deg] hover:rotate-2 transition-transform cursor-default">
★ The Ultimate CSS Toy ★
</div>
<h1 class="font-display text-5xl md:text-[10rem] leading-[0.85] font-black mb-8">
MAKE <span class="text-neo-pink text-outline">CRAZY</span><br>
SHAPES <span class="text-neo-blue text-outline">FAST</span>
</h1>
<p
class="text-lg md:text-2xl font-medium max-w-2xl mx-auto mb-12 bg-neo-white border-2 border-neo-black p-4 shadow-neo -rotate-1">
Forget boring rectangles. Bend the web to your will with our drag-and-drop vector editor.
<span class="bg-neo-yellow px-1">100% Free.</span>
</p>
<div class="flex flex-col md:flex-row justify-center gap-6 items-center">
<a href="/editor"
class="bg-neo-black text-neo-white text-xl md:text-2xl font-bold px-8 md:px-10 py-4 md:py-5 border-4 border-neo-black shadow-neo-lg hover:shadow-none hover:translate-x-1 hover:translate-y-1 transition-all group overflow-hidden relative">
<span class="relative z-10 group-hover:text-neo-yellow">LAUNCH EDITOR</span>
<div
class="absolute inset-0 bg-white transform -translate-x-full group-hover:translate-x-0 transition-transform mix-blend-difference">
</div>
</a>
<a href="#demo"
class="bg-neo-white text-neo-black text-xl font-bold px-8 py-4 md:py-5 border-4 border-neo-black shadow-neo-lg hover:shadow-none hover:translate-x-1 hover:translate-y-1 transition-all flex items-center gap-3">
<div
class="w-8 h-8 bg-neo-pink rounded-full border-2 border-neo-black flex items-center justify-center">
<div
class="w-0 h-0 border-t-[6px] border-t-transparent border-l-[10px] border-l-black border-b-[6px] border-b-transparent ml-1">
</div>
</div>
See Demo
</a>
</div>
</div>
</header>
<!-- Editor Preview (Demo) -->
<section id="demo" class="max-w-7xl mx-auto px-6 mb-0 md:mb-32 scroll-mt-32">
<div class="relative group cursor-pointer" onclick="window.location.href='/editor'">
<!-- Decorative Layers behind -->
<div
class="absolute inset-0 bg-neo-black translate-x-4 translate-y-4 rounded-xl border-4 border-neo-black transition-transform group-hover:translate-x-6 group-hover:translate-y-6">
</div>
<div
class="absolute inset-0 bg-neo-pink translate-x-2 translate-y-2 rounded-xl border-4 border-neo-black transition-transform group-hover:translate-x-3 group-hover:translate-y-3">
</div>
<!-- Floating Stickers -->
<div class="absolute -top-6 -right-6 z-20 animate-bounce cursor-default">
<div
class="bg-neo-yellow border-4 border-black p-2 font-black text-xl rotate-12 shadow-[4px_4px_0_0_#000]">
NEW!
</div>
</div>
<div class="absolute -bottom-4 -left-8 z-20 animate-blob cursor-default">
<div
class="bg-neo-pink border-4 border-black p-2 font-black text-lg -rotate-6 shadow-[4px_4px_0_0_#000] text-white">
v2.0
</div>
</div>
<!-- Main Window -->
<div
class="relative bg-neo-white border-4 border-neo-black rounded-xl overflow-hidden shadow-neo-lg hover:shadow-none transition-all duration-300 transform scale-[0.8] md:scale-100 origin-top">
<!-- Replica Top Bar -->
<nav
class="bg-neo-yellow border-b-4 border-black px-4 h-16 flex items-center justify-between shrink-0 relative overflow-hidden">
<!-- Striped Overlay -->
<div class="absolute inset-0 opacity-10 pointer-events-none"
style="background-image: repeating-linear-gradient(45deg, #000 0px, #000 2px, transparent 2px, transparent 8px);">
</div>
<div class="flex items-center gap-3 z-10">
<div
class="w-10 h-10 bg-neo-white border-2 border-black rounded-none flex items-center justify-center text-black font-bold shadow-neo-sm">
<i class="fa-solid fa-shapes"></i>
</div>
<div>
<div class="flex flex-col text-left">
<h1 class="text-lg font-black tracking-tighter text-black leading-none uppercase glitch-text"
data-text="CSS SHAPE">CSS SHAPE</h1>
<div class="flex items-center gap-1 leading-none">
<span
class="text-lg font-black tracking-tighter text-neo-pink text-outline leading-none uppercase">GEN.</span>
<span
class="bg-neo-white text-black px-1 text-[10px] font-bold border-2 border-neo-black shadow-[2px_2px_0_0_#000] -rotate-3">PRO</span>
</div>
</div>
</div>
</div>
<div class="relative z-10">
<button
class="bg-neo-black hover:bg-neo-pink hover:text-black hover:shadow-none shadow-neo-sm text-white text-xs font-bold px-4 py-2 border-2 border-black transition-all flex items-center gap-2">Export
<i class="fa-solid fa-chevron-down text-[10px]"></i></button>
</div>
</nav>
<!-- Replica App Layout -->
<div class="flex h-[500px] bg-white text-left">
<!-- Replica Sidebar: Layers & Primitives -->
<div class="hidden md:flex w-64 bg-neo-white border-r-4 border-black flex-col shrink-0">
<div class="p-3 border-b-4 border-black flex justify-between items-center bg-neo-blue">
<span class="text-xs font-black text-black uppercase tracking-wider">Layers</span>
<div class="flex gap-1">
<div
class="text-xs bg-white border-2 border-black hover:bg-neo-green px-2 py-1 shadow-neo-sm font-bold cursor-pointer">
<i class="fa-solid fa-plus"></i>
</div>
</div>
</div>
<div class="flex-1 p-2 space-y-1 bg-gray-50">
<!-- Fake Layer Items -->
<div
class="bg-neo-yellow border-2 border-black p-2 flex items-center gap-2 text-xs font-bold shadow-neo-sm">
<i class="fa-solid fa-eye"></i> <span>Polygon Shape</span>
</div>
<div
class="bg-white border-2 border-black p-2 flex items-center gap-2 text-xs font-bold opacity-50">
<i class="fa-solid fa-eye"></i> <span>Background</span>
</div>
</div>
<!-- Primitives Section -->
<div class="p-4 border-t-4 border-black bg-neo-white">
<span
class="text-xs font-black text-black uppercase tracking-wider block mb-2 border-b-2 border-black">Primitives</span>
<div class="grid grid-cols-4 gap-2">
<div
class="aspect-square border-2 border-black bg-white hover:bg-neo-pink shadow-neo-sm flex items-center justify-center text-black font-bold transition-all cursor-pointer">
<i class="fa-solid fa-play fa-rotate-270 text-[10px]"></i></div>
<div
class="aspect-square border-2 border-black bg-white hover:bg-neo-pink shadow-neo-sm flex items-center justify-center text-black font-bold transition-all cursor-pointer">
<i class="fa-regular fa-circle text-[10px]"></i></div>
<div
class="aspect-square border-2 border-black bg-white hover:bg-neo-pink shadow-neo-sm flex items-center justify-center text-black font-bold transition-all cursor-pointer">
<i class="fa-solid fa-star text-[10px]"></i></div>
<div
class="aspect-square border-2 border-black bg-white hover:bg-neo-pink shadow-neo-sm flex items-center justify-center text-black font-bold transition-all cursor-pointer">
<i class="fa-solid fa-arrow-right text-[10px]"></i></div>
</div>
</div>
</div>
<!-- Replica Canvas Area -->
<div class="flex-1 flex flex-col relative bg-[#f0f0f0]">
<!-- Toolbar -->
<div
class="h-14 bg-neo-white border-b-4 border-black flex items-center justify-center gap-6 px-4">
<div class="flex items-center gap-2 opacity-50">
<div
class="w-9 h-9 flex items-center justify-center border-2 border-black bg-white shadow-neo-sm text-black">
<i class="fa-solid fa-rotate-left text-sm"></i></div>
<div
class="w-9 h-9 flex items-center justify-center border-2 border-black bg-white shadow-neo-sm text-black">
<i class="fa-solid fa-rotate-right text-sm"></i></div>
</div>
<div class="w-1 h-8 bg-black skew-x-12 hidden md:block"></div>
<div class="flex items-center gap-2">
<span class="text-xs font-black text-black uppercase hidden md:inline">Sym</span>
<div
class="px-2 py-1 text-xs border-2 border-black bg-white text-black font-bold hover:bg-neo-pink transition-colors cursor-pointer">
X</div>
<div
class="px-2 py-1 text-xs border-2 border-black bg-white text-black font-bold hover:bg-neo-pink transition-colors cursor-pointer">
Y</div>
</div>
</div>
<!-- Canvas Zone -->
<div class="flex-1 flex items-center justify-center overflow-hidden relative p-10">
<!-- Checkerboard Background -->
<div class="absolute inset-0 opacity-20"
style="background-image: linear-gradient(45deg, #cbd5e1 25%, transparent 25%), linear-gradient(-45deg, #cbd5e1 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #cbd5e1 75%), linear-gradient(-45deg, transparent 75%, #cbd5e1 75%); background-size: 20px 20px; background-position: 0 0, 0 10px, 10px -10px, -10px 0px;">
</div>
<!-- The Shape -->
<div class="relative w-64 h-64 group-hover:scale-105 transition-transform duration-500">
<!-- Ghost Trail -->
<div class="absolute inset-0 bg-neo-pink border-4 border-black animate-blob opacity-50 translate-x-2 translate-y-2"
style="clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%); animation-delay: 0.1s;">
</div>
<!-- Main Shape -->
<div class="absolute inset-0 bg-neo-blue border-4 border-black shadow-neo animate-blob z-10"
style="clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);">
<!-- Inner Pattern -->
<div class="w-full h-full relative overflow-hidden">
<div class="absolute inset-0 opacity-20 rotate-45 transform scale-150"
style="background-image: repeating-linear-gradient(45deg, #000 0px, #000 2px, transparent 2px, transparent 10px);">
</div>
</div>
</div>
<!-- Control Points -->
<div
class="absolute top-0 left-[20%] -translate-x-1/2 -translate-y-1/2 w-3 h-3 bg-white border border-black z-20 shadow-sm rounded-full ring-2 ring-neo-pink">
</div>
<div
class="absolute top-0 right-[20%] translate-x-1/2 -translate-y-1/2 w-3 h-3 bg-white border border-black z-20 shadow-sm rounded-full">
</div>
<div
class="absolute bottom-0 right-0 translate-x-1/2 w-3 h-3 bg-white border border-black z-20 shadow-sm rounded-full">
</div>
<div
class="absolute bottom-0 left-0 -translate-x-1/2 w-3 h-3 bg-white border border-black z-20 shadow-sm rounded-full">
</div>
</div>
<!-- Fake Code Snippet (Floating) -->
<div
class="absolute bottom-4 left-4 right-auto bg-neo-black text-neo-green border-2 border-white p-3 font-mono text-[10px] shadow-neo rotate-2 md:max-w-[200px] z-20 opacity-90 pointer-events-none">
<span class="text-neo-pink">.poly</span> { <br>
clip-path: polygon(...);<span
class="animate-pulse bg-neo-green text-black ml-1 px-0.5">_</span><br>
}
</div>
</div>
</div>
<!-- Replica Right Sidebar: Properties -->
<div class="hidden md:flex w-80 bg-neo-white border-l-4 border-black flex-col shrink-0">
<!-- Tabs -->
<div class="flex border-b border-black">
<div
class="flex-1 py-3 text-[10px] font-black uppercase text-center border-b-4 border-transparent bg-neo-white text-black underline decoration-4 decoration-neo-pink">
Shape</div>
<div
class="flex-1 py-3 text-[10px] font-black uppercase text-center border-b-4 border-transparent text-gray-500 hover:bg-neo-yellow">
Fill</div>
<div
class="flex-1 py-3 text-[10px] font-black uppercase text-center border-b-4 border-transparent text-gray-500 hover:bg-neo-yellow">
Effects</div>
</div>
<!-- Panel Content -->
<div class="p-4 space-y-4">
<!-- Point Controls -->
<div class="bg-neo-white border-2 border-black shadow-neo-sm p-3 space-y-3">
<div class="flex justify-between items-center mb-1">
<span class="text-[10px] font-bold text-slate-500 uppercase">Selected Point</span>
<span
class="text-[10px] bg-neo-yellow text-black px-1.5 py-0.5 border-2 border-black font-bold font-mono shadow-neo-sm">#1</span>
</div>
<div class="grid grid-cols-2 gap-2">
<div class="relative"><span
class="absolute left-2 top-1.5 text-[10px] text-black font-black">X</span><input
type="text" value="120"
class="w-full pl-6 pr-1 py-1 text-xs border-2 border-black bg-white font-bold"
readonly></div>
<div class="relative"><span
class="absolute left-2 top-1.5 text-[10px] text-black font-black">Y</span><input
type="text" value="45"
class="w-full pl-6 pr-1 py-1 text-xs border-2 border-black bg-white font-bold"
readonly></div>
</div>
</div>
<!-- Sliders -->
<div>
<label
class="flex justify-between text-[10px] font-bold text-slate-500 uppercase mb-1"><span>Rotation</span>
<span class="text-indigo-600">0°</span></label>
<div class="h-4 bg-gray-200 border-2 border-black relative">
<div class="absolute top-0 bottom-0 left-0 w-0 bg-black"></div>
<div
class="absolute top-1/2 -translate-y-1/2 left-0 w-3 h-4 bg-neo-yellow border-2 border-black">
</div>
</div>
</div>
<div>
<label
class="flex justify-between text-[10px] font-bold text-slate-500 uppercase mb-1"><span>Scale</span>
<span class="text-indigo-600">100%</span></label>
<div class="h-4 bg-gray-200 border-2 border-black relative">
<div class="absolute top-0 bottom-0 left-0 w-full bg-black"></div>
<div
class="absolute top-1/2 -translate-y-1/2 right-0 w-3 h-4 bg-neo-yellow border-2 border-black">
</div>
</div>
</div>
<!-- Info Box -->
<div class="mt-auto p-2 bg-black border-2 border-black">
<div class="text-[10px] text-neo-green font-mono blinking-text">> SYSTEM_READY</div>
</div>
</div>
</div>
</div>
<!-- Hover Overlay (Try It Now) -->
<div
class="absolute inset-0 flex items-center justify-center opacity-0 group-hover:opacity-100 transition-opacity duration-300 bg-black/40 backdrop-blur-[4px] z-30">
<button
class="bg-neo-yellow text-black font-black text-4xl px-12 py-6 border-4 border-black shadow-[12px_12px_0_0_#000] transform scale-0 group-hover:scale-100 transition-transform duration-300 hover:-rotate-2 hover:scale-110 active:scale-95 active:shadow-[4px_4px_0_0_#000] active:translate-x-2 active:translate-y-2">
TRY EDITOR
</button>
</div>
</div>
</div>
</section>
<!-- Marquee -->
<!-- Marquee -->
<!-- Marquee -->
<section class="relative w-full h-[400px]">
<div
class="absolute max-w-full h-full flex flex-col items-center justify-center overflow-hidden py-8 md:py-12 mb-12 md:mb-20">
<div
class="bg-neo-yellow flex flex-col gap-4 border-y-4 border-neo-black py-4 rotate-[-8deg] scale-105 shadow-neo overflow-hidden">
<!-- Line 1 -->
<div class="marquee-container border-neo-black">
<div class="marquee-content font-display font-bold text-4xl uppercase gap-8"
style="animation-name: marquee-rev;">
<span class="mx-8">★ CLIP-PATH</span>
<span class="mx-8 text-outline text-neo-white">★ POLYGONS</span>
<span class="mx-8">★ BLOBS</span>
<span class="mx-8 text-outline text-neo-white">★ SVG EXPORT</span>
<span class="mx-8">★ TAILWIND READY</span>
<span class="mx-8 text-outline text-neo-white">★ NO LOGIN REQUIRED</span>
<span class="mx-8">★ CLIP-PATH</span>
<span class="mx-8 text-outline text-neo-white">★ POLYGONS</span>
<span class="mx-8">★ BLOBS</span>
<span class="mx-8 text-outline text-neo-white">★ SVG EXPORT</span>
<span class="mx-8">★ TAILWIND READY</span>
<span class="mx-8 text-outline text-neo-white">★ NO LOGIN REQUIRED</span>
</div>
</div>
</div>
</div>
<div
class="max-w-full h-full flex flex-col items-center justify-center overflow-hidden py-8 md:py-12 mb-12 md:mb-20">
<div
class="bg-neo-yellow flex flex-col gap-4 border-y-4 border-neo-black py-4 rotate-[8deg] scale-105 shadow-neo overflow-hidden">
<!-- Line 1 -->
<div class="marquee-container border-neo-black">
<div class="marquee-content font-display font-bold text-4xl uppercase gap-8
style=" animation-name: marquee-rev;">
<span class="mx-8">★ CLIP-PATH</span>
<span class="mx-8 text-outline text-neo-white">★ POLYGONS</span>
<span class="mx-8">★ BLOBS</span>
<span class="mx-8 text-outline text-neo-white">★ SVG EXPORT</span>
<span class="mx-8">★ TAILWIND READY</span>
<span class="mx-8 text-outline text-neo-white">★ NO LOGIN REQUIRED</span>
<span class="mx-8">★ CLIP-PATH</span>
<span class="mx-8 text-outline text-neo-white">★ POLYGONS</span>
<span class="mx-8">★ BLOBS</span>
<span class="mx-8 text-outline text-neo-white">★ SVG EXPORT</span>
<span class="mx-8">★ TAILWIND READY</span>
<span class="mx-8 text-outline text-neo-white">★ NO LOGIN REQUIRED</span>
</div>
</div>
</div>
</div>
</section>
<!-- Feature Grid -->
<section class="max-w-7xl mx-auto px-6 pt-0 md:pt-32 pb-20 md:pb-32">
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Box 1 -->
<div
class="bg-neo-green border-4 border-neo-black shadow-neo-lg p-8 hover:-translate-y-2 transition-transform duration-300">
<div
class="w-16 h-16 bg-neo-white border-4 border-neo-black mb-6 flex items-center justify-center text-2xl font-bold text-black shadow-neo">
<i class="fa-solid fa-arrows-up-down-left-right"></i>
</div>
<h3 class="font-display text-3xl font-bold mb-4">DRAG & DROP</h3>
<p class="font-medium">Move points around like it's 1999 but smoother. Add bezier curves with a click.
</p>
</div>
<!-- Box 2 -->
<div
class="bg-neo-blue border-4 border-neo-black shadow-neo-lg p-8 hover:-translate-y-2 transition-transform duration-300">
<div
class="w-16 h-16 bg-neo-white border-4 border-neo-black mb-6 flex items-center justify-center text-2xl font-bold shadow-neo">
<i class="fa-brands fa-css3-alt"></i>
</div>
<h3 class="font-display text-3xl font-bold mb-4">CSS & SVG</h3>
<p class="font-medium">Get raw code. No bloat. Copy paste into your React, Vue or HTML project
instantly.</p>
</div>
<!-- Box 3 -->
<div
class="bg-neo-pink border-4 border-neo-black shadow-neo-lg p-8 hover:-translate-y-2 transition-transform duration-300">
<div
class="w-16 h-16 bg-neo-white border-4 border-neo-black mb-6 flex items-center justify-center text-2xl font-bold shadow-neo">
<i class="fa-solid fa-image"></i>
</div>
<h3 class="font-display text-3xl font-bold mb-4">IMAGE MASK</h3>
<p class="font-medium">Upload your cat photos. Crop them into stars. Be a legend.</p>
</div>
</div>
<!-- Big Feature Block -->
<div
class="mt-12 md:mt-20 border-4 border-neo-black bg-neo-white shadow-neo-xl flex flex-col md:flex-row overflow-hidden">
<div class="p-6 md:p-12 md:w-1/2 flex flex-col justify-center">
<div class="text-sm font-bold bg-neo-black text-neo-white inline-block px-3 py-1 mb-4 self-start">NEW
FEATURE</div>
<h2 class="font-display text-3xl md:text-5xl font-black mb-6 uppercase">Tailwind <br>Support</h2>
<p class="text-lg md:text-xl font-medium mb-8">We generate the weird arbitrary values so you don't have
to guess.
Just copy the class.</p>
<div class="bg-gray-100 p-4 border-2 border-black font-mono text-sm shadow-neo overflow-x-auto">
<span class="text-blue-600">class</span>="<span class="text-purple-600">bg-red-500</span> <span
class="text-orange-600">clip-[polygon(0_0,100%_0,100%_100%)]</span>"
</div>
</div>
<div
class="md:w-1/2 bg-neo-purple border-t-4 md:border-t-0 md:border-l-4 border-neo-black flex items-center justify-center p-8 md:p-12 relative overflow-hidden group">
<div
class="absolute inset-0 bg-[url('https://www.transparenttextures.com/patterns/diagonal-stripes.png')] opacity-20">
</div>
<div
class="w-48 h-48 md:w-64 md:h-64 bg-neo-white border-4 border-neo-black shadow-neo flex items-center justify-center text-2xl md:text-4xl font-black group-hover:rotate-12 transition-transform duration-300 relative z-10">
HOVER ME
</div>
</div>
</div>
</section>
<!-- Playground Link / CTA -->
<!-- How It Works Section -->
<section class="max-w-7xl mx-auto px-6 py-12 md:py-20" id="about">
<h2 class="font-display text-5xl md:text-9xl text-neo-black text-outline font-black mb-16 text-center">HOW IT
<span class="text-neo-purple">WORKS</span>
</h2>
<div class="grid md:grid-cols-3 gap-8">
<!-- Step 1 -->
<div class="relative group">
<div class="absolute inset-0 bg-neo-black translate-x-3 translate-y-3 border-2 border-black"></div>
<div
class="relative bg-white border-4 border-neo-black p-8 h-full hover:translate-x-1 hover:translate-y-1 transition-transform">
<div
class="absolute top-0 right-0 md:top-10 md:right-10 bg-neo-yellow border-4 border-black px-4 py-2 font-black shadow-neo rotate-12 z-40 animate-bounce cursor-default">
STEP 01
</div>
<div
class="w-16 h-16 bg-neo-yellow border-4 border-neo-black mb-6 flex items-center justify-center text-3xl font-bold shadow-neo">
<i class="fa-solid fa-arrow-pointer"></i>
</div>
<h3 class="font-display text-3xl font-bold mb-4">DRAG POINTS</h3>
<p class="font-medium">Click and drag any point to reshape. Double click to add new points. It's
intuitive, fast, and kinda addictive.</p>
</div>
</div>
<!-- Step 2 -->
<div class="relative group">
<div class="absolute inset-0 bg-neo-black translate-x-3 translate-y-3 border-2 border-black"></div>
<div
class="relative bg-white border-4 border-neo-black p-8 h-full hover:translate-x-1 hover:translate-y-1 transition-transform">
<div
class="absolute top-0 right-0 md:top-10 md:right-10 bg-neo-green border-4 border-black px-4 py-2 font-black shadow-neo rotate-12 z-40 animate-bounce cursor-default">
STEP 02
</div>
<div
class="w-16 h-16 bg-neo-green border-4 border-neo-black mb-6 flex items-center justify-center text-3xl font-bold shadow-neo">
<i class="fa-solid fa-sliders"></i>
</div>
<h3 class="font-display text-3xl font-bold mb-4">CUSTOMIZE</h3>
<p class="font-medium">Tweak border radius, smooth curves with handles, or apply predefined shapes
like stars and blobs.</p>
</div>
</div>
<!-- Step 3 -->
<div class="relative group">
<div class="absolute inset-0 bg-neo-black translate-x-3 translate-y-3 border-2 border-black"></div>
<div
class="relative bg-white border-4 border-neo-black p-8 h-full hover:translate-x-1 hover:translate-y-1 transition-transform">
<div
class="absolute top-0 right-0 md:top-10 md:right-10 bg-neo-pink border-4 border-black px-4 py-2 font-black shadow-neo rotate-12 z-40 animate-bounce cursor-default">
STEP 03
</div>
<div
class="w-16 h-16 bg-neo-pink border-4 border-neo-black mb-6 flex items-center justify-center text-3xl font-bold shadow-neo">
<i class="fa-solid fa-code"></i>
</div>
<h3 class="font-display text-3xl font-bold mb-4">EXPORT CSS</h3>
<p class="font-medium">Grab the code. We generate standard CSS `clip-path` or SVG code. Ready to
paste into your project.</p>
</div>
</div>
</div>
</section>
<!-- === FEATURE TOUR START === -->
<!-- Section 1: Layers -->
<!-- Section 1: Layers -->
<section id="features" class="py-16 md:py-24">
<h2 class="font-display text-5xl md:text-9xl text-neo-black text-outline font-black mb-20 md:mb-32 text-center">
ALL THE
<br /><span class="text-neo-green">FEATURES</span>
</h2>
<div class="max-w-7xl mx-auto px-6 flex flex-col md:flex-row items-center gap-8 md:gap-16">
<div class="md:w-1/2">
<div
class="inline-block bg-neo-purple text-black font-bold px-3 py-1 mb-4 text-sm uppercase border-2 border-black shadow-neo">
Multi-Shape
Control</div>
<h2 class="font-display text-3xl md:text-5xl font-black mb-6">UNLIMITED LAYERS</h2>
<p class="text-lg md:text-xl font-medium mb-8">Why stop at one shape? Stack 'em up. Create complex
compositions by
adding multiple layers. Each layer has its own unique path, color, and settings.</p>
<ul class="space-y-3 font-bold">
<li class="flex items-center gap-3"><i class="fa-solid fa-check text-neo-green"></i> Independent
Control</li>
<li class="flex items-center gap-3"><i class="fa-solid fa-check text-neo-green"></i> Drag up/down to
reorder</li>
<li class="flex items-center gap-3"><i class="fa-solid fa-check text-neo-green"></i> Toggle
visibility</li>
</ul>
</div>
<div class="md:w-1/2 rotate-0 md:rotate-3">
<div class="bg-neo-pink border-4 border-black p-12 shadow-neo-xl">
<div
class="relative bg-white border-4 border-black rounded-xl p-6 shadow-neo w-full flex flex-col gap-4">
<!-- Fake Layer List -->
<div
class="bg-neo-yellow border-2 border-neo-black p-3 flex justify-between items-center font-bold shadow-sm">
<span><span>#3</span> Starburst_Main</span>
<div class="flex gap-2"><i class="fa-solid fa-eye"></i> <i class="fa-solid fa-trash"></i>
</div>
</div>
<div
class="bg-white border-2 border-neo-black p-3 flex justify-between items-center font-bold text-gray-500">
<span><span>#2</span> Circle_Bg</span>
<div class="flex gap-2"><i class="fa-solid fa-eye"></i> <i class="fa-solid fa-trash"></i>
</div>
</div>
<div
class="bg-white border-2 border-neo-black p-3 flex justify-between items-center font-bold text-gray-500">
<span><span>#1</span> Base_Rect</span>
<div class="flex gap-2"><i class="fa-solid fa-eye"></i> <i class="fa-solid fa-trash"></i>
</div>
</div>
<div class="mt-2 flex justify-center">
<div class="bg-neo-black text-white px-4 py-2 font-bold rounded-full text-xs shadow-md">+
ADD LAYER</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Section 2: Generators -->
<!-- Section 2: Generators -->
<section class="py-16 md:py-24">
<div class="max-w-7xl mx-auto px-6 flex flex-col md:flex-row-reverse items-center gap-8 md:gap-16">
<div class="md:w-1/2">
<div
class="inline-block bg-neo-blue text-black font-bold px-3 py-1 mb-4 text-sm uppercase border-2 border-black shadow-neo">
Instant
Geometry</div>
<h2 class="font-display text-3xl md:text-5xl font-black mb-6">GENERATORS</h2>
<p class="text-lg md:text-xl font-medium mb-8">Don't want to draw? Let math do it. Generate perfect
polygons, stars
with specific counts, or random organic blobs instantly.</p>
<div class="flex flex-wrap gap-3">
<div class="relative group">
<div class="absolute inset-0 bg-neo-black translate-x-1 translate-y-1 border-2 border-black">
</div>
<div
class="relative bg-neo-purple border-2 border-black px-3 py-1 font-bold hover:translate-x-1 hover:translate-y-1 transition-transform cursor-default">
Polygon</div>
</div>
<div class="relative group">
<div class="absolute inset-0 bg-neo-black translate-x-1 translate-y-1 border-2 border-black">
</div>
<div
class="relative bg-neo-pink border-2 border-black px-3 py-1 font-bold hover:translate-x-1 hover:translate-y-1 transition-transform cursor-default">
Star</div>
</div>
<div class="relative group">
<div class="absolute inset-0 bg-neo-black translate-x-1 translate-y-1 border-2 border-black">
</div>
<div
class="relative bg-neo-green border-2 border-black px-3 py-1 font-bold hover:translate-x-1 hover:translate-y-1 transition-transform cursor-default">
Blob</div>
</div>
</div>
</div>
<div
class="md:w-1/2 rotate-0 md:-rotate-3 w-full relative h-[400px] bg-neo-white border-4 border-black shadow-neo-xl flex items-center justify-center mt-12 md:mt-0">
<!-- Card 3 (Back) -->
<div id="gen-card-0"
class="gen-card absolute w-56 h-56 md:w-64 md:h-64 bg-neo-purple border-4 border-black shadow-neo-xl transition-all duration-700 ease-in-out z-30 flex flex-col items-center justify-between p-4 group">
<div class="w-full flex justify-between items-center pb-2">
<i class="fa-solid fa-gear text-xl animate-spin-slow"></i>
<span class="font-bold text-sm bg-neo-yellow px-1 border border-black shadow-neo">GEN_V1</span>
</div>
<div class="w-24 h-24 md:w-32 md:h-32 bg-neo-white border-4 border-black shadow-sm group-hover:rotate-12 transition-transform duration-300"
style="clip-path: polygon(50.00% 10.00%, 88.04% 37.64%, 73.51% 82.36%, 26.49% 82.36%, 11.96% 37.64%);">
</div>
<div class="w-full bg-black text-white font-mono text-xs text-center py-1 font-bold mt-2">
POLYGON
</div>
</div>
<!-- Card 2 (Middle) -->