:root{
  --bg: #F6F4EF;          /* warm off-white */
  --surface: #FFFFFF;     /* card background */
  --text: #1F2328;        /* charcoal */
  --muted: #5B6470;       /* muted text */
  --border: #E7E2D7;      /* warm border */
  --accent: #2F6F5E;      /* muted green */
  --accent-2: #244F45;    /* deeper green */
  --shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1120px;
}

*{ 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: radial-gradient(1200px 600px at 15% -10%, rgba(47,111,94,.10), transparent 55%),
              radial-gradient(900px 500px at 85% 0%, rgba(47,111,94,.08), transparent 60%),
              var(--bg);
  line-height:1.55;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; text-underline-offset:4px; }

.container{ width:min(var(--max), calc(100% - 40px)); margin:0 auto; }

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:20px; top:20px; width:auto; height:auto; padding:10px 12px;
  background:var(--surface); border:1px solid var(--border); border-radius:10px;
  box-shadow: var(--shadow);
  z-index:9999;
}

header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(246,244,239,.70);
  border-bottom:1px solid rgba(231,226,215,.7);
}

.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:18px;
}

.brand{
  display:flex; align-items:center; gap:12px;
  font-weight:800;
  letter-spacing:.6px;
}
.brand-mark{
  width:38px; height:38px; border-radius:12px;
  border:1px solid rgba(47,111,94,.25);
  background:
    radial-gradient(16px 16px at 30% 30%, rgba(47,111,94,.25), transparent 60%),
    radial-gradient(18px 18px at 70% 70%, rgba(47,111,94,.18), transparent 60%),
    #fff;
  box-shadow: 0 10px 24px rgba(47,111,94,.12);
}
.brand small{
  display:block;
  font-weight:600;
  color:var(--muted);
  letter-spacing:0;
  margin-top:1px;
}

.nav-links{
  display:flex; align-items:center; gap:16px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.6);
}
.pill:hover{ background:#fff; text-decoration:none; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.75);
  font-weight:700;
  box-shadow: 0 10px 18px rgba(31,35,40,.06);
}
.btn:hover{ background:#fff; text-decoration:none; }
.btn-primary{
  background: var(--accent);
  color:#fff;
  border:1px solid rgba(47,111,94,.35);
}
.btn-primary:hover{
  background: var(--accent-2);
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(47,111,94,.22);
  background: rgba(47,111,94,.10);
  color: var(--accent-2);
  font-weight:700;
  font-size:12px;
}

main{ padding:34px 0 60px; }

.hero{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}
@media (max-width: 920px){
  .hero{ grid-template-columns:1fr; }
}

.card{
  background: rgba(255,255,255,.82);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-left{
  padding:30px 28px;
}
.kicker{
  display:flex; align-items:center; gap:10px;
  margin-bottom:12px;
}
h1{
  margin:0 0 12px;
  font-size: clamp(32px, 4vw, 46px);
  line-height:1.1;
  letter-spacing:-.6px;
}
.subhead{
  margin:0 0 18px;
  color:var(--muted);
  font-size: 16.5px;
  max-width: 62ch;
}
.hero-actions{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top:16px;
}
.hero-meta{
  margin-top:16px;
  color: var(--muted);
  font-size: 13.5px;
}
.hero-right{
  padding:22px;
  display:grid;
  gap:12px;
}
.panel{
  padding:18px;
  border-radius: var(--radius);
  border:1px dashed rgba(47,111,94,.25);
  background: rgba(255,255,255,.55);
}
.panel h3{
  margin:0 0 6px;
  font-size: 15px;
}
.panel p{
  margin:0;
  color:var(--muted);
  font-size: 13.5px;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 920px){
  .grid-3{ grid-template-columns: 1fr; }
}

.section{
  margin-top:18px;
  padding:22px;
}
.section h2{
  margin:0 0 10px;
  font-size: 22px;
  letter-spacing:-.2px;
}
.section p{ color:var(--muted); margin:0 0 14px; }

.feature{
  padding:18px;
}
.feature h3{ margin:0 0 6px; font-size:16px; }
.feature p{ margin:0; color:var(--muted); font-size:14px; }

.split{
  display:grid; grid-template-columns: 1fr 1fr;
  gap:14px;
}
@media (max-width: 920px){ .split{ grid-template-columns:1fr; } }

.list{
  margin:0; padding-left: 18px; color:var(--muted);
}
.list li{ margin: 8px 0; }

hr.sep{
  border:0; border-top:1px solid rgba(231,226,215,.9);
  margin:18px 0;
}

.note{
  background: rgba(47,111,94,.07);
  border:1px solid rgba(47,111,94,.18);
  border-radius: var(--radius-sm);
  padding:14px 14px;
  color: var(--accent-2);
  font-weight:650;
  font-size: 13.5px;
}

.form{
  display:grid; gap:12px;
}
.field{
  display:grid; gap:6px;
}
label{
  font-weight:700; font-size: 13px;
}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius: 12px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.9);
  font: inherit;
}
textarea{ min-height: 120px; resize: vertical; }

.footer{
  border-top:1px solid rgba(231,226,215,.9);
  padding:26px 0;
  color: var(--muted);
  font-size: 13.5px;
}
.footer-row{
  display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
}
.footer a{ color: var(--muted); }
.footer a:hover{ color: var(--text); }

.small{
  font-size: 13.5px;
  color: var(--muted);
}