:root{
  --sage:#9aa58f;
  --sage-dark:#7f8c76;
  --ink:#111;
  --muted:#555;
  --bg:#f6f7f4;
  --card:#ffffff;
  --line:#ddd;
  --radius:14px;
  --max:1100px;
  --font: system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:var(--font);
  color:var(--ink);
  background:var(--bg);
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
}

.header{
  background:#fff;
  border-bottom:1px solid var(--line);
}

.header-inner{
  height:70px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand img{
  height:40px;
}

.brand span{
  font-size:13px;
  color:var(--muted);
}

.hero{
  padding:80px 0;
}

.hero-inner{
  max-width:720px;
}

.hero h1{
  font-size:48px;
  line-height:1.05;
  margin:0 0 16px;
}

.hero h1 span{
  color:var(--sage-dark);
}

.lead{
  font-size:18px;
  color:var(--muted);
  margin-bottom:24px;
}

.cta{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.note{
  font-size:13px;
  color:var(--muted);
}

.stats{
  list-style:none;
  padding:0;
  margin:32px 0 0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:12px;
}

.stats li{
  background:#fff;
  padding:12px;
  border:1px solid var(--line);
  border-radius:var(--radius);
}

.features{
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:60px 0;
}

.features h2{
  margin-bottom:24px;
}

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

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
}

.card h3{
  margin-top:0;
}

.waitlist{
  padding:60px 0;
}

.form{
  display:flex;
  gap:12px;
  max-width:420px;
}

.form input{
  flex:1;
  padding:12px;
  border-radius:var(--radius);
  border:1px solid var(--line);
}

.footer{
  border-top:1px solid var(--line);
  padding:24px 0;
  font-size:13px;
  color:var(--muted);
  display:flex;
  justify-content:space-between;
}

.btn{
  padding:10px 16px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
  font-weight:600;
}

.btn.primary{
  background:var(--sage);
  border-color:var(--sage-dark);
  color:#111;
}
