|
@@ -3,7 +3,7 @@
|
|
|
<head>
|
|
<head>
|
|
|
<meta charset="UTF-8">
|
|
<meta charset="UTF-8">
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
- <meta name="description" content="Terms and Conditions for App AI for Reddit — rules for using our macOS app and services.">
|
|
|
|
|
|
|
+ <meta name="description" content="Terms and Conditions for App AI for Reddit.">
|
|
|
<title>Terms & Conditions — App AI for Reddit</title>
|
|
<title>Terms & Conditions — App AI for Reddit</title>
|
|
|
<link rel="icon" type="image/png" href="../assets/favicon.png">
|
|
<link rel="icon" type="image/png" href="../assets/favicon.png">
|
|
|
<link rel="apple-touch-icon" href="../assets/app-logo.png">
|
|
<link rel="apple-touch-icon" href="../assets/app-logo.png">
|
|
@@ -13,7 +13,6 @@
|
|
|
<style>
|
|
<style>
|
|
|
:root {
|
|
:root {
|
|
|
--purple: #5833c7;
|
|
--purple: #5833c7;
|
|
|
- --purple-light: #6b46e5;
|
|
|
|
|
--purple-soft: #f3f0ff;
|
|
--purple-soft: #f3f0ff;
|
|
|
--bg: #fafafa;
|
|
--bg: #fafafa;
|
|
|
--surface: #ffffff;
|
|
--surface: #ffffff;
|
|
@@ -21,14 +20,11 @@
|
|
|
--text-secondary: #4b5563;
|
|
--text-secondary: #4b5563;
|
|
|
--text-muted: #9ca3af;
|
|
--text-muted: #9ca3af;
|
|
|
--border: #e5e7eb;
|
|
--border: #e5e7eb;
|
|
|
- --shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.05);
|
|
|
|
|
--radius: 12px;
|
|
--radius: 12px;
|
|
|
- --radius-sm: 8px;
|
|
|
|
|
- --max-width: 1120px;
|
|
|
|
|
|
|
+ --max-width: 720px;
|
|
|
--font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
--font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
|
|
}
|
|
}
|
|
|
*, *::before, *::after { box-sizing: border-box; }
|
|
*, *::before, *::after { box-sizing: border-box; }
|
|
|
- html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
|
|
|
|
|
body {
|
|
body {
|
|
|
margin: 0;
|
|
margin: 0;
|
|
|
font-family: var(--font);
|
|
font-family: var(--font);
|
|
@@ -38,334 +34,187 @@
|
|
|
background: var(--bg);
|
|
background: var(--bg);
|
|
|
-webkit-font-smoothing: antialiased;
|
|
-webkit-font-smoothing: antialiased;
|
|
|
}
|
|
}
|
|
|
- a { color: var(--purple); text-decoration: none; transition: color 0.15s ease; }
|
|
|
|
|
- a:hover { color: var(--purple-light); text-decoration: underline; }
|
|
|
|
|
.page-hero {
|
|
.page-hero {
|
|
|
background: linear-gradient(180deg, var(--purple-soft) 0%, var(--bg) 100%);
|
|
background: linear-gradient(180deg, var(--purple-soft) 0%, var(--bg) 100%);
|
|
|
- border-bottom: 1px solid var(--border); padding: 48px 24px 40px;
|
|
|
|
|
- }
|
|
|
|
|
- .page-hero__inner { max-width: var(--max-width); margin: 0 auto; }
|
|
|
|
|
- .page-hero__eyebrow {
|
|
|
|
|
- display: inline-flex; align-items: center; margin: 0 0 12px;
|
|
|
|
|
- padding: 4px 10px; border-radius: 999px; background: rgba(88, 51, 199, 0.1);
|
|
|
|
|
- color: var(--purple); font-size: 0.75rem; font-weight: 600;
|
|
|
|
|
- letter-spacing: 0.04em; text-transform: uppercase;
|
|
|
|
|
|
|
+ border-bottom: 1px solid var(--border);
|
|
|
|
|
+ padding: 48px 24px 40px;
|
|
|
|
|
+ text-align: center;
|
|
|
}
|
|
}
|
|
|
.page-hero h1 {
|
|
.page-hero h1 {
|
|
|
- margin: 0 0 12px; font-size: clamp(2rem, 4vw, 2.75rem);
|
|
|
|
|
- font-weight: 800; letter-spacing: -0.03em; line-height: 1.15;
|
|
|
|
|
|
|
+ margin: 0 0 12px;
|
|
|
|
|
+ font-size: clamp(2rem, 4vw, 2.5rem);
|
|
|
|
|
+ font-weight: 800;
|
|
|
|
|
+ letter-spacing: -0.03em;
|
|
|
}
|
|
}
|
|
|
.page-hero__meta { margin: 0; color: var(--text-secondary); font-size: 0.95rem; }
|
|
.page-hero__meta { margin: 0; color: var(--text-secondary); font-size: 0.95rem; }
|
|
|
- .page-layout {
|
|
|
|
|
- max-width: var(--max-width); margin: 0 auto; padding: 40px 24px 80px;
|
|
|
|
|
- display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 48px; align-items: start;
|
|
|
|
|
- }
|
|
|
|
|
- .toc {
|
|
|
|
|
- position: sticky; top: 24px; padding: 20px;
|
|
|
|
|
- background: var(--surface); border: 1px solid var(--border);
|
|
|
|
|
- border-radius: var(--radius); box-shadow: var(--shadow-sm);
|
|
|
|
|
- }
|
|
|
|
|
- .toc__title {
|
|
|
|
|
- margin: 0 0 12px; font-size: 0.7rem; font-weight: 700;
|
|
|
|
|
- letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted);
|
|
|
|
|
- }
|
|
|
|
|
- .toc ol { margin: 0; padding: 0; list-style: none; }
|
|
|
|
|
- .toc li + li { margin-top: 2px; }
|
|
|
|
|
- .toc a {
|
|
|
|
|
- display: block; padding: 6px 8px; border-radius: 6px;
|
|
|
|
|
- font-size: 0.85rem; font-weight: 500; color: var(--text-secondary);
|
|
|
|
|
- text-decoration: none; line-height: 1.4;
|
|
|
|
|
|
|
+ .page-content {
|
|
|
|
|
+ max-width: var(--max-width);
|
|
|
|
|
+ margin: 0 auto;
|
|
|
|
|
+ padding: 40px 24px 80px;
|
|
|
}
|
|
}
|
|
|
- .toc a:hover { color: var(--purple); background: var(--purple-soft); text-decoration: none; }
|
|
|
|
|
- .legal-content { min-width: 0; }
|
|
|
|
|
.legal-card {
|
|
.legal-card {
|
|
|
- background: var(--surface); border: 1px solid var(--border);
|
|
|
|
|
- border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 40px 44px;
|
|
|
|
|
|
|
+ background: var(--surface);
|
|
|
|
|
+ border: 1px solid var(--border);
|
|
|
|
|
+ border-radius: var(--radius);
|
|
|
|
|
+ padding: 40px 44px;
|
|
|
}
|
|
}
|
|
|
.legal-intro {
|
|
.legal-intro {
|
|
|
- margin: 0 0 36px; padding-bottom: 28px; border-bottom: 1px solid var(--border);
|
|
|
|
|
- font-size: 1.05rem; color: var(--text-secondary);
|
|
|
|
|
|
|
+ margin: 0 0 32px;
|
|
|
|
|
+ padding-bottom: 24px;
|
|
|
|
|
+ border-bottom: 1px solid var(--border);
|
|
|
|
|
+ color: var(--text-secondary);
|
|
|
}
|
|
}
|
|
|
- .legal-section { scroll-margin-top: 20px; }
|
|
|
|
|
.legal-section + .legal-section {
|
|
.legal-section + .legal-section {
|
|
|
- margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--border);
|
|
|
|
|
|
|
+ margin-top: 32px;
|
|
|
|
|
+ padding-top: 32px;
|
|
|
|
|
+ border-top: 1px solid var(--border);
|
|
|
}
|
|
}
|
|
|
.legal-section h2 {
|
|
.legal-section h2 {
|
|
|
- margin: 0 0 16px; font-size: 1.35rem; font-weight: 700;
|
|
|
|
|
- letter-spacing: -0.02em; line-height: 1.3; color: var(--text);
|
|
|
|
|
|
|
+ margin: 0 0 12px;
|
|
|
|
|
+ font-size: 1.2rem;
|
|
|
|
|
+ font-weight: 700;
|
|
|
|
|
+ letter-spacing: -0.02em;
|
|
|
}
|
|
}
|
|
|
- .legal-section h3 { margin: 24px 0 10px; font-size: 1rem; font-weight: 600; color: var(--text); }
|
|
|
|
|
- .legal-section p { margin: 0 0 14px; color: var(--text-secondary); }
|
|
|
|
|
- .legal-section ul, .legal-section ol {
|
|
|
|
|
- margin: 0 0 16px; padding-left: 1.35rem; color: var(--text-secondary);
|
|
|
|
|
|
|
+ .legal-section p { margin: 0 0 12px; color: var(--text-secondary); }
|
|
|
|
|
+ .legal-section ul {
|
|
|
|
|
+ margin: 0 0 12px;
|
|
|
|
|
+ padding-left: 1.35rem;
|
|
|
|
|
+ color: var(--text-secondary);
|
|
|
}
|
|
}
|
|
|
.legal-section li { margin-bottom: 8px; }
|
|
.legal-section li { margin-bottom: 8px; }
|
|
|
.legal-section li strong { color: var(--text); }
|
|
.legal-section li strong { color: var(--text); }
|
|
|
- .legal-section a { font-weight: 500; }
|
|
|
|
|
.callout {
|
|
.callout {
|
|
|
- margin: 20px 0; padding: 16px 18px; border-radius: var(--radius-sm);
|
|
|
|
|
- border-left: 3px solid var(--purple); background: var(--purple-soft);
|
|
|
|
|
- font-size: 0.95rem; color: var(--text-secondary);
|
|
|
|
|
- }
|
|
|
|
|
- .callout strong { color: var(--text); }
|
|
|
|
|
- .site-footer { border-top: 1px solid var(--border); background: var(--surface); padding: 32px 24px; }
|
|
|
|
|
- .site-footer__inner {
|
|
|
|
|
- max-width: var(--max-width); margin: 0 auto;
|
|
|
|
|
- display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
|
|
|
|
|
|
|
+ margin: 16px 0;
|
|
|
|
|
+ padding: 14px 16px;
|
|
|
|
|
+ border-left: 3px solid var(--purple);
|
|
|
|
|
+ background: var(--purple-soft);
|
|
|
|
|
+ color: var(--text-secondary);
|
|
|
|
|
+ font-size: 0.95rem;
|
|
|
|
|
+ }
|
|
|
|
|
+ .site-footer {
|
|
|
|
|
+ border-top: 1px solid var(--border);
|
|
|
|
|
+ background: var(--surface);
|
|
|
|
|
+ padding: 32px 24px;
|
|
|
|
|
+ text-align: center;
|
|
|
}
|
|
}
|
|
|
.site-footer__copy { margin: 0; font-size: 0.875rem; color: var(--text-muted); }
|
|
.site-footer__copy { margin: 0; font-size: 0.875rem; color: var(--text-muted); }
|
|
|
- .site-footer__links { display: flex; flex-wrap: wrap; gap: 8px 20px; }
|
|
|
|
|
- .site-footer__links a {
|
|
|
|
|
- font-size: 0.875rem; font-weight: 500; color: var(--text-secondary); text-decoration: none;
|
|
|
|
|
- }
|
|
|
|
|
- .site-footer__links a:hover { color: var(--purple); }
|
|
|
|
|
- @media (max-width: 900px) {
|
|
|
|
|
- .page-layout { grid-template-columns: 1fr; gap: 24px; padding-top: 24px; }
|
|
|
|
|
- .toc { position: static; }
|
|
|
|
|
- .legal-card { padding: 28px 24px; }
|
|
|
|
|
- }
|
|
|
|
|
@media (max-width: 600px) {
|
|
@media (max-width: 600px) {
|
|
|
.page-hero { padding: 36px 16px 28px; }
|
|
.page-hero { padding: 36px 16px 28px; }
|
|
|
- .page-layout { padding: 24px 16px 60px; }
|
|
|
|
|
|
|
+ .page-content { padding: 24px 16px 60px; }
|
|
|
|
|
+ .legal-card { padding: 28px 24px; }
|
|
|
}
|
|
}
|
|
|
</style>
|
|
</style>
|
|
|
</head>
|
|
</head>
|
|
|
<body>
|
|
<body>
|
|
|
|
|
|
|
|
<section class="page-hero">
|
|
<section class="page-hero">
|
|
|
- <div class="page-hero__inner">
|
|
|
|
|
- <p class="page-hero__eyebrow">Legal</p>
|
|
|
|
|
- <h1>Terms & Conditions</h1>
|
|
|
|
|
- <p class="page-hero__meta">Last updated: June 24, 2026</p>
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
+ <h1>Terms & Conditions</h1>
|
|
|
|
|
+ <p class="page-hero__meta">Last updated: June 30, 2026</p>
|
|
|
</section>
|
|
</section>
|
|
|
|
|
|
|
|
- <div class="page-layout">
|
|
|
|
|
- <aside class="toc" aria-label="Table of contents">
|
|
|
|
|
- <p class="toc__title">On this page</p>
|
|
|
|
|
- <ol>
|
|
|
|
|
- <li><a href="#agreement">Agreement to Terms</a></li>
|
|
|
|
|
- <li><a href="#description">Description of Service</a></li>
|
|
|
|
|
- <li><a href="#eligibility">Eligibility</a></li>
|
|
|
|
|
- <li><a href="#accounts">Accounts & Access</a></li>
|
|
|
|
|
- <li><a href="#subscriptions">Subscriptions & Billing</a></li>
|
|
|
|
|
- <li><a href="#ai-features">AI Features & Content</a></li>
|
|
|
|
|
- <li><a href="#reddit">Reddit & Third-Party Services</a></li>
|
|
|
|
|
- <li><a href="#acceptable-use">Acceptable Use</a></li>
|
|
|
|
|
- <li><a href="#intellectual-property">Intellectual Property</a></li>
|
|
|
|
|
- <li><a href="#disclaimers">Disclaimers</a></li>
|
|
|
|
|
- <li><a href="#limitation">Limitation of Liability</a></li>
|
|
|
|
|
- <li><a href="#indemnification">Indemnification</a></li>
|
|
|
|
|
- <li><a href="#termination">Termination</a></li>
|
|
|
|
|
- <li><a href="#governing-law">Governing Law</a></li>
|
|
|
|
|
- <li><a href="#changes">Changes to Terms</a></li>
|
|
|
|
|
- </ol>
|
|
|
|
|
- </aside>
|
|
|
|
|
-
|
|
|
|
|
- <main class="legal-content">
|
|
|
|
|
- <article class="legal-card">
|
|
|
|
|
- <p class="legal-intro">
|
|
|
|
|
- These Terms & Conditions ("Terms") govern your access to and use of the App AI for Reddit macOS application, website at <a href="https://reddora.ai">reddora.ai</a>, and related services (collectively, the "Service") provided by App AI for Reddit ("we," "us," or "our"). Please read them carefully before using the Service.
|
|
|
|
|
- </p>
|
|
|
|
|
-
|
|
|
|
|
- <section class="legal-section" id="agreement">
|
|
|
|
|
- <h2>1. Agreement to Terms</h2>
|
|
|
|
|
- <p>
|
|
|
|
|
- By downloading, installing, accessing, or using the Service, you agree to be bound by these Terms and our <a href="../privacy/">Privacy Policy</a>, which is incorporated by reference. If you do not agree, do not use the Service.
|
|
|
|
|
- </p>
|
|
|
|
|
- </section>
|
|
|
|
|
-
|
|
|
|
|
- <section class="legal-section" id="description">
|
|
|
|
|
- <h2>2. Description of Service</h2>
|
|
|
|
|
- <p>
|
|
|
|
|
- App AI for Reddit is a macOS application that provides tools to help Reddit users create and refine content, including:
|
|
|
|
|
- </p>
|
|
|
|
|
- <ul>
|
|
|
|
|
- <li><strong>Post Generator</strong> — AI-assisted drafting of Reddit posts</li>
|
|
|
|
|
- <li><strong>Title Optimizer</strong> — suggestions to improve post titles</li>
|
|
|
|
|
- <li><strong>Comment Writer</strong> — AI-assisted comment drafting</li>
|
|
|
|
|
- <li><strong>AI History</strong> — local storage of past AI responses</li>
|
|
|
|
|
- <li><strong>Embedded Reddit browsing</strong> — in-app access to Reddit.com</li>
|
|
|
|
|
- </ul>
|
|
|
|
|
- <p>
|
|
|
|
|
- Some features require an active premium subscription. We may add, modify, or discontinue features at any time.
|
|
|
|
|
- </p>
|
|
|
|
|
- </section>
|
|
|
|
|
-
|
|
|
|
|
- <section class="legal-section" id="eligibility">
|
|
|
|
|
- <h2>3. Eligibility</h2>
|
|
|
|
|
- <p>
|
|
|
|
|
- You must be at least 13 years old (or the minimum age required in your jurisdiction) to use the Service. If you use Reddit through our app, you must also comply with Reddit's minimum age requirements and terms.
|
|
|
|
|
- </p>
|
|
|
|
|
- <p>
|
|
|
|
|
- By using the Service, you represent that you meet these requirements and have the legal capacity to enter into these Terms.
|
|
|
|
|
- </p>
|
|
|
|
|
- </section>
|
|
|
|
|
-
|
|
|
|
|
- <section class="legal-section" id="accounts">
|
|
|
|
|
- <h2>4. Accounts & Access</h2>
|
|
|
|
|
- <ul>
|
|
|
|
|
- <li>Premium access is tied to your Apple ID and Mac App Store purchases.</li>
|
|
|
|
|
- <li>If you sign in to Reddit within the app, you are responsible for maintaining the security of your Reddit account credentials.</li>
|
|
|
|
|
- <li>You are responsible for all activity that occurs through your use of the Service on your device.</li>
|
|
|
|
|
- <li>You must notify us promptly of any unauthorized use or security breach at <a href="mailto:support@reddora.ai">support@reddora.ai</a>.</li>
|
|
|
|
|
- </ul>
|
|
|
|
|
- </section>
|
|
|
|
|
-
|
|
|
|
|
- <section class="legal-section" id="subscriptions">
|
|
|
|
|
- <h2>5. Subscriptions & Billing</h2>
|
|
|
|
|
-
|
|
|
|
|
- <h3>Premium plans</h3>
|
|
|
|
|
- <p>
|
|
|
|
|
- Premium subscriptions are sold through Apple's Mac App Store and are subject to Apple's terms and conditions. Payment, renewal, cancellation, and refunds are handled by Apple, not directly by us.
|
|
|
|
|
- </p>
|
|
|
|
|
-
|
|
|
|
|
- <h3>Auto-renewal</h3>
|
|
|
|
|
- <p>
|
|
|
|
|
- Subscriptions automatically renew unless canceled at least 24 hours before the end of the current billing period. You can manage or cancel subscriptions in your Apple ID account settings.
|
|
|
|
|
- </p>
|
|
|
|
|
-
|
|
|
|
|
- <h3>Free trials and promotions</h3>
|
|
|
|
|
- <p>
|
|
|
|
|
- If we offer a free trial or promotional pricing, specific terms will be presented at the time of offer. We reserve the right to modify or discontinue promotions at any time.
|
|
|
|
|
- </p>
|
|
|
|
|
-
|
|
|
|
|
- <h3>Price changes</h3>
|
|
|
|
|
- <p>
|
|
|
|
|
- Subscription prices may change. Apple will notify you of price changes in accordance with App Store policies before they take effect.
|
|
|
|
|
- </p>
|
|
|
|
|
- </section>
|
|
|
|
|
-
|
|
|
|
|
- <section class="legal-section" id="ai-features">
|
|
|
|
|
- <h2>6. AI Features & Content</h2>
|
|
|
|
|
-
|
|
|
|
|
- <div class="callout">
|
|
|
|
|
- <strong>Important:</strong> AI-generated content is provided for assistance only. You are solely responsible for reviewing, editing, and deciding whether to publish any content on Reddit or elsewhere.
|
|
|
|
|
- </div>
|
|
|
|
|
-
|
|
|
|
|
- <ul>
|
|
|
|
|
- <li>AI outputs may be inaccurate, incomplete, biased, or inappropriate. Do not rely on them without independent review.</li>
|
|
|
|
|
- <li>You retain responsibility for ensuring your Reddit posts and comments comply with subreddit rules, Reddit's Content Policy, and applicable laws.</li>
|
|
|
|
|
- <li>You grant us a limited license to process your inputs solely to provide AI features and operate the Service, as described in our Privacy Policy.</li>
|
|
|
|
|
- <li>We do not guarantee specific results, engagement, upvotes, or moderation outcomes on Reddit.</li>
|
|
|
|
|
- <li>AI features may be unavailable due to maintenance, API limits, network issues, or subscription status.</li>
|
|
|
|
|
- </ul>
|
|
|
|
|
- </section>
|
|
|
|
|
-
|
|
|
|
|
- <section class="legal-section" id="reddit">
|
|
|
|
|
- <h2>7. Reddit & Third-Party Services</h2>
|
|
|
|
|
- <p>
|
|
|
|
|
- App AI for Reddit is an independent application and is <strong>not affiliated with, endorsed by, or sponsored by Reddit, Inc.</strong> Reddit is a trademark of Reddit, Inc.
|
|
|
|
|
- </p>
|
|
|
|
|
- <p>
|
|
|
|
|
- Your use of Reddit through or alongside our app is governed by Reddit's own terms and policies. We are not responsible for Reddit's services, moderation decisions, account actions, or availability.
|
|
|
|
|
- </p>
|
|
|
|
|
- <p>
|
|
|
|
|
- The Service may integrate with or link to third-party services (including Apple and AI providers). Your use of those services is subject to their respective terms.
|
|
|
|
|
- </p>
|
|
|
|
|
- </section>
|
|
|
|
|
-
|
|
|
|
|
- <section class="legal-section" id="acceptable-use">
|
|
|
|
|
- <h2>8. Acceptable Use</h2>
|
|
|
|
|
- <p>You agree not to:</p>
|
|
|
|
|
- <ul>
|
|
|
|
|
- <li>Use the Service for any unlawful purpose or in violation of any applicable law or regulation</li>
|
|
|
|
|
- <li>Generate or distribute spam, harassment, hate speech, misinformation, or content that violates Reddit's rules</li>
|
|
|
|
|
- <li>Attempt to reverse engineer, decompile, or extract source code from the app except where permitted by law</li>
|
|
|
|
|
- <li>Circumvent subscription, access controls, or usage limits</li>
|
|
|
|
|
- <li>Interfere with or disrupt the Service, servers, or networks</li>
|
|
|
|
|
- <li>Use automated systems to scrape or abuse the Service beyond normal app usage</li>
|
|
|
|
|
- <li>Impersonate any person or entity, or misrepresent your affiliation</li>
|
|
|
|
|
- <li>Submit malicious code, excessive requests, or content designed to exploit AI systems</li>
|
|
|
|
|
- </ul>
|
|
|
|
|
- <p>
|
|
|
|
|
- We may suspend or terminate access if we reasonably believe you have violated these Terms.
|
|
|
|
|
- </p>
|
|
|
|
|
- </section>
|
|
|
|
|
-
|
|
|
|
|
- <section class="legal-section" id="intellectual-property">
|
|
|
|
|
- <h2>9. Intellectual Property</h2>
|
|
|
|
|
- <p>
|
|
|
|
|
- The Service, including its design, code, branding, and documentation, is owned by App AI for Reddit and protected by intellectual property laws. These Terms do not grant you any right to use our trademarks, logos, or branding without prior written consent.
|
|
|
|
|
- </p>
|
|
|
|
|
- <p>
|
|
|
|
|
- Subject to these Terms, we grant you a limited, non-exclusive, non-transferable, revocable license to use the app for personal, non-commercial purposes on devices you own or control.
|
|
|
|
|
- </p>
|
|
|
|
|
- <p>
|
|
|
|
|
- You retain ownership of content you create. AI-generated suggestions are provided to assist you; you are responsible for how you use them.
|
|
|
|
|
- </p>
|
|
|
|
|
- </section>
|
|
|
|
|
-
|
|
|
|
|
- <section class="legal-section" id="disclaimers">
|
|
|
|
|
- <h2>10. Disclaimers</h2>
|
|
|
|
|
- <p>
|
|
|
|
|
- THE SERVICE IS PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT WARRANTIES OF ANY KIND, WHETHER EXPRESS, IMPLIED, OR STATUTORY, INCLUDING IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
|
|
|
|
|
- </p>
|
|
|
|
|
- <p>
|
|
|
|
|
- We do not warrant that the Service will be uninterrupted, error-free, secure, or free of harmful components, or that AI outputs will be accurate or suitable for your purposes.
|
|
|
|
|
- </p>
|
|
|
|
|
- </section>
|
|
|
|
|
-
|
|
|
|
|
- <section class="legal-section" id="limitation">
|
|
|
|
|
- <h2>11. Limitation of Liability</h2>
|
|
|
|
|
- <p>
|
|
|
|
|
- TO THE MAXIMUM EXTENT PERMITTED BY LAW, APP AI FOR REDDIT AND ITS OFFICERS, DIRECTORS, EMPLOYEES, AND AGENTS SHALL NOT BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES, OR ANY LOSS OF PROFITS, DATA, USE, GOODWILL, OR OTHER INTANGIBLE LOSSES, ARISING FROM YOUR USE OF THE SERVICE.
|
|
|
|
|
- </p>
|
|
|
|
|
- <p>
|
|
|
|
|
- OUR TOTAL LIABILITY FOR ANY CLAIM ARISING OUT OF OR RELATING TO THESE TERMS OR THE SERVICE SHALL NOT EXCEED THE GREATER OF (A) THE AMOUNT YOU PAID US FOR THE SERVICE IN THE TWELVE (12) MONTHS BEFORE THE CLAIM, OR (B) FIFTY US DOLLARS (USD $50).
|
|
|
|
|
- </p>
|
|
|
|
|
- <p>
|
|
|
|
|
- Some jurisdictions do not allow certain limitations of liability, so some of the above may not apply to you.
|
|
|
|
|
- </p>
|
|
|
|
|
- </section>
|
|
|
|
|
-
|
|
|
|
|
- <section class="legal-section" id="indemnification">
|
|
|
|
|
- <h2>12. Indemnification</h2>
|
|
|
|
|
- <p>
|
|
|
|
|
- You agree to indemnify, defend, and hold harmless App AI for Reddit and its affiliates from any claims, damages, losses, liabilities, and expenses (including reasonable legal fees) arising from your use of the Service, your content, your violation of these Terms, or your violation of any third-party rights, including Reddit's terms or subreddit rules.
|
|
|
|
|
- </p>
|
|
|
|
|
- </section>
|
|
|
|
|
-
|
|
|
|
|
- <section class="legal-section" id="termination">
|
|
|
|
|
- <h2>13. Termination</h2>
|
|
|
|
|
- <p>
|
|
|
|
|
- You may stop using the Service at any time by uninstalling the app and canceling any active subscription through Apple.
|
|
|
|
|
- </p>
|
|
|
|
|
- <p>
|
|
|
|
|
- We may suspend or terminate your access to the Service at any time, with or without notice, if we believe you have violated these Terms or if we discontinue the Service. Provisions that by their nature should survive termination will survive, including intellectual property, disclaimers, limitation of liability, and indemnification.
|
|
|
|
|
- </p>
|
|
|
|
|
- </section>
|
|
|
|
|
-
|
|
|
|
|
- <section class="legal-section" id="governing-law">
|
|
|
|
|
- <h2>14. Governing Law & Disputes</h2>
|
|
|
|
|
- <p>
|
|
|
|
|
- These Terms are governed by the laws of the jurisdiction in which App AI for Reddit operates, without regard to conflict-of-law principles. Any disputes shall be resolved in the courts of that jurisdiction, unless applicable consumer protection laws require otherwise.
|
|
|
|
|
- </p>
|
|
|
|
|
- <p>
|
|
|
|
|
- If you are a consumer in the European Union or United Kingdom, you may also have mandatory rights under local consumer protection laws that cannot be waived by these Terms.
|
|
|
|
|
- </p>
|
|
|
|
|
- </section>
|
|
|
|
|
-
|
|
|
|
|
- <section class="legal-section" id="changes">
|
|
|
|
|
- <h2>15. Changes to Terms</h2>
|
|
|
|
|
- <p>
|
|
|
|
|
- We may update these Terms from time to time. We will post the revised Terms on this page and update the "Last updated" date. Material changes may be communicated through the app or other reasonable means. Your continued use of the Service after changes become effective constitutes acceptance of the updated Terms.
|
|
|
|
|
- </p>
|
|
|
|
|
- </section>
|
|
|
|
|
- </article>
|
|
|
|
|
- </main>
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
+ <main class="page-content">
|
|
|
|
|
+ <article class="legal-card">
|
|
|
|
|
+ <p class="legal-intro">
|
|
|
|
|
+ These Terms & Conditions govern your use of App AI for Reddit, a macOS application that provides AI-assisted tools for Reddit content. By installing or using the app, you agree to these Terms.
|
|
|
|
|
+ </p>
|
|
|
|
|
+
|
|
|
|
|
+ <section class="legal-section">
|
|
|
|
|
+ <h2>1. The App</h2>
|
|
|
|
|
+ <p>App AI for Reddit is a native macOS app that includes:</p>
|
|
|
|
|
+ <ul>
|
|
|
|
|
+ <li><strong>Post Generator</strong> — AI-assisted drafting of Reddit posts</li>
|
|
|
|
|
+ <li><strong>Title Optimizer</strong> — suggestions to improve post titles</li>
|
|
|
|
|
+ <li><strong>Comment Writer</strong> — AI-assisted comment drafting</li>
|
|
|
|
|
+ <li><strong>AI History</strong> — local storage of past AI responses on your Mac</li>
|
|
|
|
|
+ <li><strong>Reddit browsing</strong> — in-app access to Reddit for premium subscribers</li>
|
|
|
|
|
+ </ul>
|
|
|
|
|
+ <p>Live AI generation and Reddit browsing require an active premium subscription. We may add, change, or remove features over time.</p>
|
|
|
|
|
+ </section>
|
|
|
|
|
+
|
|
|
|
|
+ <section class="legal-section">
|
|
|
|
|
+ <h2>2. Eligibility</h2>
|
|
|
|
|
+ <p>You must be at least 13 years old, or the minimum age required in your jurisdiction, to use the app. If you use Reddit through the app, you must also follow Reddit's age requirements and rules.</p>
|
|
|
|
|
+ </section>
|
|
|
|
|
+
|
|
|
|
|
+ <section class="legal-section">
|
|
|
|
|
+ <h2>3. Accounts & Access</h2>
|
|
|
|
|
+ <ul>
|
|
|
|
|
+ <li>Premium access is tied to purchases made with your Apple ID through the Mac App Store.</li>
|
|
|
|
|
+ <li>If you sign in to Reddit inside the app, you are responsible for your Reddit account and credentials.</li>
|
|
|
|
|
+ <li>You are responsible for activity that occurs through your use of the app on your device.</li>
|
|
|
|
|
+ </ul>
|
|
|
|
|
+ </section>
|
|
|
|
|
+
|
|
|
|
|
+ <section class="legal-section">
|
|
|
|
|
+ <h2>4. Subscriptions & Billing</h2>
|
|
|
|
|
+ <p>Premium plans are sold through Apple's Mac App Store. Payment, renewal, cancellation, refunds, and subscription management are handled by Apple under its own terms.</p>
|
|
|
|
|
+ <p>Available plans may include monthly, yearly, and lifetime options as shown in the app. Subscriptions renew automatically unless canceled before the end of the current billing period through your Apple ID settings.</p>
|
|
|
|
|
+ <p>A free trial may be offered for eligible plans. Trial terms are shown at the time of purchase.</p>
|
|
|
|
|
+ </section>
|
|
|
|
|
+
|
|
|
|
|
+ <section class="legal-section">
|
|
|
|
|
+ <h2>5. AI Features</h2>
|
|
|
|
|
+ <div class="callout">
|
|
|
|
|
+ AI-generated content is provided for assistance only. You are responsible for reviewing, editing, and deciding whether to publish any content on Reddit or elsewhere.
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <ul>
|
|
|
|
|
+ <li>AI outputs may be inaccurate, incomplete, biased, or inappropriate.</li>
|
|
|
|
|
+ <li>You are responsible for complying with subreddit rules, Reddit's policies, and applicable laws.</li>
|
|
|
|
|
+ <li>We do not guarantee specific results, engagement, upvotes, or moderation outcomes.</li>
|
|
|
|
|
+ <li>AI features may be unavailable due to maintenance, network issues, API limits, or subscription status.</li>
|
|
|
|
|
+ </ul>
|
|
|
|
|
+ </section>
|
|
|
|
|
+
|
|
|
|
|
+ <section class="legal-section">
|
|
|
|
|
+ <h2>6. Reddit & Third Parties</h2>
|
|
|
|
|
+ <p>App AI for Reddit is <strong>not affiliated with, endorsed by, or sponsored by Reddit, Inc.</strong> Reddit is a trademark of Reddit, Inc.</p>
|
|
|
|
|
+ <p>Your use of Reddit through the app is governed by Reddit's own terms and policies. We are not responsible for Reddit's services, moderation, account actions, or availability.</p>
|
|
|
|
|
+ <p>The app also relies on third-party services such as Apple and OpenAI. Your use of those services is subject to their respective terms.</p>
|
|
|
|
|
+ </section>
|
|
|
|
|
+
|
|
|
|
|
+ <section class="legal-section">
|
|
|
|
|
+ <h2>7. Acceptable Use</h2>
|
|
|
|
|
+ <p>You agree not to:</p>
|
|
|
|
|
+ <ul>
|
|
|
|
|
+ <li>Use the app for unlawful purposes</li>
|
|
|
|
|
+ <li>Generate or publish spam, harassment, hate speech, misinformation, or content that violates Reddit's rules</li>
|
|
|
|
|
+ <li>Reverse engineer or circumvent subscription or access controls, except where permitted by law</li>
|
|
|
|
|
+ <li>Interfere with the app, its services, or connected networks</li>
|
|
|
|
|
+ <li>Impersonate others or misrepresent your affiliation</li>
|
|
|
|
|
+ </ul>
|
|
|
|
|
+ </section>
|
|
|
|
|
+
|
|
|
|
|
+ <section class="legal-section">
|
|
|
|
|
+ <h2>8. Intellectual Property</h2>
|
|
|
|
|
+ <p>The app, including its design, code, and branding, is owned by App AI for Reddit and protected by applicable intellectual property laws. You receive a limited, non-exclusive, non-transferable, revocable license to use the app for personal purposes on devices you own or control.</p>
|
|
|
|
|
+ <p>You retain ownership of content you create. You are responsible for how you use AI-generated suggestions.</p>
|
|
|
|
|
+ </section>
|
|
|
|
|
+
|
|
|
|
|
+ <section class="legal-section">
|
|
|
|
|
+ <h2>9. Disclaimers</h2>
|
|
|
|
|
+ <p>THE APP IS PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT WARRANTIES OF ANY KIND, WHETHER EXPRESS, IMPLIED, OR STATUTORY, INCLUDING IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.</p>
|
|
|
|
|
+ </section>
|
|
|
|
|
+
|
|
|
|
|
+ <section class="legal-section">
|
|
|
|
|
+ <h2>10. Limitation of Liability</h2>
|
|
|
|
|
+ <p>TO THE MAXIMUM EXTENT PERMITTED BY LAW, APP AI FOR REDDIT SHALL NOT BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES ARISING FROM YOUR USE OF THE APP.</p>
|
|
|
|
|
+ <p>OUR TOTAL LIABILITY FOR ANY CLAIM RELATING TO THESE TERMS OR THE APP SHALL NOT EXCEED THE GREATER OF (A) THE AMOUNT YOU PAID FOR THE APP IN THE TWELVE MONTHS BEFORE THE CLAIM, OR (B) FIFTY US DOLLARS (USD $50).</p>
|
|
|
|
|
+ </section>
|
|
|
|
|
+
|
|
|
|
|
+ <section class="legal-section">
|
|
|
|
|
+ <h2>11. Termination</h2>
|
|
|
|
|
+ <p>You may stop using the app at any time by uninstalling it and canceling any active subscription through Apple. We may discontinue the app or restrict access if you violate these Terms.</p>
|
|
|
|
|
+ </section>
|
|
|
|
|
+
|
|
|
|
|
+ <section class="legal-section">
|
|
|
|
|
+ <h2>12. Changes</h2>
|
|
|
|
|
+ <p>We may update these Terms from time to time. The "Last updated" date at the top of this page will reflect the latest version. Continued use of the app after changes take effect means you accept the updated Terms.</p>
|
|
|
|
|
+ </section>
|
|
|
|
|
+ </article>
|
|
|
|
|
+ </main>
|
|
|
|
|
|
|
|
<footer class="site-footer">
|
|
<footer class="site-footer">
|
|
|
- <div class="site-footer__inner">
|
|
|
|
|
- <p class="site-footer__copy">© 2026 App AI for Reddit. All rights reserved.</p>
|
|
|
|
|
- <nav class="site-footer__links" aria-label="Footer">
|
|
|
|
|
- <a href="../">Home</a>
|
|
|
|
|
- <a href="../privacy/">Privacy Policy</a>
|
|
|
|
|
- <a href="../terms/">Terms & Conditions</a>
|
|
|
|
|
- <a href="mailto:support@reddora.ai">Support</a>
|
|
|
|
|
- </nav>
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
+ <p class="site-footer__copy">© 2026 App AI for Reddit. All rights reserved. Not affiliated with Reddit, Inc.</p>
|
|
|
</footer>
|
|
</footer>
|
|
|
|
|
|
|
|
</body>
|
|
</body>
|