:root {
  color-scheme: light;
  --ink: #172033;
  --muted: #5b667a;
  --line: #d9deea;
  --brand: #1f315f;
  --accent: #1c7c68;
  --paper: #f7f5ef;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--brand);
}

.page {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.hero {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  padding: 28px 0 0;
}

.links a {
  display: block;
  min-height: 56px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.doc {
  max-width: 780px;
}

.doc h1 {
  margin-top: 18px;
  font-size: clamp(2.25rem, 8vw, 4.5rem);
}

.doc h2 {
  margin: 34px 0 8px;
  font-size: 1.25rem;
}

.doc p {
  margin: 0 0 14px;
}

.updated,
.doc p {
  color: var(--muted);
}

.back-link {
  font-weight: 800;
  text-decoration: none;
}

.contact {
  font-size: 1.2rem;
  font-weight: 800;
}
