:root {
  --ink: #151515;
  --muted: #66625b;
  --paper: #f7f7f5;
  --panel: #ffffff;
  --line: rgba(21, 21, 21, 0.1);
  --blue: #2457e6;
  --green: #087f5b;
  --shadow: 0 1px 2px rgba(21, 21, 21, 0.04);
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 34px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-weight: 760;
  text-decoration: none;
}

.mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
}

.mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  font-size: 24px;
  font-weight: 760;
  line-height: 1;
}

.status {
  border: 1px solid rgba(8, 127, 91, 0.22);
  border-radius: 999px;
  background: #ffffff;
  color: #3f3f3f;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 650;
}

.page {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: clamp(22px, 5vw, 42px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

.lede {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.updated {
  display: inline-block;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: #3f3f3f;
  font-size: 13px;
  font-weight: 650;
}

.content {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

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

h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

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

p {
  margin: 0 0 12px;
}

ul {
  margin: 0;
  padding-left: 20px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 760;
  text-decoration: none;
}

.button.primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tm {
  font-size: 0.55em;
  vertical-align: top;
}

@media (max-width: 700px) {
  .top {
    align-items: flex-start;
  }

  .status {
    display: none;
  }

  .page {
    padding: 22px;
  }
}
