:root {
  color-scheme: light;
  --canvas: #f3f5f4;
  --paper: #fffefb;
  --ink: #172522;
  --muted: #53615d;
  --line: #ccd5d1;
  --accent: #245f52;
  --accent-soft: #e5efeb;
  --notice: #75511d;
  --notice-soft: #fff6df;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

main {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 64px;
}

header,
section,
footer {
  display: grid;
  gap: 12px;
}

header {
  margin-bottom: 28px;
}

section {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

footer {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 40px;
  object-fit: contain;
}

.brand strong {
  font-size: 1.05rem;
  letter-spacing: .045em;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

h1,
h2,
p,
ul {
  margin: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.15rem, 6vw, 4.4rem);
  line-height: 1;
  letter-spacing: -.045em;
}

h2 {
  font-size: 1.15rem;
}

p,
li {
  color: var(--muted);
}

.lede {
  max-width: 720px;
  font-size: 1.12rem;
}

.notice {
  padding: 14px 16px;
  border-left: 3px solid var(--notice);
  color: #53370e;
  background: var(--notice-soft);
}

.notice strong {
  color: #3f2909;
}

.facts,
.links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
  margin: 0;
}

.facts div,
.links a {
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.facts dt {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.facts dd {
  margin: 4px 0 0;
  font-weight: 650;
}

a {
  color: var(--accent);
  text-underline-offset: 3px;
}

.links a {
  display: grid;
  gap: 3px;
  color: var(--ink);
  text-decoration: none;
}

.links a:hover,
.links a:focus-visible {
  border-color: var(--accent);
  outline: 2px solid transparent;
}

.links span {
  color: var(--muted);
  font-size: .88rem;
}

ul {
  display: grid;
  gap: 7px;
  padding-left: 22px;
}

@media (max-width: 560px) {
  main {
    width: min(100% - 24px, 880px);
    padding-top: 24px;
  }
}
