*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"Poppins","Segoe UI",Tahoma,Arial,sans-serif;
  color:#fff;
  background:
    radial-gradient(1200px 400px at 50% -200px, rgba(216,61,255,.35), rgba(216,61,255,0) 60%),
    radial-gradient(800px 600px at 80% 20%, rgba(255,64,160,.25), rgba(255,64,160,0) 60%),
    radial-gradient(600px 600px at 15% 85%, rgba(114,46,209,.22), rgba(114,46,209,0) 60%);
  background-color:#0b0613;
  position:relative;
}
body:after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  box-shadow:inset 0 0 200px rgba(0,0,0,.7);
}
.page{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.hero{
  padding:72px 20px 32px;
  width:100%;
  max-width:980px;
  text-align:center;
}
.hero-title{
  margin:0 0 10px;
  font-weight:800;
  line-height:1.05;
  font-size: clamp(40px, 8vw, 88px);
  letter-spacing:.3px;
}
.hero-title span{
  background:linear-gradient(90deg,#b374ff 0%,#ff5bd7 50%,#d06bff 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow:0 2px 24px rgba(255,96,214,.15);
}
.hero-subtitle{
  margin:8px auto 24px;
  opacity:.9;
  font-size:clamp(14px,2.4vw,20px);
  color:rgba(255,255,255,.9);
}
.cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 26px;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  color:#fff;
  background:linear-gradient(135deg,#7b4dff 0%,#ff4db8 100%);
  box-shadow:0 12px 30px rgba(216,61,255,.25),0 6px 15px rgba(0,0,0,.3) inset;
  transition:transform .15s ease, box-shadow .2s ease, filter .2s ease;
}
.cta:hover{transform:translateY(-2px);filter:saturate(1.1)}
.cta:active{transform:translateY(0)}
.cta-icon{color:#fff}
.glow-line{
  height:3px;
  width:min(720px,80%);
  margin:36px auto 0;
  border-radius:3px;
  background:linear-gradient(90deg,transparent,rgba(200,80,255,.8),transparent);
  filter:blur(.2px);
  box-shadow:0 0 25px rgba(200,80,255,.55);
}
.how{
  width:100%;
  max-width:980px;
  padding:28px 16px 80px;
}
.how-title{
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.35em;
  opacity:.8;
  text-align:center;
  margin:28px 0 18px;
}
.steps{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.step{
  display:flex;
  align-items:center;
  gap:18px;
  padding:20px 24px;
  border-radius:28px;
  background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.02));
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.06);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06),0 12px 24px rgba(0,0,0,.25);
}
.step:before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(1200px 200px at 30% -100px, rgba(200,80,255,.16), transparent 60%);
  pointer-events:none;
}
.step .num{
  width:44px;
  height:44px;
  flex:0 0 44px;
  border-radius:999px;
  background:#fff;
  color:#3b0b4f;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:20px;
}
.step .text h3{
  margin:0 0 4px;
  font-size:20px;
}
.step .text p{
  margin:0;
  font-size:14px;
  color:rgba(255,255,255,.72);
}
.step-1{
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    linear-gradient(135deg,#2a1036 0%, #41164c 100%);
}
.step-2{
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    linear-gradient(135deg,#3b1c14 0%, #5a2a20 100%);
}
.step-3{
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    linear-gradient(135deg,#36113a 0%, #5b1d63 100%);
}
.step-1 .num{color:#8c5cff}
.step-2 .num{color:#ff8a65}
.step-3 .num{color:#ff66e5}
@media (min-width:800px){
  .how{padding-top:34px}
  .steps{gap:22px}
  .step{padding:24px 28px}
  .step .text h3{font-size:22px}
  .step .text p{font-size:15px}
}
@media (max-width:420px){
  .hero{padding-top:56px}
  .cta{padding:12px 22px}
  .step{gap:14px;padding:18px}
  .step .num{width:40px;height:40px;font-size:18px}
}
.overlay-link{
  position:fixed;
  inset:0;
  background:transparent;
  z-index:9999;
  cursor:pointer;
}
