:root {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  color: #16332f;
  background: #fbfcfa;
  font-synthesis: none;
  --green: #124b43;
  --ink: #16332f;
  --muted: #566963;
  --line: #dbe5df;
  --light: #edf3ed;
  --mint: #d7eece;
}
* {
  box-sizing: border-box;
}
html {
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  line-height: 1.6;
}
a {
  color: var(--green);
  text-underline-offset: 4px;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex='-1']:focus-visible {
  outline: 3px solid #287eaa;
  outline-offset: 4px;
}
button,
input,
select,
textarea {
  max-width: 100%;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1184px, calc(100% - 64px));
  margin-inline: auto;
}
.skip {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 30;
  padding: 12px;
  background: #fff;
}
.skip:focus {
  top: 12px;
}
.site-header {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 100px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.brand img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.brand > span {
  font-size: 28px;
  line-height: 1.05;
  font-weight: 750;
  letter-spacing: -1.1px;
}
.brand small {
  display: block;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  font-weight: 500;
  margin-top: 8px;
}
.header-inner nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-inner nav a {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.nav-cta {
  background: var(--green);
  color: white;
  padding: 13px 18px;
  border-radius: 6px;
}
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: start;
  gap: 70px;
  padding-block: 72px 80px;
}
.hero-copy {
  padding-top: 25px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 750;
  line-height: 1.6;
  color: #45665b;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.signal-dot {
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background: #538458;
  flex-shrink: 0;
}
h1,
h2,
h3,
h4 {
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 650;
  margin-top: 0;
  text-wrap: balance;
}
h1 {
  font-size: clamp(38px, 4.5vw, 62px);
  margin-bottom: 26px;
}
h1 em {
  font-style: normal;
  color: #317363;
}
h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  margin-bottom: 20px;
}
h3 {
  font-size: 24px;
  margin-bottom: 14px;
}
h4 {
  font-size: 19px;
  margin-bottom: 12px;
}
p {
  margin: 0 0 18px;
}
.intro {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 650px;
}
.hero-proof {
  border-top: 1px solid var(--line);
  margin-block: 30px 26px;
  padding-top: 20px;
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: #46665b;
}
.hero-proof span::before {
  content: '✓';
  margin-right: 10px;
  color: #307058;
}
.quiet-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  margin-top: 4px;
}
.checker {
  background: white;
  border: 1px solid #c5d7cb;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 14px 44px #12352b09;
  scroll-margin-top: 24px;
  min-width: 0;
}
.checker-heading h2 {
  font-size: 30px;
  margin: 12px 0;
}
.checker-heading > p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.step-tag {
  font-size: 10px;
  letter-spacing: 0.11em;
  color: #4e7461;
  font-weight: 800;
}
.checker label,
.budget-card label,
.form-card label {
  display: block;
  font-size: 13px;
  font-weight: 650;
  margin: 18px 0 7px;
}
.checker label:first-child {
  margin-top: 0;
}
input,
select,
textarea {
  background: #fff;
  border: 1px solid #a7bcb0;
  border-radius: 5px;
  color: var(--ink);
  padding: 12px;
  width: 100%;
  min-height: 48px;
  min-width: 0;
}
input::placeholder,
textarea::placeholder {
  color: #65786d;
  opacity: 1;
}
input[aria-invalid='true'] {
  border: 2px solid #af3c37;
}
#cui {
  font-size: 20px;
  letter-spacing: 0.025em;
}
.small {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.challenge {
  margin-block: 8px;
  min-height: 0;
  max-width: 100%;
  overflow: hidden;
}
.button,
button:not(.privacy-manage) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 5px;
  border: 1px solid var(--green);
  background: var(--green);
  color: white;
  text-decoration: none;
  font-weight: 650;
  font-size: 14px;
  cursor: pointer;
  line-height: 1.4;
  gap: 8px;
}
button:disabled {
  opacity: 0.55;
  cursor: wait;
}
.checker button:not(.text-button),
.form-card button {
  width: 100%;
}
.button:hover,
button:not(:disabled):hover {
  background: #216759;
}
#lookup {
  margin-top: 10px;
}
.secondary,
.text-button {
  background: transparent !important;
  color: var(--green) !important;
}
.text-button {
  border-color: transparent !important;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.checker-foot {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin: 18px 0 0;
  font-size: 11px;
  color: var(--muted);
}
#status {
  font-size: 12px;
  line-height: 1.6;
  color: #425e51;
  margin-top: 12px;
  min-height: 20px;
}
.notice {
  font-size: 13px;
  background: var(--light);
  padding: 14px;
  border-radius: 5px;
  color: #405e50;
  margin-block: 18px;
}
.company-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  margin: 18px 0;
  gap: 0 16px;
}
.company-data > div {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  min-width: 0;
}
dt {
  font-size: 11px;
  color: var(--muted);
}
dd {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 650;
  overflow-wrap: anywhere;
}
#company-name {
  overflow-wrap: anywhere;
  font-size: 27px;
  margin-top: 10px;
}
#result {
  margin-top: 20px;
}
.orientation {
  background: #f2f6ef;
  border-left: 3px solid #91b58a;
  padding: 18px;
  margin: 20px 0;
}
.orientation p {
  font-size: 13px;
}
fieldset {
  padding: 0;
  border: 0;
  min-width: 0;
  margin: 24px 0;
}
legend {
  font-size: 15px;
  font-weight: 700;
  padding: 0;
  margin-bottom: 20px;
}
.check {
  display: flex !important;
  align-items: flex-start;
  gap: 11px;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.7;
}
.check input {
  width: 19px;
  min-height: 19px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--green);
}
.check span {
  min-width: 0;
}
.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.optional-fields {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.optional-fields summary {
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.success-card {
  background: #edf5e7;
  border-radius: 6px;
  padding: 24px;
  margin-top: 24px;
}
.success-card h3 {
  margin-top: 15px;
}
.success-card p {
  font-size: 14px;
}
#reference {
  overflow-wrap: anywhere;
}
.trust-strip {
  border-block: 1px solid var(--line);
  background: #eef3ee;
}
.trust-strip > .wrap {
  padding-block: 26px;
  display: flex;
  gap: 60px;
  align-items: center;
}
.trust-strip p {
  font-size: 12px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0;
}
.trust-strip a {
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.section {
  padding-block: 80px;
}
.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}
.section-heading .eyebrow {
  margin-bottom: 16px;
}
.section-heading > p:not(.eyebrow) {
  color: var(--muted);
}
.topics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.topic-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
}
.topic-card:hover {
  border-color: #749585;
  background: #f6faf3;
}
.topic-number {
  font-size: 12px;
  color: #526c59;
  margin-bottom: 28px;
  letter-spacing: 0.1em;
}
.topic-card h3 {
  font-size: 24px;
}
.topic-card p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 28px;
}
.text-link {
  font-weight: 650;
  font-size: 13px;
  margin-top: auto;
}
.process {
  background: #173e36;
  color: #fff;
}
.process .eyebrow,
.process .step-number {
  color: #bcd4ba;
}
.process h2 {
  max-width: 720px;
}
.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.three > article {
  padding-top: 24px;
  border-top: 1px solid #78927f66;
}
.step-number {
  display: block;
  font-size: 11px;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.three p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}
