:root{
  --bg:#f6fbf8;
  --card:rgba(255,255,255,.82);
  --text:#0f1b14;
  --muted:rgba(15,27,20,.62);
  --line:rgba(15,27,20,.10);
  --shadow:0 18px 40px rgba(12,30,20,.10);
  --r:22px;
  --green:#16f07a;
  --green2:#00d66a;
  --chip:#f1f7f4;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  color:var(--text);
  background:
    radial-gradient(1000px 500px at 50% -20%, rgba(22,240,122,.25), transparent 60%),
    linear-gradient(#ecfbf2,#f6fbf8 20%,#f6fbf8 100%);
}

a{color:inherit;text-decoration:none}
.wrap{max-width:980px;margin:0 auto;padding:14px 14px 34px}
.small{font-size:12px;color:var(--muted)}
.muted{color:var(--muted)}

.topbar{
  display:flex;align-items:center;justify-content:space-between;
  gap:12px;padding:10px 0 14px;
}

.brand{
  display:flex;align-items:center;gap:10px;
  font-weight:800;letter-spacing:.2px;font-size:20px;
}
.logo{
  width:44px;height:44px;border-radius:14px;
  background:linear-gradient(180deg,var(--green),rgba(0,214,106,.85));
  display:grid;place-items:center;
  box-shadow:0 16px 30px rgba(0,214,106,.20);
}
.logo svg{width:22px;height:22px;color:#062113}

.iconbtn{
  width:46px;height:46px;border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.7);
  backdrop-filter:blur(8px);
  display:grid;place-items:center;
  cursor:pointer;
  box-shadow:0 10px 20px rgba(0,0,0,.05);
}
.iconbtn svg{width:20px;height:20px;color:rgba(15,27,20,.8)}

.hero,.page{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--r);
  box-shadow:var(--shadow);
  padding:26px 18px;
  overflow:hidden;
}

.center{
  display:flex;flex-direction:column;align-items:center;text-align:center;gap:12px;
}

h1{
  margin:0;
  font-size:clamp(34px,5vw,54px);
  line-height:1.02;
  letter-spacing:-.8px;
}
h2{
  margin:0 0 8px;
  font-size:30px;
  letter-spacing:-.4px;
}
h3{margin:0 0 8px}

.sub,page p{
  margin:0;
  font-size:14px;
  color:var(--muted);
  max-width:620px;
  line-height:1.6;
}
.page p{max-width:none}

.pills{
  display:flex;gap:10px;flex-wrap:wrap;justify-content:center;margin-top:6px;
}
.pill{
  padding:9px 12px;
  border-radius:999px;
  background:var(--chip);
  border:1px solid var(--line);
  color:rgba(15,27,20,.78);
  font-size:13px;
}

.ctaRow{
  display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-top:8px;
}

.btn{
  border:none;border-radius:999px;padding:14px 18px;
  font-weight:800;letter-spacing:.4px;cursor:pointer;
  min-width:220px;
  box-shadow:0 18px 36px rgba(0,214,106,.22);
  background:linear-gradient(180deg,var(--green),var(--green2));
  color:#062113;
}
.btn.secondary{
  background:rgba(255,255,255,.65);
  border:1px solid var(--line);
  color:rgba(15,27,20,.85);
  box-shadow:0 12px 26px rgba(0,0,0,.06);
  min-width:140px;
}

.progressWrap{width:min(520px,92%);margin:6px auto 0}
.progressBar{
  height:8px;border-radius:999px;background:rgba(15,27,20,.10);overflow:hidden;
}
.progressFill{
  height:100%;width:0%;
  background:linear-gradient(90deg,var(--green2),var(--green));
}

.kpi{
  display:flex;align-items:center;gap:8px;
  padding:10px 12px;border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.55);
  font-weight:700;font-size:13px;color:rgba(15,27,20,.78);
}

.social{
  display:flex;gap:12px;justify-content:center;margin-top:4px;
}
.soc{
  width:56px;height:56px;border-radius:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.65);
  display:grid;place-items:center;
  box-shadow:0 10px 20px rgba(0,0,0,.05);
}
.soc svg{width:22px;height:22px;color:rgba(15,27,20,.72)}

