<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="utf-8" />

  <title>CareMyRide – Keep your car history. Sell smarter.</title>


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

  <meta name="description" content="CareMyRide helps you track car maintenance, store invoices, and keep a complete vehicle history to protect resale value." />


  <meta property="og:title" content="CareMyRide" />

  <meta property="og:description" content="Track car maintenance. Store invoices. Increase resale value." />

  <meta property="og:type" content="website" />


  <style>

    :root {

      --bg: #0e0e0e;

      --fg: #ffffff;

      --muted: #a0a0a0;

      --accent: #ff7a18; /* ajuste si besoin */

    }


    * {

      box-sizing: border-box;

    }


    body {

      margin: 0;

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

      background: var(--bg);

      color: var(--fg);

      line-height: 1.6;

    }


    .container {

      max-width: 900px;

      padding: 48px 24px;

      margin: 0 auto;

    }


    header {

      display: flex;

      align-items: center;

      gap: 16px;

      margin-bottom: 64px;

    }


    header img {

      height: 56px;

      width: auto;

    }


    h1 {

      font-size: 2.4rem;

      margin: 0 0 16px 0;

    }


    p.lead {

      font-size: 1.15rem;

      color: var(--muted);

      max-width: 640px;

    }


    .cta {

      margin-top: 32px;

      display: flex;

      flex-wrap: wrap;

      gap: 16px;

    }


    .cta a {

      text-decoration: none;

      padding: 14px 22px;

      border-radius: 6px;

      font-weight: 600;

      display: inline-block;

    }


    .cta .primary {

      background: var(--accent);

      color: #000;

    }


    .cta .secondary {

      border: 1px solid #333;

      color: var(--fg);

    }


    section {

      margin-top: 96px;

    }


    section h2 {

      font-size: 1.6rem;

      margin-bottom: 16px;

    }


    ul {

      padding-left: 18px;

    }


    ul li {

      margin-bottom: 8px;

      color: var(--muted);

    }


    footer {

      margin-top: 120px;

      padding-top: 24px;

      border-top: 1px solid #222;

      font-size: 0.9rem;

      color: var(--muted);

    }


    footer a {

      color: var(--muted);

      text-decoration: none;

    }


    footer a:hover {

      text-decoration: underline;

    }


    @media (max-width: 600px) {

      h1 {

        font-size: 2rem;

      }

    }

  </style>

</head>


<body>

  <div class="container">


    <header>

      <!-- Remplace logo.svg par ton vrai fichier -->

      <img src="logo.svg" alt="CareMyRide logo" />

    </header>


    <main>

      <h1>Keep your car history.<br>Sell smarter.</h1>


      <p class="lead">

        CareMyRide helps you keep a clean, complete history of your car:

        maintenance, invoices, and key events — all in one place.

      </p>


      <div class="cta">

        <!-- Remplace par ton URL Glide -->

        <a href="https://demo.caremyride.com" class="primary">View the demo</a>


        <!-- À activer quand les stores sont prêts -->

        <a href="#" class="secondary">App coming soon</a>

      </div>


      <section>

        <h2>Why CareMyRide?</h2>

        <ul>

          <li>Maintenance history is often lost or scattered</li>

          <li>Invoices disappear over time</li>

          <li>Missing records reduce resale value</li>

        </ul>

      </section>


      <section>

        <h2>What it does</h2>

        <ul>

          <li>One car, one clear timeline</li>

          <li>Invoices stored and searchable</li>

          <li>Ready-to-share history when you sell</li>

        </ul>

      </section>

    </main>


    <footer>

      © CareMyRide ·

      <a href="mailto:contact@caremyride.com">Contact</a> ·

      <a href="#">Privacy</a>

    </footer>


  </div>

</body>

</html>