<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>AiShop Cloud Platform</title>
    <link rel="stylesheet" href="/style.css">
</head>
<body>

<header class="header">
    <div class="container">
        <div class="logo">AiShop</div>
        <nav>
            <a href="#">Product</a>
            <a href="#">Pricing</a>
            <a href="#">Docs</a>
            <a href="#">Login</a>
        </nav>
    </div>
</header>

<section class="hero">
    <div class="container">
        <h1>Build & Scale Your Infrastructure</h1>
        <p>Secure cloud platform for modern apps. Fast deployment, global availability, enterprise-grade security.</p>
        <a class="btn" href="#">Start Free Trial</a>
    </div>
</section>

<section class="stats container">
    <div><h2>99.99%</h2><p>Uptime</p></div>
    <div><h2>120+</h2><p>Regions</p></div>
    <div><h2>10k+</h2><p>Clients</p></div>
</section>

<section class="features container">
    <div class="feature">
        <h3>Global CDN</h3>
        <p>Deliver content instantly worldwide with ultra-low latency.</p>
    </div>
    <div class="feature">
        <h3>Zero Trust Security</h3>
        <p>Built-in protection with encrypted traffic and access control.</p>
    </div>
    <div class="feature">
        <h3>API Driven</h3>
        <p>Automate everything with our developer-friendly API.</p>
    </div>
</section>

<section class="pricing container">
    <h2>Pricing</h2>
    <div class="plans">
        <div class="plan">
            <h3>Starter</h3>
            <p>$9/mo</p>
            <ul>
                <li>Basic Features</li>
                <li>Email Support</li>
                <li>1 Project</li>
            </ul>
        </div>
        <div class="plan popular">
            <h3>Pro</h3>
            <p>$29/mo</p>
            <ul>
                <li>All Features</li>
                <li>Priority Support</li>
                <li>10 Projects</li>
            </ul>
        </div>
        <div class="plan">
            <h3>Enterprise</h3>
            <p>Custom</p>
            <ul>
                <li>Unlimited Usage</li>
                <li>Dedicated Support</li>
                <li>Custom Integrations</li>
            </ul>
        </div>
    </div>
</section>

<footer class="footer">
    <div class="container">
        <p>© 2026 AiShop Cloud Platform</p>
    </div>
</footer>

</body>
</html>
