:root {
  color-scheme: light;
  --ink: #17251e;
  --muted: #617169;
  --brand: #1f6f43;
  --brand-dark: #173f2d;
  --paper: #fffaf1;
  --line: #e5d9c6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo {
  width: 144px;
  height: 144px;
  object-fit: contain;
  margin-bottom: 20px;
}

.logo.small {
  width: 88px;
  height: 88px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(2.25rem, 6vw, 4rem);
  line-height: 1;
}

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

p {
  max-width: 760px;
  line-height: 1.65;
  color: var(--muted);
  font-size: 1.05rem;
}

a {
  color: var(--brand-dark);
  font-weight: 700;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.actions a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  color: white;
  background: var(--brand-dark);
  text-decoration: none;
}

.document header {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

section {
  padding-bottom: 4px;
}
