<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1" />
  <meta name="robots" content="noindex" />
  <title>PaneMba — Launching Soon</title>
  <style>
    :root {
      --orange: #FF7A00;
      --orange-dark: #9A3412;
      --bg: #F3EDE3;
      --surface: #ffffff;
      --text: #1C1A17;
      --text-secondary: #57514A;
      --border: #E3DACB;
    }
    * { box-sizing: border-box; }
    html, body { height: 100%; margin: 0; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: "Hanken Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 32px;
      -webkit-font-smoothing: antialiased;
    }
    .card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(28, 26, 23, 0.08);
      max-width: 520px;
      width: 100%;
      padding: 48px 40px;
      text-align: center;
    }
    .icon {
      width: 76px;
      height: 76px;
      margin: 0 auto 24px;
      background: var(--orange);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .icon svg { width: 42px; height: 42px; stroke: #fff; fill: none; stroke-width: 1.8; }
    h1 {
      font-size: 28px;
      font-weight: 700;
      margin: 0 0 12px;
      letter-spacing: -0.01em;
    }
    p.message {
      font-size: 16px;
      line-height: 1.6;
      color: var(--text-secondary);
      margin: 0;
    }
    .brand {
      margin-top: 32px;
      font-size: 13px;
      font-weight: 600;
      color: var(--orange-dark);
      letter-spacing: 0.04em;
    }
    @media (max-width: 480px) {
      .card { padding: 36px 24px; }
      h1 { font-size: 24px; }
    }
  </style>
</head>
<body>
  <main class="card" role="main">
    <div class="icon" aria-hidden="true">
      <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
        <path d="M3 10.2 12 3l9 7.2V20a1 1 0 0 1-1 1h-5v-6H9v6H4a1 1 0 0 1-1-1z" stroke-linecap="round" stroke-linejoin="round"/>
      </svg>
    </div>
    <h1>Launching soon</h1>
    <p class="message">
      PaneMba is Zimbabwe&rsquo;s property marketplace.
      Opening to the public soon.
    </p>
    <div class="brand">PANEMBA</div>
  </main>
</body>
</html>
