-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1509 lines (1418 loc) · 73.2 KB
/
index.html
File metadata and controls
1509 lines (1418 loc) · 73.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="WebberZone on GitHub — open-source WordPress plugins for user retention and engagement by Ajay D'Souza.">
<meta property="og:title" content="WebberZone on GitHub">
<meta property="og:description" content="Open-source WordPress plugins for related posts, popular posts, search, knowledge base & more. Free and actively maintained.">
<meta property="og:image" content="WebberZone Logo.png">
<title>WebberZone on GitHub</title>
<!-- Favicon from webberzone.com -->
<link rel="icon" type="image/png" href="favicon.png">
<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=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap" rel="stylesheet">
<style>
/* ══════════════════════════════════════
RESET & TOKENS
══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
/* WebberZone brand palette */
--wz-black: #0A0A0A;
--wz-blue: #032075;
--wz-gold: #FFBD59;
--wz-red: #C8102E;
--wz-white: #FFFFFF;
/* Dark-mode surface stack — deepened brand blue */
--bg: #06091a;
--bg-2: #090e22;
--bg-3: #0d1329;
--bg-4: #121930;
/* Primary accent = lighter, readable version of brand blue */
--blue: #2d55c8;
--blue-lt: #4f7fff;
--blue-dim: #1e3da0;
--blue-glow: rgba(45,85,200,.22);
/* Gold accent = brand #FFBD59 */
--amber: #FFBD59;
--amber-2: #ffd07a;
/* Red accent = brand red */
--red: #C8102E;
/* Supporting accent colours for plugin cards */
--teal: #2dd4bf;
--purple: #a78bfa;
--rose: #fb7185;
--green: #4ade80;
--slate: #94a3b8;
--t1: #eef2ff;
--t2: #9fb3d8;
--t3: #7b9ec5;
--bd: rgba(255,255,255,.07);
--bd-2: rgba(255,255,255,.11);
--card: rgba(255,255,255,.03);
--r: 14px;
--fh: 'Syne', sans-serif;
--fb: 'DM Sans', sans-serif;
}
html { scroll-behavior: smooth; }
body {
background: var(--bg);
color: var(--t1);
font-family: var(--fb);
font-size: 16px;
line-height: 1.65;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
}
/* noise overlay */
body::before {
content: '';
position: fixed; inset: 0; z-index: 0; pointer-events: none;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
opacity: .025;
mix-blend-mode: overlay;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-4); border-radius: 3px; }
::selection { background: rgba(79,142,247,.28); color: #fff; }
/* ══════════════════════════════════════
NAV
══════════════════════════════════════ */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 200;
display: flex; align-items: center; justify-content: space-between;
padding: 0 44px; height: 64px;
background: #ffffff;
border-bottom: 1px solid rgba(0,0,0,.08);
transition: background .35s, box-shadow .35s;
}
nav.scrolled {
background: rgba(255,255,255,1);
box-shadow: 0 1px 24px rgba(0,0,0,.10);
}
.nav-logo {
display: flex; align-items: center; gap: 10px;
text-decoration: none; flex-shrink: 0;
}
.nav-logo img { height: 32px; width: auto; }
.nav-wordmark {
font-family: var(--fh); font-size: 1.05rem; font-weight: 700;
color: var(--wz-black); letter-spacing: -.025em;
}
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
color: #444; text-decoration: none; font-size: .855rem;
font-weight: 500; letter-spacing: .01em;
transition: color .2s;
position: relative;
}
.nav-links a::after {
content: ''; position: absolute; left: 0; bottom: -2px;
width: 0; height: 2px; background: var(--wz-blue);
transition: width .25s;
}
.nav-links a:hover { color: var(--wz-blue); }
.nav-links a:hover::after { width: 100%; }
.btn-gh {
display: inline-flex; align-items: center; gap: 7px;
background: var(--wz-blue); color: #fff !important;
padding: 7px 16px; border-radius: 8px;
font-size: .84rem !important; font-weight: 700 !important;
transition: background .2s, transform .15s, box-shadow .2s !important;
letter-spacing: -.01em !important;
}
.btn-gh::after { display: none !important; }
.btn-gh:hover {
background: #021a5e !important; color: #fff !important;
transform: translateY(-1px);
box-shadow: 0 4px 16px rgba(3,32,117,.25) !important;
}
.hamburger {
display: none; flex-direction: column; gap: 5px;
cursor: pointer; padding: 4px;
}
.hamburger span {
display: block; width: 22px; height: 2px;
background: var(--wz-black); border-radius: 2px;
transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* ══════════════════════════════════════
HERO
══════════════════════════════════════ */
.hero {
position: relative; min-height: 100vh;
display: flex; align-items: center; justify-content: center;
padding: 120px 40px 100px; overflow: hidden;
}
/* dot grid */
.hero-grid {
position: absolute; inset: 0; pointer-events: none;
background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
background-size: 38px 38px;
mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
/* gradient orbs */
.orb {
position: absolute; border-radius: 50%;
filter: blur(90px); pointer-events: none;
animation: orbDrift 16s ease-in-out infinite;
}
.orb-1 { width: 640px; height: 640px; top: -160px; left: -120px; background: rgba(45,85,200,.28); }
.orb-2 { width: 520px; height: 520px; bottom: -100px; right: -80px; background: rgba(3,32,117,.35); animation-delay: -6s; }
.orb-3 { width: 380px; height: 380px; top: 38%; left: 42%; background: rgba(255,189,89,.08); animation-delay: -11s; animation-duration: 20s; }
@keyframes orbDrift {
0%,100% { transform: translate(0,0) scale(1); }
33% { transform: translate(32px,-22px) scale(1.04); }
66% { transform: translate(-18px,16px) scale(.97); }
}
/* vignette bottom */
.hero::after {
content: ''; position: absolute; bottom: 0; left: 0; right: 0;
height: 220px;
background: linear-gradient(transparent, var(--bg));
pointer-events: none;
}
/* canvas stars */
#starCanvas {
position: absolute; inset: 0;
width: 100%; height: 100%;
pointer-events: none; opacity: .5;
}
.hero-inner {
position: relative; z-index: 2;
max-width: 860px; text-align: center;
}
/* badge */
.hero-badge {
display: inline-flex; align-items: center; gap: 9px;
padding: 6px 18px; border-radius: 50px;
background: rgba(3,32,117,.25);
border: 1px solid rgba(45,85,200,.35);
color: #7eb3ff; font-size: .78rem; font-weight: 600;
letter-spacing: .06em; text-transform: uppercase;
margin-bottom: 30px;
animation: fadeUp .7s ease both;
position: relative; overflow: hidden;
}
.hero-badge::before {
content: '';
position: absolute; inset: 0;
background: linear-gradient(90deg, transparent, rgba(79,142,247,.12), transparent);
animation: shimmer 3s ease infinite;
}
@keyframes shimmer {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}
.badge-dot {
width: 6px; height: 6px; border-radius: 50%;
background: var(--blue);
animation: blink 2s ease-in-out infinite;
flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1;box-shadow:0 0 4px var(--blue)} 50%{opacity:.4;box-shadow:none} }
.hero h1 {
font-family: var(--fh);
font-size: clamp(2.7rem, 5.8vw, 5rem);
font-weight: 800; line-height: 1.04; letter-spacing: -.045em;
margin-bottom: 24px;
animation: fadeUp .75s .08s ease both;
}
.hero h1 .line-plain { display: block; color: var(--t1); }
.grad {
display: inline-block;
background: linear-gradient(110deg, var(--blue-lt) 0%, #6fa0ff 40%, var(--amber) 100%);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
background-clip: text;
background-size: 200% 200%;
animation: gradShift 5s ease infinite;
}
@keyframes gradShift {
0%,100% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
}
.hero-sub {
font-size: clamp(.95rem, 1.8vw, 1.15rem);
color: var(--t2); max-width: 520px; margin: 0 auto 40px;
line-height: 1.8; font-weight: 400;
animation: fadeUp .75s .17s ease both;
}
.hero-ctas {
display: flex; align-items: center; justify-content: center;
gap: 14px; flex-wrap: wrap;
animation: fadeUp .75s .26s ease both;
}
.btn-primary {
display: inline-flex; align-items: center; gap: 8px;
background: var(--wz-blue); color: #fff;
text-decoration: none; padding: 13px 26px;
border-radius: 10px; font-weight: 600; font-size: .92rem;
transition: all .25s cubic-bezier(.22,1,.36,1);
box-shadow: 0 0 0 0 var(--blue-glow), 0 4px 20px rgba(3,32,117,.5);
}
.btn-primary:hover {
background: var(--blue-dim);
transform: translateY(-2px);
box-shadow: 0 0 0 4px rgba(45,85,200,.25), 0 8px 28px rgba(3,32,117,.6);
}
.btn-outline {
display: inline-flex; align-items: center; gap: 8px;
background: transparent; color: var(--t1); text-decoration: none;
padding: 12px 26px; border-radius: 10px;
font-weight: 600; font-size: .92rem;
border: 1px solid var(--bd-2);
transition: all .25s;
}
.btn-outline:hover {
background: rgba(255,255,255,.06);
border-color: rgba(255,255,255,.18);
transform: translateY(-2px);
}
/* Floating chips */
.chips { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.chip {
position: absolute;
background: rgba(255,255,255,.04);
border: 1px solid rgba(255,255,255,.07);
padding: 6px 14px; border-radius: 50px;
font-size: .72rem; font-weight: 500; color: var(--t3);
white-space: nowrap; backdrop-filter: blur(10px);
animation: chipFloat 9s ease-in-out infinite;
}
.chip:nth-child(1) { top: 19%; left: 4%; animation-duration: 9s; }
.chip:nth-child(2) { top: 29%; right: 4%; animation-delay: 2s; animation-duration: 11s; }
.chip:nth-child(3) { top: 65%; left: 3%; animation-delay: 1.2s; animation-duration: 10s; }
.chip:nth-child(4) { top: 74%; right: 5%; animation-delay: 3.5s; animation-duration: 8s; }
@keyframes chipFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.hero-scroll {
position: absolute; bottom: 30px; left: 50%;
transform: translateX(-50%); z-index: 2;
display: flex; flex-direction: column; align-items: center; gap: 7px;
color: var(--t3); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
animation: fadeIn 1s 1.2s ease both;
}
.scroll-bar {
width: 1px; height: 40px;
background: linear-gradient(to bottom, var(--blue), transparent);
animation: scrollAnim 2.2s ease-in-out infinite;
}
@keyframes scrollAnim { 0%,100%{opacity:.25;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.15)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
/* ══════════════════════════════════════
MARQUEE
══════════════════════════════════════ */
.marquee-wrap {
overflow: hidden;
border-top: 1px solid var(--bd);
border-bottom: 1px solid var(--bd);
background: var(--bg-2);
padding: 14px 0;
position: relative; z-index: 1;
}
.marquee-wrap::before,
.marquee-wrap::after {
content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--bg-2), transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(to left, var(--bg-2), transparent); }
.marquee-track {
display: flex; gap: 0;
width: max-content;
animation: marqueeScroll 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-item {
display: inline-flex; align-items: center; gap: 10px;
padding: 0 32px;
font-size: .78rem; font-weight: 600; color: var(--t3);
letter-spacing: .04em; text-transform: uppercase;
white-space: nowrap;
}
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--blue); opacity: .5; flex-shrink: 0; }
/* ══════════════════════════════════════
SHARED
══════════════════════════════════════ */
section { padding: 96px 40px; position: relative; z-index: 1; }
.container { max-width: 1160px; margin: 0 auto; }
.eyebrow {
display: inline-flex; align-items: center; gap: 8px;
color: var(--blue-lt); font-size: .75rem; font-weight: 700;
letter-spacing: .11em; text-transform: uppercase; margin-bottom: 14px;
}
.eyebrow::before { content:''; display:inline-block; width:18px; height:1px; background:var(--blue); }
.section-title {
font-family: var(--fh);
font-size: clamp(1.9rem, 3.8vw, 2.9rem);
font-weight: 800; letter-spacing: -.035em; line-height: 1.12;
margin-bottom: 14px;
}
.section-desc {
color: var(--t2); font-size: 1rem;
max-width: 540px; line-height: 1.8;
}
/* ══════════════════════════════════════
STATS
══════════════════════════════════════ */
.stats {
background: var(--bg-2);
padding: 72px 40px;
border-bottom: 1px solid var(--bd);
}
.stats-grid {
display: grid; grid-template-columns: repeat(4,1fr);
max-width: 1060px; margin: 0 auto;
border: 1px solid var(--bd); border-radius: 20px;
overflow: hidden;
}
.stat-card {
padding: 40px 32px; text-align: center;
border-right: 1px solid var(--bd);
position: relative; background: var(--card);
transition: background .3s;
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: rgba(79,142,247,.04); }
.stat-ico {
width: 44px; height: 44px;
border-radius: 10px; display: flex; align-items: center; justify-content: center;
margin: 0 auto 16px; background: rgba(45,85,200,.12);
}
.stat-ico svg { width: 22px; height: 22px; }
.stat-ico.amber { background: rgba(255,189,89,.12); }
.stat-ico.amber svg { color: var(--amber); }
.stat-ico svg { color: var(--blue-lt); }
.stat-val {
font-family: var(--fh);
font-size: clamp(2rem, 3.5vw, 2.9rem);
font-weight: 800; letter-spacing: -.04em; line-height: 1;
margin-bottom: 6px;
background: linear-gradient(135deg, var(--t1) 0%, var(--blue) 100%);
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-val.ga {
background: linear-gradient(135deg, var(--amber-2) 0%, var(--amber) 100%);
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-lbl { color: var(--t3); font-size: .82rem; font-weight: 500; letter-spacing: .02em; }
/* ══════════════════════════════════════
PLUGINS
══════════════════════════════════════ */
.plugins { background: var(--bg); }
.plugins-hd {
display: flex; align-items: flex-end; justify-content: space-between;
margin-bottom: 52px; flex-wrap: wrap; gap: 20px;
}
.plugins-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 18px;
}
.repo-card {
background: var(--card);
border: 1px solid var(--bd);
border-top: 2px solid transparent;
border-radius: var(--r);
padding: 26px;
position: relative; overflow: hidden;
display: flex; flex-direction: column;
transition: transform .3s cubic-bezier(.22,1,.36,1),
border-color .3s, box-shadow .3s, background .3s;
}
/* unique top accent colours */
.repo-card[data-color="blue"] { --accent: var(--blue); --accent-bg: rgba(79,142,247,.07); }
.repo-card[data-color="amber"] { --accent: var(--amber); --accent-bg: rgba(245,158,11,.07); }
.repo-card[data-color="teal"] { --accent: var(--teal); --accent-bg: rgba(45,212,191,.07); }
.repo-card[data-color="purple"]{ --accent: var(--purple); --accent-bg: rgba(167,139,250,.07); }
.repo-card[data-color="green"] { --accent: var(--green); --accent-bg: rgba(74,222,128,.07); }
.repo-card[data-color="rose"] { --accent: var(--rose); --accent-bg: rgba(251,113,133,.07); }
.repo-card[data-color="slate"] { --accent: var(--slate); --accent-bg: rgba(148,163,184,.07); }
.repo-card:hover {
border-color: var(--accent);
border-top-color: var(--accent);
background: var(--accent-bg);
transform: translateY(-4px);
box-shadow: 0 16px 48px rgba(0,0,0,.4),
0 0 0 1px color-mix(in srgb, var(--accent) 20%, transparent);
}
.repo-card:hover .repo-glow {
opacity: 1;
}
.repo-glow {
position: absolute; top: -60px; right: -60px;
width: 200px; height: 200px; border-radius: 50%;
background: radial-gradient(circle, color-mix(in srgb, var(--accent) 18%, transparent), transparent 70%);
opacity: 0; transition: opacity .4s; pointer-events: none;
}
.pinned-badge {
position: absolute; top: 14px; right: 14px;
display: inline-flex; align-items: center; gap: 5px;
background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.22);
color: var(--amber); font-size: .64rem; font-weight: 700;
letter-spacing: .05em; text-transform: uppercase;
padding: 3px 9px; border-radius: 50px;
}
.repo-icon {
width: 46px; height: 46px;
display: flex; align-items: center; justify-content: center;
border-radius: 11px; font-size: 1.35rem; margin-bottom: 16px;
background: color-mix(in srgb, var(--accent) 14%, transparent);
flex-shrink: 0;
}
.repo-name {
font-family: var(--fh); font-size: .98rem; font-weight: 700;
letter-spacing: -.02em; margin-bottom: 9px; color: var(--t1);
}
.repo-desc {
color: var(--t2); font-size: .845rem; line-height: 1.68; flex: 1;
}
.repo-footer {
display: flex; align-items: center; justify-content: space-between;
margin-top: 20px;
}
.repo-meta {
display: flex; align-items: center; gap: 12px;
}
.repo-meta span {
display: inline-flex; align-items: center; gap: 4px;
color: var(--t3); font-size: .76rem; font-weight: 500;
}
.lang-dot {
display: inline-block; width: 9px; height: 9px;
border-radius: 50%; background: #8b5cf6; flex-shrink: 0;
}
.card-links { display: flex; align-items: center; gap: 12px; }
.card-links .repo-link + .repo-link::before {
content: '·'; color: var(--t3); font-size: .75rem; margin-left: -4px;
}
.repo-link {
display: inline-flex; align-items: center; gap: 5px;
color: var(--accent);
text-decoration: none; font-size: .79rem; font-weight: 600;
transition: gap .2s, opacity .2s;
white-space: nowrap;
}
.repo-link:hover { gap: 9px; }
.addon-tag {
display: inline-block;
background: rgba(148,163,184,.08); border: 1px solid rgba(148,163,184,.15);
color: var(--t3); font-size: .7rem; font-weight: 600;
padding: 2px 8px; border-radius: 4px; margin-bottom: 10px;
}
/* ══════════════════════════════════════
PREMIUM
══════════════════════════════════════ */
.premium { background: var(--bg-2); border-top: 1px solid var(--bd); }
.premium-grid {
display: grid; grid-template-columns: repeat(4,1fr); gap: 18px;
margin-top: 52px;
}
.pro-card {
background: var(--card);
border: 1px solid var(--bd);
border-top: 2px solid var(--wz-gold);
border-radius: var(--r); padding: 28px 24px;
display: flex; flex-direction: column;
transition: all .3s cubic-bezier(.22,1,.36,1);
position: relative; overflow: hidden;
text-decoration: none;
}
.pro-card::before {
content: '';
position: absolute; inset: 0; border-radius: inherit;
background: radial-gradient(ellipse at top center, rgba(255,189,89,.06), transparent 60%);
pointer-events: none;
}
.pro-card:hover {
border-color: var(--wz-gold);
background: rgba(255,189,89,.05);
transform: translateY(-4px);
box-shadow: 0 16px 48px rgba(0,0,0,.4), 0 0 0 1px rgba(255,189,89,.2);
}
.pro-badge {
display: inline-flex; align-items: center; gap: 5px;
background: linear-gradient(135deg, var(--wz-gold), var(--amber-2));
color: #000; font-size: .65rem; font-weight: 800;
letter-spacing: .07em; text-transform: uppercase;
padding: 3px 9px; border-radius: 50px;
margin-bottom: 16px; align-self: flex-start;
}
.pro-icon {
font-size: 1.6rem; margin-bottom: 14px;
}
.pro-name {
font-family: var(--fh); font-size: 1rem; font-weight: 700;
letter-spacing: -.02em; color: var(--t1); margin-bottom: 10px;
}
.pro-desc {
color: var(--t2); font-size: .845rem; line-height: 1.65; flex: 1;
}
.pro-cta {
display: inline-flex; align-items: center; gap: 6px;
color: var(--wz-gold); font-size: .8rem; font-weight: 700;
margin-top: 20px; transition: gap .2s;
}
.pro-card:hover .pro-cta { gap: 10px; }
@media(max-width:900px) { .premium-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:500px) { .premium-grid { grid-template-columns: 1fr; } }
/* ══════════════════════════════════════
ABOUT
══════════════════════════════════════ */
.about { background: var(--bg-2); }
.about-grid {
display: grid; grid-template-columns: 1fr 1fr;
gap: 80px; align-items: start;
}
.timeline { position: relative; padding-left: 24px; margin-top: 38px; }
.timeline::before {
content: ''; position: absolute; left: 0; top: 8px; bottom: 8px;
width: 1px;
background: linear-gradient(to bottom, var(--blue), rgba(79,142,247,.06));
}
.tl-item {
position: relative; margin-bottom: 32px;
opacity: 0; transform: translateX(-18px);
transition: opacity .55s ease, transform .55s ease;
}
.tl-item.vis { opacity: 1; transform: translateX(0); }
.tl-item::before {
content: ''; position: absolute; left: -28px; top: 6px;
width: 9px; height: 9px; border-radius: 50%;
background: var(--blue);
box-shadow: 0 0 0 3px rgba(79,142,247,.2);
animation: tlPulse 3s ease-in-out infinite;
}
.tl-item:last-child::before { animation-delay: .5s; }
@keyframes tlPulse {
0%,100%{box-shadow:0 0 0 3px rgba(79,142,247,.2)}
50%{box-shadow:0 0 0 6px rgba(79,142,247,.08),0 0 12px rgba(79,142,247,.2)}
}
.tl-yr {
font-size: .72rem; font-weight: 700; color: var(--blue-lt);
letter-spacing: .07em; text-transform: uppercase; margin-bottom: 3px;
}
.tl-ti {
font-family: var(--fh); font-size: .94rem; font-weight: 700;
color: var(--t1); margin-bottom: 3px;
display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.tl-cs {
font-family: var(--fb); font-size: .68rem; font-weight: 600;
color: var(--t3); text-decoration: none;
background: rgba(255,255,255,.05); border: 1px solid var(--bd);
padding: 1px 7px; border-radius: 4px;
letter-spacing: .02em; white-space: nowrap;
transition: all .2s;
}
.tl-cs:hover { color: var(--amber); border-color: rgba(255,189,89,.3); background: rgba(255,189,89,.07); }
.tl-de { color: var(--t3); font-size: .83rem; line-height: 1.55; }
/* Founder card */
.founder-card {
background: var(--card);
border: 1px solid var(--bd); border-radius: 20px;
padding: 38px; position: relative; overflow: hidden;
}
.founder-card::before {
content: '';
position: absolute; inset: 0; border-radius: 20px;
background: radial-gradient(ellipse at top right, rgba(79,142,247,.07), transparent 60%);
pointer-events: none;
}
.avatar-wrap { position: relative; width: 200px; margin-bottom: 24px; }
.avatar-img {
width: 200px; height: auto; display: block;
border-radius: 12px;
}
/* keep ring class defined but unused — logo replaces avatar */
@keyframes spinRing { to { transform: rotate(360deg); } }
.f-name { font-family:var(--fh); font-size:1.25rem; font-weight:800; letter-spacing:-.03em; margin-bottom:3px; }
.f-role { color:var(--blue-lt); font-size:.82rem; font-weight:600; margin-bottom:18px; }
.f-bio { color:var(--t2); font-size:.875rem; line-height:1.75; margin-bottom:22px; }
.f-links { display:flex; gap:10px; flex-wrap:wrap; }
.f-link {
display:inline-flex; align-items:center; gap:6px;
background:rgba(255,255,255,.05); border:1px solid var(--bd);
color:var(--t2); text-decoration:none; padding:7px 14px;
border-radius:8px; font-size:.78rem; font-weight:500;
transition:all .2s;
}
.f-link:hover { background:var(--blue); border-color:var(--blue); color:#fff; transform:translateY(-1px); }
/* ══════════════════════════════════════
GITHUB CTA
══════════════════════════════════════ */
.gh-section { background: var(--bg); }
.gh-box {
position: relative; overflow: hidden;
border-radius: 24px; padding: 80px 60px;
text-align: center;
border: 1px solid rgba(79,142,247,.18);
background: var(--bg-2);
}
/* mesh gradient */
.gh-box::before {
content: '';
position: absolute; inset: 0; border-radius: 24px;
background:
radial-gradient(ellipse at 20% 50%, rgba(79,142,247,.12) 0%, transparent 60%),
radial-gradient(ellipse at 80% 20%, rgba(245,158,11,.07) 0%, transparent 50%),
radial-gradient(ellipse at 60% 80%, rgba(79,142,247,.07) 0%, transparent 50%);
pointer-events: none;
}
/* grid */
.gh-box::after {
content: '';
position: absolute; inset: 0; border-radius: 24px;
background-image:
linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
background-size: 40px 40px;
pointer-events: none;
}
.gh-box > * { position: relative; z-index: 1; }
.gh-icon {
width: 64px; height: 64px;
background: rgba(255,255,255,.07); border: 1px solid var(--bd-2);
border-radius: 16px; display: flex; align-items: center; justify-content: center;
margin: 0 auto 28px;
transition: transform .3s, box-shadow .3s;
}
.gh-box:hover .gh-icon {
transform: translateY(-2px) rotate(-3deg);
box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.gh-box h2 {
font-family: var(--fh);
font-size: clamp(1.8rem, 4vw, 2.8rem);
font-weight: 800; letter-spacing: -.04em; margin-bottom: 14px;
}
.gh-box p {
color: var(--t2); font-size: 1.02rem;
max-width: 480px; margin: 0 auto 36px; line-height: 1.8;
}
.gh-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white {
display: inline-flex; align-items: center; gap: 9px;
background: var(--t1); color: var(--bg);
text-decoration: none; padding: 13px 28px;
border-radius: 10px; font-weight: 700; font-size: .92rem;
transition: all .25s;
}
.btn-white:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,255,255,.15); }
/* ══════════════════════════════════════
FOOTER
══════════════════════════════════════ */
footer {
background: #ffffff;
border-top: 1px solid rgba(0,0,0,.08);
padding: 60px 40px 40px;
position: relative; z-index: 1;
}
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top {
display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
gap: 48px; margin-bottom: 56px;
}
.f-brand img { height: 32px; margin-bottom: 16px; }
.f-brand p { color: #555; font-size: .85rem; line-height: 1.7; max-width: 230px; margin-bottom: 20px; }
.f-socials { display: flex; gap: 9px; }
.f-soc {
width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
background: #f4f4f5; border: 1px solid rgba(0,0,0,.10);
border-radius: 8px; color: #444; text-decoration: none;
transition: all .2s;
}
.f-soc:hover { background: var(--wz-blue); border-color: var(--wz-blue); color: #fff; }
.f-col h4 {
font-family: var(--fh); font-size: .75rem; font-weight: 700;
letter-spacing: .09em; text-transform: uppercase; color: var(--wz-black); margin-bottom: 18px;
}
.f-col ul { list-style: none; }
.f-col li { margin-bottom: 10px; }
.f-col a { color: #555; text-decoration: none; font-size: .855rem; transition: color .2s; }
.f-col a:hover { color: var(--wz-blue); }
.footer-bot {
display: flex; align-items: center; justify-content: space-between;
padding-top: 30px; border-top: 1px solid rgba(0,0,0,.08);
flex-wrap: wrap; gap: 14px;
}
.footer-bot p { color: #777; font-size: .78rem; }
.footer-bot a { color: #444; text-decoration: none; transition: color .2s; }
.footer-bot a:hover { color: var(--wz-blue); }
.wp-chip {
display: inline-flex; align-items: center; gap: 6px;
background: rgba(245,158,11,.10); border: 1px solid rgba(180,83,9,.25);
color: #92400e; font-size: .72rem; font-weight: 600;
padding: 4px 12px; border-radius: 50px;
}
/* ══════════════════════════════════════
REVEAL
══════════════════════════════════════ */
.reveal {
opacity: 0; transform: translateY(28px);
transition: opacity .6s ease, transform .6s ease;
}
.reveal.vis { opacity: 1; transform: translateY(0); }
.d1{transition-delay:.08s} .d2{transition-delay:.16s} .d3{transition-delay:.24s}
.d4{transition-delay:.32s} .d5{transition-delay:.40s} .d6{transition-delay:.48s}
.d7{transition-delay:.56s} .d8{transition-delay:.64s} .d9{transition-delay:.72s}
/* ══════════════════════════════════════
RESPONSIVE
══════════════════════════════════════ */
@media(max-width:1024px) {
.plugins-grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:900px) {
nav { padding: 0 20px; }
.nav-links { display: none; }
.nav-links.open {
display: flex; flex-direction: column;
position: fixed; top: 64px; left: 0; right: 0;
background: #ffffff;
padding: 22px; gap: 18px;
border-bottom: 1px solid rgba(0,0,0,.08); z-index: 199;
}
.hamburger { display: flex; }
.hero { padding: 110px 24px 90px; }
section { padding: 70px 24px; }
.stats { padding: 70px 24px; }
.stats-grid { grid-template-columns: repeat(2,1fr); }
.stat-card:nth-child(2) { border-right: none; }
.stat-card:nth-child(3), .stat-card:nth-child(4) { border-top: 1px solid var(--bd); }
.plugins-grid { grid-template-columns: 1fr; }
.about-grid { grid-template-columns: 1fr; gap: 52px; }
.gh-box { padding: 48px 28px; }
.footer-top { grid-template-columns: 1fr 1fr; }
.f-brand { grid-column: 1/-1; }
.chips .chip { display: none; }
}
@media(max-width:600px) {
.stats { padding: 60px 16px; }
.stat-card { padding: 28px 16px; }
.footer-top { grid-template-columns: 1fr; }
.hero-ctas, .gh-btns { flex-direction: column; align-items: stretch; }
.hero-ctas a, .gh-btns a { text-align: center; justify-content: center; }
}
</style>
</head>
<body>
<!-- ══════════ NAV ══════════ -->
<nav id="nav">
<a href="#" class="nav-logo">
<img src="WebberZone Logo.png" alt="WebberZone" onerror="this.style.display='none'; document.querySelector('.nav-wordmark').style.display='inline';">
<span class="nav-wordmark" style="display:none">WebberZone</span>
</a>
<ul class="nav-links" id="navLinks">
<li><a href="#plugins">Plugins</a></li>
<li><a href="#premium">Pro</a></li>
<li><a href="#about">About</a></li>
<li><a href="https://webberzone.com" target="_blank">WebberZone.com</a></li>
<li><a href="https://ajaydsouza.com" target="_blank">Blog</a></li>
<li>
<a href="https://github.com/WebberZone" target="_blank" class="btn-gh">
<svg width="14" height="14" viewBox="0 0 24 24" 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 0024 12c0-6.63-5.37-12-12-12z"/></svg>
GitHub
</a>
</li>
</ul>
<div class="hamburger" id="ham" onclick="toggleNav()"><span></span><span></span><span></span></div>
</nav>
<!-- ══════════ HERO ══════════ -->
<section class="hero" id="home">
<canvas id="starCanvas"></canvas>
<div class="hero-grid"></div>
<div class="orb orb-1"></div>
<div class="orb orb-2"></div>
<div class="orb orb-3"></div>
<div class="chips" aria-hidden="true">
<div class="chip">🔗 Related Posts</div>
<div class="chip">📊 Popular Posts</div>
<div class="chip">🔍 Better Search</div>
<div class="chip">📚 Knowledge Base</div>
<div class="chip"></> Code Highlighting</div>
</div>
<div class="hero-inner">
<div class="hero-badge">
<span class="badge-dot"></span>
Open Source on GitHub
</div>
<h1>
<span class="line-plain">WordPress Plugins</span>
<span class="grad">That Keep Users Coming Back</span>
</h1>
<p class="hero-sub">
Free, open-source WordPress plugins focused on user retention and engagement.
Built and actively maintained by Ajay D'Souza since 2005.
</p>
<div class="hero-ctas">
<a href="#plugins" class="btn-primary">
<svg width="15" height="15" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"><path d="M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5"/></svg>
Browse Plugins
</a>
<a href="https://github.com/WebberZone" target="_blank" class="btn-outline">
<svg width="15" height="15" viewBox="0 0 24 24" 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 0024 12c0-6.63-5.37-12-12-12z"/></svg>
github.com/WebberZone
</a>
</div>
</div>
<div class="hero-scroll" aria-hidden="true">
<div class="scroll-bar"></div>
<span>Scroll</span>
</div>
</section>
<!-- ══════════ MARQUEE ══════════ -->
<div class="marquee-wrap" aria-hidden="true">
<div class="marquee-track" id="marqueeTrack">
<!-- JS will duplicate these -->
<span class="marquee-item"><span class="marquee-dot"></span>Contextual Related Posts</span>
<span class="marquee-item"><span class="marquee-dot"></span>Top 10 Popular Posts</span>
<span class="marquee-item"><span class="marquee-dot"></span>Better Search</span>
<span class="marquee-item"><span class="marquee-dot"></span>Knowledge Base</span>
<span class="marquee-item"><span class="marquee-dot"></span>WebberZone Snippetz</span>
<span class="marquee-item"><span class="marquee-dot"></span>Followed Posts</span>
<span class="marquee-item"><span class="marquee-dot"></span>Auto Close</span>
<span class="marquee-item"><span class="marquee-dot"></span>Link Warnings</span>
<span class="marquee-item"><span class="marquee-dot"></span>Popular Authors</span>
<span class="marquee-item"><span class="marquee-dot"></span>Code Block Highlighting</span>
<span class="marquee-item"><span class="marquee-dot"></span>Open Source · Free Forever</span>
</div>
</div>
<!-- ══════════ STATS ══════════ -->
<div class="stats">
<div class="stats-grid">
<div class="stat-card reveal">
<div class="stat-ico">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8"><circle cx="12" cy="12" r="10"/><line x1="2" y1="12" x2="22" y2="12"/><path d="M12 2a15.3 15.3 0 014 10 15.3 15.3 0 01-4 10 15.3 15.3 0 01-4-10 15.3 15.3 0 014-10z"/></svg>
</div>
<div class="stat-val" data-target="100000" data-suffix="+"> </div>
<div class="stat-lbl">Active WordPress Sites</div>
</div>
<div class="stat-card reveal d1">
<div class="stat-ico amber">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8"><path d="M21 15v4a2 2 0 01-2 2H5a2 2 0 01-2-2v-4"/><polyline points="7 10 12 15 17 10"/><line x1="12" y1="15" x2="12" y2="3"/></svg>
</div>
<div class="stat-val ga" data-target="2000000" data-suffix="+"> </div>
<div class="stat-lbl">Total Downloads</div>
</div>
<div class="stat-card reveal d2">
<div class="stat-ico">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"/><line x1="16" y1="2" x2="16" y2="6"/><line x1="8" y1="2" x2="8" y2="6"/><line x1="3" y1="10" x2="21" y2="10"/></svg>
</div>
<div class="stat-val" data-target="20" data-suffix="+ yrs"> </div>
<div class="stat-lbl">Development Experience</div>
</div>
<div class="stat-card reveal d3">
<div class="stat-ico amber">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.8"><path d="M21 16V8a2 2 0 00-1-1.73l-7-4a2 2 0 00-2 0l-7 4A2 2 0 003 8v8a2 2 0 001 1.73l7 4a2 2 0 002 0l7-4A2 2 0 0021 16z"/><polyline points="3.27 6.96 12 12.01 20.73 6.96"/><line x1="12" y1="22.08" x2="12" y2="12"/></svg>
</div>
<div class="stat-val ga" data-target="10" data-suffix=""> </div>
<div class="stat-lbl">Free Open-Source Plugins</div>
</div>
</div>
</div>
<!-- ══════════ PLUGINS ══════════ -->
<section class="plugins" id="plugins">
<div class="container">
<div class="plugins-hd">
<div>
<div class="eyebrow reveal">Open Source</div>
<h2 class="section-title reveal">Free WordPress Plugins</h2>
<p class="section-desc reveal">All plugins are free, open-source, and actively maintained on GitHub. Compatible with the block editor, classic editor, and the latest WordPress & PHP versions.</p>
</div>
<a href="https://github.com/WebberZone" target="_blank" class="btn-outline reveal" style="white-space:nowrap;align-self:flex-end">
View All on GitHub ↗
</a>
</div>
<div class="plugins-grid">
<div class="repo-card pinned reveal" data-color="blue">
<div class="repo-glow"></div>
<span class="pinned-badge">⭐ Pinned</span>
<div class="repo-icon">🔗</div>
<div class="repo-name">Contextual Related Posts</div>
<p class="repo-desc">Display fast, intelligent related posts based on title and content. Supports blocks, shortcodes, and widgets. Improves SEO, increases pageviews, and lowers bounce rates.</p>
<div class="repo-footer">
<div class="repo-meta">
<span>⭐ 38</span>
<span>🍴 22</span>
<span><span class="lang-dot"></span>PHP</span>
</div>
<div class="card-links">
<a href="https://webberzone.com/plugins/contextual-related-posts/" target="_blank" class="repo-link">Info</a>
<a href="https://github.com/WebberZone/contextual-related-posts" target="_blank" class="repo-link">GitHub <svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"><polyline points="9 18 15 12 9 6"/></svg></a>