<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

  <title>WireAI LLC</title>

  <style>

    body {

      margin: 0;

      font-family: Arial, sans-serif;

      background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c') center/cover no-repeat;

      height: 100vh;

      color: white;

      display: flex;

      align-items: center;

      justify-content: center;

      text-align: center;

      backdrop-filter: brightness(0.4);

    }

    .container {

      background: rgba(0,0,0,0.55);

      padding: 40px;

      border-radius: 12px;

      max-width: 600px;

    }

    h1 {

      margin-top: 0;

      font-size: 36px;

    }

    p {

      font-size: 18px;

      line-height: 1.5;

    }

    .contact {

      margin-top: 20px;

      font-size: 18px;

      font-weight: bold;

    }

  </style>

</head>

<body>

  <div class="container">

    <h1>WireAI LLC</h1>

    <p>

      WireAI LLC is a technology company focused on building practical, user-friendly software and consumer technology products.

    </p>

    <p>

      We develop mobile applications designed to solve real everyday problems, with an emphasis on simplicity and reliability. Our current focus includes consumer-facing apps for personal safety and communication, with future plans to expand into consumer technology and robotics products.

    </p>

    <p class="contact">

      Contact: [email protected]

    </p>

  </div>

</body>

</html>