:root {
  --ink: #1c2622;
  --muted: #55635c;
  --brand: #1f7a5c;
  --brand-dark: #175c47;
  --brand-tint: #e6f2ec;
  --paper: #ffffff;
  --page: #f5f7f4;
  --line: #dfe4df;
  --focus: #0b6bcb;
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 0 0 8px 0;
  z-index: 10;
}

.skip-link:focus {
  left: 0;
}

a {
  color: var(--brand-dark);
}

a:focus-visible,
.button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.wrap {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background: var(--brand-dark);
  color: #fff;
  padding: 28px 0 32px;
}

.site-header .eyebrow {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #bfe6d6;
}

.site-header h1 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.15;
}

.site-header p {
  margin: 0;
  font-size: 18px;
  color: #e4f2ec;
}

main {
  padding: 28px 0 8px;
}

section {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  margin: 0 0 18px;
}

h2 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.2;
  color: var(--brand-dark);
}

h3 {
  margin: 18px 0 6px;
  font-size: 17px;
}

p {
  margin: 0 0 14px;
}

section > *:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0 0 14px;
  padding-left: 22px;
}

li {
  margin: 6px 0;
}

.lead {
  font-size: 18px;
}

.button {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  padding: 15px 24px;
  border-radius: 10px;
  border: 2px solid var(--brand-dark);
}

.button:hover {
  background: var(--brand-dark);
}

.cta {
  text-align: center;
}

.cta .fine {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 0 0 0 44px;
  margin: 0 0 16px;
  min-height: 30px;
}

.steps li:last-child {
  margin-bottom: 0;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background: var(--brand-tint);
  color: var(--brand-dark);
  border-radius: 50%;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.reward {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--brand-tint);
  border: 1px solid #c7e2d5;
  border-radius: 10px;
  padding: 16px 18px;
}

.reward .amount {
  font-size: 34px;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1;
}

.privacy-list li {
  margin: 8px 0;
}

.faq h3 {
  margin-top: 16px;
}

.faq h3:first-of-type {
  margin-top: 0;
}

.site-footer {
  padding: 24px 0 40px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0 0 8px;
}

.site-footer a {
  color: var(--brand-dark);
}

@media (min-width: 620px) {
  .site-header h1 {
    font-size: 34px;
  }
}
