:root {
  color-scheme: light;
  --ink: #17221d;
  --muted: #5f6d66;
  --line: #d9e1dc;
  --surface: #ffffff;
  --surface-soft: #f3f7f4;
  --pitch: #267448;
  --pitch-dark: #175333;
  --coral: #d24846;
  --amber: #b87308;
  --focus: #0a66c2;
  --max: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--surface);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 280px;
}

a {
  color: var(--pitch-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--coral);
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--focus) 38%, transparent);
  outline-offset: 3px;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
}

.header-inner,
.main-inner,
.footer-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: ui-rounded, "SF Pro Rounded", -apple-system, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.94rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 650;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: end;
  padding: 84px 0 72px;
}

.not-found {
  min-height: calc(100vh - 193px);
  grid-template-columns: 1fr;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pitch);
  font-size: 0.82rem;
  font-weight: 750;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: ui-rounded, "SF Pro Rounded", -apple-system, sans-serif;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.02;
}

h2 {
  margin-bottom: 24px;
  font-size: 1.85rem;
  line-height: 1.2;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.lede {
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.fact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.fact-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.fact-list span:first-child {
  color: var(--muted);
}

.fact-list strong {
  text-align: right;
}

.band {
  border-top: 1px solid var(--line);
}

.band-soft {
  background: var(--surface-soft);
}

.section {
  padding: 72px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 112px);
}

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

.steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: support-step;
}

.steps li {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 0 0 30px;
  counter-increment: support-step;
}

.steps li::before {
  content: counter(support-step, decimal-leading-zero);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--pitch);
  border-radius: 50%;
  color: var(--pitch-dark);
  font-size: 0.75rem;
  font-weight: 750;
}

.steps p,
.policy-copy p,
.policy-copy ul {
  margin-top: 0;
  color: var(--muted);
}

.steps p:last-child,
.policy-copy p:last-child {
  margin-bottom: 0;
}

.faq {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 20px 40px 20px 0;
  cursor: pointer;
  font-weight: 680;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 4px;
  color: var(--pitch);
  font-size: 1.35rem;
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 720px;
  margin: -4px 0 22px;
  color: var(--muted);
}

.contact-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-line p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
}

.policy-copy {
  max-width: 760px;
}

.policy-copy section {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.policy-copy section:first-child {
  padding-top: 0;
  border-top: 0;
}

.policy-copy li + li {
  margin-top: 8px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: #eaf0ec;
}

.footer-inner {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer p {
  margin: 0;
  color: #afbeb6;
}

.site-footer a {
  color: #ffffff;
}

@media (max-width: 760px) {
  .header-inner,
  .main-inner,
  .footer-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .header-inner {
    min-height: 64px;
  }

  .site-nav {
    gap: 16px;
  }

  .intro,
  .section-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .intro {
    padding: 56px 0 48px;
  }

  h1 {
    font-size: 2.75rem;
  }

  .section {
    padding: 52px 0;
  }

  .contact-line,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    justify-content: center;
    padding: 32px 0;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
