:root {
  color-scheme: light;
  --ink: #141821;
  --muted: #536173;
  --quiet: #8290a0;
  --line: #dbe4ec;
  --panel: #ffffff;
  --page: #f8fafb;
  --accent: #113d45;
  --accent-2: #155e75;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #f8fafb 0%, #eef3f6 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent-2);
}

svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shell {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(220, 226, 234, .82);
  background: rgba(248, 250, 251, .92);
  backdrop-filter: blur(18px);
}

.topbar .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--ink);
  font-size: 15px;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 9px 22px rgba(15, 23, 42, .18);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 760;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.ghost-button {
  padding: 0 14px;
  background: #ffffff;
  color: var(--ink);
}

.ghost-button[aria-current="page"] {
  border-color: #bfd3d8;
  background: #eef7f6;
  color: var(--accent-2);
}

.primary-button {
  padding: 0 16px;
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.page-hero {
  padding: 58px 0 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 10px;
  border: 1px solid #cbdde0;
  border-radius: 999px;
  background: #eef7f6;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 760;
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  color: #10141d;
  font-size: clamp(38px, 6vw, 62px);
  line-height: .98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 780px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.document-band {
  border-top: 1px solid rgba(220, 226, 234, .82);
  background:
    linear-gradient(90deg, rgba(17, 61, 69, .04), rgba(255, 255, 255, 0) 36%),
    #ffffff;
}

.document-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(220px, 300px);
  gap: 64px;
  align-items: start;
  padding: 44px 0 64px;
}

.policy-body {
  min-width: 0;
}

.updated {
  margin: 0 0 24px;
  color: var(--quiet);
  font-size: 14px;
  font-weight: 700;
}

.policy-body section {
  padding: 24px 0;
  border-top: 1px solid #edf2f5;
}

.policy-body section:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.policy-body h2 {
  margin: 0 0 12px;
  color: #10141d;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: 0;
}

.policy-body p,
.policy-body li {
  color: #344154;
  font-size: 16px;
  line-height: 1.72;
}

.policy-body p {
  margin: 0 0 14px;
}

.policy-body ul,
.policy-body ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.policy-body a,
.side-panel a,
.site-footer a {
  color: #176c7a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.side-panel {
  position: sticky;
  top: 96px;
  padding: 6px 0 6px 24px;
  border-left: 1px solid #dbe4ec;
}

.side-panel h2 {
  margin: 0 0 12px;
  color: #10141d;
  font-size: 16px;
  line-height: 1.2;
}

.side-panel p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.side-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.side-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid #edf2f5;
  color: var(--ink);
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}

.side-links a:hover {
  color: var(--accent-2);
}

.site-footer {
  border-top: 1px solid rgba(220, 226, 234, .82);
  background: #f8fafb;
}

.site-footer .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 860px) {
  .topbar .shell {
    flex-wrap: wrap;
    gap: 14px;
  }

  .nav {
    order: 3;
    width: 100%;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-actions {
    margin-left: auto;
  }

  .document-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .side-panel {
    position: static;
    padding: 22px 0 0;
    border-left: 0;
    border-top: 1px solid #dbe4ec;
  }
}

@media (max-width: 520px) {
  .shell {
    width: min(100% - 24px, 420px);
  }

  .topbar {
    position: static;
  }

  .topbar .shell {
    padding: 12px 0;
  }

  .brand {
    font-size: 14px;
  }

.brand-mark {
  width: 32px;
  height: 32px;
}

  .header-actions {
    width: 100%;
  }

  .ghost-button,
  .primary-button {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 10px;
    font-size: 13px;
  }

  .page-hero {
    padding: 34px 0 24px;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .document-layout {
    padding: 28px 0 44px;
  }

  .policy-body h2 {
    font-size: 21px;
  }

  .site-footer .shell {
    align-items: flex-start;
    flex-direction: column;
  }
}
