:root{
  --ink:#17312b;
  --text:#21322f;
  --muted:#5f6d69;
  --bg:#f7f5f1;
  --card:#ffffff;
  --line:#e6e0d7;
  --accent:#0f8a65;
  --accent2:#e9f6f1;
  --warm:#fff3e7;
  --shadow:0 12px 35px rgba(0,0,0,.06);
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.65;
}

.wrap{max-width:860px;margin:0 auto;padding:0 20px}

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

.topbar .wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 20px;
}

.brand{
  font-weight:800;
  color:var(--ink);
  text-decoration:none;
  font-size:1.05rem;
}

.brand span{color:var(--accent)}

.toplink{
  color:var(--muted);
  text-decoration:none;
  font-size:.95rem;
}

.hero{padding:56px 0 34px}

.eyebrow{
  display:inline-block;
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--accent);
  font-weight:700;
  margin-bottom:14px;
}

h1,h2,h3{
  color:var(--ink);
  line-height:1.15;
  margin:0 0 14px;
}

h1{font-size:clamp(2rem,5vw,3.35rem);max-width:11ch}
h2{font-size:clamp(1.45rem,3vw,2rem);margin-top:6px}

p{margin:0 0 16px;font-size:1.04rem}

.lead{
  font-size:1.14rem;
  color:var(--muted);
  max-width:58ch;
}

.notice{
  background:var(--warm);
  border:1px solid #f0dcc7;
  border-radius:14px;
  padding:14px 16px;
  font-size:.95rem;
  color:#5b4a39;
  margin-top:20px;
}

.stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:24px;
}

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

.stat-label{
  display:block;
  font-size:.8rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--accent);
  font-weight:700;
  margin-bottom:10px;
}

.stat strong{
  display:block;
  font-size:1.5rem;
  color:var(--ink);
  margin-bottom:6px;
}

.stat span{
  color:var(--muted);
  font-size:.96rem;
  line-height:1.5;
}

section{padding:28px 0}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:18px;
  padding:24px;
  box-shadow:var(--shadow);
}

.story p:last-child{margin-bottom:0}

.quote{
  background:var(--accent2);
  border-left:4px solid var(--accent);
  padding:16px 18px;
  border-radius:10px;
  margin:18px 0;
}

.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.screenshot{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px;
  box-shadow:var(--shadow);
}

.screenshot img{
  width:100%;
  height:auto;
  display:block;
  border-radius:12px;
}

.caption{
  font-size:.92rem;
  color:var(--muted);
  margin-top:10px;
}

ol,ul{
  margin:12px 0 0 22px;
  padding:0;
}

li{
  margin:10px 0;
  font-size:1rem;
}

.math{
  display:grid;
  gap:10px;
  margin-top:12px;
}

.mathrow{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:10px 0;
  border-bottom:1px dashed var(--line);
}

.mathrow:last-child{border-bottom:0}
.mathrow strong:last-child{white-space:nowrap}

.soft{color:var(--muted)}

.checklist{
  margin-top:16px;
  background:#fbfcfb;
  border:1px solid var(--line);
  border-radius:16px;
  padding:18px 18px 8px;
}

.checklist h3{
  margin-bottom:8px;
  font-size:1.02rem;
}

.cta{
  background:linear-gradient(180deg,#17312b 0%, #102822 100%);
  color:#f4f7f6;
  border-radius:22px;
  padding:28px;
  box-shadow:var(--shadow);
}

.cta h2,.cta p{color:#f4f7f6}
.cta p{opacity:.88}

.btn{
  display:inline-block;
  margin-top:8px;
  background:#18a374;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  padding:14px 22px;
  border-radius:999px;
}

.small{
  font-size:.9rem;
  color:var(--muted);
}

.faq .item{
  padding:18px 0;
  border-bottom:1px solid var(--line);
}

.faq .item:last-child{border-bottom:0}

.page-intro{
  max-width:60ch;
  margin-bottom:18px;
}

.link-list{
  list-style:none;
  margin:0;
  padding:0;
}

.link-list li{margin:0 0 12px}

.link-list a{
  color:var(--ink);
  text-decoration:none;
  font-weight:700;
}

footer{
  padding:32px 0 50px;
  color:var(--muted);
  font-size:.92rem;
}

.links a{
  color:var(--muted);
  text-decoration:none;
  margin-right:14px;
}

.cookie-banner{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  background:var(--ink);
  color:#fff;
  padding:12px 16px;
  text-align:center;
  font-size:14px;
}

.cookie-banner a{
  color:#fff;
}

.cookie-banner button{
  margin-left:10px;
  padding:5px 10px;
}

@media (max-width:760px){
  .stats,.grid-2{grid-template-columns:1fr}
  .topbar .wrap{gap:12px}
  h1{max-width:none}
}
