<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&#038;display=swap" rel="stylesheet">
<style>
*{box-sizing:border-box;}
body{
  margin:0;
  font-family:'Inter',sans-serif;
  background:linear-gradient(135deg,#dff4ff,#bfe6ff);
}
/* WRAPPER */
.wrapper{
  max-width:1250px;
  margin:40px auto;
  background:rgba(255,255,255,0.55);
  backdrop-filter:blur(30px);
  border-radius:28px;
  padding:20px;
  box-shadow:0 40px 80px rgba(0,0,0,0.12);
  border:1px solid rgba(255,255,255,0.3);
}
/* NAV */
.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 25px;
  background:rgba(255,255,255,0.65);
  border-radius:20px;
}
.nav ul{
  display:flex;
  gap:25px;
  list-style:none;
  padding:0;
  margin:0;
}
.nav a{
  text-decoration:none;
  color:#0f172a;
  font-size:14px;
  font-weight:500;
  transition:0.2s;
}
.nav a:hover{
  color:#0ea5e9;
}
.nav button{
  padding:10px 22px;
  border-radius:30px;
  border:none;
  background:linear-gradient(135deg,#38bdf8,#0284c7);
  color:white;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}
.nav button:hover{
  transform:scale(1.05);
}
/* HERO */
.hero{
  margin-top:20px;
  border-radius:28px;
  padding:80px;
  color:white;
  background:linear-gradient(135deg,#38bdf8,#0284c7);
  position:relative;
  overflow:hidden;
}
/* floating blobs */
.hero::before,
.hero::after{
  content:'';
  position:absolute;
  border-radius:50%;
  background:rgba(255,255,255,0.15);
}
.hero::before{
  width:350px;
  height:350px;
  top:-120px;
  right:-80px;
}
.hero::after{
  width:200px;
  height:200px;
  bottom:-60px;
  left:-60px;
}
.hero h1{
  font-size:58px;
  margin:0;
  font-weight:800;
  line-height:1.1;
}
.hero p{
  margin-top:18px;
  max-width:520px;
  font-size:15px;
  opacity:0.95;
}
/* GRID */
.grid{
  display:grid;
  grid-template-columns:1fr 1fr 1.3fr;
  gap:22px;
  margin-top:30px;
}
/* CARD */
.card{
  background:rgba(255,255,255,0.8);
  border-radius:22px;
  padding:25px;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.4);
  transition:0.3s;
  position:relative;
}
.card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 50px rgba(0,0,0,0.12);
}
/* BADGE */
.badge{
  display:inline-block;
  padding:5px 12px;
  font-size:12px;
  border-radius:20px;
  background:#e0f2fe;
  color:#0284c7;
  margin-bottom:10px;
}
/* TEXT */
h3{
  margin:0;
  font-size:18px;
  color:#0f172a;
}
p{
  color:#475569;
  font-size:14px;
  margin-top:10px;
}
/* BIG CARD */
.big-card{
  grid-row:span 2;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.visual{
  height:200px;
  margin-top:20px;
  border-radius:20px;
  background:linear-gradient(145deg,#e6f6ff,#ffffff);
  box-shadow:inset 6px 6px 15px rgba(0,0,0,0.05),
             inset -6px -6px 15px rgba(255,255,255,0.8);
}
/* STATS */
.stats{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.stats h2{
  font-size:44px;
  margin:0;
  color:#0f172a;
}
.stats button{
  padding:10px 20px;
  border-radius:30px;
  border:none;
  background:linear-gradient(135deg,#38bdf8,#0284c7);
  color:white;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}
.stats button:hover{
  transform:scale(1.05);
}
/* RESPONSIVE */
@media(max-width:900px){
  .grid{
    grid-template-columns:1fr;
  }
  .hero{
    padding:45px;
  }
  .hero h1{
    font-size:36px;
  }
}
</style>
</head>
<body>
  <!-- NAV -->
    <ul>
      <li><a href="#">Events</a></li>
      <li><a href="#">Research</a></li>
      <li><a href="#">Use cases</a></li>
      <li><a href="#">Articles</a></li>
      <li><a href="#">Courses</a></li>
      <li><a href="#">Contact</a></li>
    </ul>
    <button>Sign up →</button>
  <!-- HERO -->
    <h1>Explore the world<br>of Artificial Intelligence</h1>
    <p>
      Stay up-to-date with the latest AI advancements and enhance your
      knowledge with resources and educational programs.
    </p>
  <!-- GRID -->
      Popular
      <h3>Use cases</h3>
      <p>AI in healthcare, finance, marketing and transport.</p>
      Trending
      <h3>Online courses</h3>
      <p>Machine learning, NLP, deep learning tutorials.</p>
        <h3>AI & education: opportunities</h3>
        <p>How AI is transforming education systems.</p>
        <h2>+200</h2>
        <button>Join →</button>
      <p>New AI use cases added daily</p>
</body>
</html>