<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"/> <meta name="viewport" content="width=device-width,initial-scale=1.0"/> <title>Recipai — Coming Soon</title> <link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,600;0,800;1,700&family=Inter:wght@400;500&display=swap" rel="stylesheet"/> <style> *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: "Inter", sans-serif; background: #f8f7f0; color: #2e2f2b; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; text-align: center; } .logo { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 40px; } .logo-icon { width: 40px; height: 40px; border-radius: 10px; background: #176a21; display: flex; align-items: center; justify-content: center; color: white; font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 18px; } .logo-name { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 22px; font-style: italic; color: #176a21; letter-spacing: -0.025em; } .badge { display: inline-flex; align-items: center; gap: 6px; background: #e8f5e9; border: 1px solid #c8e6c9; border-radius: 999px; padding: 6px 14px; font-size: 13px; font-weight: 600; color: #176a21; margin-bottom: 24px; } h1 { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: clamp(2.2rem, 7vw, 3.8rem); letter-spacing: -0.035em; line-height: 1.08; color: #2e2f2b; margin-bottom: 16px; } h1 em { color: #176a21; font-style: italic; } p { font-size: clamp(15px, 2.5vw, 18px); color: #5b5c57; line-height: 1.7; max-width: 480px; margin: 0 auto 36px; } .card { background: white; border: 1px solid #e3e3db; border-radius: 16px; padding: 20px 28px; max-width: 340px; width: 100%; box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.04); } .card p { font-size: 13px; color: #5b5c57; margin: 0; line-height: 1.6; } .card strong { display: block; font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 15px; color: #2e2f2b; margin-bottom: 4px; } @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } } .float { animation: float 3s ease-in-out infinite; } footer { position: fixed; bottom: 0; left: 0; right: 0; padding: 16px; text-align: center; font-size: 12px; color: #adada7; border-top: 1px solid #e3e3db; background: rgba(248,247,240,0.9); backdrop-filter: blur(8px); } </style> </head> <body> <div class="logo"> <div class="logo-icon">R</div> <span class="logo-name">Recipai</span> </div> <div class="badge">✦ Launching soon</div> <h1>Our chef is almost<br/><em>ready to cook.</em></h1> <p>Your AI-powered recipe and meal planner is finishing up in the kitchen. Something delicious is on its way.</p> <div class="card float"> <strong>🍴 What to expect</strong> <p>Personalised meal plans, smart shopping lists, and full recipes — all generated by AI in under 30 seconds.</p> </div> <footer>recipai.org · AI-powered meal planning</footer> </body> </html>