* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 6%, rgba(100, 179, 44, .16), transparent 28%),
    radial-gradient(circle at 8% 42%, rgba(42, 148, 160, .10), transparent 25%),
    linear-gradient(180deg, #FBFCF8 0%, #F4F7F2 56%, #FFFFFF 100%);
  letter-spacing: 0;
}

body.is-menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button, input, textarea { font: inherit; }

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 20px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .92;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
}
h3 { margin-bottom: 8px; font-size: 24px; }
p { color: #4B5754; line-height: 1.58; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 50;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
}
.skip-link:focus { transform: translateY(0); }

.clip-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

