<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8" />

  <title>@AMTW — Coming Soon</title>

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

  <style>

    :root {

      --bg: #020617;

      --accent: #6366f1;

      --accent-soft: rgba(99, 102, 241, 0.18);

      --text: #e5e7eb;

      --muted: #9ca3af;

    }


    * {

      box-sizing: border-box;

      margin: 0;

      padding: 0;

    }


    body {

      font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;

      min-height: 100vh;

      background: radial-gradient(circle at top, #1f2937 0, #020617 45%, #000 100%);

      color: var(--text);

      display: flex;

      align-items: center;

      justify-content: center;

      padding: 20px;

    }


    .card {

      width: min(480px, 100%);

      background: rgba(15, 23, 42, 0.9);

      border-radius: 18px;

      padding: 32px 26px 28px;

      border: 1px solid rgba(148, 163, 184, 0.35);

      box-shadow: 0 22px 60px rgba(15, 23, 42, 0.9);

      text-align: center;

    }


    .badge {

      display: inline-flex;

      align-items: center;

      gap: 6px;

      padding: 4px 10px;

      border-radius: 999px;

      background: var(--accent-soft);

      color: var(--accent);

      font-size: 0.75rem;

      text-transform: uppercase;

      letter-spacing: 0.12em;

      margin-bottom: 14px;

    }


    h1 {

      font-size: clamp(2rem, 4vw, 2.6rem);

      margin-bottom: 12px;

    }


    p {

      color: var(--muted);

      font-size: 0.95rem;

      line-height: 1.6;

      margin-bottom: 10px;

    }


    .contact {

      margin-top: 16px;

      font-size: 0.95rem;

      color: var(--text);

      font-weight: 500;

    }


    .footer {

      margin-top: 18px;

      font-size: 0.8rem;

      color: var(--muted);

    }

  </style>

</head>

<body>

  <main class="card">


    <div class="badge">

      <span>●</span>

      <span>@AMTW</span>

    </div>


    <h1>Coming Soon</h1>

    <p>

      Something new is on the way.  

      @AMTW is currently under construction.

    </p>


    <div class="contact">

      Contact us: <a href="tel:+359879177745" style="color: var(--accent); text-decoration: none;">+359 879 177 745</a>

    </div>


    <div class="footer">

      © <span id="year"></span> @AMTW

    </div>

  </main>


  <script>

    document.getElementById("year").textContent = new Date().getFullYear();

  </script>

</body>

</html>