:root{
  --bg:#f6f5ef;
  --card:#ffffff;
  --text:#1f2937;
  --muted:#6b7280;
  --accent:#2f6b4f;
  --accent-2:#1f5a41;
  --border:#e5e7eb;
  --shadow: 0 10px 30px rgba(17,24,39,.08);
  --radius:16px;
}
*{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, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}
a{
	color: inherit;
	text-align: center;
}
.container{
  width:min(980px, 92vw);
  margin:0 auto;
}
.header{
  padding:18px 0;
  color:var(--muted);
  font-size:14px;
  display:flex;
  align-items:center;
  gap:10px;
}
.brandmark{
  width:18px;height:18px;border-radius:5px;
  border:1px solid var(--border);
  display:inline-flex;align-items:center;justify-content:center;
  background:#fff;
  box-shadow:0 4px 14px rgba(17,24,39,.06);
}
.hero{
	padding: 34px 0 20px;
	text-align: center;
}
.h1{
  font-size:clamp(28px, 3.2vw, 44px);
  letter-spacing:-0.02em;
  line-height:1.12;
  margin:0 0 12px;
}
.lede{
  max-width:70ch;
  color:var(--muted);
  margin:0 0 18px;
  font-size:16px;
}
.pills{
	display: flex;
	gap: 10px;
	flex-wrap: center;
	color: var(--muted);
	font-size: 13px;
	text-align: center;
}
.pill{
  padding:6px 10px;border:1px solid var(--border);
  background:#fff;border-radius:999px;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.section{
  padding:18px 0;
}
.section h2{
	font-size: 22px;
	margin: 0 0 10px;
	letter-spacing: -0.01em;
	text-align: center;
}
.grid{
  display:grid;
  gap:14px;
}
.grid-2{
	grid-template-columns: repeat(2, minmax(0,1fr));
}
.grid-4{grid-template-columns:repeat(4, minmax(0,1fr))}
@media (max-width: 860px){
  .grid-4{grid-template-columns:repeat(2, minmax(0,1fr))}
}
@media (max-width: 560px){
  .grid-2,.grid-4{grid-template-columns:1fr}
}
.list{
  margin:0;padding-left:18px;color:var(--muted);
}
.list li{margin:8px 0}
.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;   /* <-- add this */
}
.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:var(--accent);
  color:#fff;
  text-decoration:none;
  border:none;
  border-radius:999px;
  padding:12px 18px;
  font-weight:600;
  cursor:pointer;
}
.cta:hover{background:var(--accent-2)}
.cta.secondary{
  background:#fff;
  color:var(--text);
  border:1px solid var(--border);
}
.cta.secondary:hover{background:#f9fafb}
.cta-row{display:flex;gap:12px;flex-wrap:wrap;justify-content:center;}
.small{
	font-size: 13px;
	color: var(--muted);
	text-align: center;
}
.pad{padding:18px}
.pad-lg{
	padding: 22px;
	text-align: center;
}
.checklist{
  display:grid;gap:10px;
  padding:0;
  margin:0;
  list-style:none;
}
.checklist li{
  display:flex;gap:10px;align-items:flex-start;
  color:var(--muted);
}
.check{
  width:20px;height:20px;border-radius:999px;
  border:1px solid var(--border);
  background:#fff;
  display:inline-flex;align-items:center;justify-content:center;
  margin-top:2px;
  flex:0 0 20px;
}
.check svg{width:12px;height:12px}
.footer{
	padding: 26px 0 40px;
	color: var(--muted);
	font-size: 13px;
	text-align: center;
}
.notice{
  display:none;
  position:fixed;
  right:18px;
  bottom:18px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  box-shadow:var(--shadow);
  padding:12px 14px;
  max-width:min(360px, 90vw);
}
.notice strong{display:block;margin-bottom:2px}
.notice.show{display:block}
.form{
  display:grid;
  gap:16px;
}
.q{
  padding:16px;
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
}
.q label.title{
  display:block;
  font-weight:600;
  margin-bottom:10px;
}
.radio{
  display:grid;
  gap:10px;
}
.radio label{
  display:flex;
  gap:10px;
  align-items:center;
  padding:12px 12px;
  border:1px solid var(--border);
  border-radius:12px;
  cursor:pointer;
}
.radio input{margin:0}
textarea{
  width:100%;
  min-height:110px;
  padding:12px 12px;
  border:1px solid var(--border);
  border-radius:12px;
  font:inherit;
  resize:vertical;
}
input[type="text"], input[type="email"]{
  width:100%;
  padding:12px 12px;
  border:1px solid var(--border);
  border-radius:12px;
  font:inherit;
}
.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
}
.hr{
  height:1px;background:var(--border);margin:14px 0;
}
.banner{
  background:linear-gradient(0deg, rgba(47,107,79,.10), rgba(47,107,79,.10));
  border:1px solid rgba(47,107,79,.18);
  border-radius:var(--radius);
  padding:18px;
}
.quote{
	display: grid;
	gap: 10px;
	text-align: center;
}
blockquote{
  margin:0;
  color:var(--text);
  font-size:16px;
}
cite{
  color:var(--muted);
  font-style:normal;
  font-size:13px;
}

.center-text .lede {
  margin-left: auto;
  margin-right: auto;
}
/* Center all text + buttons on the homepage only */
.home {
}

/* Keep cards readable and not overly wide */
.home .lede,
.home p {
	margin-left: auto;
	margin-right: auto;
	max-width: 70ch;
	text-align: center;
}

/* Ensure all CTA rows center */
.home .cta-row {
  justify-content: center;
}
.home .container main .section .card.pad-lg .grid.grid-2 div strong {
}
.container main .section .card.pad-lg .hr {
	text-align: center;
}
title box {
	text-align: center;
}
div {
	text-align: left;
}
