:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-strong: #eff4fb;
  --text: #152033;
  --muted: #5e6b7f;
  --line: #dbe3ef;
  --line-strong: #c4d0df;
  --accent: #0b6bcb;
  --accent-strong: #084f96;
  --accent-soft: #e8f2ff;
  --success: #1f8a5c;
  --shadow: 0 22px 65px rgba(30, 54, 88, 0.12);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: var(--accent);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

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

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 30;
  transform: translateY(-150%);
  background: var(--text);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 249, 252, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--accent);
  box-shadow: 0 10px 28px rgba(11, 107, 203, 0.24);
}

.brand-mark svg {
  width: 28px;
  height: 28px;
}

.brand-mark rect {
  fill: none;
  stroke: #fff;
  stroke-width: 3;
}

.brand-mark path {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-width: 3;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 650;
}

.top-nav a {
  color: var(--muted);
  text-decoration: none;
}

.top-nav a:hover {
  color: var(--text);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 52px;
  background:
    linear-gradient(135deg, rgba(11, 107, 203, 0.12), rgba(31, 138, 92, 0.12) 46%, rgba(255, 255, 255, 0) 72%),
    var(--bg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.section-label {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 0.98;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px rgba(11, 107, 203, 0.22);
}

.button-primary:hover {
  background: var(--accent-strong);
  color: #fff;
}

.button-secondary {
  background: var(--surface);
  border-color: var(--line-strong);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
}

.policy-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(31, 138, 92, 0.12);
}

.snapshot-list {
  margin: 0;
}

.snapshot-list div {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.snapshot-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.snapshot-list dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 650;
}

.quick-points {
  padding: 34px 0 24px;
}

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

.quick-grid article {
  min-height: 156px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.quick-grid h2 {
  font-size: 18px;
}

.quick-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  padding: 32px 0 88px;
}

.layout > * {
  min-width: 0;
}

.toc {
  position: sticky;
  top: 100px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.toc p {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.toc a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
}

.toc a:hover {
  color: var(--accent-strong);
}

.policy {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px;
  box-shadow: 0 16px 45px rgba(30, 54, 88, 0.07);
}

.policy-title {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
}

.policy-title h2 {
  font-size: clamp(32px, 5vw, 46px);
}

.policy-title p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.policy section {
  scroll-margin-top: 102px;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.policy section:first-of-type {
  margin-top: 0;
}

.policy h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

.policy h4 {
  margin: 24px 0 10px;
  font-size: 18px;
}

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

.policy p {
  margin: 14px 0;
}

.policy ul {
  padding-left: 22px;
  margin: 12px 0 0;
}

.policy li + li {
  margin-top: 10px;
}

.policy strong {
  color: var(--text);
}

.data-summary {
  min-width: 0;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.data-summary h3 {
  margin-bottom: 16px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.5;
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--text);
  background: #f9fbfe;
  font-size: 13px;
  font-weight: 800;
}

tr:last-child td {
  border-bottom: 0;
}

td {
  color: var(--muted);
}

.contact-panel {
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
}

.contact-panel p {
  margin: 4px 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 900px) {
  .header-inner {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .top-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-grid,
  .quick-grid,
  .layout {
    grid-template-columns: 1fr;
  }

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

  .toc p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  h1 {
    font-size: 42px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .snapshot-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .policy {
    padding: 24px 18px;
  }

  .data-summary {
    padding: 18px 12px;
  }

  .toc {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .toc,
  .site-footer,
  .skip-link {
    display: none;
  }

  body {
    background: #fff;
  }

  .container,
  .layout {
    width: 100%;
    display: block;
    padding: 0;
  }

  .policy,
  .policy-card,
  .quick-grid article {
    border: 0;
    box-shadow: none;
  }
}
