:root {
  --ink: #08090b;
  --paper: #f3f0e8;
  --acid: #d9ff3f;
  --muted: #a5a6ad;
  --line: #292b31;
  --display: "Space Grotesk", sans-serif;
  --body: "DM Sans", sans-serif;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  line-height: 1.7;
}
.top {
  border-bottom: 1px solid var(--line);
  padding: 20px clamp(20px, 6vw, 80px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  font: 700 20px var(--display);
  color: #fff;
  text-decoration: none;
}
.brand span {
  color: var(--acid);
}
.back {
  color: var(--acid);
  text-decoration: none;
  font-size: 14px;
}
main {
  width: min(900px, calc(100% - 40px));
  margin: 70px auto 110px;
}
.eyebrow {
  color: var(--acid);
  font: 600 11px var(--display);
  letter-spacing: 0.18em;
}
h1,
h2 {
  font-family: var(--display);
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1;
  margin: 18px 0 30px;
}
h2 {
  font-size: 24px;
  margin: 42px 0 8px;
}
.lede,
.muted {
  color: var(--muted);
}
.lede {
  font-size: 18px;
  max-width: 760px;
}
.notice {
  border: 1px solid #50552f;
  background: #11140b;
  padding: 20px;
  margin: 32px 0;
  color: #dce5ac;
}
a {
  color: var(--acid);
}
ul {
  padding-left: 22px;
}
.es {
  border-top: 1px solid var(--line);
  margin-top: 70px;
  padding-top: 52px;
}
footer {
  border-top: 1px solid var(--line);
  padding: 28px clamp(20px, 6vw, 80px);
  color: #666;
  font-size: 12px;
}
