:root {
  color-scheme: light;
  --ink: #13251f;
  --muted: #5e6d68;
  --paper: #f4f1e9;
  --surface: #fffdf8;
  --line: #d7d8cf;
  --green: #237a57;
  --green-soft: #d8eadf;
  --orange: #df9c38;
  --red: #d8554f;
  font-family: ui-rounded, "SF Pro Rounded", "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { background: var(--paper); }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(35, 122, 87, .13), transparent 23rem),
    var(--paper);
}

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

.hero {
  min-height: 72vh;
  display: grid;
  align-content: center;
  padding: 96px 0 72px;
}

.mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 56px;
  border-radius: 16px;
  color: white;
  background: var(--green);
  font-size: 26px;
  font-weight: 800;
  box-shadow: 12px 12px 0 var(--green-soft);
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { text-wrap: pretty; }

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3.4rem, 9vw, 7.9rem);
  line-height: .92;
  letter-spacing: -.065em;
}

.lede {
  max-width: 680px;
  margin: 36px 0 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.55;
}

section { padding: 92px 0; }

h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -.045em;
}

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

.cards article {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
}

.number {
  display: block;
  margin-bottom: 72px;
  color: var(--orange);
  font-weight: 800;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.cards p,
.privacy-callout p,
.contact p,
.policy section p {
  color: var(--muted);
  line-height: 1.7;
}

.troubleshooting,
.privacy-callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.troubleshooting ol {
  margin: 38px 0 0;
  padding-left: 1.4em;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

.privacy-callout {
  padding: 72px;
  border: 0;
  border-radius: 36px;
  background: var(--green);
  color: white;
}

.privacy-callout .section-label,
.privacy-callout p,
.privacy-callout .text-link { color: white; }

.privacy-callout .text-link { align-self: end; }

.text-link {
  color: var(--green);
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.contact {
  max-width: 760px;
  padding: 128px 0;
}

.contact p { max-width: 600px; }

.button {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 22px;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.button:hover,
.button:focus-visible { background: var(--green); }

footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .88rem;
}

.policy { max-width: 820px; }

.policy nav { padding-top: 48px; }

.policy-header {
  padding: 112px 0 80px;
  border-bottom: 1px solid var(--line);
}

.policy-header h1 { font-size: clamp(3rem, 8vw, 6.5rem); }

.policy section {
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}

.policy section h2 {
  font-size: clamp(1.45rem, 4vw, 2.1rem);
  letter-spacing: -.025em;
}

.policy section p { font-size: 1.04rem; }

.policy section a { color: var(--green); }

@media (max-width: 760px) {
  main { width: min(100% - 28px, 1120px); }
  .hero { min-height: auto; padding-top: 72px; }
  .mark { margin-bottom: 48px; }
  .cards,
  .troubleshooting,
  .privacy-callout { grid-template-columns: 1fr; }
  .cards article { min-height: 230px; }
  .privacy-callout { padding: 42px 28px; gap: 32px; }
  section { padding: 70px 0; }
  footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
}
