<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Premium Cards</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&#038;display=swap" rel="stylesheet">
<style>
/* ===== SAFE SCOPE ===== */
.vts-wrapper{
  font-family:'Inter',sans-serif;
  padding:60px 20px;
  background:radial-gradient(circle at 20% 20%,#f0f4ff,#ffffff);
}
/* GRID */
.vts-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}
/* CARD */
.vts-card{
  border-radius:26px;
  padding:28px;
  color:white;
  position:relative;
  min-height:240px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  backdrop-filter: blur(18px);
  border:1px solid rgba(255,255,255,0.2);
  box-shadow:0 15px 40px rgba(0,0,0,0.15);
  transition:.4s;
}
.vts-card:hover{
  transform:translateY(-10px) scale(1.02);
  box-shadow:0 25px 70px rgba(0,0,0,0.25);
}
/* NAV */
.vts-nav{
  display:flex;
  justify-content:space-between;
  font-size:13px;
}
.vts-nav span{
  margin-left:12px;
}
/* CONTENT */
.vts-title-card{
  font-size:28px;
  font-weight:700;
}
.vts-desc{
  font-size:13px;
  opacity:.9;
  margin-top:6px;
}
/* BUTTON */
.vts-btn{
  margin-top:15px;
  padding:9px 15px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.3);
  background:rgba(255,255,255,0.2);
  color:white;
  cursor:pointer;
}
/* GLASS BOX */
.vts-box{
  position:absolute;
  right:20px;
  bottom:20px;
  width:90px;
  height:90px;
  border-radius:16px;
  background:rgba(255,255,255,0.2);
}
/* COLORS */
.vts-blue{background:linear-gradient(135deg,#00c6ff,#0072ff);}
.vts-purple{background:linear-gradient(135deg,#a18cd1,#fbc2eb);}
.vts-dark{background:linear-gradient(135deg,#0f2027,#2c5364);}
.vts-pink{background:linear-gradient(135deg,#ff758c,#ff7eb3);}
.vts-violet{background:linear-gradient(135deg,#667eea,#764ba2);}
.vts-saas{background:linear-gradient(135deg,#43cea2,#185a9d);}
/* RESPONSIVE */
@media(max-width:768px){
  .vts-container{
    grid-template-columns:1fr;
  }
}
</style>
</head>
<body>
<section>
  <!-- 1 -->
      <strong>LOGO</strong>
      HomeAboutPricing
      Modern Tech UI
      Next-gen interface experience.
      <button>Get Started</button>
  <!-- 2 -->
      <strong>LOGO</strong>
      HomeAboutPricing
      Innovative Design
      Creative premium layouts.
      <button>Learn More</button>
  <!-- 3 -->
      <strong>LOGO</strong>
      HomeAboutPricing
      Grow Audience
      Scale your brand fast.
      <button>Start Trial</button>
  <!-- 4 -->
      <strong>LOGO</strong>
      HomeAboutPricing
      Digital Marketing
      Performance campaigns.
      <button>Learn More</button>
  <!-- 5 -->
      <strong>LOGO</strong>
      HomeAboutPricing
      Brand Growth
      Premium positioning.
      <button>Explore</button>
  <!-- 6 -->
      <strong>LOGO</strong>
      HomeAboutSign In
      SaaS Landing
      High converting UI.
      <button>Request Demo</button>
</section>
</body>
</html>