<!doctype html>

<html lang="en">

<head>

  <meta charset="utf-8" />

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

  <title>Pathline | Coming Soon</title>


  <!-- Change these colours if needed to match your exact logo -->

  <style>

    :root {

      --primary: #1f2937;     /* dark slate */

      --secondary: #4b5563;   /* muted grey */

      --accent: #2563eb;      /* accent colour from logo */

      --background: #f9fafb;  /* light background */

      --card: #ffffff;

    }


    html, body {

      margin: 0;

      padding: 0;

      height: 100%;

      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Helvetica, Arial, sans-serif;

      background: var(--background);

      color: var(--primary);

    }


    .container {

      display: flex;

      align-items: center;

      justify-content: center;

      height: 100%;

      padding: 24px;

    }


    .card {

      background: var(--card);

      padding: 48px 40px;

      border-radius: 12px;

      box-shadow: 0 10px 30px rgba(0,0,0,0.08);

      max-width: 520px;

      width: 100%;

      text-align: center;

    }


    .logo {

      max-width: 180px;

      margin-bottom: 28px;

    }


    h1 {

      font-size: 32px;

      margin: 0 0 12px;

      font-weight: 600;

      letter-spacing: -0.02em;

    }


    p {

      font-size: 18px;

      line-height: 1.5;

      margin: 0 0 20px;

      color: var(--secondary);

    }


    .tagline {

      font-size: 16px;

      color: var(--secondary);

      margin-bottom: 28px;

    }


    .contact {

      font-size: 15px;

    }


    .contact a {

      color: var(--accent);

      text-decoration: none;

      font-weight: 500;

    }


    .contact a:hover {

      text-decoration: underline;

    }


    .footer {

      margin-top: 32px;

      font-size: 13px;

      color: #9ca3af;

    }


    @media (max-width: 480px) {

      .card {

        padding: 32px 24px;

      }


      h1 {

        font-size: 26px;

      }


      p {

        font-size: 16px;

      }

    }

  </style>

</head>

<body>


<div class="container">

  <div class="card">


    <!-- Replace with your actual logo filename -->

    <img src="pathline-logo.png" alt="Pathline logo" class="logo">


    <h1>Coming soon</h1>


    <p class="tagline">

      Execution partners for founder-led businesses.

    </p>


    <p>

      We help turn plans into progress. Pathline is currently preparing for launch.

    </p>


    <div class="contact">

      Contact: <a href="mailto:hello@pathline.au">hello@pathline.au</a>

    </div>


    <div class="footer">

      © Pathline

    </div>


  </div>

</div>


</body>

</html>