index.html 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta name="description" content="Privacy Policy for Reddora AI — how we collect, use, and protect your information.">
  7. <title>Privacy Policy — Reddora AI</title>
  8. <link rel="icon" type="image/png" href="../assets/favicon.png">
  9. <link rel="apple-touch-icon" href="../assets/app-logo.png">
  10. <link rel="preconnect" href="https://fonts.googleapis.com">
  11. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  12. <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
  13. <style>
  14. :root {
  15. --purple: #5833c7;
  16. --purple-light: #6b46e5;
  17. --purple-soft: #f3f0ff;
  18. --bg: #fafafa;
  19. --surface: #ffffff;
  20. --text: #111827;
  21. --text-secondary: #4b5563;
  22. --text-muted: #9ca3af;
  23. --border: #e5e7eb;
  24. --shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.05);
  25. --radius: 12px;
  26. --radius-sm: 8px;
  27. --max-width: 1120px;
  28. --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  29. }
  30. *, *::before, *::after { box-sizing: border-box; }
  31. html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  32. body {
  33. margin: 0;
  34. font-family: var(--font);
  35. font-size: 16px;
  36. line-height: 1.65;
  37. color: var(--text);
  38. background: var(--bg);
  39. -webkit-font-smoothing: antialiased;
  40. }
  41. a { color: var(--purple); text-decoration: none; transition: color 0.15s ease; }
  42. a:hover { color: var(--purple-light); text-decoration: underline; }
  43. .page-hero {
  44. background: linear-gradient(180deg, var(--purple-soft) 0%, var(--bg) 100%);
  45. border-bottom: 1px solid var(--border); padding: 48px 24px 40px;
  46. }
  47. .page-hero__inner { max-width: var(--max-width); margin: 0 auto; }
  48. .page-hero__eyebrow {
  49. display: inline-flex; align-items: center; margin: 0 0 12px;
  50. padding: 4px 10px; border-radius: 999px; background: rgba(88, 51, 199, 0.1);
  51. color: var(--purple); font-size: 0.75rem; font-weight: 600;
  52. letter-spacing: 0.04em; text-transform: uppercase;
  53. }
  54. .page-hero h1 {
  55. margin: 0 0 12px; font-size: clamp(2rem, 4vw, 2.75rem);
  56. font-weight: 800; letter-spacing: -0.03em; line-height: 1.15;
  57. }
  58. .page-hero__meta { margin: 0; color: var(--text-secondary); font-size: 0.95rem; }
  59. .page-layout {
  60. max-width: var(--max-width); margin: 0 auto; padding: 40px 24px 80px;
  61. display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 48px; align-items: start;
  62. }
  63. .toc {
  64. position: sticky; top: 24px; padding: 20px;
  65. background: var(--surface); border: 1px solid var(--border);
  66. border-radius: var(--radius); box-shadow: var(--shadow-sm);
  67. }
  68. .toc__title {
  69. margin: 0 0 12px; font-size: 0.7rem; font-weight: 700;
  70. letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted);
  71. }
  72. .toc ol { margin: 0; padding: 0; list-style: none; }
  73. .toc li + li { margin-top: 2px; }
  74. .toc a {
  75. display: block; padding: 6px 8px; border-radius: 6px;
  76. font-size: 0.85rem; font-weight: 500; color: var(--text-secondary);
  77. text-decoration: none; line-height: 1.4;
  78. }
  79. .toc a:hover { color: var(--purple); background: var(--purple-soft); text-decoration: none; }
  80. .legal-content { min-width: 0; }
  81. .legal-card {
  82. background: var(--surface); border: 1px solid var(--border);
  83. border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 40px 44px;
  84. }
  85. .legal-intro {
  86. margin: 0 0 36px; padding-bottom: 28px; border-bottom: 1px solid var(--border);
  87. font-size: 1.05rem; color: var(--text-secondary);
  88. }
  89. .legal-section { scroll-margin-top: 20px; }
  90. .legal-section + .legal-section {
  91. margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--border);
  92. }
  93. .legal-section h2 {
  94. margin: 0 0 16px; font-size: 1.35rem; font-weight: 700;
  95. letter-spacing: -0.02em; line-height: 1.3; color: var(--text);
  96. }
  97. .legal-section h3 { margin: 24px 0 10px; font-size: 1rem; font-weight: 600; color: var(--text); }
  98. .legal-section p { margin: 0 0 14px; color: var(--text-secondary); }
  99. .legal-section ul, .legal-section ol {
  100. margin: 0 0 16px; padding-left: 1.35rem; color: var(--text-secondary);
  101. }
  102. .legal-section li { margin-bottom: 8px; }
  103. .legal-section li strong { color: var(--text); }
  104. .legal-section a { font-weight: 500; }
  105. .callout {
  106. margin: 20px 0; padding: 16px 18px; border-radius: var(--radius-sm);
  107. border-left: 3px solid var(--purple); background: var(--purple-soft);
  108. font-size: 0.95rem; color: var(--text-secondary);
  109. }
  110. .callout strong { color: var(--text); }
  111. .site-footer { border-top: 1px solid var(--border); background: var(--surface); padding: 32px 24px; }
  112. .site-footer__inner {
  113. max-width: var(--max-width); margin: 0 auto;
  114. display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  115. }
  116. .site-footer__copy { margin: 0; font-size: 0.875rem; color: var(--text-muted); }
  117. .site-footer__links { display: flex; flex-wrap: wrap; gap: 8px 20px; }
  118. .site-footer__links a {
  119. font-size: 0.875rem; font-weight: 500; color: var(--text-secondary); text-decoration: none;
  120. }
  121. .site-footer__links a:hover { color: var(--purple); }
  122. @media (max-width: 900px) {
  123. .page-layout { grid-template-columns: 1fr; gap: 24px; padding-top: 24px; }
  124. .toc { position: static; }
  125. .legal-card { padding: 28px 24px; }
  126. }
  127. @media (max-width: 600px) {
  128. .page-hero { padding: 36px 16px 28px; }
  129. .page-layout { padding: 24px 16px 60px; }
  130. }
  131. </style>
  132. </head>
  133. <body>
  134. <section class="page-hero">
  135. <div class="page-hero__inner">
  136. <p class="page-hero__eyebrow">Legal</p>
  137. <h1>Privacy Policy</h1>
  138. <p class="page-hero__meta">Last updated: June 24, 2026</p>
  139. </div>
  140. </section>
  141. <div class="page-layout">
  142. <aside class="toc" aria-label="Table of contents">
  143. <p class="toc__title">On this page</p>
  144. <ol>
  145. <li><a href="#introduction">Introduction</a></li>
  146. <li><a href="#information-we-collect">Information We Collect</a></li>
  147. <li><a href="#how-we-use">How We Use Information</a></li>
  148. <li><a href="#ai-processing">AI Processing</a></li>
  149. <li><a href="#reddit-integration">Reddit Integration</a></li>
  150. <li><a href="#subscriptions">Subscriptions &amp; Payments</a></li>
  151. <li><a href="#data-storage">Data Storage &amp; Retention</a></li>
  152. <li><a href="#sharing">How We Share Information</a></li>
  153. <li><a href="#your-rights">Your Rights &amp; Choices</a></li>
  154. <li><a href="#security">Security</a></li>
  155. <li><a href="#children">Children's Privacy</a></li>
  156. <li><a href="#international">International Users</a></li>
  157. <li><a href="#changes">Changes to This Policy</a></li>
  158. </ol>
  159. </aside>
  160. <main class="legal-content">
  161. <article class="legal-card">
  162. <p class="legal-intro">
  163. Reddora AI ("we," "us," or "our") respects your privacy. This Privacy Policy explains how we handle information when you use the Reddora AI macOS application, our website at <a href="https://reddora.ai">reddora.ai</a>, and related services (collectively, the "Service").
  164. </p>
  165. <section class="legal-section" id="introduction">
  166. <h2>1. Introduction</h2>
  167. <p>
  168. Reddora AI provides AI-powered tools to help you draft Reddit posts, optimize titles, and write comments. By using the Service, you agree to the collection and use of information as described in this policy.
  169. </p>
  170. <div class="callout">
  171. <strong>Summary:</strong> We collect only what we need to run the app, process AI requests for premium users, manage subscriptions, and improve the Service. We do not sell your personal information.
  172. </div>
  173. </section>
  174. <section class="legal-section" id="information-we-collect">
  175. <h2>2. Information We Collect</h2>
  176. <h3>Information you provide</h3>
  177. <ul>
  178. <li><strong>AI tool inputs:</strong> Text you enter into Post Generator, Title Optimizer, Comment Writer, and related features (e.g., subreddit names, post titles, draft content, tone preferences).</li>
  179. <li><strong>Support communications:</strong> Information you send when contacting us at <a href="mailto:support@reddora.ai">support@reddora.ai</a>.</li>
  180. </ul>
  181. <h3>Information collected automatically</h3>
  182. <ul>
  183. <li><strong>Device and app data:</strong> macOS version, app version, language settings, and general diagnostic information needed to maintain stability.</li>
  184. <li><strong>Usage data:</strong> Feature usage patterns (e.g., which tools are opened) to improve the product experience.</li>
  185. <li><strong>Subscription status:</strong> Whether you have an active premium subscription, as verified through Apple's StoreKit.</li>
  186. </ul>
  187. <h3>Information from third parties</h3>
  188. <ul>
  189. <li><strong>Apple:</strong> Purchase and subscription status when you buy premium access through the Mac App Store.</li>
  190. <li><strong>Reddit:</strong> If you sign in to Reddit within the app, session and account information is handled according to Reddit's own policies. We do not receive your Reddit password.</li>
  191. </ul>
  192. </section>
  193. <section class="legal-section" id="how-we-use">
  194. <h2>3. How We Use Information</h2>
  195. <p>We use the information we collect to:</p>
  196. <ul>
  197. <li>Provide, operate, and maintain the Service</li>
  198. <li>Process AI generation requests for premium subscribers</li>
  199. <li>Authenticate and manage your subscription status</li>
  200. <li>Store your AI history locally on your device when you use that feature</li>
  201. <li>Respond to support requests and communicate with you</li>
  202. <li>Detect, prevent, and address technical issues or abuse</li>
  203. <li>Improve features, performance, and user experience</li>
  204. <li>Comply with legal obligations</li>
  205. </ul>
  206. </section>
  207. <section class="legal-section" id="ai-processing">
  208. <h2>4. AI Processing</h2>
  209. <p>
  210. Premium features use third-party AI services to generate content based on your inputs. When you submit a request, relevant text (such as your draft post, title, or comment context) is transmitted to our AI provider to produce a response.
  211. </p>
  212. <ul>
  213. <li>AI requests are sent only when you actively trigger a generation action.</li>
  214. <li>We do not use your content to train our own models unless we explicitly tell you otherwise and obtain your consent.</li>
  215. <li>AI providers may process data according to their own terms and privacy policies. We select providers that maintain appropriate data protection standards.</li>
  216. <li>Generated responses may be saved in your local AI History on your Mac if you use that feature.</li>
  217. </ul>
  218. <p>
  219. Do not submit sensitive personal information (passwords, financial data, government IDs, health information) into AI tools.
  220. </p>
  221. </section>
  222. <section class="legal-section" id="reddit-integration">
  223. <h2>5. Reddit Integration</h2>
  224. <p>
  225. Reddora AI includes an embedded Reddit browsing experience and optional Reddit sign-in. When you use these features:
  226. </p>
  227. <ul>
  228. <li>You interact directly with Reddit's website and services, which are governed by <a href="https://www.reddit.com/policies/privacy-policy" target="_blank" rel="noopener noreferrer">Reddit's Privacy Policy</a> and <a href="https://www.reddit.com/policies/user-agreement" target="_blank" rel="noopener noreferrer">User Agreement</a>.</li>
  229. <li>We are not affiliated with Reddit, Inc. Reddora AI is an independent third-party application.</li>
  230. <li>Content you view or post on Reddit is subject to Reddit's rules and policies.</li>
  231. </ul>
  232. </section>
  233. <section class="legal-section" id="subscriptions">
  234. <h2>6. Subscriptions &amp; Payments</h2>
  235. <p>
  236. Premium subscriptions are processed entirely by Apple through the Mac App Store. We do not collect or store your payment card details.
  237. </p>
  238. <ul>
  239. <li>Apple provides us with subscription status information needed to unlock premium features.</li>
  240. <li>Refunds and billing disputes are handled by Apple according to their policies.</li>
  241. <li>You can manage or cancel subscriptions in your Apple ID account settings.</li>
  242. </ul>
  243. </section>
  244. <section class="legal-section" id="data-storage">
  245. <h2>7. Data Storage &amp; Retention</h2>
  246. <ul>
  247. <li><strong>Local storage:</strong> AI History, app preferences, and similar data are stored on your device. You can clear AI History from within the app.</li>
  248. <li><strong>Server processing:</strong> AI request data is retained only as long as needed to fulfill the request and for limited operational purposes (e.g., error logs), unless a longer period is required by law.</li>
  249. <li><strong>Support records:</strong> We retain support correspondence for a reasonable period to resolve issues and improve support quality.</li>
  250. </ul>
  251. <p>
  252. When you uninstall the app, locally stored data is removed from your device, subject to macOS system behavior and any backups you maintain.
  253. </p>
  254. </section>
  255. <section class="legal-section" id="sharing">
  256. <h2>8. How We Share Information</h2>
  257. <p>We do not sell your personal information. We may share information only in these circumstances:</p>
  258. <ul>
  259. <li><strong>Service providers:</strong> With vendors who help us operate the Service (e.g., AI API providers, hosting), under contractual obligations to protect your data.</li>
  260. <li><strong>Legal requirements:</strong> When required by law, regulation, legal process, or governmental request.</li>
  261. <li><strong>Protection of rights:</strong> To enforce our Terms, protect the safety of users, or address fraud and security issues.</li>
  262. <li><strong>Business transfers:</strong> In connection with a merger, acquisition, or sale of assets, with notice where required by law.</li>
  263. </ul>
  264. </section>
  265. <section class="legal-section" id="your-rights">
  266. <h2>9. Your Rights &amp; Choices</h2>
  267. <p>Depending on where you live, you may have rights to:</p>
  268. <ul>
  269. <li>Access the personal information we hold about you</li>
  270. <li>Request correction or deletion of your information</li>
  271. <li>Object to or restrict certain processing</li>
  272. <li>Withdraw consent where processing is consent-based</li>
  273. <li>Data portability</li>
  274. <li>Lodge a complaint with a supervisory authority</li>
  275. </ul>
  276. <p>
  277. To exercise these rights, contact us at <a href="mailto:support@reddora.ai">support@reddora.ai</a>. We will respond within the timeframe required by applicable law.
  278. </p>
  279. <p>
  280. California residents may have additional rights under the CCPA/CPRA. We do not sell personal information as defined under California law.
  281. </p>
  282. </section>
  283. <section class="legal-section" id="security">
  284. <h2>10. Security</h2>
  285. <p>
  286. We implement reasonable technical and organizational measures to protect your information, including encryption in transit for network requests. However, no method of transmission or storage is 100% secure, and we cannot guarantee absolute security.
  287. </p>
  288. </section>
  289. <section class="legal-section" id="children">
  290. <h2>11. Children's Privacy</h2>
  291. <p>
  292. The Service is not directed to children under 13 (or the minimum age required in your jurisdiction). We do not knowingly collect personal information from children. If you believe a child has provided us information, contact us and we will take steps to delete it.
  293. </p>
  294. </section>
  295. <section class="legal-section" id="international">
  296. <h2>12. International Users</h2>
  297. <p>
  298. If you access the Service from outside the country where our servers or service providers operate, your information may be transferred to and processed in other countries. We take steps to ensure appropriate safeguards are in place where required by law.
  299. </p>
  300. </section>
  301. <section class="legal-section" id="changes">
  302. <h2>13. Changes to This Policy</h2>
  303. <p>
  304. We may update this Privacy Policy from time to time. We will post the revised policy on this page and update the "Last updated" date. Material changes may also be communicated through the app or by email where appropriate. Continued use of the Service after changes take effect constitutes acceptance of the updated policy.
  305. </p>
  306. </section>
  307. </article>
  308. </main>
  309. </div>
  310. <footer class="site-footer">
  311. <div class="site-footer__inner">
  312. <p class="site-footer__copy">&copy; 2026 Reddora AI. All rights reserved.</p>
  313. <nav class="site-footer__links" aria-label="Footer">
  314. <a href="../">Home</a>
  315. <a href="../privacy/">Privacy Policy</a>
  316. <a href="../terms/">Terms &amp; Conditions</a>
  317. <a href="mailto:support@reddora.ai">Support</a>
  318. </nav>
  319. </div>
  320. </footer>
  321. </body>
  322. </html>