<!DOCTYPE html>
<html lang="fr">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Cercle — L&apos;app de votre cercle proche</title>
  <style>
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: #0f172a;
      color: white;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 2rem;
    }
    .logo { font-size: 3rem; margin-bottom: 1rem; }
    h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 0.75rem; }
    h1 span { color: #6366f1; }
    p { color: #94a3b8; font-size: 1.1rem; margin-bottom: 2rem; max-width: 400px; }
    .badges { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .badge {
      background: #1e293b;
      border: 1px solid #334155;
      padding: 0.75rem 1.5rem;
      border-radius: 12px;
      font-size: 0.9rem;
      color: #cbd5e1;
    }
  </style>
</head>
<body>
  <div>
    <div class="logo">⭕</div>
    <h1>App<span>cercle</span></h1>
    <p>Restez connecté avec les personnes qui comptent vraiment.</p>
    <div class="badges">
      <div class="badge">📱 Disponible sur iOS & Android</div>
      <div class="badge">🔒 Privé & sécurisé</div>
    </div>
  </div>
</body>
</html>