<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Future UI</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&#038;display=swap" rel="stylesheet">
<style>
body{
    font-family:'Inter',sans-serif;
    background: radial-gradient(circle at top, #0f0c29, #000);
    color:white;
}
/* Glow Background */
.glow-bg{
    position:absolute;
    width:400px;
    height:400px;
    background: radial-gradient(circle, rgba(168,85,247,0.4), transparent);
    filter: blur(100px);
    z-index:-1;
}
/* Glass Card */
.card{
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(18px);
    border-radius:20px;
    padding:25px;
    border:1px solid rgba(255,255,255,0.08);
    transition:0.4s;
}
.card:hover{
    transform: translateY(-10px);
    box-shadow:0 0 40px rgba(168,85,247,0.5);
}
/* Button */
.btn{
    background: linear-gradient(45deg,#7c3aed,#ec4899);
    padding:12px 28px;
    border-radius:30px;
    box-shadow:0 0 25px rgba(236,72,153,0.6);
}
/* Floating Animation */
@keyframes float{
    0%{transform:translateY(0)}
    50%{transform:translateY(-10px)}
    100%{transform:translateY(0)}
}
.float{
    animation:float 4s ease-in-out infinite;
}
</style>
</head>
<body>
<!-- Glow Effects -->
<!-- HERO -->
<section>
    <!-- Text -->
        <h1>
            Build the Future with AI Technology
        </h1>
        <p>
            Create powerful AI-driven experiences with modern tools, automation, and intelligent systems.
        </p>
            <button>Get Started</button>
            <button>Learn More</button>
    <!-- Image (UPDATED) -->
        <img decoding="async" 
        src="https://images.unsplash.com/photo-1674027444485-cec3da58eef4?q=80&#038;w=900&#038;auto=format&#038;fit=crop"
       >
</section>
<!-- FEATURES -->
<section>
    <h2>
        Powerful AI Features
    </h2>
            <h3>Automation</h3>
            <p>
                Automate repetitive tasks with intelligent AI workflows.
            </p>
            <h3>Smart Analytics</h3>
            <p>
                Gain insights with AI-powered analytics and predictions.
            </p>
            <h3>Cloud AI</h3>
            <p>
                Secure and scalable AI solutions hosted in the cloud.
            </p>
</section>
<!-- CTA -->
<section>
    <h2>
        Ready to Build with AI?
    </h2>
    <p>
        Start your journey today and create something amazing.
    </p>
    <button>Start Now</button>
</section>
</body>
</html>