| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321 |
- <!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="App AI for Reddit — AI-powered tools for Reddit posts, titles, and comments. Built for macOS.">
- <title>App AI for Reddit — AI Tools for Reddit on Mac</title>
- <link rel="icon" type="image/png" href="assets/favicon.png">
- <link rel="apple-touch-icon" href="assets/app-logo.png">
- <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__logo {
- width: 88px; height: 88px; margin: 0 auto 24px;
- border-radius: 22px; display: block;
- box-shadow: 0 12px 40px rgba(255, 69, 0, 0.22);
- }
- .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">
- <img class="hero__logo" src="assets/app-logo.png" width="88" height="88" alt="App AI for Reddit app icon">
- <p class="hero__badge">macOS App <span>·</span> AI-Powered</p>
- <h1>Write better Reddit content with <em>App AI for Reddit</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/app-ai-for-reddit">
- <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 & open</h3>
- <p>Get App AI for Reddit 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 & 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 App AI for Reddit on Mac and start creating content that gets noticed.</p>
- <a class="btn btn--secondary" href="https://apps.apple.com/app/app-ai-for-reddit">
- <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">© 2026 App AI for Reddit. 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 & Conditions</a>
- <a href="mailto:support@reddora.ai">Support</a>
- </nav>
- </div>
- </footer>
- </body>
- </html>
|