:root {
  color-scheme: light;
  --background: #f6f8f7;
  --surface: #ffffff;
  --text: #18201d;
  --muted: #66736d;
  --line: #dfe6e2;
  --accent: #0f766e;
}

* {
  box-sizing: border-box;
}

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

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

.page {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0;
}

.hero {
  padding: 48px 0 32px;
}

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

h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08;
}

h2 {
  margin: 32px 0 8px;
  font-size: 1.25rem;
}

p,
ul {
  margin: 0 0 16px;
}

li + li {
  margin-top: 6px;
}

.muted {
  color: var(--muted);
}

.link-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.link-list a {
  display: grid;
  gap: 4px;
  padding: 20px;
  color: var(--text);
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.link-list span {
  font-weight: 800;
}

.link-list small {
  color: var(--muted);
}

.document {
  max-width: 760px;
}

.back-link {
  display: inline-block;
  margin-bottom: 28px;
  font-weight: 700;
  text-decoration: none;
}

.button {
  display: inline-block;
  padding: 10px 14px;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  background: var(--accent);
  border-radius: 6px;
}
