-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
103 lines (93 loc) · 4.17 KB
/
Copy pathprivacy.html
File metadata and controls
103 lines (93 loc) · 4.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - Level Up</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
background: #0d0a1a;
color: #e0e0e0;
line-height: 1.7;
padding: 40px 20px;
}
.container { max-width: 800px; margin: 0 auto; }
h1 {
font-size: 2rem;
color: #FF3CAC;
margin-bottom: 8px;
}
.updated { color: #888; font-size: 0.9rem; margin-bottom: 32px; }
h2 {
font-size: 1.25rem;
color: #784BA0;
margin-top: 32px;
margin-bottom: 12px;
}
p { margin-bottom: 16px; }
ul { margin-left: 24px; margin-bottom: 16px; }
li { margin-bottom: 8px; }
a { color: #FF3CAC; }
.footer {
margin-top: 48px;
padding-top: 24px;
border-top: 1px solid #333;
text-align: center;
color: #666;
font-size: 0.85rem;
}
</style>
</head>
<body>
<div class="container">
<h1>Privacy Policy</h1>
<p class="updated">Last updated: January 8, 2026</p>
<p>Level Up ("we," "our," or "us") operates the Level Up mobile application and website at 100levelup.com. This Privacy Policy explains how we collect, use, and protect your information.</p>
<h2>Information We Collect</h2>
<p><strong>Data Stored Locally:</strong> Level Up stores your game progress, insights, and preferences locally on your device using browser localStorage. This data never leaves your device and is not transmitted to our servers.</p>
<p><strong>Data We Do Not Collect:</strong></p>
<ul>
<li>We do not collect personal identification information</li>
<li>We do not collect email addresses through the game</li>
<li>We do not track your location</li>
<li>We do not access your contacts, camera, or microphone</li>
<li>We do not use cookies for tracking</li>
</ul>
<h2>How Your Data Is Used</h2>
<p>All game data (your level, XP, insights, and progress) is stored locally on your device to:</p>
<ul>
<li>Save your game progress</li>
<li>Track your insights and patterns</li>
<li>Personalize your experience</li>
</ul>
<p>This data remains on your device and is not shared with us or any third parties.</p>
<h2>Third-Party Services</h2>
<p>The Level Up app does not integrate with third-party analytics, advertising networks, or tracking services.</p>
<h2>Data Security</h2>
<p>Since your data is stored locally on your device, its security depends on your device's security. We recommend using device passwords and keeping your device software updated.</p>
<h2>Children's Privacy</h2>
<p>Level Up is not intended for children under 13 years of age. We do not knowingly collect personal information from children under 13.</p>
<h2>Your Rights</h2>
<p>You can delete all your Level Up data at any time by:</p>
<ul>
<li>Using the "Reset Progress" option in the game</li>
<li>Clearing your browser/app data</li>
<li>Uninstalling the application</li>
</ul>
<h2>Changes to This Policy</h2>
<p>We may update this Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page and updating the "Last updated" date.</p>
<h2>Contact Us</h2>
<p>If you have any questions about this Privacy Policy, please contact us at:</p>
<p>
Levels of Self<br>
Email: arthur@levelsofself.com<br>
Website: <a href="https://levelsofself.com">levelsofself.com</a>
</p>
<div class="footer">
<p>© 2026 Levels of Self. All rights reserved.</p>
</div>
</div>
</body>
</html>