-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
610 lines (546 loc) · 18.9 KB
/
Copy pathterms.html
File metadata and controls
610 lines (546 loc) · 18.9 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="LegalOS Terms of Service - The terms and conditions for using our AI-powered legal platform."
/>
<title>Terms of Service - LegalOS</title>
<link rel="icon" type="image/png" href="Assets/logo.png" />
<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&display=swap"
rel="stylesheet"
/>
<style>
:root {
--color-primary: #0f1c2e;
--color-gold: #c9a84c;
--color-white: #ffffff;
--color-light-grey: #f4f6f9;
--color-text: #1a1a1a;
--color-text-muted: #6b7280;
--color-border: #e5e7eb;
--color-danger: #ef4444;
--font-family: "Playfair Display", Georgia, serif;
}
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
}
body {
font-family: var(--font-family);
font-size: 1rem;
line-height: 1.7;
color: var(--color-text);
background-color: var(--color-white);
}
a {
color: var(--color-gold);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Navbar */
.navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
background-color: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid var(--color-border);
}
.navbar-inner {
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
display: flex;
align-items: center;
justify-content: space-between;
height: 72px;
}
.navbar-logo {
display: flex;
align-items: center;
font-size: 1.25rem;
font-weight: 800;
color: var(--color-primary);
text-decoration: none;
}
.navbar-logo .dot {
width: 8px;
height: 8px;
background-color: var(--color-gold);
border-radius: 50%;
margin-left: 2px;
}
.navbar-back {
font-size: 0.875rem;
font-weight: 500;
color: var(--color-text-muted);
display: flex;
align-items: center;
gap: 0.5rem;
}
.navbar-back:hover {
color: var(--color-primary);
text-decoration: none;
}
/* Main Content */
.legal-page {
padding-top: 120px;
padding-bottom: 80px;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 0 1.5rem;
}
.legal-header {
margin-bottom: 3rem;
padding-bottom: 2rem;
border-bottom: 1px solid var(--color-border);
}
.legal-title {
font-size: 2.5rem;
font-weight: 800;
color: var(--color-primary);
margin-bottom: 1rem;
}
.legal-meta {
font-size: 0.875rem;
color: var(--color-text-muted);
}
.legal-content h2 {
font-size: 1.5rem;
font-weight: 700;
color: var(--color-primary);
margin-top: 2.5rem;
margin-bottom: 1rem;
}
.legal-content h3 {
font-size: 1.125rem;
font-weight: 600;
color: var(--color-primary);
margin-top: 1.5rem;
margin-bottom: 0.75rem;
}
.legal-content p {
margin-bottom: 1rem;
color: var(--color-text);
}
.legal-content ul,
.legal-content ol {
margin-bottom: 1rem;
padding-left: 1.5rem;
}
.legal-content li {
margin-bottom: 0.5rem;
color: var(--color-text);
}
.legal-content ul li {
list-style-type: disc;
}
.legal-content ol li {
list-style-type: decimal;
}
.highlight-box {
background: var(--color-light-grey);
padding: 1.5rem;
margin: 1.5rem 0;
border-radius: 0 0.5rem 0.5rem 0;
}
.highlight-box p {
margin-bottom: 0;
}
.warning-box {
background: rgba(239, 68, 68, 0.05);
padding: 1.5rem;
margin: 1.5rem 0;
border-radius: 0 0.5rem 0.5rem 0;
}
.warning-box p {
margin-bottom: 0;
}
/* Footer */
.footer {
background-color: var(--color-primary);
color: var(--color-white);
padding: 3rem 0 2rem;
}
.footer-inner {
max-width: 1200px;
margin: 0 auto;
padding: 0 1.5rem;
display: flex;
flex-direction: column;
gap: 1.5rem;
}
@media (min-width: 768px) {
.footer-inner {
flex-direction: row;
justify-content: space-between;
align-items: center;
}
}
.footer-logo {
display: flex;
align-items: center;
font-size: 1.25rem;
font-weight: 800;
}
.footer-logo .dot {
width: 8px;
height: 8px;
background-color: var(--color-gold);
border-radius: 50%;
margin-left: 2px;
}
.footer-links {
display: flex;
gap: 2rem;
}
.footer-links a {
font-size: 0.875rem;
color: rgba(255, 255, 255, 0.7);
}
.footer-links a:hover {
color: var(--color-white);
}
.footer-copyright {
font-size: 0.875rem;
color: rgba(255, 255, 255, 0.5);
}
</style>
</head>
<body>
<nav class="navbar">
<div class="navbar-inner">
<a href="index.html" class="navbar-logo">
LegalOS<span class="dot"></span>
</a>
<a href="index.html" class="navbar-back">
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
fill="currentColor"
viewBox="0 0 256 256"
>
<path
d="M224,128a8,8,0,0,1-8,8H59.31l58.35,58.34a8,8,0,0,1-11.32,11.32l-72-72a8,8,0,0,1,0-11.32l72-72a8,8,0,0,1,11.32,11.32L59.31,120H216A8,8,0,0,1,224,128Z"
></path>
</svg>
Back to Home
</a>
</div>
</nav>
<main class="legal-page">
<div class="container">
<header class="legal-header">
<h1 class="legal-title">Terms of Service</h1>
<p class="legal-meta">Last updated: April 2, 2026</p>
</header>
<div class="legal-content">
<div class="warning-box">
<p>
<strong>Important Notice:</strong> LegalOS is an AI-powered legal
assistant tool. It does not provide legal advice and is not a
substitute for consultation with a qualified legal professional.
Always consult a licensed attorney for legal matters.
</p>
</div>
<h2>1. Acceptance of Terms</h2>
<p>
By accessing or using LegalOS ("the Service"), you agree to be bound
by these Terms of Service ("Terms"). If you do not agree to these
Terms, do not use the Service.
</p>
<p>
These Terms constitute a legally binding agreement between you
(either an individual or entity) and LegalOS Ltd. ("we," "us," or
"our"). If you are using the Service on behalf of an organization,
you represent that you have the authority to bind that organization
to these Terms.
</p>
<h2>2. Description of Service</h2>
<p>LegalOS provides an AI-powered platform for:</p>
<ul>
<li>Automated contract analysis and risk assessment</li>
<li>Board meeting minutes generation from transcripts</li>
<li>
Company Playbook management for standardizing contract terms
</li>
<li>Compliance monitoring and alerts</li>
</ul>
<p>
The Service is designed to assist with legal document review and is
intended for informational purposes only.
</p>
<h2>3. Account Registration</h2>
<h3>3.1 Account Creation</h3>
<p>
To use certain features of the Service, you must create an account.
You agree to:
</p>
<ul>
<li>Provide accurate, current, and complete information</li>
<li>Maintain and promptly update your account information</li>
<li>Keep your password secure and confidential</li>
<li>Accept responsibility for all activities under your account</li>
<li>Notify us immediately of any unauthorized use</li>
</ul>
<h3>3.2 Account Eligibility</h3>
<p>
You must be at least 18 years old and have the legal capacity to
enter into contracts to use the Service. Business accounts must be
registered by authorized representatives.
</p>
<h2>4. Subscription and Payment</h2>
<h3>4.1 Subscription Plans</h3>
<p>
We offer various subscription plans with different features and
pricing. Current pricing is available at
<a href="index.html#pricing">legalos.ai/pricing</a>. We reserve the
right to modify pricing with 30 days' notice.
</p>
<h3>4.2 Payment Terms</h3>
<ul>
<li>
Subscriptions are billed in advance on a monthly or annual basis
</li>
<li>All fees are non-refundable except as required by law</li>
<li>
You authorize us to charge your payment method automatically
</li>
<li>Failed payments may result in service suspension</li>
</ul>
<h3>4.3 Free Trials</h3>
<p>
We may offer free trials at our discretion. At the end of a trial,
your account will automatically convert to a paid subscription
unless you cancel before the trial ends.
</p>
<h2>5. Acceptable Use</h2>
<p>You agree NOT to use the Service to:</p>
<ul>
<li>Violate any applicable laws or regulations</li>
<li>Infringe on intellectual property rights of others</li>
<li>Upload malicious code, viruses, or harmful content</li>
<li>Attempt to gain unauthorized access to our systems</li>
<li>Interfere with or disrupt the Service</li>
<li>Use automated tools to scrape or extract data</li>
<li>Resell or redistribute the Service without authorization</li>
<li>Use the Service for illegal or fraudulent purposes</li>
</ul>
<h2>6. Your Content and Data</h2>
<h3>6.1 Ownership</h3>
<p>
You retain all rights to the documents and content you upload to the
Service ("Your Content"). We do not claim ownership of Your Content.
</p>
<h3>6.2 License to Us</h3>
<p>
By uploading content, you grant us a limited license to process,
analyze, and store Your Content solely to provide the Service to
you. This license terminates when you delete Your Content or your
account.
</p>
<h3>6.3 Your Responsibilities</h3>
<p>You are solely responsible for:</p>
<ul>
<li>
The legality, reliability, and appropriateness of Your Content
</li>
<li>Ensuring you have the right to upload documents</li>
<li>Maintaining backups of Your Content</li>
<li>Decisions made based on the Service's output</li>
</ul>
<h2>7. AI Analysis Disclaimer</h2>
<div class="highlight-box">
<p>
<strong>Critical:</strong> The AI analysis provided by LegalOS is
for informational purposes only. It is not legal advice and should
not be relied upon as such. Always consult with qualified legal
counsel before making legal decisions.
</p>
</div>
<p>You acknowledge and agree that:</p>
<ul>
<li>AI analysis may contain errors or omissions</li>
<li>The Service does not create an attorney-client relationship</li>
<li>
Analysis is based on the information provided and may not be
complete
</li>
<li>
Laws vary by jurisdiction and the Service may not cover all
applicable laws
</li>
<li>
You are responsible for verifying all analysis with qualified
professionals
</li>
</ul>
<h2>8. Intellectual Property</h2>
<h3>8.1 Our Intellectual Property</h3>
<p>
The Service, including its design, features, software, algorithms,
and content (excluding Your Content), is owned by LegalOS and
protected by intellectual property laws. You may not copy, modify,
distribute, or reverse engineer any part of the Service.
</p>
<h3>8.2 Feedback</h3>
<p>
If you provide feedback or suggestions about the Service, you grant
us the right to use such feedback without obligation to you.
</p>
<h2>9. Confidentiality</h2>
<p>
We understand that documents you upload may contain confidential
information. We commit to:
</p>
<ul>
<li>Treating Your Content as confidential</li>
<li>Implementing appropriate security measures</li>
<li>
Not sharing Your Content except as described in our Privacy Policy
</li>
<li>Allowing you to delete Your Content at any time</li>
</ul>
<h2>10. Limitation of Liability</h2>
<p>TO THE MAXIMUM EXTENT PERMITTED BY LAW:</p>
<ul>
<li>
THE SERVICE IS PROVIDED "AS IS" WITHOUT WARRANTIES OF ANY KIND
</li>
<li>
WE DISCLAIM ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
</li>
<li>
WE ARE NOT LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, OR
CONSEQUENTIAL DAMAGES
</li>
<li>
OUR TOTAL LIABILITY SHALL NOT EXCEED THE FEES PAID BY YOU IN THE
12 MONTHS PRECEDING THE CLAIM
</li>
<li>
WE ARE NOT LIABLE FOR DAMAGES ARISING FROM RELIANCE ON AI ANALYSIS
</li>
</ul>
<h2>11. Indemnification</h2>
<p>
You agree to indemnify, defend, and hold harmless LegalOS and its
officers, directors, employees, and agents from any claims, damages,
losses, or expenses (including legal fees) arising from:
</p>
<ul>
<li>Your use of the Service</li>
<li>Your violation of these Terms</li>
<li>Your violation of any third-party rights</li>
<li>Your Content</li>
</ul>
<h2>12. Termination</h2>
<h3>12.1 By You</h3>
<p>
You may terminate your account at any time by contacting us or using
the account settings. Termination does not entitle you to a refund
of prepaid fees.
</p>
<h3>12.2 By Us</h3>
<p>We may suspend or terminate your account if:</p>
<ul>
<li>You violate these Terms</li>
<li>You fail to pay applicable fees</li>
<li>We are required to do so by law</li>
<li>Your conduct poses a risk to the Service or other users</li>
</ul>
<h3>12.3 Effect of Termination</h3>
<p>
Upon termination, your right to use the Service ceases immediately.
We will delete Your Content in accordance with our data retention
policy. Provisions that by their nature should survive termination
will remain in effect.
</p>
<h2>13. Governing Law and Disputes</h2>
<p>
These Terms are governed by the laws of the State of Qatar. Any
disputes shall be resolved through:
</p>
<ol>
<li>Good faith negotiation between the parties</li>
<li>Mediation in Doha, Qatar</li>
<li>
Binding arbitration under the rules of the Qatar International
Centre for Conciliation and Arbitration
</li>
</ol>
<h2>14. Changes to Terms</h2>
<p>
We may modify these Terms at any time. We will notify you of
material changes by email or through the Service at least 30 days
before they take effect. Your continued use of the Service after
changes become effective constitutes acceptance of the modified
Terms.
</p>
<h2>15. General Provisions</h2>
<ul>
<li>
<strong>Entire Agreement:</strong> These Terms constitute the
entire agreement between you and LegalOS regarding the Service.
</li>
<li>
<strong>Severability:</strong> If any provision is found
unenforceable, the remaining provisions remain in effect.
</li>
<li>
<strong>Waiver:</strong> Our failure to enforce any right does not
waive that right.
</li>
<li>
<strong>Assignment:</strong> You may not assign these Terms
without our consent. We may assign our rights freely.
</li>
<li>
<strong>Force Majeure:</strong> We are not liable for failures due
to circumstances beyond our reasonable control.
</li>
</ul>
<h2>16. Contact Information</h2>
<p>For questions about these Terms, please contact us:</p>
<ul>
<li><strong>Email:</strong> legal@legalos.ai</li>
<li><strong>Address:</strong> LegalOS Ltd., Doha, Qatar</li>
</ul>
</div>
</div>
</main>
<footer class="footer">
<div class="footer-inner">
<div class="footer-logo">LegalOS<span class="dot"></span></div>
<div class="footer-links">
<a href="privacy.html">Privacy Policy</a>
<a href="terms.html">Terms of Service</a>
<a href="index.html">Home</a>
</div>
<p class="footer-copyright">
© 2025 LegalOS. All rights reserved.
</p>
</div>
</footer>
</body>
</html>