:root {
  --ink: #172033;
  --muted: #5d6b7c;
  --line: #d8e0ea;
  --brand: #1967d2;
  --accent: #0f9f8f;
  --bg: #f6f8fb;
  --surface: #ffffff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
.hero {
  min-height: 76vh;
  display: flex;
  align-items: center;
  padding: 80px 24px 64px;
  background:
    linear-gradient(90deg, rgba(25, 103, 210, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 159, 143, 0.07) 1px, transparent 1px),
    #f8fbff;
  background-size: 56px 56px;
  border-bottom: 1px solid var(--line);
}
.hero__inner,
.content__inner {
  width: min(900px, 100%);
  margin: 0 auto;
}
.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0;
}
h1,
h2,
p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.04;
  letter-spacing: 0;
}
.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 30px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--brand);
  color: white;
  font-weight: 720;
  text-decoration: none;
}
.content {
  padding: 64px 24px 84px;
  background: white;
}
h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0;
}
.description {
  margin: 10px 0 24px;
  color: var(--muted);
}
.markdown {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  color: #2d3a48;
}
.markdown p:first-child { margin-top: 0; }
.markdown p:last-child { margin-bottom: 0; }
@media (max-width: 720px) {
  .hero { min-height: auto; padding-top: 56px; }
  .content { padding-top: 48px; }
}
