<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8" />

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

  <title>ServiceBeacon — Coming Soon</title>


  <style>

    :root {

      --bg: #0b0e14;

      --card: #111827;

      --text: #e5e7eb;

      --muted: #9ca3af;

      --accent: #38bdf8;

    }


    * {

      box-sizing: border-box;

    }


    body {

      margin: 0;

      min-height: 100vh;

      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",

                   Roboto, Helvetica, Arial, sans-serif;

      background: radial-gradient(1200px 600px at 50% -10%, #1f2937, var(--bg));

      color: var(--text);

      display: flex;

      align-items: center;

      justify-content: center;

    }


    .container {

      max-width: 640px;

      padding: 3rem 2.5rem;

      background: rgba(17, 24, 39, 0.7);

      backdrop-filter: blur(8px);

      border-radius: 16px;

      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);

      text-align: center;

    }


    .logo {

      font-size: 1.75rem;

      font-weight: 700;

      letter-spacing: -0.02em;

      margin-bottom: 1rem;

    }


    .logo span {

      color: var(--accent);

    }


    h1 {

      font-size: 2.25rem;

      margin: 0 0 1rem;

      letter-spacing: -0.03em;

    }


    p {

      font-size: 1.05rem;

      color: var(--muted);

      line-height: 1.6;

      margin: 0 0 2rem;

    }


    .email {

      display: inline-block;

      padding: 0.6rem 1.25rem;

      border-radius: 999px;

      background: rgba(56, 189, 248, 0.15);

      color: var(--accent);

      font-weight: 500;

      text-decoration: none;

    }


    footer {

      margin-top: 2.5rem;

      font-size: 0.85rem;

      color: var(--muted);

    }


    @media (max-width: 480px) {

      .container {

        padding: 2rem 1.75rem;

      }


      h1 {

        font-size: 1.9rem;

      }

    }

  </style>

</head>


<body>

  <main class="container">

    <div class="logo">Service<span>Beacon</span></div>


    <h1>Coming Soon</h1>


    <p>

      ServiceBeacon is building intelligent software to bring clarity,

      automation, and insight to service businesses.

    </p>



    <footer>

      © 2026 ServiceBeacon

    </footer>

  </main>

</body>

</html>