-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
266 lines (246 loc) · 7.6 KB
/
Copy pathterms.html
File metadata and controls
266 lines (246 loc) · 7.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms of Service — Toolbox</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Mono:wght@300;400;500&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--bg: #0a0a0f;
--bg2: #111118;
--border: rgba(255,255,255,0.07);
--border2: rgba(255,255,255,0.14);
--accent: #5865f2;
--accent2: #7c85f5;
--text: #e8e8f0;
--muted: #7f7f9a;
--mono: 'DM Mono', monospace;
--display: 'Syne', sans-serif;
}
html { scroll-behavior: smooth; }
body {
background: var(--bg);
color: var(--text);
font-family: var(--display);
overflow-x: hidden;
line-height: 1.6;
}
body::before {
content: '';
position: fixed;
inset: 0;
background-image:
linear-gradient(rgba(88,101,242,0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(88,101,242,0.03) 1px, transparent 1px);
background-size: 40px 40px;
pointer-events: none;
z-index: 0;
}
nav {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 100;
display: flex;
align-items: center;
justify-content: space-between;
padding: 1.25rem 3rem;
background: rgba(10,10,15,0.85);
backdrop-filter: blur(16px);
border-bottom: 1px solid var(--border);
}
.logo {
display: flex;
align-items: center;
gap: 10px;
font-size: 1.2rem;
font-weight: 800;
letter-spacing: -0.02em;
color: var(--text);
text-decoration: none;
}
.logo-icon {
width: 32px; height: 32px;
background: var(--accent);
border-radius: 8px;
display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 18px; height: 18px; fill: white; }
.nav-back {
color: var(--muted);
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
display: flex;
align-items: center;
gap: 6px;
transition: color 0.2s;
}
.nav-back:hover { color: var(--text); }
main {
position: relative;
z-index: 1;
max-width: 720px;
margin: 0 auto;
padding: 8rem 2rem 6rem;
}
.page-tag {
font-family: var(--mono);
font-size: 0.75rem;
color: var(--accent2);
text-transform: uppercase;
letter-spacing: 0.12em;
margin-bottom: 1rem;
}
h1 {
font-size: 2.5rem;
font-weight: 800;
letter-spacing: -0.03em;
margin-bottom: 0.5rem;
color: var(--text);
}
.last-updated {
font-family: var(--mono);
font-size: 0.75rem;
color: var(--muted);
margin-bottom: 3rem;
}
.divider {
height: 1px;
background: var(--border);
margin: 2.5rem 0;
}
h2 {
font-size: 1.1rem;
font-weight: 700;
color: var(--text);
margin-bottom: 0.75rem;
display: flex;
align-items: center;
gap: 10px;
}
h2::before {
content: '';
display: inline-block;
width: 4px;
height: 18px;
background: var(--accent);
border-radius: 2px;
flex-shrink: 0;
}
p {
font-size: 0.92rem;
color: var(--muted);
line-height: 1.8;
margin-bottom: 1rem;
}
ul {
margin: 0.5rem 0 1rem 0;
padding-left: 0;
list-style: none;
display: flex;
flex-direction: column;
gap: 0.4rem;
}
li {
font-size: 0.92rem;
color: var(--muted);
line-height: 1.7;
padding-left: 1.25rem;
position: relative;
}
li::before {
content: '—';
position: absolute;
left: 0;
color: var(--accent2);
font-family: var(--mono);
}
a { color: var(--accent2); text-decoration: none; }
a:hover { text-decoration: underline; }
footer {
position: relative;
z-index: 1;
border-top: 1px solid var(--border);
padding: 2.5rem 3rem;
display: flex;
align-items: center;
justify-content: space-between;
}
.footer-copy {
font-size: 0.8rem;
font-family: var(--mono);
color: var(--muted);
}
.footer-links {
display: flex;
gap: 2rem;
list-style: none;
}
.footer-links a {
font-size: 0.8rem;
color: var(--muted);
text-decoration: none;
transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
</style>
</head>
<body>
<nav>
<a href="toolbox-website.html" class="logo">
<div class="logo-icon">
<svg viewBox="0 0 24 24"><path d="M14.7 6.3a1 1 0 000 1.4l1.6 1.6a1 1 0 001.4 0l3.77-3.77a6 6 0 01-7.94 7.94l-6.91 6.91a2.12 2.12 0 01-3-3l6.91-6.91a6 6 0 017.94-7.94l-3.76 3.76z"/></svg>
</div>
Toolbox
</a>
<a href="toolbox-website.html" class="nav-back">← Back to home</a>
</nav>
<main>
<div class="page-tag">// Legal</div>
<h1>Terms of Service</h1>
<p class="last-updated">Last updated: May 2026</p>
<p>By downloading, installing, or using Toolbox, you agree to these Terms of Service. Please read them carefully. If you do not agree, do not use the software.</p>
<div class="divider"></div>
<h2>Use of the software</h2>
<p>Toolbox is a Windows optimization tool intended for personal and professional use on your own devices. By using it, you agree to:</p>
<ul>
<li>Use Toolbox only on systems you own or have explicit permission to manage</li>
<li>Not reverse-engineer, decompile, or redistribute Toolbox without permission</li>
<li>Not use Toolbox to damage, disrupt, or gain unauthorized access to any system</li>
</ul>
<div class="divider"></div>
<h2>Free vs Pro</h2>
<p>Toolbox is available in a free tier and a Pro tier. The free version is provided as-is with no time limit. The Pro version unlocks additional features for a one-time fee of $5, purchased through our Discord server.</p>
<ul>
<li>Pro licenses are non-transferable and tied to a single user</li>
<li>We reserve the right to revoke Pro access if these terms are violated</li>
<li>Refunds are handled on a case-by-case basis — contact us on Discord</li>
</ul>
<div class="divider"></div>
<h2>Disclaimer of warranties</h2>
<p>Toolbox is provided "as is" without warranties of any kind, express or implied. While we do our best to ensure the software is safe and effective, we cannot guarantee that it will be error-free or suitable for every system configuration.</p>
<p>Always back up important data before running system optimization tools. We are not responsible for data loss resulting from the use of Toolbox.</p>
<div class="divider"></div>
<h2>Limitation of liability</h2>
<p>To the fullest extent permitted by law, Toolbox and its developers shall not be liable for any indirect, incidental, or consequential damages arising from the use or inability to use the software — including but not limited to data loss, system damage, or lost productivity.</p>
<div class="divider"></div>
<h2>Updates to these terms</h2>
<p>We may update these Terms of Service from time to time. Continued use of Toolbox after changes are posted constitutes your acceptance of the revised terms. We'll always update the "Last updated" date at the top of this page.</p>
<div class="divider"></div>
<h2>Contact</h2>
<p>Questions about these terms? Reach us on Discord: <a href="https://discord.gg/bJaVZQtTPt">discord.gg/bJaVZQtTPt</a></p>
</main>
<footer>
<span class="footer-copy">© 2026 Toolbox. All rights reserved.</span>
<ul class="footer-links">
<li><a href="privacy.html">Privacy Policy</a></li>
<li><a href="terms.html">Terms</a></li>
<li><a href="https://discord.gg/bJaVZQtTPt">Support</a></li>
<li><a href="https://github.com/ivpcodes">GitHub</a></li>
</ul>
</footer>
</body>
</html>