.miniStats{
  width:min(520px,92%);
  margin:18px auto 0;
  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.60);
  padding:14px;
  display:flex;justify-content:space-between;gap:12px;
}
.miniStats .labels{
  display:flex;flex-direction:column;gap:8px;
  color:rgba(15,27,20,.45);
  font-weight:800;letter-spacing:2px;font-size:12px;
}
.miniStats .nums{
  display:flex;flex-direction:column;gap:8px;
  text-align:right;font-weight:900;color:rgba(15,27,20,.78);font-size:14px;
}

.card{
  border:1px solid var(--line);
  background:rgba(255,255,255,.65);
  border-radius:18px;
  padding:14px;
  margin-top:12px;
}

.videoBox{
  margin-top:12px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  overflow:hidden;
}
.videoInner{
  aspect-ratio:16/9;
  display:grid;place-items:center;
  background:linear-gradient(180deg,#f7faf8,#eef6f1);
  color:rgba(15,27,20,.70);
  font-weight:800;
  text-align:center;
  padding:20px;
}

.thankyou{
  margin-top:12px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.60);
  display:none;
}

.adSlot{
  width:min(720px,96%);
  margin:16px auto 0;
  border-radius:18px;
  border:1px dashed rgba(15,27,20,.22);
  background:rgba(255,255,255,.55);
  padding:14px;
  text-align:center;
}
.adSlot .tag{
  font-weight:900;letter-spacing:1.4px;font-size:11px;
  color:rgba(15,27,20,.55);margin-bottom:8px;
}
.adSlot .hint{
  font-size:12px;color:rgba(15,27,20,.55);
}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0 10px;
  margin-top:10px;
}
.table th{
  text-align:left;font-size:12px;letter-spacing:2px;
  color:rgba(15,27,20,.45);padding:6px 10px;
}
.table td{
  padding:12px 10px;font-weight:800;background:rgba(255,255,255,.70);
  border-top:1px solid var(--line);border-bottom:1px solid var(--line);
}
.table td:first-child{
  border-left:1px solid var(--line);
  border-radius:16px 0 0 16px;
}
.table td:last-child{
  border-right:1px solid var(--line);
  border-radius:0 16px 16px 0;
}
.badge{
  display:inline-grid;place-items:center;
  width:34px;height:34px;border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.75);
  color:rgba(15,27,20,.70);
}
.sharebar{height:10px;border-radius:999px;background:rgba(15,27,20,.10);overflow:hidden}
.sharefill{height:100%;width:0%;background:linear-gradient(90deg,var(--green2),var(--green))}

.footer{
  margin-top:18px;padding-top:16px;border-top:1px solid var(--line);
  display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;
  color:rgba(15,27,20,.55);font-size:13px;
}
.footer nav{display:flex;gap:12px;flex-wrap:wrap}
.footer a{color:rgba(15,27,20,.65)}

.backdrop{
  position:fixed;inset:0;background:rgba(0,0,0,.35);display:none;
  align-items:flex-start;justify-content:center;padding:18px;z-index:9999;
}
.backdrop.open{display:flex}
.modal{
  width:min(560px,100%);
  background:rgba(255,255,255,.80);
  backdrop-filter:blur(10px);
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow);
  padding:16px;
}
.modalTop{
  display:flex;align-items:center;justify-content:space-between;padding:4px 4px 10px;
}
.modalTitle{font-weight:900;font-size:18px}
.modalClose{
  width:44px;height:44px;border-radius:16px;border:1px solid var(--line);
  background:rgba(255,255,255,.75);cursor:pointer;display:grid;place-items:center;
}
.modalClose svg{width:18px;height:18px;color:rgba(15,27,20,.75)}
.menuList{display:flex;flex-direction:column;gap:10px}
.menuItem{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px;border-radius:18px;border:1px solid var(--line);
  background:rgba(255,255,255,.70);font-weight:900;
}
.arrow{color:rgba(15,27,20,.50)}

.cookieBar{
  position:fixed;left:12px;right:12px;bottom:12px;display:none;z-index:99999;
}
.cookieBar.open{display:block}
.cookieInner{
  max-width:980px;margin:0 auto;background:rgba(255,255,255,.85);
  border:1px solid var(--line);border-radius:22px;box-shadow:var(--shadow);
  padding:14px;display:flex;align-items:center;justify-content:space-between;
  gap:14px;flex-wrap:wrap;
}
.cookieBtns{display:flex;gap:10px;flex-wrap:wrap}
.cookieBtns .btn{min-width:150px;padding:12px 14px;box-shadow:none}
.cookieBtns .btn.secondary{min-width:120px}