<!DOCTYPE html>
<html lang="pl">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Portal Klienta — Greenhomes</title>
  <style>
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: #f8f9fa;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      color: #1a1a1a;
    }
    .card {
      background: white;
      border-radius: 16px;
      padding: 56px 48px;
      max-width: 480px;
      width: 90%;
      text-align: center;
      box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    }
    .badge {
      display: inline-block;
      background: #e8f5e9;
      color: #2e7d32;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 24px;
    }
    h1 {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 12px;
      color: #1a1a1a;
    }
    p {
      font-size: 16px;
      color: #666;
      line-height: 1.6;
      margin-bottom: 32px;
    }
    .logo {
      font-size: 13px;
      color: #999;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .dot { color: #4caf50; }
  </style>
</head>
<body>
  <div class="card">
    <div class="badge">W przygotowaniu</div>
    <h1>Portal Klienta</h1>
    <p>Tutaj będziesz mógł śledzić status swojego projektu, pobierać dokumenty i komunikować się z zespołem Greenhomes.</p>
    <div class="logo">GREEN<span class="dot">●</span>HOMES</div>
  </div>
</body>
</html>