:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #17211b;
  background: #f4f6ef;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  line-height: 1.65;
}

a {
  color: #245d45;
  text-underline-offset: 0.2em;
}

a:hover {
  color: #163d2c;
}

header,
main,
footer {
  width: min(760px, calc(100% - 40px));
  margin-inline: auto;
}

header {
  padding: 54px 0 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d6ff55;
  box-shadow: 0 0 0 5px #17211b;
}

main {
  padding: 44px clamp(24px, 6vw, 64px) 56px;
  border: 1px solid #d9ddd4;
  border-radius: 24px;
  background: #fffef9;
  box-shadow: 0 18px 50px rgba(30, 47, 37, 0.08);
}

.eyebrow {
  margin: 0 0 12px;
  color: #557064;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 1.15;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 15ch;
  margin: 0 0 20px;
  font-size: clamp(2.25rem, 8vw, 4.2rem);
}

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

p,
li {
  color: #405047;
}

.lede {
  max-width: 62ch;
  margin: 0;
  color: #27372e;
  font-size: 1.1rem;
}

.meta {
  margin-top: 22px;
  color: #718077;
  font-size: 0.84rem;
}

.note {
  margin: 30px 0;
  padding: 18px 20px;
  border-left: 4px solid #98bc36;
  border-radius: 0 12px 12px 0;
  background: #f1f7df;
  color: #304023;
}

ol,
ul {
  padding-left: 1.35rem;
}

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

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 26px 0 52px;
  color: #627168;
  font-size: 0.86rem;
}

footer a:first-child {
  margin-right: auto;
}

@media (max-width: 560px) {
  header,
  main,
  footer {
    width: min(100% - 24px, 760px);
  }

  header {
    padding-top: 34px;
  }

  main {
    padding: 32px 22px 40px;
    border-radius: 18px;
  }

  footer a:first-child {
    width: 100%;
  }
}

