<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

  <title>Volton</title>

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


  <style>

    body {

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

      max-width: 640px;

      margin: 80px auto;

      padding: 0 20px;

      line-height: 1.6;

      color: #111;

    }


    h1 {

      font-size: 2rem;

      margin-bottom: 0.5em;

    }


    h2 {

      margin-top: 2em;

      font-size: 1.2rem;

    }


    p, li {

      color: #333;

    }


    .muted {

      color: #777;

      font-size: 0.9rem;

      margin-top: 40px;

    }


    a {

      color: inherit;

      text-decoration: underline;

    }

  </style>

</head>


<body>


  <h1>Volton</h1>


  <p>

    On-demand portable charging.

    Take a power bank anywhere. Return it at any station.

  </p>


  <h2>How it works</h2>

  <ol>

    <li>Tap or scan to unlock</li>

    <li>Use while on the move</li>

    <li>Return at any station</li>

  </ol>


  <h2>Pricing</h2>

  <p>

    Pay-as-you-go. Pricing varies by location.

  </p>


  <h2>Contact</h2>

  <p>

    <a href="mailto:support@tryvolton.com">support@tryvolton.com</a>

  </p>


  <h2>Legal</h2>

  <p>

    This service provides portable battery rental stations.

    By using Volton, you agree to fair use and timely return of rented devices.

    For enquiries, contact support.

  </p>


  <p class="muted">

    © Volton Ltd · Last updated April 2026

  </p>


</body>

</html>