* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f8f6;
  color: #10231f;
}

a {
  color: inherit;
}

.top {
  background: #071815;
  color: #f8fff7;
}

.nav,
.page,
.footer {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  text-decoration: none;
}

.mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #f2c94c;
  color: #10231f;
}

.nav a:not(.brand) {
  color: rgba(248, 255, 247, 0.78);
  text-decoration: none;
  font-weight: 850;
}

.page {
  padding: 42px 0 64px;
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 0.94;
  letter-spacing: 0;
}

.lead {
  margin: 0 0 28px;
  color: #60746f;
  line-height: 1.55;
  font-size: 18px;
}

.card {
  border: 1px solid #cbded6;
  background: #ffffff;
  border-radius: 8px;
  padding: clamp(20px, 4vw, 34px);
}

h2 {
  margin: 26px 0 8px;
  font-size: 24px;
}

h2:first-child {
  margin-top: 0;
}

p,
li {
  color: #4f645f;
  line-height: 1.62;
}

ul {
  padding-left: 20px;
}

.footer {
  border-top: 1px solid #cbded6;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: #60746f;
}
