-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
637 lines (527 loc) · 51.4 KB
/
Copy pathindex.html
File metadata and controls
637 lines (527 loc) · 51.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RiteSet — Micro-Rituals for Your Mood</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Nunito:wght@300;400;500;600&family=Quicksand:wght@300;400;500;600&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: #0a0a0f;
color: #ffffff;
line-height: 1.6;
overflow-x: hidden;
}
/* Navigation */
nav {
position: fixed;
top: 0;
right: 0;
z-index: 100;
padding: 24px 40px;
display: flex;
gap: 32px;
}
nav a {
color: rgba(255,255,255,0.7);
text-decoration: none;
font-size: 14px;
font-weight: 400;
transition: color 0.3s;
cursor: pointer;
}
nav a:hover {
color: #ffffff;
}
/* Hero/Splash - Full viewport */
.splash {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative;
overflow: hidden;
}
/* Background image */
.splash-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('riteset-splash-bg.png') center center / cover no-repeat;
opacity: 0.9;
}
.splash-content {
position: relative;
z-index: 10;
text-align: center;
}
.splash h1 {
font-size: 52px;
font-weight: 500;
font-family: "SF Pro Rounded", "Nunito", "Quicksand", -apple-system, system-ui, sans-serif;
letter-spacing: -0.02em;
margin-bottom: 16px;
color: #ffffff;
position: relative;
display: inline-block;
text-transform: lowercase;
}
.splash h1 .sparkle {
position: absolute;
top: -4px;
right: -24px;
}
.splash .tagline {
font-size: 11px;
font-weight: 500;
font-family: "Nunito", -apple-system, system-ui, sans-serif;
letter-spacing: 0.03em;
color: #1a1a2e;
background: rgba(255, 255, 255, 0.08);
padding: 8px 12px;
border-radius: 9999px;
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.12);
box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}
/* Legal Sections - Hidden by default */
.legal-section {
display: none;
min-height: 100vh;
padding: 100px 40px;
background: #0a0a0f;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow-y: auto;
z-index: 200;
}
.legal-section:target {
display: block;
}
.legal-section .close-btn {
position: fixed;
top: 24px;
right: 40px;
color: rgba(255,255,255,0.7);
text-decoration: none;
font-size: 14px;
font-weight: 400;
cursor: pointer;
z-index: 300;
display: flex;
align-items: center;
gap: 8px;
}
.legal-section .close-btn:hover {
color: #ffffff;
}
.legal-content {
max-width: 700px;
margin: 0 auto;
padding-top: 40px;
}
.legal-content h2 {
font-size: 32px;
font-weight: 300;
margin-bottom: 32px;
color: #ffffff;
}
.legal-content h3 {
font-size: 16px;
font-weight: 500;
color: #ffffff;
margin-top: 28px;
margin-bottom: 12px;
}
.legal-content p {
font-size: 14px;
color: rgba(255,255,255,0.6);
line-height: 1.8;
margin-bottom: 14px;
}
.legal-content ul {
margin-left: 20px;
margin-bottom: 14px;
}
.legal-content li {
font-size: 14px;
color: rgba(255,255,255,0.6);
line-height: 1.8;
margin-bottom: 8px;
}
.legal-content a {
color: #a8d4ff;
text-decoration: none;
}
.legal-content a:hover {
text-decoration: underline;
}
.legal-content .updated {
font-size: 13px;
color: rgba(255,255,255,0.4);
margin-bottom: 32px;
}
/* Footer inside legal sections */
.legal-footer {
margin-top: 60px;
padding-top: 40px;
border-top: 1px solid rgba(255,255,255,0.05);
text-align: center;
}
.legal-footer .footer-logo {
font-size: 20px;
font-weight: 300;
letter-spacing: 4px;
margin-bottom: 16px;
color: rgba(255,255,255,0.6);
}
.legal-footer .copyright {
font-size: 12px;
color: rgba(255,255,255,0.3);
}
/* Responsive */
@media (max-width: 768px) {
nav {
padding: 16px 20px;
gap: 20px;
}
nav a {
font-size: 12px;
}
.splash h1 {
font-size: 40px;
}
.splash h1 .sparkle {
width: 18px;
height: 18px;
right: -20px;
}
.splash .tagline {
font-size: 10px;
}
.legal-section {
padding: 80px 24px;
}
.legal-section .close-btn {
top: 16px;
right: 20px;
}
.legal-content h2 {
font-size: 26px;
}
}
</style>
</head>
<body>
<!-- Navigation -->
<nav>
<a href="#privacy">Privacy Policy</a>
<a href="#terms">Terms of Service</a>
</nav>
<!-- Splash Screen -->
<section class="splash">
<div class="splash-bg"></div>
<div class="splash-content">
<h1>riteset<svg class="sparkle" width="22" height="22" viewBox="0 0 24 24" fill="white"><path d="M12 0 L14 10 L24 12 L14 14 L12 24 L10 14 L0 12 L10 10 Z" /><path d="M19 2 L19.5 4 L21.5 4.5 L19.5 5 L19 7 L18.5 5 L16.5 4.5 L18.5 4 Z" opacity="0.7" transform="scale(0.5) translate(24, -2)" /></svg></h1>
<p class="tagline">Your Hyperpersonalised Wellness Ritual</p>
</div>
</section>
<!-- Privacy Policy (Hidden by default, shown when #privacy is in URL) -->
<section class="legal-section" id="privacy">
<a href="#" class="close-btn">← Back</a>
<div class="legal-content">
<h2>Privacy Policy</h2>
<p class="updated"><strong>Last Updated:</strong> February 12, 2026</p>
<p>This Privacy Policy describes how your personal information is collected, used, and shared when you visit or interact with the RiteSet application ("App", "our", "we", or "us"). RiteSet is an AI-powered wellness and self-care tool designed to support daily mental wellness through personalized micro-rituals.</p>
<p>We reserve the right to amend this Policy from time to time. Any updates will be communicated as required by applicable law, including revising the "Last Updated" date at the top of this Policy. By continuing to use our Services after any updates become effective, you acknowledge and agree to the revised Policy.</p>
<p>This Privacy Policy forms an integral part of the RiteSet <a href="https://riteset-landing.chrono-ai.fun/#terms">Terms of Service</a> (the "Terms"). Capitalized terms used in this Policy but not defined herein shall have the meanings ascribed to them in the Terms. It is important that you read this Privacy Policy in conjunction with any other privacy or fair processing notices we may provide at the time we collect or process personal data about you, to fully understand how and why your data is being used. This Policy supplements other notices and legal agreements, including the Terms, and is not intended to override them.</p>
<p>We are committed to protecting your personal information and your right to privacy. If you have any questions or concerns about this privacy policy or our practices with regard to your personal information, please contact us at any time.</p>
<p><strong>LEGAL DISCLAIMER:</strong> RiteSet is a wellness tool and is not intended to diagnose, treat, cure, or prevent any medical or mental health condition. The App does not provide medical or psychological advice. If you are experiencing a crisis, please contact a licensed professional or emergency services immediately.</p>
<h3>1. Our Law and Your Agreement</h3>
<p>This Privacy Policy is applicable to you if you use the RiteSet application or engage with us in other related ways, including sales or marketing. "Services" refers to our App and related wellness features. If there are any terms in this Policy that you do not agree with, please discontinue the use of our Services immediately.</p>
<h3>2. Lawful Basis for Processing</h3>
<p>We process your personal data only when we have a legal basis to do so, including:</p>
<ul>
<li><strong>Consent:</strong> Where you have given clear consent for a specific purpose (e.g., voice-to-text analysis).</li>
<li><strong>Contractual Necessity:</strong> Where processing is necessary for the performance of a contract (e.g., managing your Premium subscription).</li>
<li><strong>Legal Obligation:</strong> Where we must comply with the law (e.g., tax or law enforcement requests).</li>
<li><strong>Legitimate Interests:</strong> For our business interests, such as improving our AI models and ensuring App security.</li>
</ul>
<h3>3. Collection of Information</h3>
<p><strong>A. Data You Provide Directly:</strong></p>
<ul>
<li><strong>Account Credentials:</strong> Name, email, and authentication data from providers like Apple.</li>
<li><strong>Emotional & Sensory Input:</strong> Voice recordings, text descriptions of emotional states, and post-ritual reflections used to craft personalized sequences.</li>
<li><strong>Communication Data:</strong> Information provided during support inquiries or surveys.</li>
</ul>
<p><strong>B. Data Collected Automatically:</strong></p>
<ul>
<li><strong>Usage & Interaction:</strong> Feature engagement (e.g., Breathwork vs. Sound Therapy), session duration, and "Smart Pattern" analysis data.</li>
<li><strong>Technical Logs:</strong> IP address, device identifiers, OS version, and crash report data.</li>
<li><strong>General Location:</strong> Derived from IP address to ensure regional compliance and security.</li>
</ul>
<h3>4. Use of Personal Data</h3>
<p>We leverage your data to provide a hyper-personalized experience:</p>
<ul>
<li><strong>AI Personalization:</strong> To adapt ritual scripts in real-time based on your sensed tension or depletion.</li>
<li><strong>Smart Analysis:</strong> To reveal long-term habits and connections between your feelings and life patterns.</li>
<li><strong>Safety & Support:</strong> To monitor for system abuse and respond to user requests.</li>
</ul>
<h3>5. Disclosure and Sharing of Data</h3>
<p>We do not sell your personal data. We share information only with:</p>
<ul>
<li><strong>Service Providers:</strong> Cloud hosting (AWS/Firebase), AI processing partners, and analytics vendors who are contractually bound to protect your data.</li>
<li><strong>Legal Compliance:</strong> When required by a court order, government agency, or to protect the safety of our users.</li>
<li><strong>Corporate Transactions:</strong> In the event of a merger, acquisition, or asset sale.</li>
</ul>
<h3>6. Transfer of Information</h3>
<p>Your information is processed at our operating offices in Singapore and in any other place where the parties involved in processing are located. This means your data may be transferred to—and maintained on—computers located outside of your jurisdiction where data protection laws may differ.</p>
<p>Your consent to this Privacy Policy followed by your submission of such information represents your agreement to that transfer.</p>
<p>We will take all steps reasonably necessary to ensure that your data is treated securely and in accordance with this Privacy Policy, and no transfer of your personal data will take place to an organization or a country unless there are adequate controls in place, including the security of your data and other personal information.</p>
<h3>7. Data Retention and Deletion</h3>
<ul>
<li><strong>Retention:</strong> We retain your Personal Data only for as long as necessary for the purposes set out in this Policy. No purpose in this Policy will require us to keep your information for longer than 2 years.</li>
<li><strong>Deletion Rights:</strong> You have the right to delete or request assistance in deleting the Personal Data we have collected. You may update or delete your information at any time by signing into your account settings.</li>
<li><strong>Legal Obligations:</strong> We may need to retain certain information when we have a legal obligation or lawful basis to do so (e.g., tax or accounting requirements).</li>
</ul>
<h3>8. Your Privacy Rights (GDPR/CCPA/PDPA)</h3>
<p>Depending on your location (e.g., Singapore PDPA, EU GDPR, or California CCPA), you may have the right to:</p>
<ul>
<li><strong>Access & Portability:</strong> Request a copy of the data we hold about you.</li>
<li><strong>Correction & Deletion:</strong> Update inaccurate info or request total deletion of your account.</li>
<li><strong>Withdraw Consent:</strong> Stop data processing by deleting your account or contacting us.</li>
</ul>
<p>To exercise these rights, please visit your account settings or contact us via our Instagram page (<a href="https://www.instagram.com/riteset.app/" target="_blank" rel="noopener">https://www.instagram.com/riteset.app/</a>).</p>
<h3>9. Children's Privacy</h3>
<p>Our Services are not intended for use by children under the age of 13 (or 16 in the EEA). We do not knowingly collect personal information from children. If we become aware that a child has provided us with personal information without parental consent, we will take steps to delete such information and terminate the child's account.</p>
<h3>10. Controls for Do-Not-Track Features</h3>
<p>Most web browsers and some mobile operating systems and mobile applications include a Do-Not-Track ("DNT") feature or setting you can activate to signal your privacy preference not to have data about your online browsing activities monitored and collected. At this stage, no uniform technology standard for recognizing and implementing DNT signals has been finalized. As such, we do not currently respond to DNT browser signals or any other mechanism that automatically communicates your choice not to be tracked online. If a standard for online tracking is adopted that we must follow in the future, we will inform you about that practice in a revised version of this Policy.</p>
<h3>11. Security Measures</h3>
<p>We have implemented appropriate technical and organizational security measures designed to protect your information. However, no electronic transmission over the Internet can be guaranteed to be 100% secure; therefore, transmission of personal information to and from our App is at your own risk.</p>
<h3>12. Changes to this Policy</h3>
<p>We may update this Privacy Policy from time to time. Significant changes will be notified via a prominent notice in the App or via email. The "Last Updated" date at the top of this page indicates the latest revision.</p>
<h3>13. Contact Us</h3>
<p>For any privacy-related questions, please contact us via our Instagram page (<a href="https://www.instagram.com/riteset.app/" target="_blank" rel="noopener">https://www.instagram.com/riteset.app/</a>).</p>
<div class="legal-footer">
<div class="footer-logo">riteset</div>
<p class="copyright">© 2026 RiteSet. All rights reserved.</p>
</div>
</div>
</section>
<!-- Terms of Use (Hidden by default, shown when #terms is in URL) -->
<section class="legal-section" id="terms">
<a href="#" class="close-btn">← Back</a>
<div class="legal-content">
<h2>Terms of Service</h2>
<p class="updated"><strong>Last Updated:</strong> February 12, 2026</p>
<p>These RiteSet Terms of Service ("Terms") constitute a legal agreement between you ("User" or "you") and ChronoAI Pte. Ltd. ("we," "us," or "ChronoAI") (the "Agreement"). These Terms apply when you visit or interact with the RiteSet application ("App", "our", "we", or "us"), engage with our customer support, interact with us on social media, or otherwise communicate with us. By accessing or using the App, you agree to be bound by these Terms.</p>
<p>Please carefully review these Terms and all referenced documents before using the App. Pay particular attention to the section titled "Disclaimer and Limitation of Liability" and other sections that are emphasized in bold. It is crucial that you fully understand these Terms and assess the associated risks independently. <strong>WE DO NOT PROVIDE MEDICAL, PSYCHOLOGICAL, LEGAL, TAX, INVESTMENT OR OTHER PROFESSIONAL ADVICE.</strong></p>
<h3>1. CONFIRMATION AND ACCEPTANCE OF THESE TERMS</h3>
<p><strong>A. Entire Agreement and Scope of Applicability</strong></p>
<p>These Terms, together with the <a href="https://riteset-landing.chrono-ai.fun/#privacy">Privacy Policy</a> and any other documents explicitly incorporated by reference herein (collectively, the "Agreement"), constitute the entire and exclusive agreement between you ("User") and ChronoAI concerning the subject matter hereof and supersede all prior or contemporaneous communications, proposals, or agreements, whether electronic, oral, or written.</p>
<p>This Agreement governs your access to and use of the RiteSet application (the "App"), its proprietary content, and all services directly provided by ChronoAI. For the avoidance of doubt, this Agreement specifically does not extend to, nor does ChronoAI assume any responsibility or liability for, decentralized applications (DApps), Smart Contracts, or other services developed, operated, or provided by third parties, even if such third-party services are accessible or linked through the App. Your engagement with any third-party DApps or services is governed solely by the terms and conditions established by those respective third parties.</p>
<p><strong>B. Account Credentials and Identity</strong></p>
<p>The User acknowledges and agrees that the App utilizes a unified authentication system shared with the related application, GodGPT. This means the login credentials, authentication tokens, and user identity established for your use of the App will also be used to access the GodGPT service, and vice versa.</p>
<p>Notwithstanding the shared login credentials: (A) Your use of the App is governed exclusively by this Agreement and the related Privacy Policy. (B) Your use of the GodGPT application is governed exclusively by the separate Terms of Service and Privacy Policy published by the operator of GodGPT.</p>
<p><strong>C. Acceptance of Terms</strong></p>
<p>By accessing or using any or all of the App, you expressly acknowledge that (i) you have read and understood these Terms; (ii) you agree to be bound by these Terms; and (iii) you are legally competent to enter into these Terms. If you do not agree to be bound by these Terms or any updates or modifications to these Terms, you may not access or use our App.</p>
<p><strong>D. Modifications to these Terms</strong></p>
<p>ChronoAI reserves the right to amend these Terms from time to time. Any updates will be communicated as required by applicable law, including revising the "Last Updated" date at the top of these Terms. In certain cases, additional notice may be provided, such as through a notice on the App or by contacting you directly. We encourage you to periodically review these Terms to stay informed about any such changes and decide whether or not to accept the revised version of these Terms. If you continue to use the App following any update or modification of the Terms, you shall be deemed to have accepted the revised Terms. If you do not agree to the Terms or any update or modification to the Terms, you must cease to access or use our App. Our App and its related services evolve over time. We may change or discontinue all or any part of the App, at any time and without prior notice, and at our sole discretion.</p>
<p><strong>E. Privacy Policy</strong></p>
<p>For an explanation on how we collect, use and disclose information from our users please see our <a href="https://riteset-landing.chrono-ai.fun/#privacy">Privacy Policy</a>. You acknowledge and agree that your use of the App is subject to, and that we can collect, use and/or disclose your information (including any personal data you provide to us) in accordance with our Privacy Policy.</p>
<p><strong>F. Eligibility</strong></p>
<p>To be eligible to use the App: (i) you must be at least eighteen (18) years old and legally competent to enter into these Terms; (ii) you must not be a resident of sanctioned jurisdictions according to any trade embargoes, UN Security Council Resolutions ("UNSCR") or HM Treasury's financial sanctions regime; and (iii) you must not be currently the subject of or subject to economic sanctions such as the United Nations Security Council Sanctions List, the list of specially designated nationals maintained by OFAC, the denied persons or entity list of the U.S. Department of Commerce or any similar list maintained by any other relevant sanctions authority. If you are using our Services on behalf of a legal entity, you further represent and warrant that: (iv) the legal entity is duly organized and validly existing under the applicable laws of the jurisdiction of its organization; and (v) you are duly authorized by such legal entity to act on its behalf. You can only use our Services if permitted under the laws of your jurisdiction. For the avoidance of doubt, you may not use our Services if you are located in, or a citizen or resident of any state, country, territory or other jurisdiction where your use of our App would be illegal or otherwise violate any applicable laws. Please make sure that these Terms are in compliance with all laws, rules, and regulations that apply to you. By using the App, you represent and warrant that you meet all eligibility requirements that we outline in these Terms. We may still refuse to let certain people access or use all or part of our App, however, and we reserve the right to change our eligibility criteria at any time.</p>
<h3>2. DEFINITIONS</h3>
<ul>
<li><strong>User:</strong> a) a User must be a natural person who possesses full capacity for civil acts; b) if you are under 18 years old, please use ChronoAI under the guidance of your parents or guardians. If any person of no capacity for civil acts conducts any transactions on the App or any person of limited capacity for civil acts conducts any transaction which is not commensurate his/her civil rights or act capacity, the parents or guardians of the User shall be liable for the consequences of such transactions.</li>
<li><strong>Alert:</strong> means the messages displayed on the App's operation interface which provides suggestions for Users on subsequent operations.</li>
<li><strong>Specific Users:</strong> means users who should cooperate with ChronoAI and disclose Personal Information in order to comply with the laws, regulations and policies of his/her country of nationality and/or country of residence.</li>
<li><strong>Personal Information:</strong> means information recorded in electronic or any other form which may identify a natural person when used alone or in combination with other information, including but not limited to name, date of birth, identity number, personal biological identification information, address, telephone number, e-mail address, mobile device information, operation record, and transaction record.</li>
</ul>
<h3>3. SERVICES AND CONTENT</h3>
<p><strong>A. AI-Powered Micro-Rituals</strong></p>
<p>RiteSet provides proprietary, personalized interpretive content ("Rituals") generated through automated AI algorithms. These include:</p>
<ul>
<li><strong>Context-Aware Guidance:</strong> Scripts that adapt to your emotional state.</li>
<li><strong>Smart Pattern Analysis:</strong> Insights into habits and emotional connections.</li>
<li><strong>Categorized Exercises:</strong> Breathwork, meditation, sound therapy, and movement.</li>
</ul>
<p><strong>B. Disclaimer on Content Generation</strong></p>
<p>All Rituals and insights are generated purely through automated means and computational logic. The content is not individually reviewed or endorsed by human medical or mental health professionals.</p>
<h3>4. YOUR RIGHTS AND OBLIGATIONS</h3>
<p><strong>A. Required Input for Computational Profile</strong></p>
<p>To facilitate the generation of personalized Readings and to compute the User's profile, the RiteSet platform may require and process the following User-provided data:</p>
<ul>
<li>Date of Birth (Mandatory for core functionality).</li>
<li>Time of Birth (Optional, but highly recommended for comprehensive analysis).</li>
<li>Geographic Data (e.g., Time Zone or Place of Birth - Optional, but essential for accurate calculations).</li>
<li>User-Selected Preferences (Internal application settings that modulate content presentation or thematic focus).</li>
</ul>
<p>This input data is processed solely and automatically by the App's computational engine for the purpose of generating the Readings.</p>
<p><strong>B. Data Accuracy and Limitation</strong></p>
<p>The User acknowledges that the precision and relevance of the generated Readings are directly contingent upon the accuracy and completeness of the data provided by the User. Where the User opts not to provide certain necessary information, the App may generate Readings based on partial or approximate data, which may materially affect the fidelity and interpretive depth of the resulting content.</p>
<p><strong>C. Data Governance</strong></p>
<p>Compliance with all applicable data protection laws, details regarding the collection, handling, storage, security, retention, and User rights concerning Personal Data are governed exclusively by the separate <a href="https://riteset-landing.chrono-ai.fun/#privacy">RiteSet Privacy Policy</a>. The User's acceptance of these Terms constitutes acceptance of the Privacy Policy.</p>
<h3>5. CONTENT LIMITATIONS, DISCLAIMERS AND SERVICE CHANGES</h3>
<p><strong>A. Content Nature and Disclaimer of Professional Advice</strong></p>
<p>The User expressly understands and agrees to the following limitations regarding the Readings provided by RiteSet:</p>
<ul>
<li><strong>Non-Deterministic and Interpretive:</strong> All Readings and insights generated by RiteSet are fundamentally non-deterministic and interpretive in nature.</li>
<li><strong>Entertainment Purpose Only:</strong> The App is provided solely for entertainment, self-reflection, and informational purposes.</li>
<li><strong>No Substitute for Professional Services:</strong> The content generated by RiteSet must not be relied upon, or construed, as a substitute for professional advice, including, but not limited to, medical diagnosis or treatment, psychological counseling, legal counsel, financial planning, investment advice, or any other professional service. The User should always seek qualified, independent professional advice for such matters.</li>
</ul>
<p><strong>B. User Responsibility for Decisions</strong></p>
<p>The User remains solely and completely responsible for any and all decisions, actions, or omissions made by the User based, in whole or in part, on information, guidance, or insights provided through the App. ChronoAI accepts no liability for the consequences of such decisions.</p>
<p><strong>C. Service Modification and Updates</strong></p>
<p>ChronoAI reserves the unqualified right to update, modify, expand, enhance, or discontinue any and all features, functionality, interpretive systems, algorithms, and available content of the App at any time. This includes the introduction of new services or the modification of existing services. Such changes may be implemented with or without prior notice to the User, provided that the modified service continues to comply with the core obligations defined in these Terms.</p>
<h3>6. CHANGE, SUSPENSION AND TERMINATION OF CHRONOAI SERVICES</h3>
<p><strong>A. Service Modifications</strong></p>
<p>You acknowledge and accept that ChronoAI may, at its sole discretion, modify, introduce, or discontinue parts of its services at any time. This may include the suspension of certain functionalities or the introduction of new features. By continuing to use the App following any changes, you are deemed to have accepted the updated terms and conditions, including revisions to this Agreement.</p>
<p><strong>B. Temporary Suspension of Services</strong></p>
<p>ChronoAI may temporarily suspend its services under the following circumstances:</p>
<ul>
<li>Maintenance, upgrades, equipment failures, interruptions in, or disruptions in communication networks that necessitate the temporary suspension of ChronoAI's operations.</li>
<li>Force majeure events, including but not limited to natural disasters (typhoons, earthquakes, floods), power outages, wars, terrorist attacks, computer viruses, malware, hacker activities, system instabilities, or governmental actions that render the continued provision of services impractical or pose significant risks, in ChronoAI's reasonable opinion.</li>
<li>Other unforeseen events outside ChronoAI's control or ability to predict.</li>
</ul>
<p><strong>C. Unilateral Suspension or Termination</strong></p>
<p>ChronoAI reserves the right to unilaterally suspend or terminate all or part of its services for any of the following reasons:</p>
<ul>
<li>Death of a User.</li>
<li>Theft or unauthorized use of another person's mobile device.</li>
<li>Refusal to install a mandatory update to ChronoAI.</li>
<li>Use of ChronoAI for illegal or criminal activities.</li>
<li>Actions that impede the normal use of ChronoAI by other users.</li>
<li>Impersonation of ChronoAI staff or management.</li>
<li>Threats to ChronoAI's computer systems, including hacking, unauthorized alterations, or other malicious activities.</li>
<li>Sending spam or unsolicited communications via ChronoAI.</li>
<li>Spreading false information or engaging in actions that harm the reputation of ChronoAI or its team.</li>
<li>Any other illegal activity, breach of these Terms, or other circumstances where ChronoAI deems it reasonably necessary to suspend or terminate services.</li>
</ul>
<p><strong>D. Effect of Termination</strong></p>
<p>Upon the date of termination: (i) all your rights under these Terms immediately terminate; and (ii) each party remains responsible for all fees and charges it has incurred through the date of termination and is responsible for any fees and charges it incurs during the post-termination period; (iii) these Terms shall survive the expiration or termination to the full extent necessary for their enforcement and for the protection of the party in whose favor they operate.</p>
<h3>7. YOUR REPRESENTATIONS AND WARRANTIES</h3>
<p><strong>A. Compliance with Laws</strong></p>
<p>You represent and warrant that you will comply with all applicable laws, regulations, and policies of your country of nationality and/or country of residence. You shall not use ChronoAI for any unlawful purposes or through any unlawful means.</p>
<p><strong>B. Prohibited Activities</strong></p>
<p>You agree not to engage in any illegal or prohibited activities while using RiteSet, including but not limited to:</p>
<ul>
<li>Engaging in illegal activities such as money laundering, unauthorized fundraising, or other financial crimes;</li>
<li>Accessing or utilizing RiteSet through the use of automated programs, software, network bots, web crawlers, web analytics tools, data mining tools, or similar technologies to collect or process data or to interfere with the use of the services by others;</li>
<li>Providing or disseminating gambling-related information or inducing others to engage in gambling;</li>
<li>Gaining unauthorized access to another user's RiteSet account;</li>
<li>Conducting false or fraudulent transactions with counterparties or any actions that distort the integrity of the services provided by ChronoAI;</li>
<li>Engaging in activities that harm or attempt to harm ChronoAI's systems, data, or services;</li>
<li>Any other activities that ChronoAI reasonably determines to be inappropriate or in violation of its policies.</li>
</ul>
<p><strong>C. Responsibility for Violations</strong></p>
<p>You acknowledge and accept that you are responsible for any violation of applicable laws, including but not limited to customs and tax regulations, or breaches of these terms. You agree to indemnify and hold ChronoAI harmless from any losses, third-party claims, or administrative penalties incurred by ChronoAI as a result of your violations, including reasonable attorney's fees.</p>
<p><strong>D. Service Fees</strong></p>
<p>You confirm that you will pay any applicable service fees charged by ChronoAI in a timely manner. ChronoAI reserves the right to suspend or terminate services if you fail to pay the required fees.</p>
<h3>8. DISCLAIMER AND LIMITATION OF LIABILITY</h3>
<p><strong>A.</strong> ChronoAI's obligations are strictly limited to those expressly stated in this Agreement. RiteSet is provided "as is" and "as available" without any warranties of any kind.</p>
<p><strong>B. YOU ACKNOWLEDGE AND AGREE THAT, TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW IN YOUR JURISDICTION, CHRONOAI IS PROVIDED "AS IS," "AS AVAILABLE," AND "WITH ALL FAULTS."</strong> ChronoAI shall not be liable for any malfunction resulting from the following circumstances:</p>
<ul>
<li>Scheduled maintenance or updates to the ChronoAI system;</li>
<li>Events of force majeure, including but not limited to natural disasters, acts of war, terrorist attacks, or other unforeseeable events;</li>
<li>Failures of your hardware, software, telecommunications infrastructure, or power supply;</li>
<li>Your improper, unauthorized, or unrecognized use of ChronoAI services;</li>
<li>Events caused by computer viruses, malware, network congestion, system instability, or security breaches; and</li>
<li>Any other circumstances not attributable to ChronoAI.</li>
</ul>
<p><strong>C.</strong> ChronoAI shall not be liable in the following situations:</p>
<ul>
<li>Users disclose their private passwords, lend or transfer access to others, or use the App through unofficial channels, leading to loss or damages; and</li>
<li>Any risks associated with transactions or interactions with third-party applications, for which users assume full responsibility.</li>
</ul>
<p><strong>D. Risk Factors:</strong> By using the RiteSet mobile application and accessing the services provided by ChronoAI Pte. Ltd., you acknowledge and agree that you have carefully evaluated and fully accept the following risks:</p>
<ul>
<li><strong>Content Suitability and Interpretive Risk:</strong> The content provided by RiteSet is for entertainment, informational, and interpretive purposes only. It is not intended to be a substitute for professional advice. You should not rely on the content for making any legal, medical, financial, psychological, or other professional decisions.</li>
<li><strong>No Guarantee of Personal Outcomes:</strong> RiteSet provides no guarantees, assurances, or warranties regarding any specific outcome in your life, relationships, career, finances, health, or personal circumstances, as a result of using the application.</li>
<li><strong>Service Availability and Technical Issues:</strong> Like all mobile and internet-based services, the App may experience service interruptions, technical failures, data loss, downtime for maintenance, or security breaches. ChronoAI cannot guarantee that the Service will be uninterrupted, timely, secure, or entirely error-free.</li>
<li><strong>Third-Party Services and Platform Risk:</strong> RiteSet relies on third-party services, including mobile application stores, payment processors, cloud hosting providers, and analytics services. <strong>CHRONOAI IS NOT RESPONSIBLE FOR ANY DAMAGES, LOSSES, OR DISPUTES ARISING FROM THE ACTIONS, INACTIONS, FAILURES, OR POLICIES OF ANY THIRD-PARTY SERVICE.</strong></li>
<li><strong>Regulatory and Legal Uncertainty:</strong> The legal and regulatory landscape for mobile applications is constantly evolving globally. <strong>CHRONOAI IS NOT LIABLE FOR ANY LOSSES ARISING FROM CHANGES IN THE REGULATORY ENVIRONMENT OR DUE TO YOUR NON-COMPLIANCE WITH LOCAL LAWS.</strong></li>
</ul>
<p><strong>E. Limitations:</strong> By using the App, you acknowledge and agree to the following limitations regarding third-party services and platforms:</p>
<ul>
<li><strong>Mobile Application Stores (Platforms):</strong> RiteSet is accessed through third-party platforms, primarily the Apple App Store and Google Play Store. These Platforms are not controlled by ChronoAI. ChronoAI is not responsible for the operation, functionality, security, or availability of the Platform.</li>
<li><strong>Payment Processing and Billing:</strong> All purchases and subscriptions are processed by the respective Platform's payment systems. ChronoAI has no control over the billing, processing, or refund policies of these payment processors.</li>
<li><strong>Third-Party Content and External Links:</strong> The App may contain links to external websites or services not operated by ChronoAI. ChronoAI does not monitor, endorse, or assume any responsibility for the content, privacy policies, practices, or security of any third-party websites or services.</li>
</ul>
<p><strong>F.</strong> You acknowledge that ChronoAI may provide services to both you and your counterparties, and you hereby waive any actual or perceived conflict of interest.</p>
<p><strong>G.</strong> ChronoAI does not warrant that: the services will fully meet your expectations; the techniques, information, or services provided are comprehensive or entirely accurate; and your counterparties will fulfill their obligations in any transactions facilitated through ChronoAI.</p>
<p><strong>H. In any case, ChronoAI's total liability under this Agreement shall not exceed the greater of US$80.</strong></p>
<p><strong>I.</strong> You acknowledge that ChronoAI does not provide legal, tax, or investment advice. Users are encouraged to seek independent professional advice. ChronoAI shall not be liable for any financial or data losses incurred during the use of our services.</p>
<p><strong>J. CHRONOAI DOES NOT PROVIDE MEDICAL, PSYCHOLOGICAL, OR PROFESSIONAL HEALTH ADVICE.</strong></p>
<ul>
<li><strong>Entertainment and Self-Help Only:</strong> RiteSet is provided solely for wellness, self-care, and informational purposes.</li>
<li><strong>No Substitute for Professional Treatment:</strong> The App is not intended to diagnose, treat, cure, or prevent any medical or mental health condition.</li>
<li><strong>Crisis Warning:</strong> If you are experiencing a crisis, you must contact a licensed professional or emergency services immediately.</li>
<li><strong>User Responsibility:</strong> You are solely responsible for any decisions or actions taken based on information or insights provided through the App.</li>
</ul>
<p><strong>K.</strong> ChronoAI reserves the right to modify its eligibility criteria and restrict or limit access to services based on the legal, regulatory, or policy requirements in your jurisdiction.</p>
<h3>9. INTELLECTUAL PROPERTY RIGHTS PROTECTION</h3>
<p><strong>A. Ownership and Content Rights</strong></p>
<p>RiteSet is a proprietary mobile application developed, owned, and operated by ChronoAI Pte. Ltd. (or its licensors). All intellectual property rights related to the application and its content are owned by ChronoAI or are licensed to ChronoAI by third-party licensors.</p>
<p>This intellectual property includes, but is not limited to: the software code and architecture of the RiteSet application; all personalized interpretive content; all articles, videos, audio files, images, data, materials, trademarks, logos (including the RiteSet and ChronoAI marks), design, text, and other proprietary content available within the Service (collectively, the "RiteSet Content").</p>
<p><strong>B. Grant of Limited License</strong></p>
<p>ChronoAI hereby grants you a limited, non-exclusive, non-sublicensable, non-transferable, revocable license to:</p>
<ul>
<li>Access and use the RiteSet application solely for your personal, non-commercial use as permitted by these Terms of Use.</li>
<li>View, download, and print individual pages of RiteSet Content for your personal, non-commercial reference only.</li>
</ul>
<p><strong>C. Usage Restrictions and Prohibitions</strong></p>
<p>You agree that you will not and will not permit any third party to:</p>
<ul>
<li>Reproduce, modify, adapt, translate, distribute, publicly display, sell, reverse engineer, or otherwise exploit the RiteSet Content or the application software, in whole or in part, except as expressly permitted herein.</li>
<li>Use any RiteSet Content for commercial purposes without the express prior written consent of ChronoAI.</li>
<li>Attempt to circumvent, disable, or otherwise interfere with any security-related features of the application or any features that prevent or restrict use or copying of any Content.</li>
<li>Remove or obscure any proprietary rights notices (including copyright and trademark notices) contained in or accompanying the RiteSet Content.</li>
</ul>
<p>Any unauthorized use of ChronoAI's intellectual property or related content will be considered a violation of intellectual property rights and subject to legal action.</p>
<h3>10. BINDING ARBITRATION AND CLASS ACTION WAIVER</h3>
<p><strong>PLEASE READ THIS SECTION CAREFULLY – IT MAY SIGNIFICANTLY AFFECT YOUR LEGAL RIGHTS, INCLUDING YOUR RIGHT TO FILE A LAWSUIT IN COURT.</strong></p>
<p><strong>A. Binding Arbitration</strong></p>
<p>Any dispute, claim or controversy ("Claim") relating in any way to this Agreement, or your use of the App will be resolved by binding arbitration as provided in this Section, rather than in court, except that you may assert claims in small claims court if your claims qualify.</p>
<p><strong>If you are located in the United States:</strong> This agreement shall be governed by and construed in accordance with the laws of the State of Texas. The Federal Arbitration Act and federal arbitration law apply to this Agreement. The arbitration will be conducted in accordance with the expedited procedures set forth in the JAMS Comprehensive Arbitration Rules and Procedures. The arbitrator's decision shall be final, binding, and non-appealable.</p>
<p><strong>If you are located in the United Kingdom:</strong> This Agreement shall be governed by and construed in accordance with the law of England and Wales. Prior to commencing any formal arbitration proceedings, parties shall first seek settlement by mediation in accordance with the LCIA Mediation Rules. If the dispute is not settled by mediation within 14 days, the dispute shall be referred to arbitration under the LCIA Rules. The seat of arbitration shall be London.</p>
<p><strong>If you are located in any other territory:</strong> This Agreement shall be governed by and construed in accordance with the laws of Singapore. Any Claim shall be resolved through binding arbitration under the Singapore International Arbitration Centre (SIAC) Rules. The arbitration shall be conducted in English. The seat of arbitration shall be Singapore.</p>
<p><strong>B. Class Action Waiver</strong></p>
<p><strong>YOU AND WE AGREE THAT EACH MAY BRING CLAIMS AGAINST THE OTHER ONLY ON AN INDIVIDUAL BASIS, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING. YOU AND WE EXPRESSLY WAIVE ANY RIGHT TO FILE A CLASS ACTION OR SEEK RELIEF ON A CLASS BASIS.</strong> Unless both you and we agree, no arbitrator or judge may consolidate more than one person's claims or otherwise preside over any form of a representative or class proceeding.</p>
<h3>11. MISCELLANEOUS</h3>
<p><strong>A. Assignment</strong></p>
<p>You will not assign or otherwise transfer this Agreement or any of your rights and obligations under this Agreement, without our prior written consent. Any assignment or transfer in violation of this Section will be void. We may assign this Agreement without your consent (a) in connection with a merger, acquisition or sale of all or substantially all of our assets, or (b) to any Affiliate or as part of a corporate reorganization.</p>
<p><strong>B. Entire Agreement</strong></p>
<p>These Terms set forth the entire understanding and agreement as to the subject matter hereof and supersedes any and all prior discussions, agreements, and understandings of any kind (including, without limitation, any prior versions of the Terms) and every nature between us.</p>
<p><strong>C. Severability</strong></p>
<p>If any provision of this Agreement is found to be invalid or unenforceable, the remaining provisions shall continue in full force and effect. The invalid or unenforceable provision will be interpreted, to the extent possible, to fulfill the original intent. If such interpretation is not feasible, the invalid or unenforceable provision will be severed from this Agreement.</p>
<p><strong>D. Independent Contractors; Non-Exclusive Rights</strong></p>
<p>The relationship between you and ChronoAI is that of independent contractors. Nothing in these Terms shall be construed as creating a partnership, joint venture, agency, fiduciary, or employment relationship between the parties.</p>
<p><strong>E. Notices</strong></p>
<p>Any notices or other communications provided by us under these Terms, including those regarding modifications to it will be given by posting to the App and/or through other electronic communication. You agree and consent to receive electronically all communications, agreements, documents, notices and disclosures that we provide in connection with your account and your use of the App.</p>
<p><strong>F. Questions/Comments</strong></p>
<p>If you have any questions relating to these Terms, your rights and obligations arising from these Terms and/or your use of the App or any other matter, please contact us via our Instagram page (<a href="https://www.instagram.com/riteset.app/" target="_blank" rel="noopener">https://www.instagram.com/riteset.app/</a>).</p>
<div class="legal-footer">
<div class="footer-logo">riteset</div>
<p class="copyright">© 2026 ChronoAI Pte. Ltd. All rights reserved.</p>
</div>
</div>
</section>
</body>
</html>