Explorar o código

Add marketing site pages and point app links to Google Sites.

Publish home, privacy, and terms HTML for Reddora AI and update Settings and Paywall URLs to the live Google Sites pages.

Co-authored-by: Cursor <cursoragent@cursor.com>
AhtashamShahzad1 hai 1 mes
pai
achega
2b86d844be
Modificáronse 4 ficheiros con 1028 adicións e 4 borrados
  1. 4 4
      Reddit App/Utilities/AppLinks.swift
  2. 313 0
      website/index.html
  3. 341 0
      website/privacy/index.html
  4. 370 0
      website/terms/index.html

+ 4 - 4
Reddit App/Utilities/AppLinks.swift

@@ -3,10 +3,10 @@ import Foundation
 enum AppLinks {
 enum AppLinks {
     static let appName = "Reddora AI"
     static let appName = "Reddora AI"
 
 
-    static let website = URL(string: "https://reddora.ai")!
-    static let privacy = URL(string: "https://reddora.ai/privacy")!
-    static let terms = URL(string: "https://reddora.ai/terms")!
-    static let support = URL(string: "mailto:support@reddora.ai")!
+    static let website = URL(string: "https://sites.google.com/view/appforreddit/home")!
+    static let privacy = URL(string: "https://sites.google.com/view/appforreddit/privacy-policy")!
+    static let terms = URL(string: "https://sites.google.com/view/appforreddit/terms-and-condition")!
+    static let support = URL(string: "https://sites.google.com/view/appforreddit/get-support")!
     static let appStore = URL(string: "https://apps.apple.com/app/reddora-ai")!
     static let appStore = URL(string: "https://apps.apple.com/app/reddora-ai")!
 
 
     static var shareMessage: String {
     static var shareMessage: String {

+ 313 - 0
website/index.html

@@ -0,0 +1,313 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <meta name="description" content="Reddora AI — AI-powered tools for Reddit posts, titles, and comments. Built for macOS.">
+  <title>Reddora AI — AI Tools for Reddit on Mac</title>
+  <link rel="preconnect" href="https://fonts.googleapis.com">
+  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
+  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
+  <style>
+    :root {
+      --purple: #5833c7;
+      --purple-light: #6b46e5;
+      --purple-soft: #f3f0ff;
+      --purple-glow: rgba(88, 51, 199, 0.18);
+      --bg: #fafafa;
+      --surface: #ffffff;
+      --text: #111827;
+      --text-secondary: #4b5563;
+      --text-muted: #9ca3af;
+      --border: #e5e7eb;
+      --shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.05);
+      --shadow-md: 0 8px 32px rgba(88, 51, 199, 0.1);
+      --shadow-lg: 0 20px 60px rgba(88, 51, 199, 0.14);
+      --radius: 12px;
+      --radius-sm: 8px;
+      --radius-lg: 20px;
+      --max-width: 1120px;
+      --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
+    }
+    *, *::before, *::after { box-sizing: border-box; }
+    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
+    body {
+      margin: 0;
+      font-family: var(--font);
+      font-size: 16px;
+      line-height: 1.65;
+      color: var(--text);
+      background: var(--bg);
+      -webkit-font-smoothing: antialiased;
+    }
+    a { color: var(--purple); text-decoration: none; transition: color 0.15s ease; }
+    a:hover { color: var(--purple-light); }
+    .container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
+
+    .btn {
+      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
+      padding: 12px 22px; border-radius: var(--radius-sm);
+      font-size: 0.95rem; font-weight: 600; text-decoration: none;
+      transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
+      border: none; cursor: pointer;
+    }
+    .btn:hover { text-decoration: none; transform: translateY(-1px); }
+    .btn--primary {
+      color: #fff; background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
+      box-shadow: 0 4px 16px var(--purple-glow);
+    }
+    .btn--primary:hover { color: #fff; box-shadow: 0 6px 24px var(--purple-glow); }
+    .btn--secondary {
+      color: var(--text); background: var(--surface);
+      border: 1px solid var(--border); box-shadow: var(--shadow-sm);
+    }
+    .btn--secondary:hover { color: var(--purple); border-color: var(--purple-muted, #c4b5fd); }
+    .btn svg { width: 18px; height: 18px; fill: currentColor; }
+
+    /* Hero */
+    .hero {
+      position: relative; overflow: hidden;
+      padding: 80px 24px 100px;
+      background: linear-gradient(180deg, var(--purple-soft) 0%, var(--bg) 70%);
+      border-bottom: 1px solid var(--border);
+    }
+    .hero::before {
+      content: "";
+      position: absolute; top: -120px; right: -80px;
+      width: 480px; height: 480px; border-radius: 50%;
+      background: radial-gradient(circle, rgba(88, 51, 199, 0.12) 0%, transparent 70%);
+      pointer-events: none;
+    }
+    .hero__inner {
+      max-width: 640px; margin: 0 auto; text-align: center;
+      position: relative;
+    }
+    .hero__badge {
+      display: inline-flex; align-items: center; gap: 6px;
+      margin-bottom: 20px; padding: 6px 12px; border-radius: 999px;
+      background: rgba(88, 51, 199, 0.1); color: var(--purple);
+      font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em;
+    }
+    .hero__badge span { opacity: 0.7; }
+    .hero h1 {
+      margin: 0 0 20px; font-size: clamp(2.25rem, 5vw, 3.25rem);
+      font-weight: 800; letter-spacing: -0.04em; line-height: 1.1;
+    }
+    .hero h1 em {
+      font-style: normal;
+      background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
+      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
+      background-clip: text;
+    }
+    .hero__lead {
+      margin: 0 auto 32px; font-size: 1.125rem; color: var(--text-secondary);
+      line-height: 1.7; max-width: 520px;
+    }
+    .hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; justify-content: center; }
+    .hero__note { margin: 0; font-size: 0.85rem; color: var(--text-muted); }
+
+    /* Sections */
+    .section { padding: 80px 0; }
+    .section--alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
+    .section__header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
+    .section__eyebrow {
+      display: inline-block; margin-bottom: 12px;
+      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
+      text-transform: uppercase; color: var(--purple);
+    }
+    .section__title {
+      margin: 0 0 14px; font-size: clamp(1.75rem, 3vw, 2.25rem);
+      font-weight: 800; letter-spacing: -0.03em; line-height: 1.2;
+    }
+    .section__subtitle { margin: 0; color: var(--text-secondary); font-size: 1.05rem; }
+
+    /* Features grid */
+    .features-grid {
+      display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
+    }
+    .feature-card {
+      padding: 28px; background: var(--surface);
+      border: 1px solid var(--border); border-radius: var(--radius);
+      box-shadow: var(--shadow-sm); transition: box-shadow 0.2s ease, transform 0.2s ease;
+    }
+    .feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
+    .feature-card__icon {
+      width: 44px; height: 44px; border-radius: 11px;
+      background: var(--purple-soft); display: grid; place-items: center;
+      margin-bottom: 16px; font-size: 1.25rem;
+    }
+    .feature-card h3 {
+      margin: 0 0 8px; font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em;
+    }
+    .feature-card p { margin: 0; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
+
+    /* Steps */
+    .steps {
+      display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
+      counter-reset: step;
+    }
+    .step { text-align: center; }
+    .step__number {
+      width: 48px; height: 48px; border-radius: 50%;
+      background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
+      color: #fff; font-weight: 800; font-size: 1.1rem;
+      display: grid; place-items: center; margin: 0 auto 16px;
+      box-shadow: 0 4px 12px var(--purple-glow);
+    }
+    .step h3 { margin: 0 0 8px; font-size: 1rem; font-weight: 700; }
+    .step p { margin: 0; font-size: 0.9rem; color: var(--text-secondary); }
+
+    /* CTA */
+    .cta {
+      padding: 80px 24px; text-align: center;
+      background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
+      color: #fff;
+    }
+    .cta h2 {
+      margin: 0 0 14px; font-size: clamp(1.75rem, 3vw, 2.25rem);
+      font-weight: 800; letter-spacing: -0.03em;
+    }
+    .cta p { margin: 0 0 28px; opacity: 0.9; font-size: 1.05rem; max-width: 480px; margin-left: auto; margin-right: auto; }
+    .cta .btn--secondary { color: var(--purple); }
+    .cta .btn--secondary:hover { color: var(--purple-light); }
+
+    /* Footer */
+    .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;
+    }
+    .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); }
+
+    /* Responsive */
+    @media (max-width: 900px) {
+      .features-grid, .steps { grid-template-columns: 1fr; }
+      .hero { padding: 48px 24px 64px; }
+      .section { padding: 56px 0; }
+    }
+    @media (max-width: 600px) {
+      .hero { padding: 40px 16px 56px; }
+      .container { padding: 0 16px; }
+    }
+  </style>
+</head>
+<body>
+
+  <section class="hero">
+    <div class="hero__inner">
+      <div class="hero__content">
+        <p class="hero__badge">macOS App <span>·</span> AI-Powered</p>
+        <h1>Write better Reddit content with <em>Reddora AI</em></h1>
+        <p class="hero__lead">
+          Draft posts, sharpen titles, and craft smarter comments — all from a native Mac app with Reddit built in.
+        </p>
+        <div class="hero__actions">
+          <a class="btn btn--primary" href="https://apps.apple.com/app/reddora-ai">
+            <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.8-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z"/></svg>
+            Download for Mac
+          </a>
+          <a class="btn btn--secondary" href="#features">See features</a>
+        </div>
+        <p class="hero__note">Requires macOS · Free to try</p>
+      </div>
+    </div>
+  </section>
+
+  <section class="section" id="features">
+    <div class="container">
+      <div class="section__header">
+        <span class="section__eyebrow">Features</span>
+        <h2 class="section__title">Everything you need to post with confidence</h2>
+        <p class="section__subtitle">Purpose-built AI tools for Reddit creators, right inside a native macOS experience.</p>
+      </div>
+
+      <div class="features-grid">
+        <article class="feature-card">
+          <div class="feature-card__icon">✍️</div>
+          <h3>Post Generator</h3>
+          <p>Turn a rough idea into a polished Reddit post. Choose your subreddit, tone, and length — AI handles the rest.</p>
+        </article>
+        <article class="feature-card">
+          <div class="feature-card__icon">📐</div>
+          <h3>Title Optimizer</h3>
+          <p>Get data-driven title suggestions with clear reasoning so your posts stand out in crowded feeds.</p>
+        </article>
+        <article class="feature-card">
+          <div class="feature-card__icon">💬</div>
+          <h3>Comment Writer</h3>
+          <p>Draft thoughtful replies that match the thread context — agree, disagree, add value, or ask questions.</p>
+        </article>
+        <article class="feature-card">
+          <div class="feature-card__icon">✨</div>
+          <h3>Unlimited AI (Premium)</h3>
+          <p>Generate as much as you need with no caps. Perfect for active posters and community builders.</p>
+        </article>
+        <article class="feature-card">
+          <div class="feature-card__icon">📋</div>
+          <h3>AI History</h3>
+          <p>Every response saved locally on your Mac. Revisit, copy, and refine past generations anytime.</p>
+        </article>
+        <article class="feature-card">
+          <div class="feature-card__icon">🌐</div>
+          <h3>Reddit Built In</h3>
+          <p>Browse and post to Reddit without leaving the app. Sign in, explore subreddits, and publish seamlessly.</p>
+        </article>
+      </div>
+    </div>
+  </section>
+
+  <section class="section section--alt" id="how-it-works">
+    <div class="container">
+      <div class="section__header">
+        <span class="section__eyebrow">How it works</span>
+        <h2 class="section__title">From idea to upvote in three steps</h2>
+        <p class="section__subtitle">No complicated setup. Install, open, and start creating.</p>
+      </div>
+
+      <div class="steps">
+        <div class="step">
+          <div class="step__number">1</div>
+          <h3>Download &amp; open</h3>
+          <p>Get Reddora AI from the Mac App Store and launch it on your Mac.</p>
+        </div>
+        <div class="step">
+          <div class="step__number">2</div>
+          <h3>Pick your tool</h3>
+          <p>Choose Post Generator, Title Optimizer, or Comment Writer from the sidebar.</p>
+        </div>
+        <div class="step">
+          <div class="step__number">3</div>
+          <h3>Generate &amp; post</h3>
+          <p>Review AI output, edit if needed, and publish directly to Reddit.</p>
+        </div>
+      </div>
+    </div>
+  </section>
+
+  <section class="cta">
+    <h2>Ready to level up your Reddit game?</h2>
+    <p>Join Reddora AI on Mac and start creating content that gets noticed.</p>
+    <a class="btn btn--secondary" href="https://apps.apple.com/app/reddora-ai">
+      <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.8-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z"/></svg>
+      Download for Mac
+    </a>
+  </section>
+
+  <footer class="site-footer">
+    <div class="site-footer__inner">
+      <p class="site-footer__copy">&copy; 2026 Reddora AI. All rights reserved. Not affiliated with Reddit, Inc.</p>
+      <nav class="site-footer__links" aria-label="Footer">
+        <a href="privacy/">Privacy Policy</a>
+        <a href="terms/">Terms &amp; Conditions</a>
+        <a href="mailto:support@reddora.ai">Support</a>
+      </nav>
+    </div>
+  </footer>
+
+</body>
+</html>

+ 341 - 0
website/privacy/index.html

@@ -0,0 +1,341 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <meta name="description" content="Privacy Policy for Reddora AI — how we collect, use, and protect your information.">
+  <title>Privacy Policy — Reddora AI</title>
+  <link rel="preconnect" href="https://fonts.googleapis.com">
+  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
+  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
+  <style>
+    :root {
+      --purple: #5833c7;
+      --purple-light: #6b46e5;
+      --purple-soft: #f3f0ff;
+      --bg: #fafafa;
+      --surface: #ffffff;
+      --text: #111827;
+      --text-secondary: #4b5563;
+      --text-muted: #9ca3af;
+      --border: #e5e7eb;
+      --shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.05);
+      --radius: 12px;
+      --radius-sm: 8px;
+      --max-width: 1120px;
+      --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
+    }
+    *, *::before, *::after { box-sizing: border-box; }
+    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
+    body {
+      margin: 0;
+      font-family: var(--font);
+      font-size: 16px;
+      line-height: 1.65;
+      color: var(--text);
+      background: var(--bg);
+      -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 {
+      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;
+    }
+    .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;
+    }
+    .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;
+    }
+    .toc a:hover { color: var(--purple); background: var(--purple-soft); text-decoration: none; }
+    .legal-content { min-width: 0; }
+    .legal-card {
+      background: var(--surface); border: 1px solid var(--border);
+      border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 40px 44px;
+    }
+    .legal-intro {
+      margin: 0 0 36px; padding-bottom: 28px; border-bottom: 1px solid var(--border);
+      font-size: 1.05rem; color: var(--text-secondary);
+    }
+    .legal-section { scroll-margin-top: 20px; }
+    .legal-section + .legal-section {
+      margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--border);
+    }
+    .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);
+    }
+    .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 li { margin-bottom: 8px; }
+    .legal-section li strong { color: var(--text); }
+    .legal-section a { font-weight: 500; }
+    .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;
+    }
+    .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) {
+      .page-hero { padding: 36px 16px 28px; }
+      .page-layout { padding: 24px 16px 60px; }
+    }
+  </style>
+</head>
+<body>
+
+  <section class="page-hero">
+    <div class="page-hero__inner">
+      <p class="page-hero__eyebrow">Legal</p>
+      <h1>Privacy Policy</h1>
+      <p class="page-hero__meta">Last updated: June 24, 2026</p>
+    </div>
+  </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="#introduction">Introduction</a></li>
+        <li><a href="#information-we-collect">Information We Collect</a></li>
+        <li><a href="#how-we-use">How We Use Information</a></li>
+        <li><a href="#ai-processing">AI Processing</a></li>
+        <li><a href="#reddit-integration">Reddit Integration</a></li>
+        <li><a href="#subscriptions">Subscriptions &amp; Payments</a></li>
+        <li><a href="#data-storage">Data Storage &amp; Retention</a></li>
+        <li><a href="#sharing">How We Share Information</a></li>
+        <li><a href="#your-rights">Your Rights &amp; Choices</a></li>
+        <li><a href="#security">Security</a></li>
+        <li><a href="#children">Children's Privacy</a></li>
+        <li><a href="#international">International Users</a></li>
+        <li><a href="#changes">Changes to This Policy</a></li>
+      </ol>
+    </aside>
+
+    <main class="legal-content">
+      <article class="legal-card">
+        <p class="legal-intro">
+          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").
+        </p>
+
+        <section class="legal-section" id="introduction">
+          <h2>1. Introduction</h2>
+          <p>
+            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.
+          </p>
+          <div class="callout">
+            <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.
+          </div>
+        </section>
+
+        <section class="legal-section" id="information-we-collect">
+          <h2>2. Information We Collect</h2>
+
+          <h3>Information you provide</h3>
+          <ul>
+            <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>
+            <li><strong>Support communications:</strong> Information you send when contacting us at <a href="mailto:support@reddora.ai">support@reddora.ai</a>.</li>
+          </ul>
+
+          <h3>Information collected automatically</h3>
+          <ul>
+            <li><strong>Device and app data:</strong> macOS version, app version, language settings, and general diagnostic information needed to maintain stability.</li>
+            <li><strong>Usage data:</strong> Feature usage patterns (e.g., which tools are opened) to improve the product experience.</li>
+            <li><strong>Subscription status:</strong> Whether you have an active premium subscription, as verified through Apple's StoreKit.</li>
+          </ul>
+
+          <h3>Information from third parties</h3>
+          <ul>
+            <li><strong>Apple:</strong> Purchase and subscription status when you buy premium access through the Mac App Store.</li>
+            <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>
+          </ul>
+        </section>
+
+        <section class="legal-section" id="how-we-use">
+          <h2>3. How We Use Information</h2>
+          <p>We use the information we collect to:</p>
+          <ul>
+            <li>Provide, operate, and maintain the Service</li>
+            <li>Process AI generation requests for premium subscribers</li>
+            <li>Authenticate and manage your subscription status</li>
+            <li>Store your AI history locally on your device when you use that feature</li>
+            <li>Respond to support requests and communicate with you</li>
+            <li>Detect, prevent, and address technical issues or abuse</li>
+            <li>Improve features, performance, and user experience</li>
+            <li>Comply with legal obligations</li>
+          </ul>
+        </section>
+
+        <section class="legal-section" id="ai-processing">
+          <h2>4. AI Processing</h2>
+          <p>
+            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.
+          </p>
+          <ul>
+            <li>AI requests are sent only when you actively trigger a generation action.</li>
+            <li>We do not use your content to train our own models unless we explicitly tell you otherwise and obtain your consent.</li>
+            <li>AI providers may process data according to their own terms and privacy policies. We select providers that maintain appropriate data protection standards.</li>
+            <li>Generated responses may be saved in your local AI History on your Mac if you use that feature.</li>
+          </ul>
+          <p>
+            Do not submit sensitive personal information (passwords, financial data, government IDs, health information) into AI tools.
+          </p>
+        </section>
+
+        <section class="legal-section" id="reddit-integration">
+          <h2>5. Reddit Integration</h2>
+          <p>
+            Reddora AI includes an embedded Reddit browsing experience and optional Reddit sign-in. When you use these features:
+          </p>
+          <ul>
+            <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>
+            <li>We are not affiliated with Reddit, Inc. Reddora AI is an independent third-party application.</li>
+            <li>Content you view or post on Reddit is subject to Reddit's rules and policies.</li>
+          </ul>
+        </section>
+
+        <section class="legal-section" id="subscriptions">
+          <h2>6. Subscriptions &amp; Payments</h2>
+          <p>
+            Premium subscriptions are processed entirely by Apple through the Mac App Store. We do not collect or store your payment card details.
+          </p>
+          <ul>
+            <li>Apple provides us with subscription status information needed to unlock premium features.</li>
+            <li>Refunds and billing disputes are handled by Apple according to their policies.</li>
+            <li>You can manage or cancel subscriptions in your Apple ID account settings.</li>
+          </ul>
+        </section>
+
+        <section class="legal-section" id="data-storage">
+          <h2>7. Data Storage &amp; Retention</h2>
+          <ul>
+            <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>
+            <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>
+            <li><strong>Support records:</strong> We retain support correspondence for a reasonable period to resolve issues and improve support quality.</li>
+          </ul>
+          <p>
+            When you uninstall the app, locally stored data is removed from your device, subject to macOS system behavior and any backups you maintain.
+          </p>
+        </section>
+
+        <section class="legal-section" id="sharing">
+          <h2>8. How We Share Information</h2>
+          <p>We do not sell your personal information. We may share information only in these circumstances:</p>
+          <ul>
+            <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>
+            <li><strong>Legal requirements:</strong> When required by law, regulation, legal process, or governmental request.</li>
+            <li><strong>Protection of rights:</strong> To enforce our Terms, protect the safety of users, or address fraud and security issues.</li>
+            <li><strong>Business transfers:</strong> In connection with a merger, acquisition, or sale of assets, with notice where required by law.</li>
+          </ul>
+        </section>
+
+        <section class="legal-section" id="your-rights">
+          <h2>9. Your Rights &amp; Choices</h2>
+          <p>Depending on where you live, you may have rights to:</p>
+          <ul>
+            <li>Access the personal information we hold about you</li>
+            <li>Request correction or deletion of your information</li>
+            <li>Object to or restrict certain processing</li>
+            <li>Withdraw consent where processing is consent-based</li>
+            <li>Data portability</li>
+            <li>Lodge a complaint with a supervisory authority</li>
+          </ul>
+          <p>
+            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.
+          </p>
+          <p>
+            California residents may have additional rights under the CCPA/CPRA. We do not sell personal information as defined under California law.
+          </p>
+        </section>
+
+        <section class="legal-section" id="security">
+          <h2>10. Security</h2>
+          <p>
+            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.
+          </p>
+        </section>
+
+        <section class="legal-section" id="children">
+          <h2>11. Children's Privacy</h2>
+          <p>
+            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.
+          </p>
+        </section>
+
+        <section class="legal-section" id="international">
+          <h2>12. International Users</h2>
+          <p>
+            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.
+          </p>
+        </section>
+
+        <section class="legal-section" id="changes">
+          <h2>13. Changes to This Policy</h2>
+          <p>
+            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.
+          </p>
+        </section>
+      </article>
+    </main>
+  </div>
+
+  <footer class="site-footer">
+    <div class="site-footer__inner">
+      <p class="site-footer__copy">&copy; 2026 Reddora AI. 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 &amp; Conditions</a>
+        <a href="mailto:support@reddora.ai">Support</a>
+      </nav>
+    </div>
+  </footer>
+
+</body>
+</html>

