:root {
  color-scheme: light;
  --ink: #17201e;
  --muted: #53615d;
  --line: #d7ded9;
  --paper: #fbfcfa;
  --surface: #ffffff;
  --band: #eef5f1;
  --deep-green: #071e1d;
  --mint: #83e3bd;
  --control: #174f4a;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: var(--control);
}

.site-header,
.site-footer,
main {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.company-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 750;
  text-decoration: none;
}

.company-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.product-link {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

main {
  padding: 52px 0 56px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--control);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2 {
  color: var(--deep-green);
  line-height: 1.15;
}

h1 {
  margin: 0;
  font-size: clamp(2.3rem, 7vw, 4rem);
  font-weight: 850;
}

h2 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 800;
}

.lede {
  max-width: 720px;
  margin: 18px 0 8px;
  color: var(--muted);
  font-size: 1.08rem;
}

.updated {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 0.9rem;
}

section {
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  padding: 18px 20px;
}

section p {
  margin: 0;
}

.related {
  margin: 28px 0 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 24px 0 36px;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer a {
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 540px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 18px 0;
  }

  main {
    padding-top: 36px;
  }

  .site-footer {
    flex-direction: column;
  }
}
