:root{
  --bg:#fbf7f2;
  --surface:#ffffff;
  --text:#1f2a24;
  --muted:#52615a;
  --brand:#476e62;
  --brand2:#a8682a;
  --accent:#e4c00e;
  --line:rgba(31,42,36,.12);
  --radius:20px;
  --max:1120px;
}

*{box-sizing:border-box}

html,body{height:100%}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 800px at 70% 10%, rgba(71,110,98,.08), transparent 60%),
    radial-gradient(900px 700px at 20% 0%, rgba(168,104,42,.06), transparent 55%),
    var(--bg);
  line-height:1.6;
}

a{
  color:var(--brand);
  text-underline-offset:3px;
}

a:hover{
  opacity:.94;
}

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

.narrow{
  max-width:920px;
}

header{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter:saturate(140%) blur(10px);
  background:rgba(251,247,242,.9);
  border-bottom:1px solid rgba(31,42,36,.08);
  height:96px;
  display:flex;
  align-items:center;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  padding:0px 0;
}

.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
  color:inherit;
}

.brand img{
  height:300px;
  width:auto;
  display:block;
}

.hero{
  padding:16px 0 20px;
}

.heroTextWrap{
  max-width:920px;
  margin:0;
}

h1{
  margin:0 0 16px;
  font-size:64px;
  line-height:1.02;
  letter-spacing:-.035em;
}

.lede{
  margin:0 0 14px;
  font-size:18px;
  color:var(--muted);
  max-width:760px;
}

.trustRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

.pill{
  border:1px solid rgba(31,42,36,.14);
  border-radius:999px;
  padding:7px 12px;
  font-size:13px;
  line-height:1.2;
  background:rgba(255,255,255,.6);
  color:var(--muted);
}

.formSection{
  padding:8px 0 10px;
}

.formContainer{
  width:100%;
  max-width:840px;
  margin:0;
}

.embedWrap{
  width:100%;
  margin:0;
  padding:0;
}

.embedWrap--plain{
  width:100%;
  max-width:840px;
  margin:0;
  padding:0;
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
  overflow:visible;
}

.embedWrap iframe,
.embedWrap--plain iframe{
  width:100%;
  display:block;
  border:0;
  border-radius:0;
  background:transparent;
  min-height:413px;
  height:auto;
}

.section{
  padding:44px 0;
}

.sectionTitle{
  margin:0 0 14px;
  font-size:28px;
  line-height:1.15;
  letter-spacing:-.02em;
}

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

.list{
  margin:12px 0 0;
  padding-left:20px;
  color:var(--muted);
}

.list li{
  margin:8px 0;
}

.sectionTextEnd{
  margin-top:14px;
}

.grid3{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.box{
  padding:18px;
  border-radius:16px;
  border:1px solid rgba(31,42,36,.10);
  background:rgba(255,255,255,.72);
}

.box h3{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.25;
}

.box p{
  margin:0;
  color:var(--muted);
}

.how{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}

.step{
  padding:16px;
  border-radius:16px;
  border:1px solid rgba(31,42,36,.10);
  background:rgba(255,255,255,.72);
}

.stepNum{
  font-weight:800;
  color:var(--brand);
}

.stepTitle{
  margin-top:8px;
  font-weight:700;
}

.stepBody{
  margin-top:8px;
  color:var(--muted);
}

.afterGridNote{
  margin-top:14px;
}

.cta{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:24px;
  padding:26px;
}

.ctaTitle{
  margin:0 0 10px;
}

.ctaText{
  margin:0;
}

.ctaRight{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
}

.ctaNote{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--muted);
}

.ctaButton{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:12px 18px;
  border:none;
  border-radius:8px;
  background:#e4c00e;
  color:#1f2a24;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 8px 20px rgba(228,192,14,.2);
}

.ctaButton:hover{
  transform:translateY(-1px);
}

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

.footer{
  padding:30px 0 42px;
  border-top:1px solid rgba(31,42,36,.10);
  background:rgba(255,255,255,.4);
}

.footerGrid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:16px;
  align-items:start;
}

.footerMark{
  height:40px;
  width:auto;
  display:block;
}

.footerText{
  margin:12px 0 0;
}

.footerMeta{
  display:flex;
  justify-content:flex-end;
  align-items:flex-start;
}

@media (max-width: 1080px){
  h1{
    font-size:56px;
  }
}

@media (max-width: 900px){
  h1{
    font-size:48px;
  }

  .grid3{
    grid-template-columns:1fr;
  }

  .how{
    grid-template-columns:1fr 1fr;
  }

  .cta{
    grid-template-columns:1fr;
  }

  .footerGrid{
    grid-template-columns:1fr;
  }

  .footerMeta{
    justify-content:flex-start;
  }

  .formContainer{
    max-width:100%;
  }
}

@media (max-width: 640px){
  .container{
    padding:0 18px;
  }

  .brand img{
    height:120px;
    margin-top:-10px;
    margin-bottom:-10px;
  }

  .nav{
    padding:14px 0 12px;
  }

  .hero{
    padding:20px 0 16px;
  }

  h1{
    font-size:42px;
    line-height:1.04;
  }

  .lede{
    font-size:17px;
  }

  .sectionTitle{
    font-size:24px;
  }

  .how{
    grid-template-columns:1fr;
  }

.embedWrap iframe,
.embedWrap--plain iframe{
  min-height:413px;
}
}

@media (prefers-reduced-motion: reduce){
  *{
    scroll-behavior:auto !important;
    transition:none !important;
    animation:none !important;
  }
}