.process .three p {
  color: #d7e4dc;
}
.budget-section,
.diagnostic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.budget-section > div > p:not(.eyebrow),
.diagnostic > div > p:not(.eyebrow) {
  font-size: 15px;
  color: var(--muted);
}
.budget-card,
.form-card {
  background: #fff;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 0;
}
.budget-answer {
  padding: 24px;
  background: var(--light);
  margin-top: 24px;
}
.budget-answer span {
  font-size: 12px;
  display: block;
}
.budget-answer output {
  font-size: 24px;
  display: block;
  line-height: 1.3;
  margin-block: 12px;
  font-weight: 650;
  overflow-wrap: anywhere;
}
.budget-answer p {
  font-size: 11px;
  margin: 0;
}
.diagnostic {
  padding-block: 65px;
  border-top: 1px solid var(--line);
}
.person-section h2 {
  font-size: 38px;
}
.person-section h3 {
  font-size: 24px;
}
.person-section .eyebrow {
  margin-bottom: 16px;
}
#person-steps {
  padding-left: 20px;
  font-size: 14px;
}
#person-status,
#person-source {
  font-size: 13px;
}
.faq {
  max-width: 900px;
}
.faq h2 {
  margin-bottom: 30px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq summary {
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  padding-right: 18px;
}
.faq details p {
  font-size: 14px;
  line-height: 1.8;
  max-width: 780px;
  margin: 20px 0 0;
}
.site-footer {
  background: #eaf0e9;
  padding-top: 56px;
  border-top: 1px solid #d0dece;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 55px;
  padding-bottom: 48px;
}
.footer-grid h2 {
  font-size: 13px;
  letter-spacing: 0;
  margin: 0 0 20px;
}
.footer-grid > div > a:not(.brand) {
  display: block;
  font-size: 12px;
  margin-bottom: 12px;
  text-decoration: none;
}
.footer-grid p {
  font-size: 13px;
  color: var(--muted);
  margin: 22px 0;
}
.footer-bottom {
  border-top: 1px solid #cad9c8;
  padding-block: 22px 45px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 10px;
  color: var(--muted);
}
.footer-bottom nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.article-layout {
  padding-block: 35px 80px;
}
.breadcrumbs {
  font-size: 12px;
  margin-bottom: 40px;
  color: var(--muted);
}
.article-heading {
  max-width: 900px;
  margin-bottom: 45px;
}
.article-heading h1 {
  font-size: clamp(36px, 4vw, 54px);
}
.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(230px, 1fr);
  gap: 90px;
  align-items: start;
}
.article-grid article section {
  margin-bottom: 38px;
}
.article-grid article h2 {
  font-size: 25px;
  letter-spacing: -0.025em;
  line-height: 1.3;
}
.article-grid article p {
  font-size: 16px;
  line-height: 1.85;
  color: #415a4e;
}
.article-cta {
  position: sticky;
  top: 30px;
  padding: 28px;
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.article-cta h2 {
  font-size: 28px;
  margin: 20px 0;
}
.article-cta p {
  font-size: 14px;
}
.article-cta a:not(.button) {
  font-size: 12px;
}
.article-cta .button {
  width: 100%;
  margin-bottom: 16px;
}
.source-box {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.source-box p,
.source-box li {
  font-size: 12px !important;
}
.source-box li {
  margin-bottom: 12px;
}
.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-block: 40px;
  font-size: 14px;
}
.partner-callout {
  max-width: 800px;
  border: 1px solid var(--line);
  background: var(--light);
  padding: 40px;
  margin-top: 50px;
}
.partner-callout h2 {
  font-size: 32px;
}
.partner-callout .button {
  margin-bottom: 24px;
}
.legal {
  max-width: 850px;
  margin: auto;
  padding: 55px 32px 90px;
}
.legal h1 {
  font-size: 42px;
}
.legal h2 {
  font-size: 26px;
  margin-top: 35px;
}
.legal p {
  font-size: 15px;
  line-height: 1.8;
}
.legal a {
  overflow-wrap: anywhere;
}
@media (max-width: 1020px) {
  .hero {
    gap: 34px;
  }
  .hero h1 {
    font-size: 47px;
  }
  .topics {
    grid-template-columns: 1fr 1fr;
  }
  .header-inner nav {
    gap: 20px;
  }
  .budget-section,
  .diagnostic {
    gap: 40px;
  }
  .article-grid {
    gap: 40px;
  }
  .hero-proof {
    font-size: 12px;
  }
  .three {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .header-inner {
    min-height: 72px;
    gap: 12px;
  }
  .brand img {
    width: 38px;
    height: 38px;
  }
  .brand > span {
    font-size: 24px;
  }
  .brand small {
    font-size: 9px;
    margin-top: 5px;
  }
  .header-inner nav > a:not(.nav-cta) {
    display: none;
  }
  .header-inner nav .nav-cta {
    font-size: 11px;
    padding: 10px;
    min-height: 42px;
    display: flex;
    align-items: center;
  }
  .hero {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-block: 28px 40px;
  }
  .hero-copy {
    padding: 0;
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 0.08em;
    margin-bottom: 15px;
  }
  .hero h1 {
    font-size: 38px;
    line-height: 1.06;
    margin-bottom: 18px;
    max-width: 420px;
  }
  .hero .intro {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
  }
  .hero-proof,
  .hero-copy > .quiet-link {
    display: none;
  }
  .checker {
    width: 100%;
    padding: 20px;
  }
  .checker-heading h2 {
    font-size: 24px;
    margin: 8px 0;
  }
  .checker-heading > p {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .step-tag {
    font-size: 9px;
  }
  .checker label {
    font-size: 12px;
  }
  .checker #cui {
    min-height: 46px;
    padding: 9px 12px;
  }
  .checker #cui-help {
    font-size: 10px;
    margin: 5px 0 10px;
  }
  .checker #status {
    font-size: 11px;
  }
  .checker-foot {
    font-size: 10px;
    padding-top: 12px;
    margin-top: 12px;
  }
  .trust-strip > .wrap {
    display: block;
    padding-block: 24px;
  }
  .trust-strip p {
    margin-bottom: 15px;
  }
  .section {
    padding-block: 48px;
  }
  .section-heading {
    margin-bottom: 26px;
  }
  .eyebrow {
    font-size: 10px;
  }
  h2 {
    font-size: 31px;
  }
  .topics {
    gap: 12px;
  }
  .topic-card {
    padding: 22px 18px;
  }
  .topic-card h3 {
    font-size: 22px;
  }
  .topic-card p {
    font-size: 12px;
  }
  .topic-number {
    margin-bottom: 18px;
  }
  .topic-card .text-link {
    font-size: 11px;
  }
  .three {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .three article {
    padding-top: 22px;
  }
  .step-number {
    margin-bottom: 16px;
  }
  .three h3 {
    font-size: 25px;
  }
  .budget-section,
  .diagnostic {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .budget-card,
  .form-card {
    padding: 20px;
  }
  .diagnostic {
    padding-block: 42px;
  }
  .two {
    gap: 10px;
  }
  .person-section h2 {
    font-size: 31px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .footer-grid p {
    margin-block: 16px 0;
  }
  .footer-bottom {
    display: block;
    padding-bottom: 75px;
  }
  .footer-bottom nav {
    margin-top: 18px;
    font-size: 11px;
  }
  .faq summary {
    font-size: 14px;
  }
  .article-layout {
    padding-block: 24px 50px;
  }
  .article-heading {
    margin-bottom: 30px;
  }
  .article-heading h1 {
    font-size: 37px;
  }
  .article-heading .intro {
    font-size: 16px;
  }
  .article-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .article-grid article p {
    font-size: 15px;
  }
  .article-cta {
    position: static;
  }
  .breadcrumbs {
    margin-bottom: 28px;
  }
  .partner-callout {
    padding: 25px;
  }
  .partner-callout h2 {
    font-size: 28px;
  }
  .legal {
    padding: 35px 20px 70px;
  }
  .legal h1 {
    font-size: 36px;
  }
  .company-data {
    gap: 0 12px;
  }
}
@media (max-width: 359px) {
  .wrap {
    width: calc(100% - 28px);
  }
  .brand small {
    display: none;
  }
  .brand img {
    width: 32px;
    height: 32px;
  }
  .brand > span {
    font-size: 23px;
  }
  .hero h1 {
    font-size: 33px;
  }
  .hero .intro {
    font-size: 13px;
  }
  .hero {
    padding-top: 22px;
    gap: 18px;
  }
  .checker {
    padding: 17px;
  }
  .topics,
  .two,
  .company-data {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
  .header-inner nav .nav-cta {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
@media (max-width: 767px) {
  .checker-heading .step-tag,
  .checker-heading h2 {
    display: none;
  }
  .checker-heading > p {
    font-size: 11px;
    margin: 0 0 12px;
  }
  .checker label {
    margin-top: 0;
  }
}
