:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #eef3f8;
  --ink: #111827;
  --muted: #5b6472;
  --line: #d8e0ea;
  --line-strong: #aab7c7;
  --green: #146c5f;
  --green-soft: #e5f3ef;
  --blue: #1e5c9f;
  --blue-soft: #e8f1fb;
  --amber: #b26a00;
  --amber-soft: #fff3d8;
  --danger: #b42318;
  --shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  line-height: 1.25;
  letter-spacing: 0;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.05rem;
  margin-bottom: 14px;
}

img,
svg {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 58ch;
}

code {
  padding: 0.1em 0.35em;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 4px;
  font-size: 0.92em;
}

@media (max-width: 720px) {
  h1 {
    font-size: 1.72rem;
    line-height: 1.18;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
