index.html 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  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 { -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. .container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
  46. /* Hero */
  47. .hero {
  48. position: relative; overflow: hidden;
  49. padding: 80px 24px 100px;
  50. background: linear-gradient(180deg, var(--purple-soft) 0%, var(--bg) 70%);
  51. border-bottom: 1px solid var(--border);
  52. }
  53. .hero::before {
  54. content: "";
  55. position: absolute; top: -120px; right: -80px;
  56. width: 480px; height: 480px; border-radius: 50%;
  57. background: radial-gradient(circle, rgba(88, 51, 199, 0.12) 0%, transparent 70%);
  58. pointer-events: none;
  59. }
  60. .hero__inner {
  61. max-width: 640px; margin: 0 auto; text-align: center;
  62. position: relative;
  63. }
  64. .hero__badge {
  65. display: inline-flex; align-items: center; gap: 6px;
  66. margin-bottom: 20px; padding: 6px 12px; border-radius: 999px;
  67. background: rgba(88, 51, 199, 0.1); color: var(--purple);
  68. font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em;
  69. }
  70. .hero__badge span { opacity: 0.7; }
  71. .hero h1 {
  72. margin: 0 0 20px; font-size: clamp(2.25rem, 5vw, 3.25rem);
  73. font-weight: 800; letter-spacing: -0.04em; line-height: 1.1;
  74. }
  75. .hero h1 em {
  76. font-style: normal;
  77. background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  78. -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  79. background-clip: text;
  80. }
  81. .hero__lead {
  82. margin: 0 auto; font-size: 1.125rem; color: var(--text-secondary);
  83. line-height: 1.7; max-width: 520px;
  84. }
  85. /* Sections */
  86. .section { padding: 80px 0; }
  87. .section--alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  88. .section__header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
  89. .section__eyebrow {
  90. display: inline-block; margin-bottom: 12px;
  91. font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  92. text-transform: uppercase; color: var(--purple);
  93. }
  94. .section__title {
  95. margin: 0 0 14px; font-size: clamp(1.75rem, 3vw, 2.25rem);
  96. font-weight: 800; letter-spacing: -0.03em; line-height: 1.2;
  97. }
  98. .section__subtitle { margin: 0; color: var(--text-secondary); font-size: 1.05rem; }
  99. /* Features grid */
  100. .features-grid {
  101. display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  102. }
  103. .feature-card {
  104. padding: 28px; background: var(--surface);
  105. border: 1px solid var(--border); border-radius: var(--radius);
  106. box-shadow: var(--shadow-sm); transition: box-shadow 0.2s ease, transform 0.2s ease;
  107. }
  108. .feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
  109. .feature-card__icon {
  110. width: 44px; height: 44px; border-radius: 11px;
  111. background: var(--purple-soft); display: grid; place-items: center;
  112. margin-bottom: 16px; font-size: 1.25rem;
  113. }
  114. .feature-card h3 {
  115. margin: 0 0 8px; font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em;
  116. }
  117. .feature-card p { margin: 0; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
  118. /* Steps */
  119. .steps {
  120. display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  121. counter-reset: step;
  122. }
  123. .step { text-align: center; }
  124. .step__number {
  125. width: 48px; height: 48px; border-radius: 50%;
  126. background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  127. color: #fff; font-weight: 800; font-size: 1.1rem;
  128. display: grid; place-items: center; margin: 0 auto 16px;
  129. box-shadow: 0 4px 12px var(--purple-glow);
  130. }
  131. .step h3 { margin: 0 0 8px; font-size: 1rem; font-weight: 700; }
  132. .step p { margin: 0; font-size: 0.9rem; color: var(--text-secondary); }
  133. /* Footer */
  134. .site-footer { border-top: 1px solid var(--border); background: var(--surface); padding: 32px 24px; text-align: center; }
  135. .site-footer__copy { margin: 0; font-size: 0.875rem; color: var(--text-muted); }
  136. /* Responsive */
  137. @media (max-width: 900px) {
  138. .features-grid, .steps { grid-template-columns: 1fr; }
  139. .hero { padding: 48px 24px 64px; }
  140. .section { padding: 56px 0; }
  141. }
  142. @media (max-width: 600px) {
  143. .hero { padding: 40px 16px 56px; }
  144. .container { padding: 0 16px; }
  145. }
  146. </style>
  147. </head>
  148. <body>
  149. <section class="hero">
  150. <div class="hero__inner">
  151. <div class="hero__content">
  152. <p class="hero__badge">macOS App <span>·</span> AI-Powered</p>
  153. <h1>Write better Reddit content with <em>App AI for Reddit</em></h1>
  154. <p class="hero__lead">
  155. Draft posts, sharpen titles, and craft smarter comments — all from a native Mac app with Reddit built in.
  156. </p>
  157. </div>
  158. </div>
  159. </section>
  160. <section class="section">
  161. <div class="container">
  162. <div class="section__header">
  163. <span class="section__eyebrow">Features</span>
  164. <h2 class="section__title">Everything you need to post with confidence</h2>
  165. <p class="section__subtitle">Purpose-built AI tools for Reddit creators, right inside a native macOS experience.</p>
  166. </div>
  167. <div class="features-grid">
  168. <article class="feature-card">
  169. <div class="feature-card__icon">✍️</div>
  170. <h3>Post Generator</h3>
  171. <p>Turn a rough idea into a polished Reddit post. Choose your subreddit, tone, and length — AI handles the rest.</p>
  172. </article>
  173. <article class="feature-card">
  174. <div class="feature-card__icon">📐</div>
  175. <h3>Title Optimizer</h3>
  176. <p>Get data-driven title suggestions with clear reasoning so your posts stand out in crowded feeds.</p>
  177. </article>
  178. <article class="feature-card">
  179. <div class="feature-card__icon">💬</div>
  180. <h3>Comment Writer</h3>
  181. <p>Draft thoughtful replies that match the thread context — agree, disagree, add value, or ask questions.</p>
  182. </article>
  183. <article class="feature-card">
  184. <div class="feature-card__icon">✨</div>
  185. <h3>Unlimited AI (Premium)</h3>
  186. <p>Generate as much as you need with no caps. Perfect for active posters and community builders.</p>
  187. </article>
  188. <article class="feature-card">
  189. <div class="feature-card__icon">📋</div>
  190. <h3>AI History</h3>
  191. <p>Every response saved locally on your Mac. Revisit, copy, and refine past generations anytime.</p>
  192. </article>
  193. <article class="feature-card">
  194. <div class="feature-card__icon">🌐</div>
  195. <h3>Reddit Built In</h3>
  196. <p>Browse and post to Reddit without leaving the app. Sign in, explore subreddits, and publish seamlessly.</p>
  197. </article>
  198. </div>
  199. </div>
  200. </section>
  201. <section class="section section--alt">
  202. <div class="container">
  203. <div class="section__header">
  204. <span class="section__eyebrow">How it works</span>
  205. <h2 class="section__title">From idea to upvote in three steps</h2>
  206. <p class="section__subtitle">No complicated setup. Install, open, and start creating.</p>
  207. </div>
  208. <div class="steps">
  209. <div class="step">
  210. <div class="step__number">1</div>
  211. <h3>Open the app</h3>
  212. <p>Launch App AI for Reddit on your Mac and sign in to Reddit.</p>
  213. </div>
  214. <div class="step">
  215. <div class="step__number">2</div>
  216. <h3>Pick your tool</h3>
  217. <p>Choose Post Generator, Title Optimizer, or Comment Writer from the sidebar.</p>
  218. </div>
  219. <div class="step">
  220. <div class="step__number">3</div>
  221. <h3>Generate &amp; post</h3>
  222. <p>Review AI output, edit if needed, and publish directly to Reddit.</p>
  223. </div>
  224. </div>
  225. </div>
  226. </section>
  227. <footer class="site-footer">
  228. <p class="site-footer__copy">&copy; 2026 App AI for Reddit. All rights reserved. Not affiliated with Reddit, Inc.</p>
  229. </footer>
  230. </body>
  231. </html>