@font-face {
  font-family: Manrope;
  src: url("/assets/manrope.ttf") format("truetype");
  font-weight: 200 800;
  font-display: swap;
}
:root {
  --paper: #f5f5ef;
  --ink: #223e30;
  --muted: #66746a;
  --line: #d8dfd0;
  --white: #fffefa;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.8;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
a:hover {
  color: #647d37;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #8ea867;
  outline-offset: 5px;
  border-radius: 3px;
}
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 10;
  background: var(--white);
  padding: 12px;
}
.skip:focus {
  top: 10px;
}
.header {
  height: 88px;
  border-top: 4px solid #333f28;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  position: sticky;
  top: 0;
  background: var(--paper);
  z-index: 2;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -1px;
  text-decoration: none;
}
.brand span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  border-left: 1px solid var(--line);
  padding-left: 14px;
  margin-left: 6px;
  color: var(--muted);
}
.button {
  border: 1px solid #c8d3bf;
  border-radius: 50px;
  padding: 8px 19px;
  font-size: 12px;
  text-decoration: none;
  display: flex;
  gap: 15px;
}
.layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 820px);
  gap: 70px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
aside {
  position: sticky;
  top: 88px;
  align-self: start;
  height: calc(100dvh - 88px);
  overflow: auto;
  border-right: 1px solid var(--line);
  padding: 43px 30px 30px 0;
}
aside nav a {
  display: block;
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  padding: 8px 0;
}
aside nav a:hover {
  color: var(--ink);
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  margin: 0 0 19px;
  color: #70815f;
}
.sidebar-note {
  margin-top: 50px;
  color: #7d8c78;
  font-size: 11px;
}
main {
  min-width: 0;
}
section {
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
}
.welcome {
  padding-top: 60px;
}
h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -3px;
  margin: 20px 0 25px;
}
h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -1.4px;
  margin: 0 0 24px;
}
p {
  margin: 0 0 20px;
  color: var(--muted);
}
strong {
  color: var(--ink);
  font-weight: 650;
}
.lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink);
  max-width: 610px;
}
.note {
  padding: 20px 24px;
  margin: 28px 0;
  background: #eaf0e2;
  border: 1px solid #d6e1c8;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.8;
}
.note strong {
  display: block;
  margin-bottom: 5px;
}
.quick-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.quick-links a {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  font-size: 13px;
  background: var(--white);
}
.quick-links span {
  display: block;
  font-size: 10px;
  color: #82906f;
  margin-bottom: 10px;
}
ol,
ul {
  padding-left: 23px;
  color: var(--muted);
}
li {
  padding-left: 6px;
  margin-bottom: 13px;
}
.steps li {
  margin-bottom: 24px;
}
.steps p {
  margin: 7px 0 0;
}
.mission-examples {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0;
}
figure {
  margin: 0;
}
figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 20/13;
  object-fit: cover;
  border-radius: 12px;
}
figcaption {
  font-size: 13px;
  padding: 13px 2px;
  color: var(--ink);
}
figcaption span {
  font-size: 11px;
  color: var(--muted);
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin: 25px 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
}
caption {
  padding: 13px 18px;
  text-align: left;
  font-weight: 600;
  background: #eaf0e2;
}
th,
td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th {
  font-weight: 650;
}
td {
  color: var(--muted);
}
td:first-child {
  color: var(--ink);
  width: 36%;
}
tr:last-child td {
  border-bottom: 0;
}
details {
  border-top: 1px solid var(--line);
  padding: 17px 0;
}
summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}
details p {
  font-size: 13px;
  margin: 15px 0 0;
}
.status-list {
  list-style: none;
  padding: 0;
}
.status-list li {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.badge {
  display: inline-block;
  margin: 0 8px 5px 0;
  background: #dfebd6;
  border-radius: 40px;
  padding: 2px 10px;
  color: #365139;
  font-size: 10px;
  font-weight: 650;
}
.badge.muted {
  background: #e8e9e1;
  color: #737867;
}
footer {
  padding: 35px 0 55px;
}
footer p {
  font-size: 12px;
}
.credits {
  font-size: 10px;
  color: #7f897a;
}
@media (max-width: 950px) {
  .layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 35px;
    padding: 0 25px;
  }
  .header {
    padding: 0 25px;
  }
  aside {
    padding-right: 20px;
  }
}
@media (max-width: 680px) {
  html {
    scroll-padding-top: 90px;
  }
  .header {
    height: 74px;
    padding: 0 20px;
  }
  .brand {
    font-size: 21px;
    gap: 7px;
  }
  .brand span {
    padding-left: 9px;
    margin-left: 2px;
    font-size: 10px;
  }
  .button {
    padding: 7px 12px;
    font-size: 10px;
    gap: 6px;
  }
  .layout {
    display: block;
    padding: 0 22px;
  }
  aside {
    position: static;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
  }
  aside nav {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    padding-bottom: 5px;
  }
  aside nav a {
    white-space: nowrap;
    padding: 7px 12px;
    border: 1px solid var(--line);
    border-radius: 30px;
    font-size: 11px;
  }
  aside nav .eyebrow,
  .sidebar-note {
    display: none;
  }
  .welcome {
    padding-top: 36px;
  }
  h1 {
    letter-spacing: -2px;
    font-size: 44px;
  }
  h2 {
    font-size: 28px;
  }
  .lead {
    font-size: 18px;
  }
  section {
    padding: 37px 0;
  }
  .quick-links {
    gap: 9px;
  }
  .quick-links a {
    padding: 15px;
    font-size: 11px;
  }
  .mission-examples {
    gap: 12px;
  }
  figcaption {
    font-size: 12px;
  }
  figcaption span {
    font-size: 10px;
  }
  th,
  td {
    padding: 12px;
    font-size: 12px;
  }
  .note {
    padding: 18px;
  }
  body {
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.header-links {
  display: flex;
  align-items: center;
  gap: 14px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 40px;
}
@media (max-width: 380px) {
  .header .brand {
    font-size: 18px;
  }
  .header .brand span {
    display: none;
  }
  .header-links {
    gap: 8px;
  }
}
