index.html 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  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="Reddora AI — AI-powered tools for Reddit posts, titles, and comments. Built for macOS.">
  7. <title>Reddora AI — AI Tools for Reddit on Mac</title>
  8. <link rel="preconnect" href="https://fonts.googleapis.com">
  9. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  10. <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
  11. <style>
  12. :root {
  13. --purple: #5833c7;
  14. --purple-light: #6b46e5;
  15. --purple-soft: #f3f0ff;
  16. --purple-glow: rgba(88, 51, 199, 0.18);
  17. --bg: #fafafa;
  18. --surface: #ffffff;
  19. --text: #111827;
  20. --text-secondary: #4b5563;
  21. --text-muted: #9ca3af;
  22. --border: #e5e7eb;
  23. --shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.05);
  24. --shadow-md: 0 8px 32px rgba(88, 51, 199, 0.1);
  25. --shadow-lg: 0 20px 60px rgba(88, 51, 199, 0.14);
  26. --radius: 12px;
  27. --radius-sm: 8px;
  28. --radius-lg: 20px;
  29. --max-width: 1120px;
  30. --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  31. }
  32. *, *::before, *::after { box-sizing: border-box; }
  33. html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  34. body {
  35. margin: 0;
  36. font-family: var(--font);
  37. font-size: 16px;
  38. line-height: 1.65;
  39. color: var(--text);
  40. background: var(--bg);
  41. -webkit-font-smoothing: antialiased;
  42. }
  43. a { color: var(--purple); text-decoration: none; transition: color 0.15s ease; }
  44. a:hover { color: var(--purple-light); }
  45. .container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
  46. .btn {
  47. display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  48. padding: 12px 22px; border-radius: var(--radius-sm);
  49. font-size: 0.95rem; font-weight: 600; text-decoration: none;
  50. transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  51. border: none; cursor: pointer;
  52. }
  53. .btn:hover { text-decoration: none; transform: translateY(-1px); }
  54. .btn--primary {
  55. color: #fff; background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  56. box-shadow: 0 4px 16px var(--purple-glow);
  57. }
  58. .btn--primary:hover { color: #fff; box-shadow: 0 6px 24px var(--purple-glow); }
  59. .btn--secondary {
  60. color: var(--text); background: var(--surface);
  61. border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  62. }
  63. .btn--secondary:hover { color: var(--purple); border-color: var(--purple-muted, #c4b5fd); }
  64. .btn svg { width: 18px; height: 18px; fill: currentColor; }
  65. /* Hero */
  66. .hero {
  67. position: relative; overflow: hidden;
  68. padding: 80px 24px 100px;
  69. background: linear-gradient(180deg, var(--purple-soft) 0%, var(--bg) 70%);
  70. border-bottom: 1px solid var(--border);
  71. }
  72. .hero::before {
  73. content: "";
  74. position: absolute; top: -120px; right: -80px;
  75. width: 480px; height: 480px; border-radius: 50%;
  76. background: radial-gradient(circle, rgba(88, 51, 199, 0.12) 0%, transparent 70%);
  77. pointer-events: none;
  78. }
  79. .hero__inner {
  80. max-width: 640px; margin: 0 auto; text-align: center;
  81. position: relative;
  82. }
  83. .hero__badge {
  84. display: inline-flex; align-items: center; gap: 6px;
  85. margin-bottom: 20px; padding: 6px 12px; border-radius: 999px;
  86. background: rgba(88, 51, 199, 0.1); color: var(--purple);
  87. font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em;
  88. }
  89. .hero__badge span { opacity: 0.7; }
  90. .hero h1 {
  91. margin: 0 0 20px; font-size: clamp(2.25rem, 5vw, 3.25rem);
  92. font-weight: 800; letter-spacing: -0.04em; line-height: 1.1;
  93. }
  94. .hero h1 em {
  95. font-style: normal;
  96. background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  97. -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  98. background-clip: text;
  99. }
  100. .hero__lead {
  101. margin: 0 auto 32px; font-size: 1.125rem; color: var(--text-secondary);
  102. line-height: 1.7; max-width: 520px;
  103. }
  104. .hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; justify-content: center; }
  105. .hero__note { margin: 0; font-size: 0.85rem; color: var(--text-muted); }
  106. /* Sections */
  107. .section { padding: 80px 0; }
  108. .section--alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  109. .section__header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
  110. .section__eyebrow {
  111. display: inline-block; margin-bottom: 12px;
  112. font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  113. text-transform: uppercase; color: var(--purple);
  114. }
  115. .section__title {
  116. margin: 0 0 14px; font-size: clamp(1.75rem, 3vw, 2.25rem);
  117. font-weight: 800; letter-spacing: -0.03em; line-height: 1.2;
  118. }
  119. .section__subtitle { margin: 0; color: var(--text-secondary); font-size: 1.05rem; }
  120. /* Features grid */
  121. .features-grid {
  122. display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  123. }
  124. .feature-card {
  125. padding: 28px; background: var(--surface);
  126. border: 1px solid var(--border); border-radius: var(--radius);
  127. box-shadow: var(--shadow-sm); transition: box-shadow 0.2s ease, transform 0.2s ease;
  128. }
  129. .feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
  130. .feature-card__icon {
  131. width: 44px; height: 44px; border-radius: 11px;
  132. background: var(--purple-soft); display: grid; place-items: center;
  133. margin-bottom: 16px; font-size: 1.25rem;
  134. }
  135. .feature-card h3 {
  136. margin: 0 0 8px; font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em;
  137. }
  138. .feature-card p { margin: 0; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
  139. /* Steps */
  140. .steps {
  141. display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  142. counter-reset: step;
  143. }
  144. .step { text-align: center; }
  145. .step__number {
  146. width: 48px; height: 48px; border-radius: 50%;
  147. background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  148. color: #fff; font-weight: 800; font-size: 1.1rem;
  149. display: grid; place-items: center; margin: 0 auto 16px;
  150. box-shadow: 0 4px 12px var(--purple-glow);
  151. }
  152. .step h3 { margin: 0 0 8px; font-size: 1rem; font-weight: 700; }
  153. .step p { margin: 0; font-size: 0.9rem; color: var(--text-secondary); }
  154. /* CTA */
  155. .cta {
  156. padding: 80px 24px; text-align: center;
  157. background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  158. color: #fff;
  159. }
  160. .cta h2 {
  161. margin: 0 0 14px; font-size: clamp(1.75rem, 3vw, 2.25rem);
  162. font-weight: 800; letter-spacing: -0.03em;
  163. }
  164. .cta p { margin: 0 0 28px; opacity: 0.9; font-size: 1.05rem; max-width: 480px; margin-left: auto; margin-right: auto; }
  165. .cta .btn--secondary { color: var(--purple); }
  166. .cta .btn--secondary:hover { color: var(--purple-light); }
  167. /* Footer */
  168. .site-footer { border-top: 1px solid var(--border); background: var(--surface); padding: 32px 24px; }
  169. .site-footer__inner {
  170. max-width: var(--max-width); margin: 0 auto;
  171. display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  172. }
  173. .site-footer__copy { margin: 0; font-size: 0.875rem; color: var(--text-muted); }
  174. .site-footer__links { display: flex; flex-wrap: wrap; gap: 8px 20px; }
  175. .site-footer__links a {
  176. font-size: 0.875rem; font-weight: 500; color: var(--text-secondary); text-decoration: none;
  177. }
  178. .site-footer__links a:hover { color: var(--purple); }
  179. /* Responsive */
  180. @media (max-width: 900px) {
  181. .features-grid, .steps { grid-template-columns: 1fr; }
  182. .hero { padding: 48px 24px 64px; }
  183. .section { padding: 56px 0; }
  184. }
  185. @media (max-width: 600px) {
  186. .hero { padding: 40px 16px 56px; }
  187. .container { padding: 0 16px; }
  188. }
  189. </style>
  190. </head>
  191. <body>
  192. <section class="hero">
  193. <div class="hero__inner">
  194. <div class="hero__content">
  195. <p class="hero__badge">macOS App <span>·</span> AI-Powered</p>
  196. <h1>Write better Reddit content with <em>Reddora AI</em></h1>
  197. <p class="hero__lead">
  198. Draft posts, sharpen titles, and craft smarter comments — all from a native Mac app with Reddit built in.
  199. </p>
  200. <div class="hero__actions">
  201. <a class="btn btn--primary" href="https://apps.apple.com/app/reddora-ai">
  202. <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>
  203. Download for Mac
  204. </a>
  205. <a class="btn btn--secondary" href="#features">See features</a>
  206. </div>
  207. <p class="hero__note">Requires macOS · Free to try</p>
  208. </div>
  209. </div>
  210. </section>
  211. <section class="section" id="features">
  212. <div class="container">
  213. <div class="section__header">
  214. <span class="section__eyebrow">Features</span>
  215. <h2 class="section__title">Everything you need to post with confidence</h2>
  216. <p class="section__subtitle">Purpose-built AI tools for Reddit creators, right inside a native macOS experience.</p>
  217. </div>
  218. <div class="features-grid">
  219. <article class="feature-card">
  220. <div class="feature-card__icon">✍️</div>
  221. <h3>Post Generator</h3>
  222. <p>Turn a rough idea into a polished Reddit post. Choose your subreddit, tone, and length — AI handles the rest.</p>
  223. </article>
  224. <article class="feature-card">
  225. <div class="feature-card__icon">📐</div>
  226. <h3>Title Optimizer</h3>
  227. <p>Get data-driven title suggestions with clear reasoning so your posts stand out in crowded feeds.</p>
  228. </article>
  229. <article class="feature-card">
  230. <div class="feature-card__icon">💬</div>
  231. <h3>Comment Writer</h3>
  232. <p>Draft thoughtful replies that match the thread context — agree, disagree, add value, or ask questions.</p>
  233. </article>
  234. <article class="feature-card">
  235. <div class="feature-card__icon">✨</div>
  236. <h3>Unlimited AI (Premium)</h3>
  237. <p>Generate as much as you need with no caps. Perfect for active posters and community builders.</p>
  238. </article>
  239. <article class="feature-card">
  240. <div class="feature-card__icon">📋</div>
  241. <h3>AI History</h3>
  242. <p>Every response saved locally on your Mac. Revisit, copy, and refine past generations anytime.</p>
  243. </article>
  244. <article class="feature-card">
  245. <div class="feature-card__icon">🌐</div>
  246. <h3>Reddit Built In</h3>
  247. <p>Browse and post to Reddit without leaving the app. Sign in, explore subreddits, and publish seamlessly.</p>
  248. </article>
  249. </div>
  250. </div>
  251. </section>
  252. <section class="section section--alt" id="how-it-works">
  253. <div class="container">
  254. <div class="section__header">
  255. <span class="section__eyebrow">How it works</span>
  256. <h2 class="section__title">From idea to upvote in three steps</h2>
  257. <p class="section__subtitle">No complicated setup. Install, open, and start creating.</p>
  258. </div>
  259. <div class="steps">
  260. <div class="step">
  261. <div class="step__number">1</div>
  262. <h3>Download &amp; open</h3>
  263. <p>Get Reddora AI from the Mac App Store and launch it on your Mac.</p>
  264. </div>
  265. <div class="step">
  266. <div class="step__number">2</div>
  267. <h3>Pick your tool</h3>
  268. <p>Choose Post Generator, Title Optimizer, or Comment Writer from the sidebar.</p>
  269. </div>
  270. <div class="step">
  271. <div class="step__number">3</div>
  272. <h3>Generate &amp; post</h3>
  273. <p>Review AI output, edit if needed, and publish directly to Reddit.</p>
  274. </div>
  275. </div>
  276. </div>
  277. </section>
  278. <section class="cta">
  279. <h2>Ready to level up your Reddit game?</h2>
  280. <p>Join Reddora AI on Mac and start creating content that gets noticed.</p>
  281. <a class="btn btn--secondary" href="https://apps.apple.com/app/reddora-ai">
  282. <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>
  283. Download for Mac
  284. </a>
  285. </section>
  286. <footer class="site-footer">
  287. <div class="site-footer__inner">
  288. <p class="site-footer__copy">&copy; 2026 Reddora AI. All rights reserved. Not affiliated with Reddit, Inc.</p>
  289. <nav class="site-footer__links" aria-label="Footer">
  290. <a href="privacy/">Privacy Policy</a>
  291. <a href="terms/">Terms &amp; Conditions</a>
  292. <a href="mailto:support@reddora.ai">Support</a>
  293. </nav>
  294. </div>
  295. </footer>
  296. </body>
  297. </html>