:root {
  --ink: #161616;
  --muted: #525252;
  --line: #d0d7de;
  --soft: #f4f7fb;
  --panel: #ffffff;
  --blue: #0f62fe;
  --blue-dark: #0043ce;
  --green: #198038;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  line-height: 1.55;
}

a {
  color: var(--blue-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  position: sticky;
  top: 0;
  z-index: 5;
}

.nav {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 16px 22px;
}

.brand {
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
}

.navlinks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.navlinks a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.hero {
  background: linear-gradient(90deg, rgba(244, 247, 251, 0.94), rgba(255, 255, 255, 0.82)),
    url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1600&q=80");
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid var(--line);
}

.hero-inner,
.wrap {
  margin: 0 auto;
  max-width: 1180px;
  padding: 56px 22px;
}

.eyebrow {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  font-size: 48px;
  line-height: 1.05;
  margin: 14px 0 18px;
  max-width: 760px;
}

h2 {
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 18px;
}

h3 {
  font-size: 19px;
  margin: 0 0 8px;
}

p {
  margin: 0 0 16px;
}

.lead {
  color: #393939;
  font-size: 20px;
  max-width: 790px;
}

.meta {
  color: var(--muted);
  font-size: 14px;
}

.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 170px;
  padding: 22px;
}

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

.band {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.policy {
  display: grid;
  gap: 34px;
  grid-template-columns: 260px 1fr;
}

.toc {
  align-self: start;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  position: sticky;
  top: 82px;
}

.toc a {
  display: block;
  font-size: 14px;
  margin: 8px 0;
}

.section {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.section:first-child {
  padding-top: 0;
}

.pill {
  background: #e8f0ff;
  border: 1px solid #a6c8ff;
  border-radius: 999px;
  color: var(--blue-dark);
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  margin: 6px 8px 0 0;
  padding: 5px 10px;
}

.status {
  color: var(--green);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 500;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  padding: 28px 22px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: 38px;
  }

  .grid,
  .policy {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }
}
