:root{
  --forest:#18281c; --forest2:#1f3326; --sage:#84b894; --cream:#f5f5f2;
  --muted:#aebfb1; --orange:#c8794a; --border:#2c4233;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:var(--forest); color:var(--cream);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  line-height:1.6; -webkit-font-smoothing:antialiased;
}
a{color:var(--sage);text-decoration:none}
a:hover{text-decoration:underline}
.wrap{max-width:680px;margin:0 auto;padding:0 24px}
header{padding:28px 0;display:flex;align-items:center;justify-content:space-between}
.brand{display:flex;align-items:center;gap:12px;font-weight:700;font-size:20px;color:var(--cream)}
.brand img{width:36px;height:36px;border-radius:9px}
nav a{margin-left:20px;font-size:15px;color:var(--muted)}
.hero{text-align:center;padding:64px 0 40px}
.hero img.mark{width:96px;height:96px;border-radius:22px;margin-bottom:28px}
.hero h1{font-size:42px;line-height:1.15;letter-spacing:-0.5px;margin-bottom:18px}
.hero p.sub{font-size:19px;color:var(--muted);max-width:540px;margin:0 auto 32px}
.form{display:flex;gap:10px;max-width:440px;margin:0 auto;flex-wrap:wrap;justify-content:center}
.form input{
  flex:1;min-width:220px;padding:15px 18px;border-radius:12px;border:1px solid var(--border);
  background:var(--forest2);color:var(--cream);font-size:16px;
}
.form input::placeholder{color:#7c8c80}
.form button{
  padding:15px 26px;border-radius:12px;border:none;background:var(--sage);color:var(--forest);
  font-weight:700;font-size:16px;cursor:pointer;
}
.form button:hover{filter:brightness(1.05)}
.note{font-size:13px;color:#7c8c80;margin-top:14px;text-align:center}
.msg{margin-top:16px;font-weight:600;min-height:22px;text-align:center}
.features{display:grid;grid-template-columns:1fr 1fr;gap:18px;padding:24px 0 56px}
.feature{background:var(--forest2);border:1px solid var(--border);border-radius:16px;padding:20px}
.feature h3{font-size:17px;margin-bottom:6px}
.feature p{font-size:15px;color:var(--muted)}
footer{border-top:1px solid var(--border);padding:28px 0;color:#7c8c80;font-size:14px;text-align:center}
footer a{margin:0 10px}
/* legal pages */
.legal{padding:40px 0 64px}
.legal h1{font-size:32px;margin-bottom:8px}
.legal .eff{color:#7c8c80;font-size:14px;margin-bottom:28px}
.legal h2{font-size:20px;margin:28px 0 10px;color:var(--sage)}
.legal p,.legal li{color:#d4ded6;font-size:16px;margin-bottom:10px}
.legal ul{padding-left:22px;margin-bottom:10px}
@media(max-width:560px){.hero h1{font-size:34px}.features{grid-template-columns:1fr}}
