-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
763 lines (659 loc) · 32 KB
/
Copy pathindex.html
File metadata and controls
763 lines (659 loc) · 32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>KeyLock Password Manager Pro | Cross-Platform Data Sovereignty</title>
<style>
/* CORE STYLES - Inherited from KeyLock Corporate Standards */
html {
scroll-behavior: smooth;
scroll-padding-top: 110px; /* Ensures anchor links clear the tracking layout */
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
:root {
--kl-blue: #0056b3;
--kl-dark: #333;
--kl-light: #f8f9fa;
/* BRAND TINT GRADIENT STEP: Clean, professional corporate blue tint */
--kl-blue-tint: #f0f5fa;
--kl-gold: #d4af37;
--kl-warning: #ffc107;
--kl-steelblue: #4682B4;
--kl-steelblue-hover: #36648B;
}
body {
font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
line-height: 1.6;
color: var(--kl-dark);
background-color: #fff;
}
/* SITE STATUS ALERT BANNER */
.construction-banner {
background-color: var(--kl-warning);
color: #000;
text-align: center;
padding: 12px 5%;
font-size: 0.95rem;
border-bottom: 1px solid #e0a800;
}
.construction-banner strong {
font-weight: 800;
}
/* CONSOLIDATED HEADER WRAPPER - Enforces smooth sticky tracking */
.header-wrapper {
position: sticky;
top: 0;
z-index: 1000;
background: #ffffff;
}
/* NAVIGATION */
nav {
background: #ffffff;
border-bottom: 3px solid var(--kl-blue);
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 5%;
height: 110px;
}
.logo-container img {
height: 80px;
width: auto;
display: block;
}
.nav-links {
display: flex;
align-items: center;
}
.nav-links a, .dropbtn {
text-decoration: none;
color: var(--kl-dark);
font-weight: 700;
margin-left: 25px;
font-size: 1.1rem;
transition: color 0.2s;
}
.nav-links a:hover, .dropdown:hover .dropbtn {
color: var(--kl-blue);
}
/* DROPDOWN LOGIC */
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #ffffff;
min-width: 200px;
box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
border-radius: 4px;
border-top: 3px solid var(--kl-blue);
top: 100%;
left: 25px;
padding: 10px 0;
}
.dropdown-content a {
color: var(--kl-dark);
padding: 12px 20px;
margin: 0;
display: block;
font-size: 1rem;
border-bottom: 1px solid #eee;
}
.dropdown-content a:last-child { border-bottom: none; }
.dropdown:hover .dropdown-content { display: block; }
/* GRADUATED BLUE GRADIENT FLOW ARCHITECTURE (MATCHED TO MYGOLF 50% RATIO) */
/* 1. Hero: Pure White -> Brand Blue Tint */
.hero {
text-align: center;
background: linear-gradient(180deg, #ffffff 0%, var(--kl-blue-tint) 50%);
padding: 80px 10%;
}
/* 2. Download: Solid Pure White Container */
.download-section {
background-color: #ffffff;
text-align: center;
padding: 80px 10%;
}
/* 3. Features: Pure White -> Brand Blue Tint */
.features-section {
text-align: center;
background: linear-gradient(180deg, #ffffff 0%, var(--kl-blue-tint) 50%);
padding: 80px 10%;
}
/* 4. Screenshots: Solid Pure White Container */
.screenshots-section {
text-align: center;
background-color: #ffffff;
padding: 80px 10%;
}
/* 5. FAQ Section: Pure White -> Brand Blue Tint */
.faq-section {
background: linear-gradient(180deg, #ffffff 0%, var(--kl-blue-tint) 50%);
padding: 80px 5%;
max-width: 100%;
}
/* 6. Mission/About: Solid Pure White Container */
.about-section {
background-color: #ffffff;
padding: 80px 10%;
}
/* 7. Footer: Intensified Graduated Blue Progression */
footer {
background: linear-gradient(180deg, var(--kl-blue-tint) 0%, #d9e6f2 100%);
border-top: 4px solid var(--kl-blue); /* Matches premium header weight */
color: var(--kl-dark);
text-align: center;
padding: 60px 10%;
margin-top: 0; /* Aligns flush with white section above */
}
/* CONTENT COMPONENT STYLES */
.hero h1 {
font-size: 3.5rem;
color: #000;
line-height: 1.2;
margin-bottom: 20px;
}
.hero p {
font-size: 1.3rem;
color: #555;
max-width: 800px;
margin: 20px auto 40px;
}
.download-card {
background: #fff;
max-width: 500px;
margin: 0 auto;
padding: 40px;
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
border: 1px solid #eef0f2;
}
.version-meta {
font-size: 0.95rem;
color: #666;
margin-top: 10px;
font-weight: 600;
}
/* SCREENSHOTS / GALLERY */
.gallery-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 30px;
padding: 40px 0;
max-width: 1400px;
margin: 0 auto;
}
.gallery-item {
flex: 1;
min-width: 350px;
max-width: 450px;
text-align: center;
}
.gallery-item img {
width: 100%;
border-radius: 10px;
border: 1px solid #ddd;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.gallery-item p { margin-top: 15px; font-weight: 600; color: #555; }
/* FEATURE CARD GRID */
.feature-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 25px;
padding: 40px 0;
}
.card {
flex: 1;
min-width: 300px;
max-width: 380px;
padding: 35px;
border: 1px solid #eee;
border-radius: 12px;
text-align: center;
background: #fff;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
transition: transform 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
}
.card h3 {
font-size: 1.25rem;
margin-bottom: 12px;
color: #000;
}
.card p {
font-size: 0.95rem;
color: #666;
}
.kl-highlight {
border-top: 5px solid var(--kl-blue);
}
/* NATIVE ACCORDION FAQ BLOCK STYLES */
.faq-wrapper {
max-width: 900px;
margin: 0 auto;
text-align: left;
}
.faq-section h2 {
font-size: 2.5rem;
color: var(--kl-blue);
margin-bottom: 30px;
text-align: center;
}
.faq-item {
margin-bottom: 15px;
background: #fff;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0,0,0,0.03);
overflow: hidden;
}
.faq-item summary {
padding: 18px 20px;
font-weight: 700;
color: var(--kl-blue); /* This sets all current and future questions to blue globally */
cursor: pointer;
list-style: none;
position: relative;
font-size: 1.1rem;
user-select: none;
}
.faq-item summary::-webkit-details-marker {
display: none;
}
.faq-item summary::after {
content: '+';
position: absolute;
right: 20px;
font-size: 1.5rem;
line-height: 1;
color: var(--kl-blue);
font-weight: bold;
}
.faq-item[open] summary::after {
content: '−';
}
.faq-content-block {
padding: 20px;
color: #555;
background: #fff;
border-top: 1px solid #eef0f2;
font-size: 1rem;
}
.faq-content-block strong {
color: #000;
}
.faq-content-block ul, .faq-content-block ol {
margin: 10px 0 15px 25px;
}
.faq-content-block ul li, .faq-content-block ol li {
margin-bottom: 6px;
}
.faq-item,
.faq-item summary,
.faq-item .faq-content-block {
border: none !important;
box-shadow: none !important;
outline: none !important;
}
.faq-item::before,
.faq-item::after,
.faq-item summary::before,
.faq-item summary::after {
display: none !important;
content: "";
}
/* BUTTONS */
.btn {
display: inline-block;
background: var(--kl-blue);
color: white !important;
padding: 15px 35px;
border-radius: 5px;
text-decoration: none;
font-weight: bold;
margin: 10px;
transition: background 0.2s;
}
.btn:hover {
background: #004494;
}
.btn-outline {
background: transparent;
color: var(--kl-blue) !important;
border: 2px solid var(--kl-blue);
}
/* Steel Blue Download Button Modification */
.btn-download {
background: var(--kl-steelblue);
margin-top: 20px;
}
.btn-download:hover {
background: var(--kl-steelblue-hover);
}
/* FOOTER BRANDING AND ACCENT LINKS */
footer h2 {
margin-bottom: 5px;
color: var(--kl-blue);
font-weight: 800;
letter-spacing: 0.5px;
}
.footer-subtitle {
margin: 2px 0 25px 0;
color: #444;
font-weight: 600;
font-size: 0.95rem;
}
footer a {
color: var(--kl-dark);
text-decoration: none;
font-weight: 700;
margin: 0 12px;
font-size: 0.95rem;
transition: color 0.2s ease;
}
footer a:hover {
color: var(--kl-blue);
text-decoration: underline;
}
.footer-links {
margin-bottom: 25px;
display: flex;
justify-content: center;
gap: 15px;
flex-wrap: wrap;
}
.footer-copyright {
margin-top: 20px;
font-size: 0.85rem;
color: #555;
font-weight: 600;
line-height: 1.5;
}
/* PANCAKE MENU TOGGLE CONTROLS */
#menu-toggle { display: none; }
.hamburger-icon {
display: none;
font-size: 2.2rem;
color: var(--kl-blue);
cursor: pointer;
user-select: none;
width: 40px;
text-align: center;
font-weight: bold;
}
.hamburger-icon::after { content: '☰'; }
#menu-toggle:checked + .hamburger-icon::after { content: '✕'; font-size: 2.5rem; line-height: 1;}
/* MOBILE MEDIA RESPONSIVENESS */
@media (max-width: 768px) {
.hamburger-icon { display: block; }
.nav-links {
display: none;
flex-direction: column;
position: absolute;
top: 110px;
left: 0;
width: 100%;
background: #fff;
border-bottom: 3px solid var(--kl-blue);
padding: 15px 0;
box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
#menu-toggle:checked ~ .nav-links { display: flex; }
.nav-links a, .dropdown {
margin: 10px 0;
width: 100%;
text-align: left;
}
.nav-links a {
margin-left: 0;
padding-left: 20px;
}
.dropbtn {
display: block;
color: var(--kl-blue);
margin: 10px 0 5px 0;
padding-left: 20px;
pointer-events: none;
text-align: left;
}
.dropdown-content {
display: block !important;
position: static;
box-shadow: none;
border-top: none;
background: #fdfdfd;
padding: 5px 0;
}
.dropdown-content a {
padding: 8px 0;
padding-left: 40px;
font-size: 0.95rem;
color: #555;
}
.hero h1 { font-size: 2.4rem; }
.download-section, .features-section, .screenshots-section, .faq-section, .about-section { padding: 60px 5%; }
footer h2 { font-size: 1.5rem; }
.footer-links { font-size: 0.85rem; gap: 8px; }
}
</style>
</head>
<body id="top">
<div class="header-wrapper">
<div class="construction-banner">
🚧 <strong>UNDER CONSTRUCTION:</strong> This site and KeyLock Password Manager Pro are currently under active development. <strong>Coming Soon!</strong>
</div>
<nav>
<div class="logo-container">
<a href="#top" onclick="document.getElementById('menu-toggle').checked=false;">
<img src="KeyLock_logo_Light.png" alt="KeyLock Logo">
</a>
</div>
<input type="checkbox" id="menu-toggle">
<label for="menu-toggle" class="hamburger-icon"></label>
<div class="nav-links">
<a href="#top">Home</a>
<a href="#download" onclick="document.getElementById('menu-toggle').checked=false;">Download</a>
<a href="#features" onclick="document.getElementById('menu-toggle').checked=false;">Features</a>
<a href="#screenshots" onclick="document.getElementById('menu-toggle').checked=false;">Screenshots</a>
<div class="dropdown">
<span class="dropbtn">Resources ▾</span>
<div class="dropdown-content">
<a href="docs/getting_started.html" onclick="document.getElementById('menu-toggle').checked=false;">Getting Started</a>
<a href="docs/user_manual.html" onclick="document.getElementById('menu-toggle').checked=false;">User Manual</a>
<a href="#faq" onclick="document.getElementById('menu-toggle').checked=false;">FAQ / Setup</a>
<a href="https://kpmpro.keylocksoftware.com/SUPPORT.html?type=bug" onclick="document.getElementById('menu-toggle').checked=false;">Report a Bug</a>
<a href="https://kpmpro.keylocksoftware.com/SUPPORT.html?type=feature" onclick="document.getElementById('menu-toggle').checked=false;">Request a Feature</a>
</div>
</div>
<a href="#about" onclick="document.getElementById('menu-toggle').checked=false;">About</a>
<a href="https://keylocksoftware.com">KeyLock Software</a>
</div>
</nav>
</div>
<!-- SECTION 1: HERO (GRADIENT CONTAINER) -->
<header id="home" class="hero">
<span style="background: var(--kl-blue); color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; text-transform: uppercase; letter-spacing: 1px;">
Next-Generation Production Engine
</span>
<h1>Sovereign Control.<br>Hardened Cross-Platform Security.</h1>
<p><span style="color: var(--kl-blue); font-weight: bold;">KeyLock Password Manager Pro</span> brings defense-in-depth protection directly to your local environments and across your devices. Zero centralized clouds. Absolute cryptographic authority.</p>
<a href="#features" class="btn">Explore Pro Architecture</a>
</header>
<!-- SECTION 2: DOWNLOAD (WHITE CONTAINER) -->
<section id="download" class="download-section">
<h2 style="font-size: 2.5rem; color: var(--kl-blue); margin-bottom: 25px;">Download KeyLock Password Manager PRO</h2>
<div class="download-card">
<h2 style="color: #000; font-size: 1.8rem; margin-bottom: 10px;">Production Environments</h2>
<p style="color: #555; font-size: 1rem;">Deploy the standalone KeyLock Password Manager PRO core client directly to your local Windows system.</p>
<a href="#" class="btn waves-effect waves-light btn-download" onclick="alert('KeyLock Password Manager PRO Production Installer is currently being finalized. Check back soon!'); return false;">
Download for Windows
</a>
<div class="version-meta">
Production Architecture: v<span id="latest-version">2.0.0</span>
</div>
</div>
</section>
<!-- SECTION 3: FEATURES (GRADIENT CONTAINER) -->
<section id="features" class="features-section">
<h2 style="font-size: 2.5rem; color: var(--kl-blue); margin-bottom: 10px;">The Pro Cryptographic Stack</h2>
<p style="color: #666; max-width: 700px; margin: 0 auto 30px;">Engineered to ensure your records remain mathematically unassailable, regardless of where your database file is stored.</p>
<div class="feature-grid">
<div class="card kl-highlight">
<h3>AES-256-GCM Encrypted</h3>
<p>Utilizes advanced Authenticated Encryption with Associated Data (AEAD) in Galois/Counter Mode. This architecture provides high-entropy data concealment while guaranteeing that your database payload cannot be altered or tampered with by external actors.</p>
</div>
<div class="card kl-highlight">
<h3>Argon2id Key Derivation</h3>
<p>Employs the industry-standard, memory-hard hashing mechanism specifically configured with auto-scaling layers. This function delivers exceptional defense thresholds against GPU, ASIC, and distributed cluster brute-force vectors.</p>
</div>
<div class="card kl-highlight">
<h3>HKDF Cryptographic Separation</h3>
<p>Implements HMAC-based Extract-and-Expand Key Derivation Function paths. By splitting your master credential into dedicated, independent keys for data transformation and verification paths, cross-key leakage risks are eliminated.</p>
</div>
<div class="card kl-highlight">
<h3>AAD Metadata Binding</h3>
<p>Binds structural metadata components (including indexing structures and version schemas) securely to the encrypted payload using Authenticated Additional Data boundaries. This completely mitigates structural blocks and block-swapping threats.</p>
</div>
<div class="card kl-highlight">
<h3>Zero-Knowledge Local-First</h3>
<p>Encryption transformations happen exclusively on your device before writing to the SQLite database frame. No server keys, no company records, no backdoor mechanics. You are the sole custodian of your digital identity.</p>
</div>
<div class="card kl-highlight">
<h3>Sovereign Cloud Syncing</h3>
<p>Full native and cross-device compatibility built directly into the file engine. Securely manage, read, and write encrypted local vaults across Windows desktop platforms, Apple iOS, and Android ecosystems utilizing your personal public storage nodes.</p>
</div>
</div>
</section>
<!-- SECTION 4: SCREENSHOTS (WHITE CONTAINER) -->
<section id="screenshots" class="screenshots-section">
<h2 style="font-size: 2.5rem; color: var(--kl-blue); margin-bottom: 10px;">Screenshots</h2>
<p style="color: #666; margin-bottom: 20px;">A closer look at the KeyLock user experience.</p>
<div class="gallery-container">
<div class="gallery-item"><img src="./docs/media/KeyLock_Pro_Main_Screen.png" alt="Dashboard"><p>Main Dashboard</p></div>
<div class="gallery-item"><img src="./docs/media/Login_Screen.png" alt="Login"><p>Login Screen</p></div>
<div class="gallery-item"><img src="./docs/media/Entry_Form.png" alt="Data Entry"><p>Data Entry Screen</p></div>
<div class="gallery-item"><img src="./docs/media/Settings.png" alt="Settings"><p>Settings Screen</p></div>
<div class="gallery-item"><img src="./docs/media/Password_Generator.png" alt="Generator"><p>Password Generator</p></div>
<div class="gallery-item"><img src="./docs/media/Import_Mapping.png" alt="Mapping"><p>Import Auto Mapping</p></div>
</div>
</section>
<!-- SECTION 5: FAQ & SETUP (GRADIENT CONTAINER) -->
<section id="faq" class="faq-section">
<h2>Support & FAQ</h2>
<div class="faq-wrapper">
<details class="faq-item">
<summary>What makes KeyLock Password Manager Pro different from legacy versions?</summary>
<div class="faq-content-block">
The core engine has been completely rewritten from the ground up to achieve high-performance <strong>Cross-Platform Interoperability</strong>. KeyLock Pro replaces legacy Python-bound Fernet wrappers with universally recognized hardware-accelerated encryption algorithms. This migration unlocks native, cross-platform performance across Windows Desktops, Apple iOS platforms, and Android environments using a standardized secure JSON database frame.
</div>
</details>
<details class="faq-item">
<summary>How does the "Bring Your Own Cloud" (BYOC) data engine function?</summary>
<div class="faq-content-block">
KeyLock Pro adheres to a strict <strong>local-first execution template</strong>. We do not operate host servers or maintain database storage layers. Your encrypted database file resides completely within your personal storage space (such as iCloud, Google Drive, Dropbox, or OneDrive). The Desktop and Mobile companion apps stream, mutate, and evaluate these local nodes strictly inside volatile device memory boundaries.
</div>
</details>
<details class="faq-item">
<summary>What happens to my old entries when migrating from the legacy open-source app?</summary>
<div class="faq-content-block">
Migration is completely automated and safe. When you launch the <strong>Windows Desktop Pro client</strong> and point it to your legacy SQLite database file, the application detects the legacy Fernet structures on the fly. Upon confirming your identity with your Master Password, the engine completely decrypts your assets and instantly rebuilds, saves, and hardens the payload using the new AES-256-GCM schema without losing data.
</div>
</details>
<details class="faq-item">
<summary>How do I setup my initial database (.db)?</summary>
<div class="faq-content-block">
To preserve your local-first sovereignty, KeyLock Pro establishes its default database file path inside your local <strong>My Documents/KeyLock Databases/</strong> folder path. However, if you plan to access your records via the companion mobile apps on Apple iOS or Android alongside your Windows Desktop client, you should locate your newly created <code>.db</code> file directly within a monitored public cloud folder node—such as your personal Apple iCloud Drive, Dropbox, or Google Drive directory.
</div>
</details>
<details class="faq-item">
<summary>How does Cloud Sync work?</summary>
<div class="faq-content-block">
Because KeyLock Pro is built on a zero-server framework, cross-device synchronization relies completely on your personal cloud nodes. When you update a record on your Windows machine, your file provider handles uploading the mutated database file. When you open the application on your mobile device, it opens and decrypts the latest cloud variant in runtime memory. Embedded AAD transaction timestamps execute a smooth conflict check if items change concurrently.
</div>
</details>
<details class="faq-item">
<summary>How does multi-device synchronization handle concurrent file access conflicts?</summary>
<div class="faq-content-block">
Since data transitions occur within your personal public storage accounts, your selected cloud platform handles baseline background file changes. To protect structural integrity during concurrent edits, KeyLock Pro embeds <strong>AAD-bound transactional timestamps</strong> directly into the database metadata layers, executing a modern "last-write-wins" parsing protocol that keeps files synchronized smoothly across all devices.
</div>
</details>
<details class="faq-item">
<summary>How do I import my data from other Password Managers?</summary>
<div class="faq-content-block">
Migration to KeyLock Pro is fast and streamlined:
<ol>
<li><strong>Export:</strong> Initiate an unencrypted export from your legacy password manager strictly into a standard <strong>CSV file</strong>.</li>
<li><strong>Auto-Mapping:</strong> Open KeyLock Pro, navigate to the Import tool, and select the file. The client intelligently reads columns like "Login" or "Pass" and assigns them to native KeyLock database fields.</li>
<li><strong>Refine:</strong> Use the interactive dropdown layout to fine-tune fields manually. For unstructured components that don't match, you can select to safely discard them or choose to append the entries directly to the scrollable Notes field.</li>
</ol>
</div>
</details>
<details class="faq-item">
<summary>How do I Export my .db?</summary>
<div class="faq-content-block">
KeyLock Pro lets you run manual data extractions into either standard unencrypted <strong>CSV spreadsheets</strong> or <strong>Plain Text (.txt) formats</strong>. This is highly useful for running system data edits or generating offline backups. <br><br>
⚠️ <strong>CRITICAL WARNING:</strong> Exported files strip away the cryptographic layer and save your plain text credentials in the clear. Always save unencrypted files to an offline hardware layer like a secure USB node or erase them immediately after use.
</div>
</details>
<details class="faq-item">
<summary>How do I backup my .db?</summary>
<div class="faq-content-block">
To guard your data framework against device failure, click <strong>Database > Backup</strong>. This opens a file save prompt that pre-populates an encrypted backup string matching your current data structures. KeyLock Pro processes and seals your historical files into a uniquely stamped, high-entropy <strong>`.enc` backup container</strong>, which can safely be stored in your third-party public cloud hubs.
</div>
</details>
<details class="faq-item">
<summary>How do I restore a .db file?</summary>
<div class="faq-content-block">
If you deploy onto a new environment or need to revert an accidental edit, select <strong>Database > Restore From Backup</strong>. Navigate to your protected directory and select your targeted <strong>`.enc` backup container</strong>. Because the payload retains the strict Zero-Knowledge security boundaries of your original data frame, <strong>you must provide the exact Master Password</strong> used at the moment of backup creation to unlock and process the file swap.
</div>
</details>
<details class="faq-item">
<summary>What is the impact of a lost Master Password under a Zero-Knowledge model?</summary>
<div class="faq-content-block">
Because KeyLock Pro treats user privacy as absolute, the system operates with zero backdoors or remote administration access. Your Master Password is transformed directly into an encryption key via memory-hard Argon2id parameters. <strong>We do not maintain registration keys or password logs.</strong> If you lose your Master Password, recovery is mathematically impossible. We strongly advise storing a physical copy of your Master Password in a secure, fireproof safe.
</div>
</details>
</div>
</section>
<!-- SECTION 6: MISSION/ABOUT (WHITE CONTAINER) -->
<section id="about" class="about-section" style="max-width: 100%; margin: 0 auto;">
<div style="max-width: 900px; margin: 0 auto; text-align: left;">
<h1 style="color: var(--kl-blue); font-size: 2.5rem; margin-bottom: 30px; text-align: center;">The KeyLock Mission</h1>
<p style="font-size: 1.2rem; margin-bottom: 20px; text-align: center;">
In an era where personal data is treated as a commodity, KeyLock was born from a simple necessity:
<strong>Absolute Data Sovereignty.</strong>
</p>
<h3 style="margin: 30px 0 15px; color: var(--kl-blue);">Why Local-First?</h3>
<p>KeyLock Password Manager Pro is a premium data sovereignty product engineered by KeyLock Software. Your data should never be a target. By removing the centralized commercial cloud, we remove the incentive for hackers. Your vault is your own. Whether you keep it on a local machine, thumb drive, Google or Dropbox, you are the only one with the key.</p>
<h3 style="margin: 30px 0 15px; color: var(--kl-blue);">Windows Desktop Version</h3>
<p>KeyLock Password Manager Pro get started today by visiting the Getting Started Guide and the User Manual.</p>
</div>
</section>
<!-- FOOTER (INTENSIFIED GRADIENT WAVE ANCHOR) -->
<footer id="footer">
<h2>KeyLock Password Manager Pro</h2>
<p class="footer-subtitle">by <a href="https://keylocksoftware.com">KeyLock Software</a></p>
<div class="footer-links">
<a href="#" style="color: #666; cursor: default;" onclick="return false;">Privacy Policy (Pending Review)</a>
<span style="color: var(--kl-blue); opacity: 0.4; font-weight: bold;">|</span>
<a href="#" style="color: #666; cursor: default;" onclick="return false;">Terms & Conditions (Pending Review)</a>
<span style="color: var(--kl-blue); opacity: 0.4; font-weight: bold;">|</span>
<a href="#top">Back to Top</a>
</div>
<p class="footer-copyright">
© 2026 John Stone dba KeyLock Software | All Rights Reserved
</p>
</footer>
</body>
</html>