<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

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

  <title>Primeridian Group LLC</title>

  <meta name="description" content="Primeridian Group LLC is a U.S.-based e-commerce company focused on online retail of general consumer products.">


  <style>

    * {

      box-sizing: border-box;

    }


    body {

      margin: 0;

      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

      color: #1f2937;

      background: #ffffff;

    }


    .hero {

      min-height: 78vh;

      display: flex;

      align-items: center;

      justify-content: center;

      padding: 60px 24px;

    }


    .container {

      max-width: 820px;

      width: 100%;

    }


    .company {

      font-size: 46px;

      font-weight: 700;

      letter-spacing: -1px;

      margin-bottom: 12px;

    }


    .tagline {

      font-size: 22px;

      color: #64748b;

      margin-bottom: 48px;

    }


    h2 {

      font-size: 20px;

      margin-top: 34px;

      margin-bottom: 10px;

    }


    p {

      font-size: 17px;

      line-height: 1.7;

      color: #475569;

      max-width: 700px;

    }


    footer {

      border-top: 1px solid #e5e7eb;

      padding: 28px 24px;

      color: #94a3b8;

      font-size: 14px;

    }


    .footer-inner {

      max-width: 820px;

      margin: 0 auto;

    }


    @media (max-width: 600px) {

      .company {

        font-size: 34px;

      }


      .tagline {

        font-size: 19px;

      }

    }

  </style>

</head>


<body>


  <main class="hero">

    <div class="container">


      <div class="company">PRIMERIDIAN GROUP LLC</div>

      <div class="tagline">E-Commerce & Online Retail</div>


      <h2>About Us</h2>

      <p>

        Primeridian Group LLC is a U.S.-based e-commerce company focused on

        the online retail of general consumer products.

      </p>


      <h2>What We Do</h2>

      <p>

        We work with third-party suppliers and fulfillment providers to serve

        customers through online marketplaces across the United States.

      </p>


      <h2>Current Status</h2>

      <p>

        Our online retail operations are currently being prepared for launch.

      </p>


    </div>

  </main>


  <footer>

    <div class="footer-inner">

      © 2026 Primeridian Group LLC. All rights reserved.

    </div>

  </footer>


</body>

</html>