:root {
  color-scheme: light;
  --ink: #0c2118;
  --muted: #5d6d65;
  --paper: #f7f5ee;
  --card: #fffef9;
  --forest: #123f2f;
  --forest-soft: #275c49;
  --mint: #d8f3e7;
  --line: #d5ddd5;
  --warning: #f9ddd2;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 18px;
  line-height: 1.6;
}

a {
  color: var(--forest);
  text-underline-offset: 0.2em;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #0a7653;
  outline-offset: 4px;
}

.site-header,
footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header {
  min-height: 96px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  color: #a8f0d3;
  background: var(--forest);
  font-size: 15px;
  letter-spacing: 0.08em;
}

nav,
footer div {
  display: flex;
  gap: 22px;
}

main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  margin: 48px 0 28px;
  padding: clamp(38px, 7vw, 88px);
  border-radius: 36px;
  color: white;
  background: var(--forest);
}

.eyebrow,
.number {
  margin: 0 0 10px;
  color: #8fe2c2;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  margin-top: 0;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 7vw, 6rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.lede {
  max-width: 780px;
  color: inherit;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--forest);
  background: var(--mint);
}

.button.secondary {
  color: white;
  border: 1px solid #7da593;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0;
}

.grid article,
.support-card,
.faq,
.policy section {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
}

.grid article {
  padding: 28px;
}

.grid .number,
.support-card .eyebrow,
.faq .eyebrow,
.policy > .eyebrow {
  color: var(--forest-soft);
}

.grid p:last-child,
.support-card p,
.faq p,
.policy p {
  color: var(--muted);
}

.support-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 52px);
}

.support-card div {
  max-width: 760px;
}

.support-card .button {
  flex: 0 0 auto;
  color: white;
  background: var(--forest);
}

.faq {
  margin: 28px 0 64px;
  padding: clamp(28px, 5vw, 52px);
}

details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

.policy {
  max-width: 880px;
  padding: 64px 0;
}

.policy h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.policy section {
  margin-top: 20px;
  padding: 28px;
}

footer {
  padding: 32px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .site-header,
  footer,
  .support-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    padding: 18px 0;
  }

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

  nav,
  footer div {
    flex-wrap: wrap;
  }
}

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