<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  <title>Weboha — Maintenance</title>

  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">

  <style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #0b0f14;
      color: #e6edf3;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100vh;
      text-align: center;
      padding: 20px;
    }

    .container {
      max-width: 520px;
    }

    .logo {
      font-size: 22px;
      font-weight: 600;
      letter-spacing: 0.08em;
      margin-bottom: 40px;
      color: #ffffff;
    }

    .status {
      font-size: 14px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #6b7280;
      margin-bottom: 16px;
    }

    h1 {
      font-size: 32px;
      font-weight: 500;
      line-height: 1.3;
      margin-bottom: 20px;
    }

    p {
      font-size: 16px;
      color: #9aa4af;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .divider {
      width: 40px;
      height: 1px;
      background: #2a2f36;
      margin: 30px auto;
    }

    .footer {
      font-size: 13px;
      color: #6b7280;
    }

    .dot {
      display: inline-block;
      width: 6px;
      height: 6px;
      background: #22c55e;
      border-radius: 50%;
      margin-right: 8px;
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
      0% { opacity: 0.3; }
      50% { opacity: 1; }
      100% { opacity: 0.3; }
    }
  </style>
</head>
<body>
  <div class="container">
    <div class="logo">WEBOHA</div>

    <div class="status">
      <span class="dot"></span>Maintenance in Progress
    </div>

    <h1>We’re refining things behind the scenes.</h1>

    <p>
      Weboha is currently undergoing scheduled updates to improve performance,
      design, and overall experience.  
      We’ll be back shortly.
    </p>

    <div class="divider"></div>

    <div class="footer">
      © 2026 Weboha — All rights reserved
    </div>
  </div>
</body>
</html>