:root{
  --bg:#070a08;
  --card:#0f1512;
  --card2:#0b120e;
  --green:#22c55e;
  --green2:#4ade80;
  --text:#e5f7ec;
  --muted:rgba(229,247,236,.75);
  --border:rgba(34,197,94,.35);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
}

.bg{
  position:fixed; inset:0;
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(34,197,94,.18), transparent 60%),
    radial-gradient(800px 480px at 80% 30%, rgba(74,222,128,.12), transparent 60%),
    radial-gradient(700px 420px at 50% 90%, rgba(34,197,94,.08), transparent 60%);
  pointer-events:none;
}

.wrap{max-width:980px; margin:36px auto; padding:0 18px}

.top{display:flex; flex-direction:column; gap:14px; margin-bottom:18px}

.brand{display:flex; align-items:center; gap:14px}
.logo{
  width:54px; height:54px; border-radius:14px;
  border:1px solid var(--border);
  background:rgba(34,197,94,.08);
  box-shadow:0 0 18px rgba(34,197,94,.16);
  object-fit:cover;
}
.logo-fallback{
  width:54px;height:54px;border-radius:14px;
  border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  font-size:22px; background:rgba(34,197,94,.08);
  box-shadow:0 0 18px rgba(34,197,94,.16);
}
.brand-text h1{margin:0; color:var(--green2); font-size:26px; letter-spacing:.2px}
.tagline{margin:4px 0 0; color:var(--muted); font-size:13px}

.pill-row{display:flex; flex-wrap:wrap; gap:8px}
.pill{
  font-size:12px; font-weight:800;
  padding:7px 10px; border-radius:999px;
  border:1px solid var(--border);
  background:rgba(34,197,94,.10);
}
.pill-soft{opacity:.85}

.card{
  background:linear-gradient(180deg, rgba(34,197,94,.09), rgba(15,21,18,1));
  border:1px solid rgba(74,222,128,.55);
  border-radius:18px;
  box-shadow:0 0 28px rgba(34,197,94,.14);
  padding:18px;
}

.hero{display:grid; grid-template-columns: 1.35fr .85fr; gap:16px}
@media (max-width: 860px){
  .hero{grid-template-columns:1fr}
}

.hero-left h2{margin:0; font-size:26px}
.sub{margin:10px 0 0; color:var(--muted); line-height:1.5}

.points{margin-top:16px; display:grid; gap:10px}
.point{display:flex; gap:10px; align-items:flex-start; padding:10px 12px; border-radius:14px;
  border:1px solid rgba(34,197,94,.20); background:rgba(34,197,94,.05)}
.dot{width:10px;height:10px;border-radius:999px;background:var(--green); margin-top:4px; box-shadow:0 0 10px rgba(34,197,94,.45)}
.point-title{font-weight:900; color:#bffad2}
.point-sub{font-size:12px; color:var(--muted); margin-top:3px; line-height:1.35}

.cta-row{display:flex; gap:10px; margin-top:16px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  text-decoration:none;
  border-radius:14px;
  padding:12px 14px;
  font-weight:900;
  border:1px solid var(--border);
  cursor:pointer;
  user-select:none;
}
.btn.primary{background:var(--green); color:#052e16; border-color:rgba(34,197,94,.7)}
.btn.primary:hover{background:var(--green2)}
.btn.ghost{background:transparent; color:var(--text)}
.btn.ghost:hover{background:rgba(34,197,94,.10)}
.btn.small{padding:10px 12px; border-radius:12px}

.mini{display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:14px}
.mini-left,.mini-right{
  border:1px solid rgba(34,197,94,.22);
  background:rgba(34,197,94,.05);
  border-radius:14px;
  padding:10px;
}
.mini-label{font-size:11px; color:var(--muted); font-weight:800}
.mini-value{margin-top:4px; font-size:14px; font-weight:900}
.glow{color:var(--green2); text-shadow:0 0 12px rgba(74,222,128,.3)}

.card-inner{
  border:1px solid rgba(34,197,94,.22);
  background:rgba(7,10,8,.35);
  border-radius:16px;
  padding:12px;
}

.stats{display:grid; gap:10px}
.stat{display:flex; justify-content:space-between; gap:10px}
.stat-label{color:var(--muted); font-size:12px; font-weight:800}
.stat-value{font-weight:900}

.banner-title{font-weight:900; color:#bffad2}
.banner-sub{margin-top:6px; color:var(--muted); font-size:12px; line-height:1.4}

.notify{margin-top:16px}
.notify-title{font-weight:900}
.notify-sub{font-size:12px; color:var(--muted); margin-top:4px}
#notifyForm{display:flex; gap:10px; margin-top:10px; flex-wrap:wrap}
#email{
  flex:1;
  min-width:220px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(34,197,94,.28);
  background:var(--card2);
  color:var(--text);
  outline:none;
}
#email:focus{border-color:rgba(74,222,128,.65); box-shadow:0 0 0 3px rgba(34,197,94,.12)}
.note{margin:10px 0 0; font-size:12px; color:var(--muted)}

.hero-right{display:grid; gap:12px}
.foot{opacity:.9}
.small-muted{font-size:12px; color:var(--muted)}