*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  background:#000;
  color:#e6ffe6;
  line-height:1.6;
  min-height:100vh;
  overflow-x:hidden;
  background:radial-gradient(ellipse at top,#021a0d 0%,#000 60%) fixed;
}
img{max-width:100%;display:block}

.bg-glow{position:fixed;inset:0;z-index:-1;overflow:hidden;pointer-events:none}
.blob{position:absolute;border-radius:50%;filter:blur(100px);opacity:.35;animation:float 14s ease-in-out infinite}
.blob-1{width:400px;height:400px;background:#00ff66;top:-100px;left:-100px}
.blob-2{width:500px;height:500px;background:#00cc55;bottom:-150px;right:-150px;animation-delay:-5s}
.blob-3{width:300px;height:300px;background:#00ff88;top:40%;left:50%;animation-delay:-10s}
@keyframes float{
  0%,100%{transform:translate(0,0) scale(1)}
  50%{transform:translate(40px,-30px) scale(1.1)}
}

.hero{
  text-align:center;
  padding:60px 20px 40px;
  max-width:900px;
  margin:0 auto;
}
.logo{
  width:140px;height:140px;margin:0 auto 24px;
  border-radius:50%;
  box-shadow:0 0 40px rgba(0,255,102,.5),0 0 80px rgba(0,255,102,.3);
  animation:pulse 3s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{box-shadow:0 0 40px rgba(0,255,102,.5),0 0 80px rgba(0,255,102,.3)}
  50%{box-shadow:0 0 60px rgba(0,255,102,.8),0 0 120px rgba(0,255,102,.4)}
}
h1{
  font-size:clamp(2rem,6vw,3.5rem);
  font-weight:800;
  margin-bottom:16px;
  letter-spacing:-.02em;
}
.neon{
  color:#00ff66;
  text-shadow:0 0 20px rgba(0,255,102,.6),0 0 40px rgba(0,255,102,.3);
}
.tagline{font-size:1.1rem;color:#a8e6b8;margin-bottom:8px}
.helper{font-size:.95rem;color:#7fc99a;margin-bottom:28px;max-width:600px;margin-left:auto;margin-right:auto}

.cta-row{display:flex;flex-wrap:wrap;gap:16px;justify-content:center;margin-bottom:20px}
.btn{
  display:inline-block;
  padding:14px 32px;
  border-radius:50px;
  font-weight:700;
  font-size:1rem;
  text-decoration:none;
  cursor:pointer;
  border:none;
  transition:all .3s ease;
  font-family:inherit;
}
.btn-neon{
  background:linear-gradient(135deg,#00ff66,#00cc55);
  color:#001a0a;
  box-shadow:0 0 20px rgba(0,255,102,.5),0 4px 15px rgba(0,255,102,.3);
}
.btn-neon:hover{
  transform:translateY(-2px) scale(1.05);
  box-shadow:0 0 30px rgba(0,255,102,.8),0 6px 20px rgba(0,255,102,.5);
}
.btn-outline{
  background:transparent;
  color:#00ff66;
  border:2px solid #00ff66;
  box-shadow:0 0 15px rgba(0,255,102,.2);
}
.btn-outline:hover{
  background:rgba(0,255,102,.1);
  box-shadow:0 0 25px rgba(0,255,102,.5);
  transform:translateY(-2px);
}

main{max-width:1100px;margin:0 auto;padding:40px 20px}

.glass{
  background:rgba(0,40,20,.3);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border:1px solid rgba(0,255,102,.2);
  border-radius:20px;
  padding:32px;
  margin-bottom:32px;
  box-shadow:0 8px 32px rgba(0,0,0,.4);
}
.glass h2{
  color:#00ff66;
  font-size:1.6rem;
  margin-bottom:14px;
  text-shadow:0 0 15px rgba(0,255,102,.4);
}
.glass p{color:#c8e6d0;margin-bottom:12px}
.glass .btn{margin-top:12px}

.features{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:24px;
  margin-bottom:32px;
}
.card{
  background:rgba(0,40,20,.4);
  backdrop-filter:blur(12px);
  border:1px solid rgba(0,255,102,.25);
  border-radius:20px;
  padding:28px;
  text-align:center;
  transition:all .3s ease;
}
.card:hover{
  transform:translateY(-6px);
  border-color:#00ff66;
  box-shadow:0 10px 40px rgba(0,255,102,.3);
}
.card .icon{font-size:2.5rem;margin-bottom:14px}
.card h3{color:#00ff66;font-size:1.2rem;margin-bottom:10px}
.card p{color:#a8c9b3;font-size:.95rem}

footer{
  text-align:center;
  padding:40px 20px;
  border-top:1px solid rgba(0,255,102,.15);
  margin-top:40px;
}
footer p{margin-bottom:8px;color:#a8c9b3}
.muted{color:#6fa884;font-size:.9rem;margin-bottom:20px!important}

.reveal{opacity:0;transform:translateY(30px);transition:opacity .8s ease,transform .8s ease}
.reveal.visible{opacity:1;transform:translateY(0)}

@media (max-width:600px){
  .hero{padding:40px 16px 30px}
  .logo{width:110px;height:110px}
  .glass{padding:22px}
  .btn{padding:12px 26px;font-size:.95rem}
}
