:root {
  color-scheme: light;
  --bg: #f3f7f6;
  --surface: #ffffff;
  --ink: #15211f;
  --muted: #5f6d69;
  --line: #d2dcda;
  --green: #117865;
  --green-strong: #07594a;
  --blue: #205ea8;
  --gold: #bd7921;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

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

.site-header,
.site-footer,
.hero,
.document {
  width: min(100% - 36px, 920px);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 6px;
  background: var(--green);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

nav {
  display: flex;
  gap: 18px;
}

nav a,
.site-footer a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

nav a:hover,
.site-footer a:hover {
  color: var(--green-strong);
  text-decoration: underline;
}

.hero {
  display: flex;
  min-height: calc(100vh - 145px);
  flex-direction: column;
  justify-content: center;
  padding-block: 64px 88px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.button.primary {
  border-color: var(--green);
  background: var(--green);
  color: #ffffff;
}

.button.primary:hover {
  background: var(--green-strong);
}

.button.secondary {
  background: var(--surface);
  color: var(--ink);
}

.document {
  padding-block: 56px 84px;
}

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

.document-header h1 {
  font-size: 36px;
}

.updated {
  color: var(--muted);
  font-size: 13px;
}

.document section {
  max-width: 760px;
  margin-bottom: 36px;
}

.document h2 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0;
}

.document h3 {
  margin: 22px 0 8px;
  font-size: 15px;
  line-height: 1.4;
}

.document p,
.document li {
  color: #35423f;
  font-size: 15px;
  line-height: 1.8;
}

.document ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.notice {
  max-width: 760px;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  background: var(--surface);
}

.contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 600px) {
  .site-header,
  .site-footer,
  .hero,
  .document {
    width: min(100% - 28px, 920px);
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding-block: 14px;
  }

  h1 {
    font-size: 36px;
  }

  .document-header h1 {
    font-size: 30px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding-block: 16px;
  }
}
