<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8" />

  <meta name="viewport" content="width=device-width, initial-scale=1.0" />

  <title>01Genius — Coming Soon</title>

  <style>

    body {

      font-family: system-ui, sans-serif;

      background: linear-gradient(135deg, #0f172a, #1e293b);

      color: white;

      display: flex;

      flex-direction: column;

      justify-content: center;

      align-items: center;

      height: 100vh;

      text-align: center;

    }

    h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }

    p { font-size: 1.25rem; color: #cbd5e1; }

  </style>

</head>

<body>

  <h1>01Genius</h1>

  <p>Our brilliant new platform is coming soon 🚀</p>

</body>

</html>