index.html 14 KB

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