-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
582 lines (548 loc) · 47.2 KB
/
index.html
File metadata and controls
582 lines (548 loc) · 47.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
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Authenticator Pro - Keep Your Accounts Safe</title>
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
<meta name="description" content="The easiest way to protect your online accounts with two-factor authentication on your desktop. Free, private, and works offline." />
<script src="https://cdn.tailwindcss.com"></script>
<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=Inter:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet" />
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: { sans: ['Inter', 'system-ui', 'sans-serif'] },
colors: {
brand: {
50: '#f0fdf4', 100: '#dcfce7', 200: '#bbf7d0', 300: '#86efac',
400: '#4ade80', 500: '#22c55e', 600: '#16a34a', 700: '#15803d',
800: '#166534', 900: '#14532d', 950: '#052e16',
},
},
},
},
};
</script>
<style>
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes fade-up { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes counter-tick { 0%{stroke-dashoffset:0} 100%{stroke-dashoffset:113} }
@keyframes code-flip { 0%,45%{opacity:1;transform:rotateX(0)} 50%{opacity:0;transform:rotateX(90deg)} 55%,100%{opacity:1;transform:rotateX(0)} }
@keyframes number-count { 0%{content:'0'} 100%{content:'1'} }
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-fade-up { animation: fade-up .7s ease-out forwards; }
.animate-counter { animation: counter-tick 30s linear infinite; }
.animate-code { animation: code-flip 30s ease-in-out infinite; }
.delay-100 { animation-delay: .1s; }
.delay-200 { animation-delay: .2s; }
.delay-300 { animation-delay: .3s; }
.delay-400 { animation-delay: .4s; }
.reveal { opacity: 0; transform: translateY(30px); transition: all .7s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.text-gradient {
background: linear-gradient(135deg, #22c55e 0%, #16a34a 40%, #059669 100%);
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.glass {
background: rgba(255,255,255,.06); backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.1);
}
.glow-green { box-shadow: 0 0 60px rgba(34,197,94,.15), 0 0 120px rgba(34,197,94,.05); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
</style>
</head>
<body class="bg-[#0a0a0a] text-white font-sans antialiased overflow-x-hidden">
<!-- ═══════════════════════════════════════════════ -->
<!-- NAV -->
<!-- ═══════════════════════════════════════════════ -->
<nav class="fixed inset-x-0 top-0 z-50 transition-all duration-300" id="navbar">
<div class="flex justify-between items-center px-6 py-4 mx-auto max-w-6xl">
<a href="#" class="flex gap-2.5 items-center group">
<div class="flex justify-center items-center w-9 h-9">
<img src="assets/logo.png" alt="Authenticator Pro" class="object-contain w-9 h-9 shadow-2xl shadow-green-500/30" />
</div>
<span class="text-lg font-bold tracking-tight">Authenticator Pro</span>
</a>
<div class="hidden gap-8 items-center text-sm text-gray-400 md:flex">
<a href="#why" class="transition-colors hover:text-white">Why</a>
<a href="#features" class="transition-colors hover:text-white">Features</a>
<a href="#how" class="transition-colors hover:text-white">How it works</a>
<a href="#download" class="transition-colors hover:text-white">Download</a>
</div>
<a href="#download" class="hidden gap-2 items-center px-5 py-2.5 text-sm font-semibold text-white rounded-full shadow-lg transition-colors md:inline-flex bg-brand-500 hover:bg-brand-400 shadow-brand-500/20">
<svg class="w-4 h-4" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"/><polyline points="7 10 12 15 17 10"/><line x1="12" y1="15" x2="12" y2="3"/></svg>
Download free
</a>
<button class="p-2 text-gray-400 md:hidden hover:text-white" onclick="document.getElementById('mobile-menu').classList.toggle('hidden')">
<svg class="w-6 h-6" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><line x1="3" y1="12" x2="21" y2="12"/><line x1="3" y1="6" x2="21" y2="6"/><line x1="3" y1="18" x2="21" y2="18"/></svg>
</button>
</div>
<div id="mobile-menu" class="hidden p-4 mx-4 mb-2 space-y-3 rounded-2xl md:hidden glass">
<a href="#why" class="block text-sm text-gray-300 hover:text-white">Why</a>
<a href="#features" class="block text-sm text-gray-300 hover:text-white">Features</a>
<a href="#how" class="block text-sm text-gray-300 hover:text-white">How it works</a>
<a href="#download" class="block px-4 py-2.5 text-sm font-semibold text-center text-gray-300 rounded-full hover:text-white bg-brand-500">Download free</a>
</div>
</nav>
<!-- ═══════════════════════════════════════════════ -->
<!-- HERO -->
<!-- ═══════════════════════════════════════════════ -->
<section class="flex relative justify-center items-center pt-24 pb-16 min-h-screen">
<div class="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 w-[700px] h-[700px] rounded-full bg-brand-500/10 blur-[150px] pointer-events-none"></div>
<div class="relative z-10 px-6 mx-auto max-w-6xl">
<div class="grid gap-12 items-center lg:grid-cols-2 lg:gap-16">
<!-- Left: copy -->
<div class="text-center lg:text-left">
<div class="inline-flex gap-2 items-center px-4 py-1.5 mb-6 text-sm rounded-full glass text-brand-300 animate-fade-up">
<svg class="w-4 h-4" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"/><polyline points="22 4 12 14.01 9 11.01"/></svg>
Trusted by 10,000+ users
</div>
<h1 class="text-5xl sm:text-6xl lg:text-[3.5rem] font-extrabold leading-[1.1] tracking-tight mb-6 animate-fade-up delay-100">
Stop worrying about<br/>
<span class="text-gradient">account security</span>
</h1>
<p class="mx-auto mb-8 max-w-lg text-lg leading-relaxed text-gray-400 delay-200 lg:mx-0 animate-fade-up">
Authenticator Pro keeps all your two-factor codes in one safe place on your computer. No phone needed. No cloud. Just you and your codes.
</p>
<div class="flex flex-col gap-4 justify-center items-center mb-8 delay-300 sm:flex-row lg:justify-start animate-fade-up">
<a href="#download" class="flex gap-2.5 items-center px-8 py-4 text-lg font-semibold text-white rounded-2xl shadow-xl transition-all group bg-brand-500 shadow-brand-500/25 hover:shadow-brand-500/40 hover:bg-brand-400">
<svg class="w-5 h-5" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"/><polyline points="7 10 12 15 17 10"/><line x1="12" y1="15" x2="12" y2="3"/></svg>
Download for free
<svg class="w-4 h-4 transition-transform group-hover:translate-x-1" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><polyline points="9 18 15 12 9 6"/></svg>
</a>
<a href="#how" class="px-8 py-4 text-lg font-semibold text-gray-300 rounded-2xl border border-gray-700 transition-all hover:border-gray-500 hover:text-white">
See how it works
</a>
</div>
<!-- Trust signals -->
<div class="flex gap-6 justify-center items-center text-sm text-gray-500 lg:justify-start animate-fade-up delay-400">
<span class="flex gap-1.5 items-center">
<img src="assets/logo.png" alt="Authenticator Pro" class="object-contain w-9 h-9 shadow-2xl shadow-green-500/30" />
100% private
</span>
<span class="flex gap-1.5 items-center">
<svg class="w-4 h-4 text-brand-400" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path d="M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z"/><circle cx="12" cy="12" r="3"/></svg>
Works offline
</span>
<span class="flex gap-1.5 items-center">
<svg class="w-4 h-4 text-brand-400" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10"/><path d="m9 12 2 2 4-4"/></svg>
Free forever
</span>
</div>
</div>
<!-- Right: app mockup -->
<div class="relative mx-auto max-w-md delay-300 lg:mx-0 lg:ml-auto animate-fade-up">
<div class="overflow-hidden bg-gray-900 rounded-3xl border border-gray-800 shadow-2xl glow-green">
<div class="flex gap-2 items-center px-5 py-3 border-b border-gray-800">
<div class="flex gap-1.5"><div class="w-3 h-3 rounded-full bg-red-500/80"></div><div class="w-3 h-3 rounded-full bg-yellow-500/80"></div><div class="w-3 h-3 rounded-full bg-green-500/80"></div></div>
<span class="ml-2 text-xs text-gray-500">Authenticator Pro</span>
</div>
<div class="p-5 space-y-3">
<div class="flex gap-2 items-center px-4 py-2.5 rounded-xl border bg-gray-800/60 border-gray-700/50">
<svg class="w-4 h-4 text-gray-500" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><circle cx="11" cy="11" r="8"/><line x1="21" y1="21" x2="16.65" y2="16.65"/></svg>
<span class="text-sm text-gray-500">Search accounts</span>
</div>
<div class="space-y-2.5">
<div class="flex gap-3 items-center p-3.5 rounded-xl border bg-gray-800/40 border-gray-700/30">
<div class="flex justify-center items-center w-10 h-10 bg-gray-700 rounded-full"><svg class="w-5 h-5 text-white" viewBox="0 0 24 24" fill="currentColor"><path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/></svg></div>
<div class="flex-1"><p class="text-sm font-medium text-gray-200">GitHub</p><p class="text-xs text-gray-500">dev@company.com</p></div>
<span class="font-mono text-xl font-bold tracking-widest text-brand-400 animate-code">482 917</span>
<div class="w-8 h-8"><svg class="w-8 h-8 -rotate-90" viewBox="0 0 40 40"><circle cx="20" cy="20" r="16" fill="none" stroke="#333" stroke-width="3"/><circle cx="20" cy="20" r="16" fill="none" stroke="#22c55e" stroke-width="3" stroke-linecap="round" stroke-dasharray="100" class="animate-counter"/></svg></div>
</div>
<div class="flex gap-3 items-center p-3.5 rounded-xl border bg-gray-800/40 border-gray-700/30">
<div class="flex justify-center items-center w-10 h-10 rounded-full bg-red-900/50"><svg class="w-5 h-5 text-red-400" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><rect x="2" y="4" width="20" height="16" rx="2"/><path d="m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"/></svg></div>
<div class="flex-1"><p class="text-sm font-medium text-gray-200">Google</p><p class="text-xs text-gray-500">user@gmail.com</p></div>
<span class="font-mono text-xl font-bold tracking-widest text-brand-400">731 054</span>
<div class="w-8 h-8"><svg class="w-8 h-8 -rotate-90" viewBox="0 0 40 40"><circle cx="20" cy="20" r="16" fill="none" stroke="#333" stroke-width="3"/><circle cx="20" cy="20" r="16" fill="none" stroke="#22c55e" stroke-width="3" stroke-linecap="round" stroke-dasharray="100" stroke-dashoffset="40"/></svg></div>
</div>
<div class="flex gap-3 items-center p-3.5 rounded-xl border bg-gray-800/40 border-gray-700/30">
<div class="flex justify-center items-center w-10 h-10 rounded-full bg-blue-900/50"><svg class="w-5 h-5 text-blue-400" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"/><path d="M7 11V7a5 5 0 0 1 10 0v4"/></svg></div>
<div class="flex-1"><p class="text-sm font-medium text-gray-200">Bank of America</p><p class="text-xs text-gray-500">savings account</p></div>
<span class="font-mono text-xl font-bold tracking-widest text-brand-400">295 638</span>
<div class="w-8 h-8"><svg class="w-8 h-8 -rotate-90" viewBox="0 0 40 40"><circle cx="20" cy="20" r="16" fill="none" stroke="#333" stroke-width="3"/><circle cx="20" cy="20" r="16" fill="none" stroke="#22c55e" stroke-width="3" stroke-linecap="round" stroke-dasharray="100" stroke-dashoffset="75"/></svg></div>
</div>
</div>
</div>
</div>
<!-- Floating badges -->
<div class="absolute -top-3 -right-3 px-3 py-1.5 text-xs font-bold text-white rounded-xl shadow-lg bg-brand-500 shadow-brand-500/30 animate-float">
<img src="assets/logo.png" alt="Authenticator Pro" class="inline object-contain mr-1 w-9 h-9 shadow-2xl shadow-green-500/30" />
Protected
</div>
<div class="absolute -bottom-3 -left-3 px-3 py-1.5 text-xs font-bold text-gray-300 bg-gray-800 rounded-xl border border-gray-700 shadow-lg animate-float" style="animation-delay:1.5s">
<svg class="inline mr-1 w-3.5 h-3.5 text-brand-400" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path d="M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z"/><circle cx="12" cy="12" r="3"/></svg>
Offline
</div>
</div>
</div>
</div>
</section>
<!-- ═══════════════════════════════════════════════ -->
<!-- WHY - Problem / Solution -->
<!-- ═══════════════════════════════════════════════ -->
<section id="why" class="relative py-24">
<div class="absolute top-0 left-0 w-full h-px bg-gradient-to-r from-transparent to-transparent via-brand-500/20"></div>
<div class="px-6 mx-auto max-w-5xl">
<div class="mb-16 text-center reveal">
<h2 class="mb-4 text-4xl font-extrabold tracking-tight sm:text-5xl">
Why keep 2FA codes<br/>on your <span class="text-gradient">computer</span>?
</h2>
<p class="mx-auto max-w-2xl text-lg text-gray-400">Phones break, get lost, or run out of battery. Your computer is always right there when you need to log in.</p>
</div>
<div class="grid gap-6 md:grid-cols-3">
<div class="p-8 text-center rounded-2xl reveal glass">
<div class="flex justify-center items-center mx-auto mb-5 w-14 h-14 rounded-2xl bg-red-500/15">
<svg class="w-7 h-7 text-red-400" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path d="M18.36 6.64a9 9 0 1 1-12.73 0"/><line x1="12" y1="2" x2="12" y2="12"/></svg>
</div>
<h3 class="mb-2 text-lg font-bold">Phone died?</h3>
<p class="text-sm leading-relaxed text-gray-400">No problem. Your codes are on your desktop, always charged and ready.</p>
</div>
<div class="p-8 text-center rounded-2xl reveal glass">
<div class="flex justify-center items-center mx-auto mb-5 w-14 h-14 rounded-2xl bg-amber-500/15">
<svg class="w-7 h-7 text-amber-400" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg>
</div>
<h3 class="mb-2 text-lg font-bold">Tired of switching?</h3>
<p class="text-sm leading-relaxed text-gray-400">No more grabbing your phone every time you log in. One click, right on your screen.</p>
</div>
<div class="p-8 text-center rounded-2xl reveal glass">
<div class="flex justify-center items-center mx-auto mb-5 w-14 h-14 rounded-2xl bg-brand-500/15">
<svg class="w-7 h-7 text-brand-400" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/></svg>
</div>
<h3 class="mb-2 text-lg font-bold">Want real privacy?</h3>
<p class="text-sm leading-relaxed text-gray-400">Everything stays on your machine. No cloud, no accounts to create, no data collection.</p>
</div>
</div>
</div>
</section>
<!-- ═══════════════════════════════════════════════ -->
<!-- FEATURES -->
<!-- ═══════════════════════════════════════════════ -->
<section id="features" class="relative py-24">
<div class="absolute top-0 left-0 w-full h-px bg-gradient-to-r from-transparent via-gray-800 to-transparent"></div>
<div class="px-6 mx-auto max-w-6xl">
<div class="mb-16 text-center reveal">
<span class="inline-block px-4 py-1.5 mb-4 text-sm font-medium rounded-full bg-brand-500/10 text-brand-400">Features</span>
<h2 class="mb-4 text-4xl font-extrabold tracking-tight sm:text-5xl">Simple to use.<br/><span class="text-gradient">Powerful underneath.</span></h2>
<p class="mx-auto max-w-xl text-lg text-gray-400">Everything just works, right out of the box.</p>
</div>
<div class="grid gap-5 sm:grid-cols-2 lg:grid-cols-3">
<div class="reveal group p-6 rounded-2xl glass hover:bg-white/[.08] transition-all duration-300">
<div class="flex justify-center items-center mb-4 w-12 h-12 rounded-xl transition-colors bg-brand-500/15 group-hover:bg-brand-500/25">
<svg class="w-6 h-6 text-brand-400" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><rect x="9" y="9" width="13" height="13" rx="2" ry="2"/><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"/></svg>
</div>
<h3 class="mb-2 text-lg font-semibold">One-click copy</h3>
<p class="text-sm leading-relaxed text-gray-400">Click any code to copy it instantly. Paste it where you need it. The clipboard auto-clears for safety.</p>
</div>
<div class="reveal group p-6 rounded-2xl glass hover:bg-white/[.08] transition-all duration-300">
<div class="flex justify-center items-center mb-4 w-12 h-12 rounded-xl transition-colors bg-brand-500/15 group-hover:bg-brand-500/25">
<svg class="w-6 h-6 text-brand-400" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><rect x="2" y="3" width="20" height="14" rx="2"/><line x1="8" y1="21" x2="16" y2="21"/><line x1="12" y1="17" x2="12" y2="21"/></svg>
</div>
<h3 class="mb-2 text-lg font-semibold">Scan from screen</h3>
<p class="text-sm leading-relaxed text-gray-400">See a QR code on a website? Just click "Scan Screen" and the app reads it for you automatically.</p>
</div>
<div class="reveal group p-6 rounded-2xl glass hover:bg-white/[.08] transition-all duration-300">
<div class="flex justify-center items-center mb-4 w-12 h-12 rounded-xl transition-colors bg-brand-500/15 group-hover:bg-brand-500/25">
<svg class="w-6 h-6 text-brand-400" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"/><polyline points="7 10 12 15 17 10"/><line x1="12" y1="15" x2="12" y2="3"/></svg>
</div>
<h3 class="mb-2 text-lg font-semibold">Easy switching</h3>
<p class="text-sm leading-relaxed text-gray-400">Already using Google Authenticator? Import all your accounts in seconds. No re-scanning needed.</p>
</div>
<div class="reveal group p-6 rounded-2xl glass hover:bg-white/[.08] transition-all duration-300">
<div class="flex justify-center items-center mb-4 w-12 h-12 rounded-xl transition-colors bg-brand-500/15 group-hover:bg-brand-500/25">
<svg class="w-6 h-6 text-brand-400" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"/><path d="M7 11V7a5 5 0 0 1 10 0v4"/></svg>
</div>
<h3 class="mb-2 text-lg font-semibold">Fingerprint unlock</h3>
<p class="text-sm leading-relaxed text-gray-400">Use Touch ID or Windows Hello to open the app. No one else can see your codes, even if they use your computer.</p>
</div>
<div class="reveal group p-6 rounded-2xl glass hover:bg-white/[.08] transition-all duration-300">
<div class="flex justify-center items-center mb-4 w-12 h-12 rounded-xl transition-colors bg-brand-500/15 group-hover:bg-brand-500/25">
<svg class="w-6 h-6 text-brand-400" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><circle cx="11" cy="11" r="8"/><line x1="21" y1="21" x2="16.65" y2="16.65"/></svg>
</div>
<h3 class="mb-2 text-lg font-semibold">Find any account</h3>
<p class="text-sm leading-relaxed text-gray-400">Search, tag, and organize your accounts. Find the right code in a split second, even with hundreds of accounts.</p>
</div>
<div class="reveal group p-6 rounded-2xl glass hover:bg-white/[.08] transition-all duration-300">
<div class="flex justify-center items-center mb-4 w-12 h-12 rounded-xl transition-colors bg-brand-500/15 group-hover:bg-brand-500/25">
<svg class="w-6 h-6 text-brand-400" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path d="M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7Z"/><circle cx="12" cy="12" r="3"/></svg>
</div>
<h3 class="mb-2 text-lg font-semibold">Completely offline</h3>
<p class="text-sm leading-relaxed text-gray-400">No internet connection needed. No accounts. No sign-ups. Everything lives on your computer and nowhere else.</p>
</div>
</div>
</div>
</section>
<!-- ═══════════════════════════════════════════════ -->
<!-- HOW IT WORKS - 3 steps -->
<!-- ═══════════════════════════════════════════════ -->
<section id="how" class="relative py-24">
<div class="absolute top-0 left-0 w-full h-px bg-gradient-to-r from-transparent to-transparent via-brand-500/20"></div>
<div class="absolute bottom-0 left-0 w-full h-px bg-gradient-to-r from-transparent to-transparent via-brand-500/20"></div>
<div class="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 w-[600px] h-[400px] rounded-full bg-brand-500/5 blur-[120px] pointer-events-none"></div>
<div class="px-6 mx-auto max-w-5xl">
<div class="mb-16 text-center reveal">
<span class="inline-block px-4 py-1.5 mb-4 text-sm font-medium rounded-full bg-brand-500/10 text-brand-400">How it works</span>
<h2 class="mb-4 text-4xl font-extrabold tracking-tight sm:text-5xl">
Up and running in <span class="text-gradient">3 steps</span>
</h2>
<p class="mx-auto max-w-xl text-lg text-gray-400">It takes less than a minute to get started.</p>
</div>
<div class="grid gap-8 md:grid-cols-3">
<!-- Step 1 -->
<div class="text-center reveal">
<div class="relative mx-auto mb-6">
<div class="flex justify-center items-center mx-auto w-20 h-20 rounded-3xl border bg-brand-500/10 border-brand-500/20">
<svg class="w-9 h-9 text-brand-400" fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"/><polyline points="7 10 12 15 17 10"/><line x1="12" y1="15" x2="12" y2="3"/></svg>
</div>
<span class="flex absolute -top-2 -right-2 justify-center items-center w-8 h-8 text-sm font-bold text-white rounded-full shadow-lg bg-brand-500">1</span>
</div>
<h3 class="mb-2 text-xl font-bold">Download the app</h3>
<p class="text-sm leading-relaxed text-gray-400">Free for macOS and Windows. Install it like any other app -- takes 30 seconds.</p>
</div>
<!-- Step 2 -->
<div class="text-center reveal">
<div class="relative mx-auto mb-6">
<div class="flex justify-center items-center mx-auto w-20 h-20 rounded-3xl border bg-brand-500/10 border-brand-500/20">
<svg class="w-9 h-9 text-brand-400" fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24"><path d="M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M22 21v-2a4 4 0 0 0-3-3.87"/><path d="M16 3.13a4 4 0 0 1 0 7.75"/></svg>
</div>
<span class="flex absolute -top-2 -right-2 justify-center items-center w-8 h-8 text-sm font-bold text-white rounded-full shadow-lg bg-brand-500">2</span>
</div>
<h3 class="mb-2 text-xl font-bold">Add your accounts</h3>
<p class="text-sm leading-relaxed text-gray-400">Import from Google Authenticator, scan a QR code, or type in a key. All options are built in.</p>
</div>
<!-- Step 3 -->
<div class="text-center reveal">
<div class="relative mx-auto mb-6">
<div class="flex justify-center items-center mx-auto w-20 h-20 rounded-3xl border bg-brand-500/10 border-brand-500/20">
<svg class="w-9 h-9 text-brand-400" fill="none" stroke="currentColor" stroke-width="1.5" viewBox="0 0 24 24"><path d="M22 11.08V12a10 10 0 1 1-5.93-9.14"/><polyline points="22 4 12 14.01 9 11.01"/></svg>
</div>
<span class="flex absolute -top-2 -right-2 justify-center items-center w-8 h-8 text-sm font-bold text-white rounded-full shadow-lg bg-brand-500">3</span>
</div>
<h3 class="mb-2 text-xl font-bold">Click, copy, done</h3>
<p class="text-sm leading-relaxed text-gray-400">When you need a code, click it. It's copied to your clipboard and ready to paste. That's it.</p>
</div>
</div>
</div>
</section>
<!-- ═══════════════════════════════════════════════ -->
<!-- SOCIAL PROOF / TRUST -->
<!-- ═══════════════════════════════════════════════ -->
<section class="relative py-24">
<div class="px-6 mx-auto max-w-6xl">
<!-- Stats -->
<div class="grid gap-6 mb-20 sm:grid-cols-3 reveal">
<div class="p-8 text-center rounded-2xl glass">
<p class="mb-1 text-4xl font-extrabold text-gradient">10,000+</p>
<p class="text-sm text-gray-400">Happy users</p>
</div>
<div class="p-8 text-center rounded-2xl glass">
<p class="mb-1 text-4xl font-extrabold text-gradient">4.9 / 5</p>
<p class="text-sm text-gray-400">Average rating</p>
</div>
<div class="p-8 text-center rounded-2xl glass">
<p class="mb-1 text-4xl font-extrabold text-gradient">0 bytes</p>
<p class="text-sm text-gray-400">Sent to the cloud</p>
</div>
</div>
<!-- Testimonials -->
<div class="grid gap-6 md:grid-cols-3">
<div class="p-6 rounded-2xl reveal glass">
<div class="flex gap-1 items-center mb-3">
<svg class="w-4 h-4 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"/></svg>
<svg class="w-4 h-4 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"/></svg>
<svg class="w-4 h-4 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"/></svg>
<svg class="w-4 h-4 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"/></svg>
<svg class="w-4 h-4 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"/></svg>
</div>
<p class="mb-4 text-sm leading-relaxed text-gray-300">"Finally I don't have to pick up my phone every time I log into something. The screen QR scan is magic."</p>
<div class="flex gap-3 items-center">
<div class="flex justify-center items-center w-8 h-8 text-xs font-bold text-blue-300 rounded-full bg-blue-500/20">JM</div>
<div><p class="text-sm font-medium">James M.</p><p class="text-xs text-gray-500">Software Developer</p></div>
</div>
</div>
<div class="p-6 rounded-2xl reveal glass">
<div class="flex gap-1 items-center mb-3">
<svg class="w-4 h-4 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"/></svg>
<svg class="w-4 h-4 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"/></svg>
<svg class="w-4 h-4 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"/></svg>
<svg class="w-4 h-4 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"/></svg>
<svg class="w-4 h-4 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"/></svg>
</div>
<p class="mb-4 text-sm leading-relaxed text-gray-300">"Imported 47 accounts from Google Authenticator in about 10 seconds. I love that nothing goes to the cloud."</p>
<div class="flex gap-3 items-center">
<div class="flex justify-center items-center w-8 h-8 text-xs font-bold text-purple-300 rounded-full bg-purple-500/20">SK</div>
<div><p class="text-sm font-medium">Sarah K.</p><p class="text-xs text-gray-500">IT Security Analyst</p></div>
</div>
</div>
<div class="p-6 rounded-2xl reveal glass">
<div class="flex gap-1 items-center mb-3">
<svg class="w-4 h-4 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"/></svg>
<svg class="w-4 h-4 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"/></svg>
<svg class="w-4 h-4 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"/></svg>
<svg class="w-4 h-4 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"/></svg>
<svg class="w-4 h-4 text-yellow-400" fill="currentColor" viewBox="0 0 20 20"><path d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z"/></svg>
</div>
<p class="mb-4 text-sm leading-relaxed text-gray-300">"Clean, fast, and private. I switched from Authy because I wanted something that doesn't need an account or phone number."</p>
<div class="flex gap-3 items-center">
<div class="flex justify-center items-center w-8 h-8 text-xs font-bold rounded-full bg-brand-500/20 text-brand-300">RL</div>
<div><p class="text-sm font-medium">Robert L.</p><p class="text-xs text-gray-500">Freelance Designer</p></div>
</div>
</div>
</div>
</div>
</section>
<!-- ═══════════════════════════════════════════════ -->
<!-- DOWNLOAD CTA -->
<!-- ═══════════════════════════════════════════════ -->
<section id="download" class="overflow-hidden relative py-28">
<div class="absolute top-0 left-0 w-full h-px bg-gradient-to-r from-transparent to-transparent via-brand-500/30"></div>
<div class="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 w-[800px] h-[400px] rounded-full bg-brand-500/10 blur-[150px] pointer-events-none"></div>
<div class="relative z-10 px-6 mx-auto max-w-3xl text-center reveal">
<div class="flex justify-center items-center mx-auto mb-8 w-20 h-20 rounded-3xl shadow-2xl bg-brand-500 shadow-brand-500/30 animate-float">
<svg class="w-10 h-10 text-white" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" viewBox="0 0 24 24"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/></svg>
</div>
<h2 class="mb-4 text-4xl font-extrabold tracking-tight sm:text-5xl">
Ready to protect your accounts?
</h2>
<p class="mx-auto mb-10 max-w-lg text-lg text-gray-400">
Download for free. No sign-up, no credit card, no catch. Works on macOS and Windows.
</p>
<div class="flex flex-col gap-4 justify-center items-center sm:flex-row" id="download-buttons">
<a href="https://github.com/techmely/authenticator-app-pro/releases/latest" class="flex gap-3 items-center px-7 py-4 w-full rounded-2xl border transition-all group bg-white/5 border-white/10 hover:bg-white/10 hover:border-white/20 sm:w-auto" id="btn-macos">
<svg class="w-8 h-8 text-gray-300" viewBox="0 0 24 24" fill="currentColor"><path d="M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.8-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z"/></svg>
<div class="text-left">
<p class="text-[11px] text-gray-500 leading-none">Download for</p>
<p class="text-lg font-semibold leading-tight text-white">macOS</p>
</div>
</a>
<a href="https://github.com/techmely/authenticator-app-pro/releases/latest" class="flex gap-3 items-center px-7 py-4 w-full rounded-2xl border transition-all group bg-white/5 border-white/10 hover:bg-white/10 hover:border-white/20 sm:w-auto" id="btn-windows">
<svg class="w-8 h-8 text-gray-300" viewBox="0 0 24 24" fill="currentColor"><path d="M0 3.449L9.75 2.1v9.451H0m10.949-9.602L24 0v11.4H10.949M0 12.6h9.75v9.451L0 20.699M10.949 12.6H24V24l-12.9-1.801"/></svg>
<div class="text-left">
<p class="text-[11px] text-gray-500 leading-none">Download for</p>
<p class="text-lg font-semibold leading-tight text-white">Windows</p>
</div>
</a>
</div>
<!-- macOS install note -->
<div class="p-4 mx-auto mt-8 max-w-lg text-left rounded-xl border bg-white/5 border-white/10">
<p class="flex gap-2 items-center mb-2 text-sm font-medium text-gray-300">
<svg class="flex-shrink-0 w-4 h-4 text-amber-400" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path d="M12 9v4m0 4h.01M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"/></svg>
macOS: First time opening?
</p>
<p class="mb-2 text-xs text-gray-500">If you see "app is damaged", open Terminal and run:</p>
<div class="flex gap-2 items-center">
<code class="flex-1 px-3 py-2 font-mono text-xs rounded-lg select-all bg-black/40 text-brand-300">xattr -cr /Applications/Authenticator\ Pro.app</code>
<button onclick="navigator.clipboard.writeText('xattr -cr /Applications/Authenticator\\ Pro.app');this.textContent='Copied!';setTimeout(()=>this.textContent='Copy',1500)" class="flex-shrink-0 px-3 py-2 text-xs rounded-lg transition-colors bg-brand-500/20 text-brand-300 hover:bg-brand-500/30">Copy</button>
</div>
</div>
<p class="mt-6 text-center">
<a href="https://github.com/techmely/authenticator-app-pro/releases" class="text-sm text-gray-500 underline transition-colors hover:text-gray-300 underline-offset-4 decoration-gray-700 hover:decoration-gray-500">
View all versions & release notes
</a>
</p>
<p class="mt-4 text-sm text-gray-600">
Free & open source · No account required · v1.0.0
</p>
</div>
</section>
<!-- ═══════════════════════════════════════════════ -->
<!-- FOOTER -->
<!-- ═══════════════════════════════════════════════ -->
<footer class="py-12 border-t border-gray-900">
<div class="px-6 mx-auto max-w-6xl">
<div class="flex flex-col gap-6 justify-between items-center md:flex-row">
<div class="flex gap-2.5 items-center">
<div class="flex justify-center items-center w-8 h-8 rounded-lg bg-brand-500">
<svg class="w-4 h-4 text-white" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/></svg>
</div>
<span class="font-semibold text-gray-400">Authenticator Pro</span>
</div>
<div class="flex gap-6 items-center text-sm text-gray-600">
<a href="#why" class="transition-colors hover:text-gray-300">Why</a>
<a href="#features" class="transition-colors hover:text-gray-300">Features</a>
<a href="#how" class="transition-colors hover:text-gray-300">How it works</a>
<a href="#download" class="transition-colors hover:text-gray-300">Download</a>
</div>
<p class="text-sm text-gray-700">© 2026 Techmely. All rights reserved.</p>
</div>
</div>
</footer>
<!-- ═══════════════════════════════════════════════ -->
<!-- SCRIPTS -->
<!-- ═══════════════════════════════════════════════ -->
<script>
const navbar = document.getElementById('navbar');
window.addEventListener('scroll', () => {
navbar.classList.toggle('glass', window.scrollY > 50);
navbar.classList.toggle('shadow-lg', window.scrollY > 50);
navbar.classList.toggle('shadow-black/20', window.scrollY > 50);
});
const observer = new IntersectionObserver(
(entries) => {
entries.forEach((entry, i) => {
if (entry.isIntersecting) {
setTimeout(() => entry.target.classList.add('visible'), i * 80);
observer.unobserve(entry.target);
}
});
},
{ threshold: 0.1, rootMargin: '0px 0px -60px 0px' }
);
document.querySelectorAll('.reveal').forEach((el) => observer.observe(el));
document.querySelectorAll('#mobile-menu a').forEach((a) =>
a.addEventListener('click', () => document.getElementById('mobile-menu').classList.add('hidden'))
);
// ── Auto-detect OS & update download buttons ──
(function() {
const REPO = 'techmely/authenticator-app-pro';
const API = `https://api.github.com/repos/${REPO}/releases/latest`;
const btnMac = document.getElementById('btn-macos');
const btnWin = document.getElementById('btn-windows');
// Detect user's OS and highlight the right button
const isMac = navigator.platform.toUpperCase().indexOf('MAC') >= 0
|| navigator.userAgent.indexOf('Mac') >= 0;
if (isMac) {
btnMac.classList.add('ring-2', 'ring-brand-500', 'bg-white/10');
} else {
btnWin.classList.add('ring-2', 'ring-brand-500', 'bg-white/10');
}
// Fetch latest release and set direct download links
fetch(API)
.then(r => r.ok ? r.json() : null)
.then(release => {
if (!release || !release.assets) return;
release.assets.forEach(asset => {
const name = asset.name.toLowerCase();
if (name.endsWith('.dmg') && name.includes('aarch64')) {
// Apple Silicon .dmg (preferred for modern Macs)
if (isMac) btnMac.href = asset.browser_download_url;
} else if (name.endsWith('.dmg') && name.includes('x64')) {
// Intel Mac .dmg
if (!isMac) {} // ignore for Windows users
else if (!btnMac.href.includes('github.com/thaycacac')) {} // already set to ARM
else btnMac.href = asset.browser_download_url;
} else if (name.endsWith('.dmg')) {
// Any .dmg fallback
if (btnMac.href.includes('/releases/latest')) btnMac.href = asset.browser_download_url;
} else if (name.endsWith('.msi')) {
btnWin.href = asset.browser_download_url;
} else if (name.endsWith('.exe') && !btnWin.href.includes('.msi')) {
btnWin.href = asset.browser_download_url;
}
});
// Update version label
const ver = release.tag_name;
const vLabel = document.querySelector('#download .text-gray-600');
if (vLabel && ver) {
vLabel.innerHTML = vLabel.innerHTML.replace('v1.0.0', ver);
}
})
.catch(() => { /* silently fallback to /releases/latest page */ });
})();
</script>
</body>
</html>