:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #52605a;
  --line: #d8dfdb;
  --paper: #ffffff;
  --soft: #f3f7f5;
  --brand: #006c58;
  --brand-dark: #004c3e;
  --accent: #c88700;
  --focus: #005fcc;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

body {
  margin: 0;
}

a {
  color: var(--brand-dark);
  text-underline-offset: 0.18em;
}

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

a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.header-inner,
.page,
.footer-inner {
  width: calc(100% - 32px);
  max-width: 920px;
  margin-inline: auto;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 0.92rem;
}

nav a {
  color: var(--muted);
  font-weight: 650;
  text-decoration: none;
}

.page {
  padding-block: 56px 80px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 1.2;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: 3.4rem;
}

h2 {
  margin: 44px 0 12px;
  font-size: 1.35rem;
}

.lead {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.meta {
  margin: 24px 0 0;
  padding-block: 16px;
  border-block: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.notice {
  margin-top: 32px;
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  background: #fff8e8;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid var(--brand);
  border-radius: 6px;
  background: var(--brand);
  color: white;
  font-weight: 750;
  text-decoration: none;
}

.button.secondary {
  background: var(--paper);
  color: var(--brand-dark);
}

section {
  max-width: 760px;
}

ul,
ol {
  padding-left: 22px;
}

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

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 26px;
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 680px) {
  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-inner {
    padding-block: 14px;
  }

  nav {
    justify-content: flex-start;
  }

  .page {
    padding-block: 40px 64px;
  }

  h1 {
    font-size: 2.25rem;
  }
}
