*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#0f0f13;
  color:white;
  font-family:Arial,sans-serif;
  overflow-x:hidden;
}

.top-bar{
  position:sticky;
  top:0;
  z-index:999;
  background:linear-gradient(90deg,#ff2d75,#7c3aed);
  text-align:center;
  padding:14px;
  font-weight:bold;
}

.container{
  width:100%;
  max-width:1200px;
  margin:auto;
  padding:20px;
}

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
}

.left,
.right{
  flex:1;
}

.badge{
  display:inline-block;
  background:rgba(255,45,117,0.2);
  color:#ff7db0;
  padding:10px 18px;
  border-radius:999px;
  margin-bottom:25px;
}

h1{
  font-size:64px;
  line-height:1.1;
}

.subtitle{
  color:#b3b3b3;
  margin-top:25px;
  line-height:1.7;
  font-size:18px;
}

.stats{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
  margin-top:30px;
}

.stat-box{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.08);
  padding:14px 18px;
  border-radius:18px;
}

.buttons{
  display:flex;
  gap:16px;
  margin-top:35px;
  flex-wrap:wrap;
}

.primary-btn,
.secondary-btn,
.mobile-bar button{
  border:none;
  border-radius:18px;
  padding:18px 30px;
  cursor:pointer;
  font-size:17px;
  font-weight:bold;
  text-decoration:none;
}

.primary-btn,
.mobile-bar button{
  background:linear-gradient(90deg,#ff2d75,#7c3aed);
  color:white;
}

.secondary-btn{
  background:rgba(255,255,255,0.08);
  color:white;
}

.creator-card{
  position:relative;
  border-radius:30px;
  overflow:hidden;
  background:#111;
  border:1px solid rgba(255,255,255,0.08);
}

.pinterest-frame{
  width:100%;
  border:none;
}

.overlay-card{
  position:absolute;
  left:20px;
  right:20px;
  bottom:20px;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(12px);
  padding:20px;
  border-radius:24px;
}

.overlay-card h2{
  font-size:28px;
}

.overlay-card p{
  color:#ccc;
  margin-top:5px;
}

.overlay-badge{
  display:inline-block;
  background:#ff2d75;
  padding:8px 14px;
  border-radius:999px;
  margin-bottom:12px;
  font-size:14px;
}

.premium-section{
  padding:80px 0;
}

.premium-grid{
  display:grid;
  grid-template-columns:1.3fr 0.7fr;
  gap:30px;
}

.glass-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(12px);
  border-radius:30px;
  padding:25px;
}

.creator-row{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:25px;
}

.avatar{
  width:55px;
  height:55px;
  border-radius:50%;
  background:linear-gradient(90deg,#ff2d75,#7c3aed);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
}

.creator-row span{
  color:#aaa;
}

.sticky-card{
  position:sticky;
  top:100px;
  height:fit-content;
}

.pricing-badge{
  display:inline-block;
  background:rgba(124,58,237,0.2);
  color:#d8b4fe;
  padding:10px 16px;
  border-radius:999px;
}

.price{
  font-size:72px;
  margin-top:20px;
}

.price-sub{
  color:#aaa;
  margin-top:10px;
}

.features{
  margin-top:35px;
}

.feature{
  background:rgba(255,255,255,0.06);
  padding:16px;
  border-radius:18px;
  margin-bottom:14px;
}

.full-btn{
  width:100%;
  margin-top:30px;
}

.secure-text{
  text-align:center;
  color:#aaa;
  margin-top:18px;
  font-size:14px;
}

.locked-section{
  padding:40px 0 120px;
}

.section-title{
  text-align:center;
  font-size:42px;
  margin-bottom:50px;
}

.locked-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.locked-card{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  cursor:pointer;
  border:1px solid rgba(255,255,255,0.08);
}

.locked-frame{
  width:100%;
  height:500px;
  border:none;
  filter:blur(10px) brightness(0.7);
  pointer-events:none;
}

.locked-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:20px;
}

.lock-icon{
  font-size:60px;
  margin-bottom:20px;
}

.locked-overlay h3{
  font-size:28px;
}

.locked-overlay p{
  color:#ddd;
  margin-top:10px;
}

.mobile-bar{
  display:none;
}

@media(max-width:900px){

  .hero{
    flex-direction:column;
    text-align:center;
    padding-top:40px;
  }

  h1{
    font-size:42px;
  }

  .premium-grid{
    grid-template-columns:1fr;
  }

  .locked-grid{
    grid-template-columns:1fr;
  }

  .buttons{
    justify-content:center;
  }

  .section-title{
    font-size:32px;
  }

  .price{
    font-size:54px;
  }

  .mobile-bar{
    display:block;
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#111;
    padding:15px;
    z-index:999;
  }

  .mobile-bar button{
    width:100%;
  }

  body{
    padding-bottom:90px;
  }

}