-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
914 lines (830 loc) · 64.5 KB
/
index.html
File metadata and controls
914 lines (830 loc) · 64.5 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
<!DOCTYPE html>
<html class="light" lang="en"><head>
<style>
@keyframes scan {
0%, 100% { top: 0%; opacity: 0; }
10% { opacity: 1; }
90% { opacity: 1; }
100% { top: 100%; opacity: 0; }
}
.animate-fade-in-down {
animation: fadeInDown 0.5s ease-out;
}
@keyframes fadeInDown {
from { opacity: 0; transform: translateY(-10px); }
to { opacity: 1; transform: translateY(0); }
}
</style>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>UFPS - Ultimate Freebie Protection System</title>
<link crossorigin="" href="https://fonts.gstatic.com" rel="preconnect"/>
<link href="https://fonts.googleapis.com/css2?family=Spline+Sans:wght@300;400;500;600;700&display=swap" rel="stylesheet"/>
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap" rel="stylesheet"/>
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap" rel="stylesheet"/>
<script src="https://cdn.tailwindcss.com?plugins=forms,container-queries"></script>
<script id="tailwind-config">tailwind.config = {darkMode: "class", theme: {extend: {colors: {primary: "#359EFF", "background-light": "#f5f7f8", "background-dark": "#0f1923"}, fontFamily: {display: "Spline Sans"}, borderRadius: {DEFAULT: "1rem", lg: "2rem", xl: "3rem", full: "9999px"}}}};</script>
</head>
<body class="bg-background-light dark:bg-background-dark font-display text-[#181811] dark:text-white transition-colors duration-200">
<div class="relative flex min-h-screen w-full flex-col overflow-x-hidden">
<header class="sticky top-0 z-50 w-full bg-background-light/90 dark:bg-background-dark/90 backdrop-blur-md border-b border-[#e6e6db] dark:border-[#3a3a2a]">
<div class="max-w-[1280px] mx-auto px-4 sm:px-10 py-3">
<div class="flex items-center justify-between">
<div class="flex items-center gap-4">
<div class="size-10 text-primary flex items-center justify-center bg-black rounded-lg">
<img src="icon.png" alt=""></div>
<h2 class="text-xl font-bold leading-tight tracking-tight">UFPS</h2>
</div>
<div class="hidden md:flex items-center gap-8">
<a class="text-sm font-medium hover:text-primary/80 transition-colors" href="#problem">Problem</a>
<a class="text-sm font-medium hover:text-primary/80 transition-colors" href="#features-section">Features</a>
<a class="text-sm font-medium hover:text-primary/80 transition-colors" href="#how-it-works">How It Works</a>
<a class="text-sm font-medium hover:text-primary/80 transition-colors" href="#pricing">Contact me</a>
</div>
<a class="flex items-center justify-center overflow-hidden rounded-full h-10 px-6 bg-primary text-[#181811] text-sm font-bold shadow-sm hover:brightness-110 transition-all" href="demo.html">
<span class="truncate">Check Demo</span>
</a>
</div>
</div>
</header>
<section class="w-full py-12 md:py-20 px-4 sm:px-10">
<div class="max-w-[1280px] mx-auto">
<div class="flex flex-col gap-10 lg:flex-row lg:items-center">
<div class="flex-1 flex flex-col gap-6 lg:gap-8 z-10">
<h1 class="text-5xl font-black leading-[1.1] tracking-tight lg:text-6xl xl:text-7xl">
Stop opportunistic, unethical, Customers.
<span class="text-transparent bg-clip-text bg-gradient-to-r from-yellow-500 to-primary block mt-2">Maximize your reach.</span>
</h1>
<p class="text-lg text-[#181811]/80 dark:text-white/80 max-w-[600px] leading-relaxed">
My very intelligent system ensures your freebies go to new unique persons, not for same repeating customers. Detect duplicates even with masks or different outfit.
</p>
<div class="flex flex-col sm:flex-row gap-4 pt-4">
<a class="flex h-12 items-center justify-center rounded-full bg-primary px-8 text-base font-bold text-[#181811] shadow-lg shadow-primary/25 hover:scale-105 transition-transform" href="demo.html">
Check Demo
</a>
<a class="flex h-12 items-center justify-center rounded-full border border-[#e6e6db] dark:border-[#3a3a2a] bg-white dark:bg-[#2c2c1a] px-8 text-base font-bold hover:bg-[#f5f5f0] dark:hover:bg-[#363625] transition-colors" href="https://www.youtube.com/">
View Interactive Tutorial
</a>
</div>
<div class="flex items-center gap-2 text-sm font-medium text-[#181811]/60 dark:text-white/60">
<span class="material-symbols-outlined !text-lg text-green-600">check_circle</span>
<span>Privacy First</span>
</div>
</div>
<div class="flex-1 w-full mt-10 lg:mt-0 relative">
<div class="relative bg-black/90 rounded-2xl border-2 border-red-500/50 shadow-[0_0_40px_rgba(239,68,68,0.2)] overflow-hidden max-w-lg mx-auto lg:ml-auto">
<div class="bg-red-900/20 backdrop-blur-sm border-b border-red-500/30 px-4 py-3 flex justify-between items-center z-20 relative">
<div class="flex items-center gap-2">
<span class="animate-pulse size-3 rounded-full bg-red-500"></span>
<span class="font-mono text-red-500 font-bold tracking-widest text-xs sm:text-sm">SECURITY ALERT // DUPLICATE</span>
</div>
<div class="font-mono text-white/50 text-[10px] sm:text-xs">CAM_01 • LIVE</div>
</div>
<div class="grid grid-cols-2 gap-1 p-1 relative h-[300px] sm:h-[400px]">
<div class="relative group overflow-hidden h-full">
<img
src="img5.png"
alt="Original Visitor"
class="w-full h-full object-cover opacity-60 grayscale-[50%]"
/>
<div class="absolute top-2 left-2 bg-black/70 text-white text-[10px] font-mono px-2 py-1 rounded border border-white/10">
LOG: 10:15 AM
</div>
<div class="absolute top-[11%] left-[35%] w-[35%] h-[28%] border-2 border-blue-400/40 rounded-lg"></div>
</div>
<div class="relative group overflow-hidden h-full">
<img
src="img6.png"
alt="Repeat Attempt with Mask"
class="w-full h-full object-cover"
/>
<div class="absolute inset-0 bg-red-500/10 z-10 mix-blend-multiply"></div>
<div class="absolute top-2 left-2 bg-red-600 text-white text-[10px] font-bold px-2 py-1 rounded animate-pulse shadow-lg z-20">
LIVE SCAN
</div>
<div class="absolute top-[15%] left-[30%] w-[35%] h-[28%] border-2 border-red-500 shadow-[0_0_15px_rgba(255,0,0,0.5)] rounded-lg flex flex-col justify-end items-center z-20">
<div class="bg-red-600 text-white text-[9px] font-bold px-1.5 py-0.5 -mb-2.5 rounded shadow-sm tracking-wider">TARGET</div>
</div>
</div>
</div>
<div class="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 z-30 flex flex-col items-center justify-center w-full px-4">
<div class="w-full h-[1px] bg-red-500/40 absolute top-1/2 left-0 right-0"></div>
<div class="bg-[#0f1923]/95 border border-red-500 p-5 sm:p-6 rounded-2xl shadow-2xl flex flex-col items-center text-center backdrop-blur-md relative overflow-hidden">
<div class="absolute top-0 left-0 w-full h-1 bg-red-500"></div>
<div class="flex items-center gap-2 mb-1">
<span class="material-symbols-outlined text-red-500 text-2xl">warning</span>
<h3 class="text-xl font-black text-white uppercase tracking-tight">Duplicate</h3>
</div>
<div class="flex items-center gap-3 mt-2 w-full max-w-[200px]">
<div class="h-2 w-full bg-gray-700 rounded-full overflow-hidden">
<div id="confidence-bar" class="h-full bg-gradient-to-r from-red-600 to-red-400 w-[0%] transition-all duration-[1500ms] ease-out"></div>
</div>
<span class="font-mono text-sm font-bold text-red-400 whitespace-nowrap">80%</span>
</div>
<p class="text-[10px] text-gray-400 mt-2 font-mono uppercase tracking-widest">Vector Match #8F3-XA2</p>
</div>
</div>
</div>
<div class="absolute -bottom-6 -left-6 hidden md:block bg-white dark:bg-[#2c2c1a] p-5 rounded-xl shadow-xl border border-[#e6e6db] dark:border-[#3a3a2a] max-w-[240px]">
<div class="flex items-center gap-3 mb-2">
<div class="bg-primary/20 p-2 rounded-full text-primary">
<span class="material-symbols-outlined">inventory_2</span>
</div>
<div class="text-sm font-bold">Inventory Saved</div>
</div>
<div class="text-3xl font-black text-[#181811] dark:text-white">+24%</div>
<div class="text-xs text-gray-500 mt-1">vs. manual tracking</div>
</div>
</div>
</div>
</div>
</section>
<section class="w-full py-20 px-4 bg-white dark:bg-[#2c2c1a] border-y border-[#e6e6db] dark:border-[#3a3a2a]" id="problem">
<div class="max-w-[960px] mx-auto flex flex-col items-center text-center">
<h2 class="text-3xl md:text-5xl font-bold tracking-tight mb-6">The Loophole: Why You Lose Inventory</h2>
<p class="text-lg text-gray-600 dark:text-gray-300 max-w-[720px] mb-12">
Events are chaotic. Manual tracking fails. Marketing inventory is expensive. Don't waste 20% of your stock on the same 1% of people seeking freebies.
</p>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 w-full text-left">
<div class="group p-8 rounded-xl bg-background-light dark:bg-background-dark border border-[#e6e6db] dark:border-[#3a3a2a] hover:border-primary transition-colors">
<div class="size-12 rounded-full bg-red-100 dark:bg-red-900/30 flex items-center justify-center text-red-600 dark:text-red-400 mb-4">
<span class="material-symbols-outlined">package_2</span>
</div>
<h3 class="text-xl font-bold mb-2">Lost Inventory</h3>
<p class="text-sm text-gray-600 dark:text-gray-400">Repeat visitors drain supplies meant for new potential customers, effectively stealing your budget.</p>
</div>
<div class="group p-8 rounded-xl bg-background-light dark:bg-background-dark border border-[#e6e6db] dark:border-[#3a3a2a] hover:border-primary transition-colors">
<div class="size-12 rounded-full bg-orange-100 dark:bg-orange-900/30 flex items-center justify-center text-orange-600 dark:text-orange-400 mb-4">
<span class="material-symbols-outlined">bar_chart_off</span>
</div>
<h3 class="text-xl font-bold mb-2">Skewed Analytics</h3>
<p class="text-sm text-gray-600 dark:text-gray-400">Inflated engagement numbers hide the true unique visitor count, ruining your ROI calculations.</p>
</div>
<div class="group p-8 rounded-xl bg-background-light dark:bg-background-dark border border-[#e6e6db] dark:border-[#3a3a2a] hover:border-primary transition-colors">
<div class="size-12 rounded-full bg-blue-100 dark:bg-blue-900/30 flex items-center justify-center text-blue-600 dark:text-blue-400 mb-4">
<span class="material-symbols-outlined">groups_3</span>
</div>
<h3 class="text-xl font-bold mb-2">Reduced Reach</h3>
<p class="text-sm text-gray-600 dark:text-gray-400">Fewer items available means fewer unique brand impressions and fewer new leads captured.</p>
</div>
</div>
</div>
</section>
<section id="features-section" class="w-full py-24 px-6 lg:px-20 bg-background-light dark:bg-background-dark min-h-screen flex flex-col justify-center">
<div class="max-w-[1280px] mx-auto w-full">
<div id="features-header" class="mb-16 text-center transition-all duration-300">
<h2 class="text-3xl md:text-4xl font-black mb-4">Powerful Protection Features</h2>
<p class="text-gray-600 dark:text-gray-400">Click a card below to reveal how it works.</p>
</div>
<div id="features-grid" class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4 mb-8 transition-all duration-500">
<div onclick="openFeature('matching')" class="feature-trigger cursor-pointer p-6 rounded-2xl bg-white dark:bg-[#2c2c1a] border border-[#e6e6db] dark:border-[#3a3a2a] flex flex-col gap-4 transition-all duration-300 hover:-translate-y-2 hover:shadow-xl hover:border-primary group">
<div class="w-full h-32 rounded-xl bg-gray-100 dark:bg-[#1f1f12] flex items-center justify-center overflow-hidden relative group-hover:bg-orange-50 dark:group-hover:bg-orange-900/10 transition-colors">
<span class="material-symbols-outlined text-5xl text-gray-400 dark:text-gray-600 group-hover:text-orange-500 transition-colors">face</span>
</div>
<div>
<h3 class="font-bold text-lg">Almost Instant Matching</h3>
<p class="text-xs text-gray-500 mt-2">Local processing detects faces in seconds, even if the person is wearing masks, hats, or glasses.</p>
</div>
</div>
<div onclick="openFeature('alerts')" class="feature-trigger cursor-pointer p-6 rounded-2xl bg-white dark:bg-[#2c2c1a] border border-[#e6e6db] dark:border-[#3a3a2a] flex flex-col gap-4 transition-all duration-300 hover:-translate-y-2 hover:shadow-xl hover:border-primary group">
<div class="w-full h-32 rounded-xl bg-gray-100 dark:bg-[#1f1f12] flex items-center justify-center group-hover:bg-red-50 dark:group-hover:bg-red-900/10 transition-colors">
<span class="material-symbols-outlined text-5xl text-gray-400 dark:text-gray-600 group-hover:text-red-500 transition-colors">notifications_active</span>
</div>
<div>
<h3 class="font-bold text-lg">Staff Alerts</h3>
<p class="text-xs text-gray-500 mt-2">Notify staff via sound and visual feedback.</p>
</div>
</div>
<div onclick="openFeature('privacy')" class="feature-trigger cursor-pointer p-6 rounded-2xl bg-white dark:bg-[#2c2c1a] border border-[#e6e6db] dark:border-[#3a3a2a] flex flex-col gap-4 transition-all duration-300 hover:-translate-y-2 hover:shadow-xl hover:border-primary group">
<div class="w-full h-32 rounded-xl bg-gray-100 dark:bg-[#1f1f12] flex items-center justify-center group-hover:bg-green-50 dark:group-hover:bg-green-900/10 transition-colors">
<span class="material-symbols-outlined text-5xl text-gray-400 dark:text-gray-600 group-hover:text-green-500 transition-colors">verified_user</span>
</div>
<div>
<h3 class="font-bold text-lg">Privacy First</h3>
<p class="text-xs text-gray-500 mt-2">No photos stored long-term. Vector data is wiped automatically after the event concludes.</p>
</div>
</div>
<div onclick="openFeature('analytics')" class="feature-trigger cursor-pointer p-6 rounded-2xl bg-white dark:bg-[#2c2c1a] border border-[#e6e6db] dark:border-[#3a3a2a] flex flex-col gap-4 transition-all duration-300 hover:-translate-y-2 hover:shadow-xl hover:border-primary group">
<div class="w-full h-32 rounded-xl bg-gray-100 dark:bg-[#1f1f12] flex items-center justify-center group-hover:bg-blue-50 dark:group-hover:bg-blue-900/10 transition-colors">
<span class="material-symbols-outlined text-5xl text-gray-400 dark:text-gray-600 group-hover:text-blue-500 transition-colors">analytics</span>
</div>
<div>
<h3 class="font-bold text-lg">Real-Time Data</h3>
<p class="text-xs text-gray-500 mt-2">Track emotions of audience in real-time to better understand your target.</p>
</div>
</div>
</div>
<div id="details-container" class="w-full hidden opacity-0 transition-opacity duration-500 ease-in-out">
<div class="flex flex-wrap justify-center gap-2 mb-8 animate-fade-in-down">
<button onclick="closeAllFeatures()" class="px-4 py-2 rounded-full bg-gray-200 dark:bg-gray-800 hover:bg-gray-300 dark:hover:bg-gray-700 text-sm font-bold transition-colors flex items-center gap-2">
<span class="material-symbols-outlined text-lg">grid_view</span> Back
</button>
<div class="w-px h-8 bg-gray-300 dark:bg-gray-700 mx-2"></div>
<button onclick="openFeature('matching')" class="nav-btn px-4 py-2 rounded-full border border-transparent hover:bg-white dark:hover:bg-white/5 text-sm font-medium transition-all" data-target="matching">Matching</button>
<button onclick="openFeature('alerts')" class="nav-btn px-4 py-2 rounded-full border border-transparent hover:bg-white dark:hover:bg-white/5 text-sm font-medium transition-all" data-target="alerts">Alerts</button>
<button onclick="openFeature('privacy')" class="nav-btn px-4 py-2 rounded-full border border-transparent hover:bg-white dark:hover:bg-white/5 text-sm font-medium transition-all" data-target="privacy">Privacy</button>
<button onclick="openFeature('analytics')" class="nav-btn px-4 py-2 rounded-full border border-transparent hover:bg-white dark:hover:bg-white/5 text-sm font-medium transition-all" data-target="analytics">Analytics</button>
</div>
<div id="detail-matching" class="feature-detail hidden bg-surface-light dark:bg-surface-dark rounded-[2.5rem] p-8 lg:p-16 border border-[#e6e6db] dark:border-[#444] relative overflow-hidden shadow-2xl">
<div class="absolute top-0 right-0 -mr-20 -mt-20 w-96 h-96 bg-orange-500/10 rounded-full blur-3xl pointer-events-none"></div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 lg:gap-20 items-center relative z-10">
<div class="flex flex-col gap-8">
<div>
<div class="inline-flex items-center gap-2 px-3 py-1 rounded-full bg-orange-100 dark:bg-orange-900/30 text-orange-700 dark:text-orange-400 text-xs font-bold uppercase tracking-wider mb-4 border border-orange-200 dark:border-orange-800">
<span class="material-symbols-outlined text-sm">bolt</span> High-Speed Matching
</div>
<h2 class="text-3xl md:text-5xl font-black leading-tight mb-4">
Almost Instant Matching. <br>
<span class="text-text-muted opacity-60">Wait time: Negledgble.</span>
</h2>
<p class="text-lg text-text-muted dark:text-gray-300">
Manual ID checks take 15-30 seconds. UFPS takes 1-2 seconds. My algorithm uses Periocular Matching to identify repeat customers even if they've changed their appearance.
</p>
</div>
<div class="flex flex-col gap-6">
<div class="flex gap-4">
<div class="size-12 rounded-2xl bg-background-light dark:bg-background-dark flex items-center justify-center shrink-0 border border-[#e6e6db] dark:border-[#444]">
<span class="material-symbols-outlined text-text-main dark:text-white">timer</span>
</div>
<div>
<h3 class="text-lg font-bold">1~2s Response</h3>
<p class="text-sm text-text-muted">Faster than manual checks.</p>
</div>
</div>
<div class="flex gap-4">
<div class="size-12 rounded-2xl bg-background-light dark:bg-background-dark flex items-center justify-center shrink-0 border border-[#e6e6db] dark:border-[#444]">
<span class="material-symbols-outlined text-text-main dark:text-white">face</span>
</div>
<div>
<h3 class="text-lg font-bold">Periocular Matching</h3>
<p class="text-sm text-text-muted">Detects matches despite glasses or makeup.</p>
</div>
</div>
</div>
</div>
<div class="relative">
<div class="w-full bg-[#1e1e1e] rounded-xl border border-[#333] shadow-2xl p-6 flex flex-col items-center justify-center h-[350px] relative overflow-hidden">
<div class="absolute inset-0 bg-[url('https://www.transparenttextures.com/patterns/cubes.png')] opacity-10"></div>
<div class="relative size-40 border-2 border-white/20 rounded-lg flex items-center justify-center mb-6">
<span class="material-symbols-outlined text-8xl text-gray-500">face</span>
<div class="absolute inset-0 border-t-2 border-orange-500 bg-orange-500/20 animate-[scan_2s_ease-in-out_infinite]"></div>
<div class="absolute -top-1 -left-1 size-4 border-t-2 border-l-2 border-orange-500"></div>
<div class="absolute -top-1 -right-1 size-4 border-t-2 border-r-2 border-orange-500"></div>
<div class="absolute -bottom-1 -left-1 size-4 border-b-2 border-l-2 border-orange-500"></div>
<div class="absolute -bottom-1 -right-1 size-4 border-b-2 border-r-2 border-orange-500"></div>
</div>
<div class="w-full bg-gray-800 h-2 rounded-full overflow-hidden max-w-xs">
<div class="bg-orange-500 h-full w-[92%]"></div>
</div>
<div class="flex justify-between w-full max-w-xs mt-2 text-xs font-mono text-orange-400">
<span>CONFIDENCE SCORE</span>
<span>98.2%</span>
</div>
</div>
<div class="absolute -bottom-6 -right-6 bg-white dark:bg-[#2c2b18] p-4 rounded-xl border border-[#e6e6db] dark:border-[#444] shadow-xl hidden sm:block">
<div class="flex items-center gap-3">
<span class="material-symbols-outlined text-orange-500 text-3xl">speed</span>
<div>
<div class="font-bold text-sm">UFPS Speed</div>
<div class="text-xs text-text-muted">2 Seconds</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="detail-alerts" class="feature-detail hidden bg-surface-light dark:bg-surface-dark rounded-[2.5rem] p-8 lg:p-16 border border-[#e6e6db] dark:border-[#444] relative overflow-hidden shadow-2xl">
<div class="absolute top-0 right-0 -mr-20 -mt-20 w-96 h-96 bg-red-500/10 rounded-full blur-3xl pointer-events-none"></div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 lg:gap-20 items-center relative z-10">
<div class="flex flex-col gap-8">
<div>
<div class="inline-flex items-center gap-2 px-3 py-1 rounded-full bg-red-100 dark:bg-red-900/30 text-red-700 dark:text-red-400 text-xs font-bold uppercase tracking-wider mb-4 border border-red-200 dark:border-red-800">
<span class="material-symbols-outlined text-sm">notifications_active</span> Discreet Notifications
</div>
<h2 class="text-3xl md:text-5xl font-black leading-tight mb-4">
Notify staff via sound and visual feedback.
</h2>
<p class="text-lg text-text-muted dark:text-gray-300">
Markets don't need to stare at the screen. When a duplicate is found, UFPS triggers a distinct audio cue and flashes the screen red, allowing staff to act professionally.
</p>
</div>
<div class="flex flex-col gap-6">
<div class="flex gap-4">
<div class="size-12 rounded-2xl bg-background-light dark:bg-background-dark flex items-center justify-center shrink-0 border border-[#e6e6db] dark:border-[#444]">
<span class="material-symbols-outlined text-text-main dark:text-white">volume_up</span>
</div>
<div>
<h3 class="text-lg font-bold">Audio Cues</h3>
<p class="text-sm text-text-muted">Distinct sound effects for "Success" vs "Duplicate".</p>
</div>
</div>
<div class="flex gap-4">
<div class="size-12 rounded-2xl bg-background-light dark:bg-background-dark flex items-center justify-center shrink-0 border border-[#e6e6db] dark:border-[#444]">
<span class="material-symbols-outlined text-text-main dark:text-white">flourescent</span>
</div>
<div>
<h3 class="text-lg font-bold">Visual Flash</h3>
<p class="text-sm text-text-muted">Screen borders flash red for immediate visual feedback.</p>
</div>
</div>
</div>
</div>
<div class="relative">
<div class="w-full bg-red-50 dark:bg-red-950/20 rounded-xl border-2 border-dashed border-red-200 dark:border-red-900 p-6 flex flex-col items-center justify-center h-[350px] relative">
<div class="size-24 bg-red-500 rounded-full flex items-center justify-center animate-pulse mb-6 shadow-lg shadow-red-500/50">
<span class="material-symbols-outlined text-white text-5xl">warning</span>
</div>
<h3 class="text-3xl font-black text-red-600 dark:text-red-400 mb-2">DUPLICATE</h3>
<div class="px-4 py-1 bg-red-100 dark:bg-red-900/50 text-red-800 dark:text-red-300 text-xs font-mono rounded border border-red-200 dark:border-red-800">
ENTRY DENIED • TIMESTAMP 10:42
</div>
</div>
<div class="absolute -bottom-6 -right-6 bg-white dark:bg-[#2c2b18] p-4 rounded-xl border border-[#e6e6db] dark:border-[#444] shadow-xl hidden sm:block">
<div class="flex items-center gap-3">
<span class="material-symbols-outlined text-red-500 text-3xl">notifications_paused</span>
<div>
<div class="font-bold text-sm">Silent Mode</div>
<div class="text-xs text-text-muted">Even silent mode cant stop</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="detail-privacy" class="feature-detail hidden bg-surface-light dark:bg-surface-dark rounded-[2.5rem] p-8 lg:p-16 border border-[#e6e6db] dark:border-[#444] relative overflow-hidden shadow-2xl">
<div class="absolute top-0 right-0 -mr-20 -mt-20 w-96 h-96 bg-primary/10 rounded-full blur-3xl pointer-events-none"></div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 lg:gap-20 items-center relative z-10">
<div class="flex flex-col gap-8">
<div>
<div class="inline-flex items-center gap-2 px-3 py-1 rounded-full bg-green-100 dark:bg-green-900/30 text-green-700 dark:text-green-400 text-xs font-bold uppercase tracking-wider mb-4 border border-green-200 dark:border-green-800">
<span class="material-symbols-outlined text-sm">shield_lock</span>
GDPR Compliant Architecture
</div>
<h2 class="text-3xl md:text-5xl font-black leading-tight mb-4">
Privacy First?<br>
<span class="text-text-muted opacity-60">Absolutely</span>
</h2>
<p class="text-lg text-text-muted dark:text-gray-300">
UFPS is built on a "Zero-Knowledge" principle. UFPS takes facial geometry, not photographs. The data we use is mathematically impossible to reverse-engineer into a human face.
</p>
</div>
<div class="flex flex-col gap-6">
<div class="flex gap-4">
<div class="size-12 rounded-2xl bg-background-light dark:bg-background-dark flex items-center justify-center shrink-0 border border-[#e6e6db] dark:border-[#444]">
<span class="material-symbols-outlined text-text-main dark:text-white">no_photography</span>
</div>
<div>
<h3 class="text-lg font-bold">No Image Storage</h3>
<p class="text-sm text-text-muted">Camera frames are processed in RAM and discarded instantly.</p>
</div>
</div>
<div class="flex gap-4">
<div class="size-12 rounded-2xl bg-background-light dark:bg-background-dark flex items-center justify-center shrink-0 border border-[#e6e6db] dark:border-[#444]">
<span class="material-symbols-outlined text-text-main dark:text-white">wifi_off</span>
</div>
<div>
<h3 class="text-lg font-bold">Local-First Processing</h3>
<p class="text-sm text-text-muted">All calculation happens on your device (Edge Computing).</p>
</div>
</div>
<div class="flex gap-4">
<div class="size-12 rounded-2xl bg-background-light dark:bg-background-dark flex items-center justify-center shrink-0 border border-[#e6e6db] dark:border-[#444]">
<span class="material-symbols-outlined text-text-main dark:text-white">auto_delete</span>
</div>
<div>
<h3 class="text-lg font-bold">Auto-Wipe Protocols</h3>
<p class="text-sm text-text-muted">Once the event concludes, the entire vector database self-destructs.</p>
</div>
</div>
</div>
</div>
<div class="relative">
<div class="w-full bg-[#1e1e1e] rounded-xl border border-[#333] shadow-2xl overflow-hidden font-mono text-xs sm:text-sm">
<div class="bg-[#2d2d2d] px-4 py-2 flex items-center gap-2 border-b border-[#333]">
<div class="flex gap-1.5">
<div class="size-3 rounded-full bg-red-500"></div>
<div class="size-3 rounded-full bg-yellow-500"></div>
<div class="size-3 rounded-full bg-green-500"></div>
</div>
<div class="ml-2 text-gray-500">ufps-security-core — bash</div>
</div>
<div class="p-6 text-gray-300 flex flex-col gap-3">
<div><span class="text-green-400">➜</span> <span class="text-blue-400">~</span> start_session --secure</div>
<div class="text-gray-500 italic">
> Initializing local engine...<br>
> Cloud upload: <span class="text-red-400 font-bold">DISABLED</span><br>
> Image storage: <span class="text-red-400 font-bold">DISABLED</span>
</div>
<div class="mt-2"><span class="text-green-400">➜</span> <span class="text-blue-400">~</span> process_visitor(img_frame)</div>
<div class="pl-4 border-l-2 border-gray-700 my-1">
<div class="flex items-center gap-2"><span class="text-gray-500">1. Input:</span> <span>[Raw Pixel Data]</span></div>
<div class="flex items-center gap-2"><span class="text-gray-500">2. Action:</span> <span class="text-yellow-400">Extract Landmarks...</span></div>
<div class="flex items-center gap-2"><span class="text-gray-500">3. Action:</span> <span class="text-red-400">Delete Image from RAM</span></div>
<div class="flex items-center gap-2"><span class="text-gray-500">4. Output:</span> <span class="text-primary break-all">0x7f8a9b... (Hash)</span></div>
</div>
<div class="mt-2"><span class="text-green-400">➜</span> <span class="text-blue-400">~</span> <span class="animate-pulse">_</span></div>
</div>
</div>
<div class="absolute -bottom-6 -right-6 bg-white dark:bg-[#2c2b18] p-4 rounded-xl border border-[#e6e6db] dark:border-[#444] shadow-xl hidden sm:block">
<div class="flex items-center gap-3">
<span class="material-symbols-outlined text-green-500 text-3xl">verified_user</span>
<div>
<div class="font-bold text-sm">Data Privacy</div>
<div class="text-xs text-text-muted">100% Local Encrypted</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="detail-analytics" class="feature-detail hidden bg-surface-light dark:bg-surface-dark rounded-[2.5rem] p-8 lg:p-16 border border-[#e6e6db] dark:border-[#444] relative overflow-hidden shadow-2xl">
<div class="absolute top-0 right-0 -mr-20 -mt-20 w-96 h-96 bg-blue-500/10 rounded-full blur-3xl pointer-events-none"></div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12 lg:gap-20 items-center relative z-10">
<div class="flex flex-col gap-8">
<div>
<div class="inline-flex items-center gap-2 px-3 py-1 rounded-full bg-blue-100 dark:bg-blue-900/30 text-blue-700 dark:text-blue-400 text-xs font-bold uppercase tracking-wider mb-4 border border-blue-200 dark:border-blue-800">
<span class="material-symbols-outlined text-sm">bar_chart</span> Live Demographics
</div>
<h2 class="text-3xl md:text-5xl font-black leading-tight mb-4">
Know your audience <br> in real-time.
</h2>
<p class="text-lg text-text-muted dark:text-gray-300">
While detecting duplicates, UFPS also aggregates anonymous metadata. Understand your event's demographic breakdown without compromising individual privacy.
</p>
</div>
<div class="flex flex-col gap-6">
<div class="flex gap-4">
<div class="size-12 rounded-2xl bg-background-light dark:bg-background-dark flex items-center justify-center shrink-0 border border-[#e6e6db] dark:border-[#444]">
<span class="material-symbols-outlined text-text-main dark:text-white">group</span>
</div>
<div>
<h3 class="text-lg font-bold">Age & Gender</h3>
<p class="text-sm text-text-muted">Aggregated stats on attendee demographics.</p>
</div>
</div>
<div class="flex gap-4">
<div class="size-12 rounded-2xl bg-background-light dark:bg-background-dark flex items-center justify-center shrink-0 border border-[#e6e6db] dark:border-[#444]">
<span class="material-symbols-outlined text-text-main dark:text-white">sentiment_satisfied</span>
</div>
<div>
<h3 class="text-lg font-bold">Sentiment</h3>
<p class="text-sm text-text-muted">Measure the general mood/happiness of the crowd.</p>
</div>
</div>
</div>
</div>
<div class="relative">
<div class="w-full bg-white dark:bg-[#1a1a1a] rounded-xl border border-gray-200 dark:border-gray-700 p-8 flex items-end justify-between px-12 gap-4 h-[350px]">
<div class="w-full bg-blue-300 h-[40%] rounded-t-lg relative group hover:bg-blue-400 transition-colors">
<div class="absolute -top-8 w-full text-center text-xs font-bold bg-white dark:bg-gray-800 px-2 py-1 rounded shadow opacity-0 group-hover:opacity-100 transition-opacity">150 Users</div>
<div class="absolute bottom-2 w-full text-center text-xs font-bold opacity-50">18-24</div>
</div>
<div class="w-full bg-blue-400 h-[75%] rounded-t-lg relative group hover:bg-blue-500 transition-colors">
<div class="absolute -top-8 w-full text-center text-xs font-bold bg-white dark:bg-gray-800 px-2 py-1 rounded shadow opacity-0 group-hover:opacity-100 transition-opacity">320 Users</div>
<div class="absolute bottom-2 w-full text-center text-xs font-bold opacity-50">25-34</div>
</div>
<div class="w-full bg-blue-500 h-[55%] rounded-t-lg relative group hover:bg-blue-600 transition-colors">
<div class="absolute -top-8 w-full text-center text-xs font-bold bg-white dark:bg-gray-800 px-2 py-1 rounded shadow opacity-0 group-hover:opacity-100 transition-opacity">210 Users</div>
<div class="absolute bottom-2 w-full text-center text-xs font-bold opacity-50">35-44</div>
</div>
<div class="w-full bg-blue-600 h-[30%] rounded-t-lg relative group hover:bg-blue-700 transition-colors">
<div class="absolute -top-8 w-full text-center text-xs font-bold bg-white dark:bg-gray-800 px-2 py-1 rounded shadow opacity-0 group-hover:opacity-100 transition-opacity">90 Users</div>
<div class="absolute bottom-2 w-full text-center text-xs font-bold opacity-50">45+</div>
</div>
</div>
<div class="absolute -bottom-6 -right-6 bg-white dark:bg-[#2c2b18] p-4 rounded-xl border border-[#e6e6db] dark:border-[#444] shadow-xl hidden sm:block">
<div class="flex items-center gap-3">
<span class="material-symbols-outlined text-blue-500 text-3xl">download</span>
<div>
<div class="font-bold text-sm">Export Data</div>
<div class="text-xs text-text-muted">CSV & PDF Reports</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="w-full py-20 px-4 bg-white dark:bg-[#2c2c1a] border-y border-[#e6e6db] dark:border-[#3a3a2a]" id="how-it-works">
<div class="max-w-[960px] mx-auto">
<h2 class="text-3xl font-black text-center mb-16">How UFPS Works</h2>
<div class="relative flex flex-col md:flex-row justify-between items-start md:items-center gap-12 md:gap-4">
<div class="absolute left-6 top-0 bottom-0 w-1 bg-gray-200 dark:bg-gray-800 md:hidden"></div>
<div class="hidden md:block absolute top-1/2 left-0 right-0 h-1 bg-gray-200 dark:bg-gray-800 -z-10 transform -translate-y-1/2"></div>
<div class="relative flex flex-row md:flex-col items-center gap-6 md:gap-4 flex-1 text-left md:text-center">
<div class="z-10 size-12 md:size-16 rounded-full bg-primary flex items-center justify-center shrink-0 border-4 border-white dark:border-[#2c2c1a] shadow-lg">
<span class="material-symbols-outlined text-xl md:text-3xl text-black">videocam</span>
</div>
<div>
<h3 class="text-lg font-bold">1. Camera Scan</h3>
<p class="text-sm text-gray-500 mt-1">Marketing person uses software to scan attendees.</p>
</div>
</div>
<div class="relative flex flex-row md:flex-col items-center gap-6 md:gap-4 flex-1 text-left md:text-center">
<div class="z-10 size-12 md:size-16 rounded-full bg-white dark:bg-[#1f1f12] flex items-center justify-center shrink-0 border-4 border-gray-200 dark:border-gray-700 shadow-lg">
<span class="material-symbols-outlined text-xl md:text-3xl text-black dark:text-white">memory</span>
</div>
<div>
<h3 class="text-lg font-bold">2. AI Processing</h3>
<p class="text-sm text-gray-500 mt-1">Faces converted to anonymous vector hash instantly.</p>
</div>
</div>
<div class="relative flex flex-row md:flex-col items-center gap-6 md:gap-4 flex-1 text-left md:text-center">
<div class="z-10 size-12 md:size-16 rounded-full bg-white dark:bg-[#1f1f12] flex items-center justify-center shrink-0 border-4 border-gray-200 dark:border-gray-700 shadow-lg">
<span class="material-symbols-outlined text-xl md:text-3xl text-primary">warning</span>
</div>
<div>
<h3 class="text-lg font-bold">3. Instant Alert</h3>
<p class="text-sm text-gray-500 mt-1">"Repeat Visitor" flash on staff screen if match found.</p>
</div>
</div>
</div>
</div>
</section>
<section class="w-full py-20 px-4">
<div class="max-w-[1280px] mx-auto bg-primary rounded-[2rem] p-8 md:p-16 flex flex-col lg:flex-row gap-12 items-center">
<div class="flex-1 text-[#181811]">
<h2 class="text-3xl md:text-5xl font-black leading-tight mb-6">Stop guessing. Start saving.</h2>
<p class="text-lg font-medium mb-8 opacity-80">
Our clients save an average of 18% on inventory costs per event while increasing unique lead capture by 22%.
</p>
<div class="flex flex-wrap gap-4">
<div class="bg-black/10 backdrop-blur-sm rounded-lg px-4 py-3 border border-black/5">
<div class="text-3xl font-black">2.4s</div>
<div class="text-xs font-bold uppercase tracking-wider opacity-60">Avg Detection Time</div>
</div>
<div class="bg-black/10 backdrop-blur-sm rounded-lg px-4 py-3 border border-black/5">
<div class="text-3xl font-black">100%</div>
<div class="text-xs font-bold uppercase tracking-wider opacity-60">Effective</div>
</div>
<div class="bg-black/10 backdrop-blur-sm rounded-lg px-4 py-3 border border-black/5">
<div class="text-3xl font-black">0</div>
<div class="text-xs font-bold uppercase tracking-wider opacity-60">Issues</div>
</div>
</div>
</div>
<div class="flex-1 w-full">
<div class="bg-white dark:bg-[#2c2c1a] p-8 rounded-2xl shadow-xl max-w-md mx-auto">
<div class="flex items-center gap-4 mb-6">
<div class="size-12 rounded-full bg-gray-100 overflow-hidden">
<img alt="Portrait of Event Manager" class="w-full h-full object-cover" data-alt="Portrait of a professional man" src="https://lh3.googleusercontent.com/aida-public/AB6AXuBy2qDHIoiqVwL_1dihMHyWyMFOyklgyNtdK9jdnH-gmbdYJbTPWuhIXtK-BSbYhvmeSAATdjiXNVcYr998I9Mw4B42t62b7Pl0On7jM03R_2SzEhX_P5rn4zwRVXPb40ypGMgwGx1skaLUQYbqCnR4gaapOmppfZXvEJEcyLTQQFxtXdYPZZ8hK4lo4Z3lp5SQRhz8o3Yt4nS7dMISj4eY5Wfh1_am4fLWE2SYeJFBmNaxj13JtnZsGIkKny5-zK4xl7_zU8-psj4"/>
</div>
<div>
<h4 class="font-bold text-[#181811] dark:text-white">B.Harsha</h4>
<p class="text-xs text-gray-500">President, Linux community</p>
</div>
</div>
<p class="text-gray-600 dark:text-gray-300 italic mb-6">
"We used to run out of freebies by 2 PM on day one. With UFPS, our stock lasted the entire 3-day conference, and our lead quality skyrocketed. It paid for itself in one weekend."
</p>
<div class="flex gap-1 text-primary">
<span class="material-symbols-outlined text-sm text-yellow-500"
style="font-variation-settings: 'FILL' 1;">
star
</span>
<span class="material-symbols-outlined text-sm text-yellow-500"
style="font-variation-settings: 'FILL' 1;">
star
</span>
<span class="material-symbols-outlined text-sm text-yellow-500"
style="font-variation-settings: 'FILL' 1;">
star
</span>
<span class="material-symbols-outlined text-sm text-yellow-500"
style="font-variation-settings: 'FILL' 1;">
star
</span>
<span class="material-symbols-outlined text-sm text-yellow-500"
style="font-variation-settings: 'FILL' 1;">
star
</span>
</div>
</div>
</div>
</div>
</section>
<section class="w-full py-24 px-4" id="pricing">
<div class="max-w-[720px] mx-auto text-center">
<h2 class="text-4xl font-black mb-6">Ready to protect your inventory?</h2>
<p class="text-lg text-gray-600 dark:text-gray-400 mb-10">
Get a custom quote based on your event size and frequency.
<br class="hidden sm:block"/>Start maximizing your marketing reach today.
</p>
<form class="flex flex-col gap-4 text-left bg-white dark:bg-[#2c2c1a] p-6 sm:p-10 rounded-2xl border border-[#e6e6db] dark:border-[#3a3a2a] shadow-lg">
<div class="grid grid-cols-1 sm:grid-cols-2 gap-4">
<div class="flex flex-col gap-1">
<label class="text-xs font-bold uppercase text-gray-500 tracking-wider">Name</label>
<input class="w-full rounded-lg border border-gray-300 dark:border-gray-600 bg-transparent px-4 py-3 text-sm focus:border-primary focus:ring-1 focus:ring-primary outline-none transition-all" placeholder="Harsha" type="text"/>
</div>
<div class="flex flex-col gap-1">
<label class="text-xs font-bold uppercase text-gray-500 tracking-wider">Company</label>
<input class="w-full rounded-lg border border-gray-300 dark:border-gray-600 bg-transparent px-4 py-3 text-sm focus:border-primary focus:ring-1 focus:ring-primary outline-none transition-all" placeholder="Harsha Industries" type="text"/>
</div>
</div>
<div class="flex flex-col gap-1">
<label class="text-xs font-bold uppercase text-gray-500 tracking-wider">Work Email</label>
<input class="w-full rounded-lg border border-gray-300 dark:border-gray-600 bg-transparent px-4 py-3 text-sm focus:border-primary focus:ring-1 focus:ring-primary outline-none transition-all" placeholder="harsha@itsharsha.me" type="email"/>
</div>
<div class="flex flex-col gap-1">
<label class="text-xs font-bold uppercase text-gray-500 tracking-wider">Estimated Event Size</label>
<select class="w-full rounded-lg border border-gray-300 dark:border-gray-600 bg-transparent px-4 py-3 text-sm focus:border-primary focus:ring-1 focus:ring-primary outline-none transition-all">
<option>Less than 500 attendees</option>
<option>500 - 2,500 attendees</option>
<option>2,500 - 10,000 attendees</option>
<option>10,000+ attendees</option>
</select>
</div>
<button class="mt-4 w-full rounded-full bg-primary h-12 text-[#181811] font-bold text-base hover:brightness-105 transition-all">
Contact Me
</button>
<p class="text-center text-xs text-gray-400 mt-2">
By contacting me, you agree to our <a class="underline hover:text-primary" href="#">Terms of Service</a> and <a class="underline hover:text-primary" href="#">Privacy Policy</a>.
</p>
</form>
</div>
</section>
<section class="w-full py-24 px-6 lg:px-20 bg-background-light dark:bg-background-dark border-t border-[#e6e6db] dark:border-[#444]">
<div class="max-w-[960px] mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-black mb-4">Frequently Asked Questions</h2>
<p class="text-text-muted dark:text-gray-400 max-w-2xl mx-auto">
Everything you need to know about setting up UFPS for your next event.
</p>
</div>
<div class="flex flex-col gap-4">
<div class="group bg-surface-light dark:bg-surface-dark border border-[#e6e6db] dark:border-[#444] rounded-2xl overflow-hidden transition-all hover:border-primary/50">
<button class="faq-btn flex w-full items-center justify-between p-6 text-left" onclick="toggleFaq(this)">
<span class="text-lg font-bold pr-8">Is UFPS privacy compliant?</span>
<span class="material-symbols-outlined text-primary transition-transform duration-300">expand_more</span>
</button>
<div class="faq-content hidden px-6 pb-6 pt-0">
<p class="text-text-muted dark:text-gray-300 leading-relaxed">
Yes. UFPS uses a <strong>Privacy-First architecture</strong>. We do not store actual photos of customers. The system converts facial geometry into an anonymous mathematical vector hash locally on your device. Once the event is closed, all vector data is permanently wiped.
</p>
</div>
</div>
<div class="group bg-surface-light dark:bg-surface-dark border border-[#e6e6db] dark:border-[#444] rounded-2xl overflow-hidden transition-all hover:border-primary/50">
<button class="faq-btn flex w-full items-center justify-between p-6 text-left" onclick="toggleFaq(this)">
<span class="text-lg font-bold pr-8">Do I need an internet connection?</span>
<span class="material-symbols-outlined text-primary transition-transform duration-300">expand_more</span>
</button>
<div class="faq-content hidden px-6 pb-6 pt-0">
<p class="text-text-muted dark:text-gray-300 leading-relaxed">
No Nessasaryly. UFPS is designed for "Edge Computing." The entire detection engine runs locally on your phone. You only need the internet if you wish to sync data between multiple campeings in real-time. For single setups, it works 100% offline.
</p>
</div>
</div>
<div class="group bg-surface-light dark:bg-surface-dark border border-[#e6e6db] dark:border-[#444] rounded-2xl overflow-hidden transition-all hover:border-primary/50">
<button class="faq-btn flex w-full items-center justify-between p-6 text-left" onclick="toggleFaq(this)">
<span class="text-lg font-bold pr-8">What hardware do I need?</span>
<span class="material-symbols-outlined text-primary transition-transform duration-300">expand_more</span>
</button>
<div class="faq-content hidden px-6 pb-6 pt-0">
<p class="text-text-muted dark:text-gray-300 leading-relaxed">
UFPS is lightweight. It runs on any standard phone with good cam.
</p>
</div>
</div>
<div class="group bg-surface-light dark:bg-surface-dark border border-[#e6e6db] dark:border-[#444] rounded-2xl overflow-hidden transition-all hover:border-primary/50">
<button class="faq-btn flex w-full items-center justify-between p-6 text-left" onclick="toggleFaq(this)">
<span class="text-lg font-bold pr-8">Can it detect people wearing masks or sunglasses?</span>
<span class="material-symbols-outlined text-primary transition-transform duration-300">expand_more</span>
</button>
<div class="faq-content hidden px-6 pb-6 pt-0">
<p class="text-text-muted dark:text-gray-300 leading-relaxed">
The model im using is trained on diverse datasets including occluded faces. It maintains high accuracy with eyeglasses and caps. While heavy medical masks reduce accuracy slightly, our "Upper-Face Landmark" fallback system still provides ~85% reliability in these cases.
</p>
</div>
</div>
</div>
</div>
</section>
<footer class="w-full py-10 px-4 border-t border-[#e6e6db] dark:border-[#3a3a2a] bg-white dark:bg-[#2c2c1a]">
<div class="max-w-[1280px] mx-auto flex flex-col sm:flex-row justify-between items-center gap-6">
<div class="flex items-center gap-4">
<div class="size-8 text-primary flex items-center justify-center bg-black rounded-lg">
<img src="icon.png" alt=""></div>
<h2 class="text-xl font-bold leading-tight tracking-tight">UFPS</h2>
</div>
<div class="flex gap-6 text-sm font-medium text-gray-500">
</div>
<div class="text-sm text-gray-400">
© 2025 Ultimate Freebie Protection System. All rights reserved to me.
</div>
</div>
</footer>
</div>
<button
id="theme-toggle"
class="fixed bottom-6 right-6 z-50 p-4 rounded-full shadow-2xl bg-surface-light dark:bg-surface-dark border border-[#e6e6db] dark:border-[#444] text-text-main dark:text-white hover:scale-110 hover:border-primary dark:hover:border-primary transition-all duration-300 group"
aria-label="Toggle Dark Mode"
>
<span class="material-symbols-outlined theme-icon group-hover:rotate-12 transition-transform">dark_mode</span>
</button>
<script>
// Simple script to animate the confidence bar when the page loads
document.addEventListener('DOMContentLoaded', () => {
setTimeout(() => {
const bar = document.getElementById('confidence-bar');
if(bar) {
bar.style.width = '80%';
}
}, 500); // Wait 0.5s before starting animation
});
function toggleFaq(button) {
const content = button.nextElementSibling;
const icon = button.querySelector('.material-symbols-outlined');
// Toggle the hidden class
content.classList.toggle('hidden');
// Rotate the icon
if (content.classList.contains('hidden')) {
icon.style.transform = 'rotate(0deg)';
} else {
icon.style.transform = 'rotate(180deg)';
}
// Close other FAQ items
document.querySelectorAll('.faq-content').forEach(item => {
if (item !== content && !item.classList.contains('hidden')) {
item.classList.add('hidden');
item.previousElementSibling.querySelector('.material-symbols-outlined').style.transform = 'rotate(0deg)';
}
});
}
function openFeature(featureId) {
const grid = document.getElementById('features-grid');
const header = document.getElementById('features-header');
const container = document.getElementById('details-container');
const allDetails = document.querySelectorAll('.feature-detail');
const navBtns = document.querySelectorAll('.nav-btn');
// 1. Hide the Main Grid & Header
grid.classList.add('hidden');
header.classList.add('hidden');
// 2. Show the Details Container
container.classList.remove('hidden');
setTimeout(() => {
container.classList.remove('opacity-0');
}, 10);
// 3. Hide all specific feature cards
allDetails.forEach(el => el.classList.add('hidden'));
// 4. Show the selected feature card
const selectedFeature = document.getElementById('detail-' + featureId);
if(selectedFeature) {
selectedFeature.classList.remove('hidden');
}
// 5. Update Navigation State
navBtns.forEach(btn => {
btn.classList.remove('bg-white', 'dark:bg-white/10', 'shadow-sm', 'text-primary');
btn.classList.add('text-gray-500');
if(btn.dataset.target === featureId) {
btn.classList.add('bg-white', 'dark:bg-white/10', 'shadow-sm', 'text-primary');
btn.classList.remove('text-gray-500');
}
});
}
function closeAllFeatures() {
const grid = document.getElementById('features-grid');
const header = document.getElementById('features-header');
const container = document.getElementById('details-container');
// 1. Hide Details Container
container.classList.add('opacity-0');
// Wait for transition to finish
setTimeout(() => {
container.classList.add('hidden');
// 2. Show Grid & Header
grid.classList.remove('hidden');
header.classList.remove('hidden');
}, 300);
}
const themeBtn = document.getElementById('theme-toggle');
const themeIcon = themeBtn.querySelector('.theme-icon');
const html = document.documentElement;
// 1. Check preference on load
function initTheme() {
const localTheme = localStorage.getItem('theme');
const systemDark = window.matchMedia('(prefers-color-scheme: dark)').matches;
if (localTheme === 'dark' || (!localTheme && systemDark)) {
html.classList.add('dark');
themeIcon.textContent = 'light_mode';
} else {
html.classList.remove('dark');
themeIcon.textContent = 'dark_mode';
}
}
// 2. Toggle function
themeBtn.addEventListener('click', () => {
if (html.classList.contains('dark')) {
html.classList.remove('dark');
localStorage.setItem('theme', 'light');
themeIcon.textContent = 'dark_mode';
} else {
html.classList.add('dark');
localStorage.setItem('theme', 'dark');
themeIcon.textContent = 'light_mode';
}
});
// Initialize
initTheme();
</script>
</body></html>