<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

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

  <title>Mirror Gate</title>

  <style>

    body { font-family: Arial, sans-serif; margin:0; background:#f9f9f9; color:#111; text-align:center; }

    header { padding: 2rem 1rem; background:#111; color:#fff; }

    h1 { margin:0; font-size:2rem; }

    .tagline { margin-top:.5rem; color:#ddd; }

    main { padding:2rem 1rem; max-width:700px; margin:auto; }

    a { color:#111; font-weight:bold; text-decoration:none; }

    footer { padding:1rem; font-size:.85rem; color:#555; }

  </style>

</head>

<body>

  <header>

    <h1>Mirror Gate</h1>

    <div class="tagline">See past the polish.</div>

  </header>

  <main>

    <h2>Our Mission</h2>

    <p>Mirror Gate builds simple, sharp tools for a noisy world. Our first release, <strong>Unpeel</strong>, helps people see photos more clearly and honestly.</p>

    <h2>Contact</h2>

    <p>Email: <a href="mailto:TheMirrorGate@gmail.com">TheMirrorGate@gmail.com</a></p>

    <p>Website: <a href="https://themirrorgate.com">themirrorgate.com</a></p>

  </main>

  <footer>© 2025 Mirror Gate. All rights reserved.</footer>

</body>

</html>