-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
646 lines (590 loc) · 29 KB
/
privacy.html
File metadata and controls
646 lines (590 loc) · 29 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
<!DOCTYPE html>
<html lang="en" class="light overflow-x-hidden">
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>Privacy Policy | BlueKeys</title>
<meta name="description" content="Privacy Policy for BlueKeys Bluetooth HID keyboard and mouse application. Designed with privacy in mind, working offline and locally." />
<link rel="icon" type="image/x-icon" href="assets/logo/logo%20.ico" />
<!-- Tailwind CSS (for layout utilities and forms) -->
<script src="https://cdn.tailwindcss.com?plugins=forms,container-queries"></script>
<!-- Tailwind Config (harmonized with welcome & features page) -->
<script>
tailwind.config = {
darkMode: "class",
theme: {
extend: {
colors: {
primary: "#000000",
secondary: "#8ecae6",
accent: "#8ecae6",
surface: "#FFFFFF",
"on-surface": "#1a1a1a",
"surface-container-low": "hsla(197, 60%, 93%, 0.4)",
},
borderRadius: {
DEFAULT: "0.125rem",
lg: "0.25rem",
xl: "0.5rem",
full: "9999px",
},
fontFamily: {
headline: ["Manrope", "sans-serif"],
body: ["Inter", "sans-serif"],
},
},
},
};
</script>
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Manrope:wght@400;700;800&family=Inter:wght@300;400;500;600&display=swap"
rel="stylesheet" />
<!-- Material Symbols -->
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap"
rel="stylesheet" />
<!-- Embedded Premium Custom Styles -->
<style>
/* Prevent horizontal scrollbar */
html,
body {
overflow-x: hidden;
max-width: 100vw;
}
body {
background-color: #f5f5f7bc;
background-image:
radial-gradient(at 0% 0%, rgba(142, 202, 230, 0.25) 0px, transparent 50%),
radial-gradient(at 100% 100%, rgba(142, 202, 230, 0.15) 0px, transparent 50%);
}
/* Hide default cursor if custom cursor runs */
@media (hover: hover) and (pointer: fine) {
body.has-custom-cursor,
body.has-custom-cursor *,
body.has-custom-cursor *::before,
body.has-custom-cursor *::after {
cursor: none !important;
}
}
#custom-cursor {
display: none;
position: fixed;
top: 0;
left: 0;
width: 22px;
height: 22px;
pointer-events: none;
z-index: 99999;
will-change: transform;
backface-visibility: hidden;
transition: opacity 0.15s ease;
opacity: 0;
}
#custom-cursor img {
width: 100%;
height: 100%;
object-fit: contain;
transform: rotate(20deg);
transform-origin: 18% 15%;
filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
transition: transform 0.16s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.16s ease;
}
#custom-cursor.is-hovering img {
transform: rotate(20deg) scale(1.18);
filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.22));
}
#custom-cursor.is-clicking img {
transform: rotate(20deg) scale(0.88);
filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.14));
}
@media (hover: hover) and (pointer: fine) {
#custom-cursor {
display: block;
}
}
/* Glassmorphism containers */
.glass-card {
background: rgba(255, 255, 255, 0.65);
backdrop-filter: blur(24px);
-webkit-backdrop-filter: blur(24px);
border: 1px solid rgba(255, 255, 255, 0.5);
box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.05);
}
/* Ambient background orbs */
.ambient-orb {
position: absolute;
border-radius: 50%;
pointer-events: none;
z-index: -1;
filter: blur(120px);
transform: translateZ(0);
opacity: 0.5;
}
.ambient-orb-1 {
top: 10%;
left: -10%;
width: 40vw;
height: 40vw;
background: rgba(142, 202, 230, 0.3);
}
.ambient-orb-2 {
bottom: 15%;
right: -10%;
width: 45vw;
height: 45vw;
background: rgba(142, 202, 230, 0.2);
}
/* Back Nav */
.back-nav {
transition: transform 0.3s ease, color 0.3s ease;
}
.back-nav:hover .arrow-icon {
transform: translateX(-4px);
}
</style>
</head>
<body class="font-body text-on-surface antialiased overflow-x-hidden relative min-h-screen pb-16">
<!-- Custom Cursor -->
<div id="custom-cursor" aria-hidden="true">
<img src="assets/Mouse.svg" alt="" draggable="false" />
</div>
<!-- Ambient Glow Orbs -->
<div class="ambient-orb ambient-orb-1"></div>
<div class="ambient-orb ambient-orb-2"></div>
<!-- Main Container -->
<div class="max-w-4xl mx-auto px-6 pt-12 md:pt-20 relative z-10">
<!-- Minimal Back Navigation -->
<div class="mb-8">
<a href="index.html" id="back-to-home-link"
class="back-nav inline-flex items-center gap-2 text-sm font-bold tracking-widest uppercase text-primary/50 hover:text-primary transition-colors">
<span class="material-symbols-outlined arrow-icon transition-transform duration-300">arrow_back</span>
<span>Back to home</span>
</a>
</div>
<!-- Privacy Header Card -->
<header class="glass-card rounded-[2rem] p-8 md:p-12 mb-8 text-center relative overflow-hidden">
<!-- Top Decorative Accent Bar -->
<div class="absolute top-0 left-0 right-0 h-1.5 bg-gradient-to-r from-secondary via-blue-500 to-indigo-600"></div>
<div class="inline-flex items-center justify-center w-16 h-16 rounded-full bg-secondary/15 text-primary mb-6">
<span class="material-symbols-outlined text-[32px] font-light">shield_lock</span>
</div>
<h1 class="font-headline font-extrabold text-4xl md:text-5xl tracking-tight text-neutral-900 mb-4">
Privacy Policy
</h1>
<p class="text-sm font-semibold tracking-wider text-primary/40 uppercase mb-3">
Effective Date: May 29, 2026
</p>
<div class="w-16 h-0.5 bg-secondary/40 mx-auto my-4"></div>
<p class="text-base md:text-lg text-primary/70 font-light leading-relaxed max-w-2xl mx-auto">
BlueKeys is built from the ground up to protect your personal space. Our app operates locally, offline, and
secure.
</p>
</header>
<!-- Main Content Policy Details -->
<main class="space-y-6">
<!-- Intro Card -->
<section class="glass-card rounded-[1.5rem] p-6 md:p-8">
<p class="text-sm md:text-base leading-relaxed text-primary/75">
Thank you for using <strong>BlueKeys</strong>.
</p>
<p class="mt-4 text-sm md:text-base leading-relaxed text-primary/75">
BlueKeys is an Android app that turns your device into a Bluetooth keyboard and mouse. Your privacy is
important to us. It works locally using Bluetooth, without needing the internet, servers, or cloud accounts.
</p>
<!-- Quick Summary Bullets -->
<div class="mt-8 pt-6 border-t border-black/5">
<h3 class="font-headline font-bold text-lg text-neutral-900 mb-4 flex items-center gap-2">
<span class="material-symbols-outlined text-indigo-600">summarize</span>
Quick Summary
</h3>
<ul class="space-y-3.5">
<li class="flex items-start gap-3">
<span class="px-2 py-0.5 rounded-md bg-emerald-500/10 text-emerald-600 text-[10px] font-bold tracking-wider uppercase mt-0.5 shrink-0">Yes</span>
<p class="text-sm text-primary/80 font-light leading-relaxed">
local Bluetooth transmission,only between your connected device.
</p>
</li>
<li class="flex items-start gap-3">
<span class="px-2 py-0.5 rounded-md bg-red-500/10 text-red-600 text-[10px] font-bold tracking-wider uppercase mt-0.5 shrink-0">No</span>
<p class="text-sm text-primary/80 font-light leading-relaxed">
cloud/server collections:BlueKeys does not collect, store, transmit, sell, or share personal information
</p>
</li>
<li class="flex items-start gap-3">
<span class="px-2 py-0.5 rounded-md bg-red-500/10 text-red-600 text-[10px] font-bold tracking-wider uppercase mt-0.5 shrink-0">No</span>
<p class="text-sm text-primary/80 font-light leading-relaxed">
storage/logging:<u>BlueKeys does not require account creation, login, or cloud synchronization</u>
</p>
</li>
<li class="flex items-start gap-3">
<span class="px-2 py-0.5 rounded-md bg-red-500/10 text-red-600 text-[10px] font-bold tracking-wider uppercase mt-0.5 shrink-0">No</span>
<p class="text-sm text-primary/80 font-light leading-relaxed">
third-party sharing.
</p>
</li>
<li class="flex items-start gap-3">
<span class="px-2 py-0.5 rounded-md bg-red-500/10 text-red-600 text-[10px] font-bold tracking-wider uppercase mt-0.5 shrink-0">No</span>
<p class="text-sm text-primary/80 font-light leading-relaxed">
login or account needed .
</p>
</li>
</ul>
</div>
</section>
<!-- 1. No Data Collection or Sharing -->
<section class="glass-card rounded-[1.5rem] p-6 md:p-8 hover:shadow-lg transition-shadow duration-300">
<div class="flex items-start gap-4">
<div class="w-10 h-10 rounded-xl bg-blue-500/10 text-blue-600 flex items-center justify-center shrink-0">
<span class="material-symbols-outlined">no_accounts</span>
</div>
<div class="space-y-4 w-full">
<h2 class="font-headline font-bold text-xl md:text-2xl text-neutral-900">
1. Data We Process Locally (On Your Device)
</h2>
<p class="text-sm text-primary/70 font-light leading-relaxed">
The following data stays on your device and is never sent to our servers:
</p>
<div class="grid grid-cols-1 md:grid-cols-3 gap-4 pt-2">
<div class="p-4 bg-white/40 rounded-xl border border-black/5">
<h3 class="font-bold text-sm text-neutral-900 flex items-center gap-2 mb-2">
<span class="w-1.5 h-1.5 rounded-full bg-blue-500"></span> Keyboard Suggestions
</h3>
<p class="text-xs md:text-sm text-primary/70 font-light leading-relaxed">
The app learns your typing patterns to provide better word suggestions. This data is stored locally in your app's private storage.
</p>
</div>
<div class="p-4 bg-white/40 rounded-xl border border-black/5">
<h3 class="font-bold text-sm text-neutral-900 flex items-center gap-2 mb-2">
<span class="w-1.5 h-1.5 rounded-full bg-blue-500"></span> Clipboard History
</h3>
<p class="text-xs md:text-sm text-primary/70 font-light leading-relaxed">
If you use the clipboard feature, snippets are stored locally to allow you to type them on connected Device.
</p>
</div>
<div class="p-4 bg-white/40 rounded-xl border border-black/5">
<h3 class="font-bold text-sm text-neutral-900 flex items-center gap-2 mb-2">
<span class="w-1.5 h-1.5 rounded-full bg-blue-500"></span> Settings & Preferences
</h3>
<p class="text-xs md:text-sm text-primary/70 font-light leading-relaxed">
Your sensitivity settings, themes, and calibration profiles are stored only on your device.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- 2. What we collect -->
<section class="glass-card rounded-[1.5rem] p-6 md:p-8 hover:shadow-lg transition-shadow duration-300">
<div class="flex items-start gap-4">
<div class="w-10 h-10 rounded-xl bg-indigo-500/10 text-indigo-600 flex items-center justify-center shrink-0">
<span class="material-symbols-outlined">folder_zip</span>
</div>
<div class="space-y-4 w-full">
<h2 class="font-headline font-bold text-xl md:text-2xl text-neutral-900">
2. What we collect
</h2>
<div class="p-4 bg-white/40 rounded-xl border border-black/5">
<p class="text-xs md:text-sm text-primary/70 font-light leading-relaxed">
<strong>- Feedback:</strong> If you choose to send us feedback( includes last 10 error and crash logs-optional), we collect it using the formspree endpoint (<strong>https://formspree.io</strong>). This is the only time the app sends any information online, and it is completely optional.
</p>
</div>
</div>
</div>
</section>
<!-- 3. Permissions We Need -->
<section class="glass-card rounded-[1.5rem] p-6 md:p-8 hover:shadow-lg transition-shadow duration-300">
<div class="flex items-start gap-4">
<div class="w-10 h-10 rounded-xl bg-purple-500/10 text-purple-600 flex items-center justify-center shrink-0">
<span class="material-symbols-outlined">key</span>
</div>
<div class="space-y-4 w-full">
<h2 class="font-headline font-bold text-xl md:text-2xl text-neutral-900">
2. Permissions We Use
</h2>
<p class="text-sm text-primary/70 font-light leading-relaxed">
To work properly, BlueKeys needs access to specific system services. These permissions are strictly used to make the app function and are never used for tracking.
</p>
<div class="space-y-3 pt-2">
<div class="flex gap-3 items-start p-3.5 bg-white/35 rounded-xl border border-black/5">
<span class="material-symbols-outlined text-[20px] text-indigo-500 mt-0.5">bluetooth</span>
<div>
<h4 class="font-bold text-xs md:text-sm text-neutral-900">Bluetooth & Nearby Devices</h4>
<p class="text-xs text-primary/65 font-light mt-0.5">
Required to connect your phone as a mouse/keyboard to your computer.
</p>
</div>
</div>
<div class="flex gap-3 items-start p-3.5 bg-white/35 rounded-xl border border-black/5">
<span class="material-symbols-outlined text-[20px] text-indigo-500 mt-0.5">mic</span>
<div>
<h4 class="font-bold text-xs md:text-sm text-neutral-900">Microphone (Record Audio)</h4>
<p class="text-xs text-primary/65 font-light mt-0.5">
Used only when you tap the "Voice Input" button to convert speech to text. We do not record or store audio in the background.
</p>
</div>
</div>
<div class="flex gap-3 items-start p-3.5 bg-white/35 rounded-xl border border-black/5">
<span class="material-symbols-outlined text-[20px] text-indigo-500 mt-0.5">notifications</span>
<div>
<h4 class="font-bold text-xs md:text-sm text-neutral-900">Notifications</h4>
<p class="text-xs text-primary/65 font-light mt-0.5">
Used to show a "Foreground Service" notification, which is required by Android to maintain a stable Bluetooth connection.
</p>
</div>
</div>
<div class="flex gap-3 items-start p-3.5 bg-white/35 rounded-xl border border-black/5">
<span class="material-symbols-outlined text-[20px] text-indigo-500 mt-0.5">settings_bluetooth</span>
<div>
<h4 class="font-bold text-xs md:text-sm text-neutral-900">Bluetooth System Settings</h4>
<p class="text-xs text-primary/65 font-light mt-0.5">
Allows the app to turn on Bluetooth as requested by the user.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- 3. Data We Collect (Feedback Only) -->
<section class="glass-card rounded-[1.5rem] p-6 md:p-8 hover:shadow-lg transition-shadow duration-300">
<div class="flex items-start gap-4">
<div class="w-10 h-10 rounded-xl bg-indigo-500/10 text-indigo-600 flex items-center justify-center shrink-0">
<span class="material-symbols-outlined">folder_zip</span>
</div>
<div class="space-y-4 w-full">
<h2 class="font-headline font-bold text-xl md:text-2xl text-neutral-900">
3. Data We Collect (Feedback Only)
</h2>
<p class="text-sm text-primary/70 font-light leading-relaxed">
We do not use trackers or analytics (like Firebase or Google Analytics). The only time data is sent to us is if you voluntarily use the Feedback Form in Settings:
</p>
<div class="space-y-3 pt-2">
<div class="p-4 bg-white/40 rounded-xl border border-black/5">
<h3 class="font-bold text-sm text-neutral-900 flex items-center gap-2 mb-1">
<span class="w-1.5 h-1.5 rounded-full bg-indigo-500"></span> What we send
</h3>
<p class="text-xs md:text-sm text-primary/70 font-light leading-relaxed">
Your rating (emoji), feedback text, and technical metadata (App Version, Android Version, and Device Model). Optionally, this can include your last 10 error and crash logs.
</p>
</div>
<div class="p-4 bg-white/40 rounded-xl border border-black/5">
<h3 class="font-bold text-sm text-neutral-900 flex items-center gap-2 mb-1">
<span class="w-1.5 h-1.5 rounded-full bg-indigo-500"></span> Purpose
</h3>
<p class="text-xs md:text-sm text-primary/70 font-light leading-relaxed">
To debug issues and improve the app.
</p>
</div>
<div class="p-4 bg-white/40 rounded-xl border border-black/5">
<h3 class="font-bold text-sm text-neutral-900 flex items-center gap-2 mb-1">
<span class="w-1.5 h-1.5 rounded-full bg-indigo-500"></span> Transmission
</h3>
<p class="text-xs md:text-sm text-primary/70 font-light leading-relaxed">
This data is sent securely via HTTPS to our feedback endpoint (https://formspree.io).
</p>
</div>
</div>
</div>
</div>
</section>
<!-- 4. Third-Party Services -->
<section class="glass-card rounded-[1.5rem] p-6 md:p-8 hover:shadow-lg transition-shadow duration-300">
<div class="flex items-start gap-4">
<div class="w-10 h-10 rounded-xl bg-sky-500/10 text-sky-600 flex items-center justify-center shrink-0">
<span class="material-symbols-outlined">wifi_off</span>
</div>
<div class="space-y-4 w-full">
<h2 class="font-headline font-bold text-xl md:text-2xl text-neutral-900">
4. Third-Party Services
</h2>
<p class="text-sm text-primary/75 font-light leading-relaxed">
BlueKeys does not sell your data. We do not use third-party advertising SDKs.
</p>
<ul class="space-y-2.5 text-xs md:text-sm text-primary/80 font-light leading-relaxed pt-2">
<li class="flex items-center gap-2.5">
<span class="material-symbols-outlined text-[16px] text-sky-500">done</span>
<span>Core features work fully offline.</span>
</li>
<li class="flex items-center gap-2.5">
<span class="material-symbols-outlined text-[16px] text-sky-500">done</span>
<span>We do not use advertising SDKs, tracking tools, analytics, or payment processors.</span>
</li>
<li class="flex items-center gap-2.5">
<span class="material-symbols-outlined text-[16px] text-indigo-500">info</span>
<span>Internet is only used to send optional feedback and to download Google Fonts.</span>
</li>
</ul>
</div>
</div>
</section>
<!-- 5. Data Deletion -->
<section class="glass-card rounded-[1.5rem] p-6 md:p-8 hover:shadow-lg transition-shadow duration-300">
<div class="flex items-start gap-4">
<div class="w-10 h-10 rounded-xl bg-red-500/10 text-red-600 flex items-center justify-center shrink-0">
<span class="material-symbols-outlined">delete_forever</span>
</div>
<div class="space-y-4 w-full">
<h2 class="font-headline font-bold text-xl md:text-2xl text-neutral-900">
5. Data Deletion
</h2>
<div class="space-y-3 pt-2">
<div class="flex gap-3 items-start p-3.5 bg-white/35 rounded-xl border border-black/5">
<span class="material-symbols-outlined text-[20px] text-red-500 mt-0.5">cleaning_services</span>
<div>
<h4 class="font-bold text-xs md:text-sm text-neutral-900">Clear Suggestions</h4>
<p class="text-xs text-primary/65 font-light mt-0.5">
You can clear your learned typing data at any time via <strong>Settings > Clear Suggestions</strong>.
</p>
</div>
</div>
<div class="flex gap-3 items-start p-3.5 bg-white/35 rounded-xl border border-black/5">
<span class="material-symbols-outlined text-[20px] text-red-500 mt-0.5">delete</span>
<div>
<h4 class="font-bold text-xs md:text-sm text-neutral-900">App Uninstallation</h4>
<p class="text-xs text-primary/65 font-light mt-0.5">
Uninstalling the app will delete all locally stored data. Since BlueKeys does not require account creation and collects zero personal data, we do not store any personal information on remote servers.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- 6. Compatibility -->
<section class="glass-card rounded-[1.5rem] p-6 md:p-8 hover:shadow-lg transition-shadow duration-300">
<div class="flex items-start gap-4">
<div class="w-10 h-10 rounded-xl bg-emerald-500/10 text-emerald-600 flex items-center justify-center shrink-0">
<span class="material-symbols-outlined">devices</span>
</div>
<div class="space-y-4 w-full">
<h2 class="font-headline font-bold text-xl md:text-2xl text-neutral-900">
6. Compatibility
</h2>
<div class="flex flex-wrap gap-2 pt-2">
<span class="px-3.5 py-1.5 bg-white/50 border border-black/5 rounded-full text-xs font-medium text-primary/70 flex items-center gap-1.5">
<span class="w-2 h-2 rounded-full bg-emerald-500"></span> Android 9+
</span>
</div>
</div>
</div>
</section>
<!-- 7. Children's Privacy -->
<section class="glass-card rounded-[1.5rem] p-6 md:p-8 hover:shadow-lg transition-shadow duration-300">
<div class="flex items-start gap-4">
<div class="w-10 h-10 rounded-xl bg-pink-500/10 text-pink-600 flex items-center justify-center shrink-0">
<span class="material-symbols-outlined">child_care</span>
</div>
<div class="space-y-4 w-full">
<h2 class="font-headline font-bold text-xl md:text-2xl text-neutral-900">
7. Children's Privacy
</h2>
<div class="p-4 bg-white/40 rounded-xl border border-black/5">
<p class="text-xs md:text-sm text-primary/80 font-light leading-relaxed">
BlueKeys does not knowingly collect personal information from children under the age of 13.
</p>
</div>
</div>
</div>
</section>
<!-- 8. Your Responsibility -->
<section class="glass-card rounded-[1.5rem] p-6 md:p-8 hover:shadow-lg transition-shadow duration-300">
<div class="flex items-start gap-4">
<div class="w-10 h-10 rounded-xl bg-amber-500/10 text-amber-600 flex items-center justify-center shrink-0">
<span class="material-symbols-outlined">gpp_maybe</span>
</div>
<div class="space-y-4 w-full">
<h2 class="font-headline font-bold text-xl md:text-2xl text-neutral-900">
8. Your Responsibility
</h2>
<ul class="space-y-2 text-sm text-primary/75 font-light leading-relaxed">
<li class="flex items-start gap-2">
<span class="material-symbols-outlined text-[16px] text-amber-500 mt-1">warning</span>
<span>Only connect to devices you trust.</span>
</li>
<li class="flex items-start gap-2.5">
<span class="material-symbols-outlined text-[16px] text-red-500 mt-0.5">security</span>
<span>Keep your paired devices secure.</span>
</li>
</ul>
</div>
</div>
</section>
<!-- 9. Changes to This Policy & 10. Contact Us -->
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<!-- Changes to Policy -->
<section class="glass-card rounded-[1.5rem] p-6 hover:shadow-lg transition-shadow duration-300">
<div class="flex gap-4">
<div class="w-10 h-10 rounded-xl bg-purple-500/10 text-purple-600 flex items-center justify-center shrink-0">
<span class="material-symbols-outlined">update</span>
</div>
<div>
<h2 class="font-headline font-bold text-lg text-neutral-900 mb-2">
9. Changes to This Policy
</h2>
<p class="text-xs md:text-sm text-primary/70 font-light leading-relaxed">
We may update this policy. Any updates will be posted on this page with a new effective date.
</p>
</div>
</div>
</section>
<!-- Contact Us -->
<section class="glass-card rounded-[1.5rem] p-6 hover:shadow-lg transition-shadow duration-300">
<div class="flex gap-4">
<div class="w-10 h-10 rounded-xl bg-teal-500/10 text-teal-600 flex items-center justify-center shrink-0">
<span class="material-symbols-outlined">mail</span>
</div>
<div>
<h2 class="font-headline font-bold text-lg text-neutral-900 mb-2">
10. Contact Us
</h2>
<p class="text-xs md:text-sm text-primary/70 font-light leading-relaxed">
If you have questions, please email us at:
</p>
<a href="mailto:desktopio684@gmail.com" id="contact-email-link"
class="inline-flex items-center gap-1.5 mt-2 text-xs md:text-sm font-semibold text-indigo-600 hover:text-indigo-800 transition-colors">
<span>to desktopio684@gmail.com</span>
<span class="material-symbols-outlined text-[14px]">open_in_new</span>
</a>
</div>
</div>
</section>
</div>
</main>
<!-- Footer -->
<footer class="mt-16 text-center border-t border-black/5 pt-8">
<p class="text-[10px] sm:text-xs font-bold tracking-[0.2em] uppercase text-primary/35">
© 2026 BlueKeys. Engineered for Nothing.
</p>
</footer>
</div>
<!-- Custom Cursor Controller Script -->
<script>
(function () {
if (!window.matchMedia('(hover: hover) and (pointer: fine)').matches) return;
const cursor = document.getElementById('custom-cursor');
if (!cursor) return;
document.body.classList.add('has-custom-cursor');
const TIP_X = 22 * 0.18;
const TIP_Y = 22 * 0.15;
window.addEventListener('mousemove', (e) => {
cursor.style.transform = `translate3d(${e.clientX - TIP_X}px, ${e.clientY - TIP_Y}px, 0)`;
if (cursor.style.opacity !== '1') cursor.style.opacity = '1';
}, { passive: true });
document.addEventListener('mouseleave', () => { cursor.style.opacity = '0'; });
document.addEventListener('mouseenter', () => { cursor.style.opacity = '1'; });
const INTERACTIVE = 'a, button, [role="button"], input, textarea, select, label, [tabindex]';
document.addEventListener('mouseover', (e) => {
if (e.target.closest(INTERACTIVE)) cursor.classList.add('is-hovering');
}, { passive: true });
document.addEventListener('mouseout', (e) => {
if (e.target.closest(INTERACTIVE)) cursor.classList.remove('is-hovering');
}, { passive: true });
window.addEventListener('mousedown', () => {
cursor.classList.remove('is-hovering');
cursor.classList.add('is-clicking');
});
window.addEventListener('mouseup', () => { cursor.classList.remove('is-clicking'); });
})();
</script>
</body>
</html>