<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>dia_disc™ by dia_drop LLC</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      background: #f3f3f3;
      color: #222;
    }
    header {
      background: #222;
      color: white;
      padding: 1rem;
      text-align: center;
    }
    .content {
      padding: 2rem;
      max-width: 700px;
      margin: auto;
      background: white;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    .emails {
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }
    .cta {
      background: #007acc;
      color: white;
      padding: 1rem;
      text-align: center;
      border-radius: 5px;
      margin: 2rem 0;
      cursor: pointer;
    }
    .cta:hover {
      background: #005fa3;
    }
    .auth-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      margin-top: 2rem;
    }
    button {
      padding: 0.5rem 1rem;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }
    .login {
      background-color: #555;
      color: white;
    }
    .signup {
      background-color: #0a0;
      color: white;
    }
  </style>
</head>
<body>

  <header>
    <h1>dia_disc™ by dia_drop LLC</h1>
    <p class="emails">Contact: dev@diadroplab.com | founderdisc@diadroplab.com</p>
  </header>

  <div class="content">
    <h2>Pre-Order Founder Disc – “Alumi-Naughty”™</h2>
    <p>
      Get one of the first 50 Special Edition dia_disc units. Reserve now for $100 deposit,
      $100 due at ship, free shipping included.
    </p>
    <ul>
      <li>Magnetic turbo lift assist</li>
      <li>Onboard camera & gyros</li>
      <li>Fully loaded PCB</li>
      <li>Light-refracting body</li>
    </ul>

    <div class="cta">Preorder Now</div>

    <div class="auth-buttons">
      <button class="login" onclick="alert('Stub: Firebase Login')">Login</button>
      <button class="signup" onclick="alert('Stub: Firebase Sign Up')">Sign Up</button>
    </div>
  </div>

</body>
</html>