<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Coming Soon — Animation Generator</title>
  <style>
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #0f0f1a;
      font-family: system-ui, sans-serif;
      color: #e2e8f0;
    }
    .card {
      text-align: center;
      padding: 3rem 2rem;
      max-width: 480px;
    }
    h1 {
      font-size: 2.5rem;
      font-weight: 800;
      background: linear-gradient(to right, #a855f7, #ec4899);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 1rem;
    }
    p {
      font-size: 1.125rem;
      color: #94a3b8;
      line-height: 1.7;
    }
    .badge {
      display: inline-block;
      margin-bottom: 1.5rem;
      padding: 0.4rem 1rem;
      border: 1px solid rgba(168,85,247,0.3);
      border-radius: 9999px;
      font-size: 0.85rem;
      color: #a855f7;
      letter-spacing: 0.05em;
    }
  </style>
</head>
<body>
  <div class="card">
    <div class="badge">REBRANDING IN PROGRESS</div>
    <h1>Coming Soon</h1>
    <p>We are working on something new and exciting.<br>Check back shortly!</p>
  </div>
</body>
</html>