
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8" />
  <title>Welcome to Billo</title>
  <meta name="viewport" content="width=device-width, initial-scale=1" />
  <style>
    body {
      margin: 0;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #0b1220, #121c34);
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
      color: #e8eefc;
    }
    .card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 32px 28px;
      max-width: 420px;
      text-align: center;
      box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    }
    h1 {
      margin: 0 0 12px;
      font-size: 28px;
      letter-spacing: 0.5px;
    }
    p {
      margin: 8px 0 20px;
      color: #cbd6f0;
      line-height: 1.5;
    }
    a {
      display: inline-block;
      padding: 12px 18px;
      border-radius: 12px;
      background: #7aa2ff;
      color: #0b1220;
      font-weight: 700;
      text-decoration: none;
    }
    a:hover {
      background: #94b4ff;
    }
    .footer {
      margin-top: 16px;
      font-size: 13px;
      color: #9fb0d9;
    }
  </style>
</head>
<body>
  <div class="card">
    <h1>WELCOME TO BILLO</h1>
    <p>
      Smart invoice and ledger management for businesses.<br />
      Track invoices, payments, and analytics — all in one place.
    </p>
    <a href="https://play.google.com/store/apps/details?id=com.aespi.billo&pcampaignid=web_share">
      Download on Google Play
    </a>
    <div class="footer">
      © aespi
    </div>
  </div>
</body>
</html>
