:root {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    sans-serif;
  color: #183b2d;
  background: #f7f8f3;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
}
header,
main,
footer {
  max-width: 1120px;
  margin: auto;
  padding: 26px;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dce4d8;
}
.brand {
  font-weight: 750;
  font-size: 23px;
  text-decoration: none;
  letter-spacing: -1px;
}
.mark {
  display: inline-grid;
  place-items: center;
  background: #193f2c;
  color: #d4e9bb;
  border-radius: 10px;
  width: 36px;
  height: 36px;
  margin-right: 8px;
}
nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
}
nav a {
  text-decoration: none;
}
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 65px;
  align-items: center;
  padding: 70px 0 80px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 700;
  color: #52674b;
}
.badge {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #d0ddc4;
  border-radius: 30px;
  font-size: 12px;
  margin-bottom: 25px;
}
h1 {
  font-size: clamp(38px, 5.2vw, 66px);
  line-height: 1.06;
  letter-spacing: -3px;
  margin: 0 0 25px;
  font-weight: 650;
}
h1 em {
  color: #70874f;
  font-style: normal;
}
p {
  line-height: 1.7;
  color: #566651;
}
.lead {
  font-size: 18px;
  max-width: 490px;
}
.button {
  display: inline-block;
  background: #1b432e;
  color: #fff;
  text-decoration: none;
  padding: 15px 22px;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 15px;
}
.note {
  font-size: 12px;
}
.preview {
  background: white;
  border: 1px solid #dce4d8;
  border-radius: 18px;
  box-shadow: 0 20px 60px #193a2112;
  overflow: hidden;
  transform: none;
}
.preview header {
  background: #193629;
  color: #fff;
  padding: 20px;
  font-size: 16px;
}
.preview .inside {
  padding: 23px;
}
.preview h3 {
  margin: 12px 0 5px;
}
.label {
  font-size: 11px;
  color: #64715c;
}
.score {
  background: #edf2df;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.score strong {
  font-size: 48px;
  letter-spacing: -3px;
}
.score small {
  font-size: 15px;
  letter-spacing: 0;
  color: #667b51;
}
.tag {
  font-size: 12px;
  color: #47672f;
}
.signal {
  padding: 13px 0;
  border-bottom: 1px solid #edf0e8;
  font-size: 13px;
}
.signal span {
  float: right;
  color: #617c49;
}
.draft {
  border-left: 3px solid #b0c790;
  padding-left: 15px;
  font-size: 13px;
  margin-top: 20px;
}
.section {
  padding: 45px 0;
  border-top: 1px solid #dce4d8;
}
h2 {
  font-size: 32px;
  letter-spacing: -1px;
  font-weight: 650;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.step b {
  display: block;
  color: #78925d;
  font-size: 13px;
  margin-bottom: 18px;
}
.step h3 {
  font-size: 18px;
}
.callout {
  background: #eaf0e1;
  border-radius: 16px;
  padding: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.callout h2 {
  margin: 0;
}
footer {
  border-top: 1px solid #dce4d8;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #61715a;
  gap: 20px;
}
.document {
  max-width: 780px;
  min-height: 70vh;
  padding-top: 55px;
  padding-bottom: 70px;
}
.document h1 {
  font-size: 42px;
  letter-spacing: -1px;
}
.document h2 {
  font-size: 22px;
  margin-top: 35px;
}
a:focus-visible {
  outline: 3px solid #90ab66;
  outline-offset: 5px;
}
@media (max-width: 760px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 40px 0;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  nav {
    gap: 12px;
  }
  .callout,
  footer {
    display: block;
  }
  .preview {
    transform: none;
  }
  .callout h2 {
    font-size: 26px;
  }
  header,
  main,
  footer {
    padding: 20px;
  }
  h1 {
    letter-spacing: -1.8px;
  }
}