+ 370 - 0
website/terms/index.html

@@ -0,0 +1,370 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <meta name="description" content="Terms and Conditions for Reddora AI — rules for using our macOS app and services.">
+  <title>Terms &amp; Conditions — Reddora AI</title>
+  <link rel="preconnect" href="https://fonts.googleapis.com">
+  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
+  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
+  <style>
+    :root {
+      --purple: #5833c7;
+      --purple-light: #6b46e5;
+      --purple-soft: #f3f0ff;
+      --bg: #fafafa;
+      --surface: #ffffff;
+      --text: #111827;
+      --text-secondary: #4b5563;
+      --text-muted: #9ca3af;
+      --border: #e5e7eb;
+      --shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.05);
+      --radius: 12px;
+      --radius-sm: 8px;
+      --max-width: 1120px;
+      --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
+    }
+    *, *::before, *::after { box-sizing: border-box; }
+    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
+    body {
+      margin: 0;
+      font-family: var(--font);
+      font-size: 16px;
+      line-height: 1.65;
+      color: var(--text);
+      background: var(--bg);
+      -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 {
+      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;
+    }
+    .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;
+    }
+    .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;
+    }
+    .toc a:hover { color: var(--purple); background: var(--purple-soft); text-decoration: none; }
+    .legal-content { min-width: 0; }
+    .legal-card {
+      background: var(--surface); border: 1px solid var(--border);
+      border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 40px 44px;
+    }
+    .legal-intro {
+      margin: 0 0 36px; padding-bottom: 28px; border-bottom: 1px solid var(--border);
+      font-size: 1.05rem; color: var(--text-secondary);
+    }
+    .legal-section { scroll-margin-top: 20px; }
+    .legal-section + .legal-section {
+      margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--border);
+    }
+    .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);
+    }
+    .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 li { margin-bottom: 8px; }
+    .legal-section li strong { color: var(--text); }
+    .legal-section a { font-weight: 500; }
+    .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;
+    }
+    .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) {
+      .page-hero { padding: 36px 16px 28px; }
+      .page-layout { padding: 24px 16px 60px; }
+    }
+  </style>
+</head>
+<body>
+
+  <section class="page-hero">
+    <div class="page-hero__inner">
+      <p class="page-hero__eyebrow">Legal</p>
+      <h1>Terms &amp; Conditions</h1>
+      <p class="page-hero__meta">Last updated: June 24, 2026</p>
+    </div>
+  </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 &amp; Access</a></li>
+        <li><a href="#subscriptions">Subscriptions &amp; Billing</a></li>
+        <li><a href="#ai-features">AI Features &amp; Content</a></li>
+        <li><a href="#reddit">Reddit &amp; 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 &amp; Conditions ("Terms") govern your access to and use of the Reddora AI macOS application, website at <a href="https://reddora.ai">reddora.ai</a>, and related services (collectively, the "Service") provided by Reddora AI ("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>
+            Reddora AI 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 &amp; 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 &amp; 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 &amp; 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 &amp; Third-Party Services</h2>
+          <p>
+            Reddora AI 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 Reddora AI 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, REDDORA AI 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 Reddora AI 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 &amp; Disputes</h2>
+          <p>
+            These Terms are governed by the laws of the jurisdiction in which Reddora AI 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>
+
+  <footer class="site-footer">
+    <div class="site-footer__inner">
+      <p class="site-footer__copy">&copy; 2026 Reddora AI. 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 &amp; Conditions</a>
+        <a href="mailto:support@reddora.ai">Support</a>
+      </nav>
+    </div>
+  </footer>
+
+</body>
+</html>