*{
  box-sizing:border-box;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
}

body{
  margin:0;
  background:#0e0f13;
  color:#eaeaf0;
  line-height:1.6;
}

a{text-decoration:none;color:inherit}

/* HERO */
.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:radial-gradient(circle at top,#1a1c2b,#0e0f13);
  text-align:center;
  padding:40px;
}

.hero h1{
  font-size:3rem;
}
.hero h1 span{color:#6cf2c2}

.hero p{
  max-width:600px;
  margin:20px auto;
  color:#cfd3ff;
}

.badge{
  display:inline-block;
  background:#6cf2c220;
  color:#6cf2c2;
  padding:6px 14px;
  border-radius:20px;
  margin-bottom:20px;
  font-weight:600;
}

.hero-actions{
  display:flex;
  gap:15px;
  justify-content:center;
  margin-top:30px;
}

/* BUTTONS */
.btn{
  padding:12px 22px;
  border-radius:8px;
  font-weight:600;
}

.primary{
  background:#6cf2c2;
  color:#000;
}

.ghost{
  border:1px solid #6cf2c2;
  color:#6cf2c2;
}

.large{
  font-size:1.1rem;
  padding:16px 30px;
}

/* SECTIONS */
.section{
  padding:80px 20px;
  max-width:1100px;
  margin:auto;
  text-align:center;
}

.section-sub{
  color:#b6b9ff;
  margin-bottom:50px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}

.card{
  background:#171a29;
  padding:25px;
  border-radius:14px;
}

.card span{
  font-size:2rem;
}

/* IMPACT */
.impact{
  background:#6cf2c2;
  color:#000;
  padding:80px 20px;
  text-align:center;
}

.impact .highlight{
  font-weight:700;
  margin-top:15px;
}

/* TIERS */
.dark{
  background:#111326;
}

.tiers{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.tier{
  background:#1b1e33;
  padding:30px;
  border-radius:18px;
}

.tier.featured{
  border:2px solid #6cf2c2;
  transform:scale(1.03);
}

.price{
  font-size:1.4rem;
  margin:10px 0;
  color:#6cf2c2;
}

ul{
  list-style:none;
  padding:0;
}
li{
  margin:10px 0;
}

/* TRANSPARENCY */
.transparency{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:15px;
}

/* CTA */
.cta{
  padding:90px 20px;
  text-align:center;
}

/* FOOTER */
footer{
  padding:30px;
  text-align:center;
  color:#aaa;
}
