:root {
  --navy-950: #071a3d;
  --navy-900: #0b2a5b;
  --navy-800: #123d78;
  --navy-100: #eaf0f8;
  --red-700: #b91f2d;
  --red-100: #fff0f1;
  --amber-700: #9a5b00;
  --amber-100: #fff7e6;
  --green-700: #17653a;
  --green-100: #eaf7ef;
  --ink: #17213a;
  --muted: #5b667a;
  --border: #d7dee8;
  --line: #e7ebf1;
  --surface: #f5f7fa;
  --white: #ffffff;
  --shadow: 0 6px 22px rgba(11, 42, 91, 0.07);
  --radius: 6px;
  --container: 1240px;
  --font: -apple-system, BlinkMacSystemFont, "Noto Sans SC", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Microsoft YaHei", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: var(--navy-800);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--red-700);
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

img,
svg {
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid #2c6ecb;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--navy-950);
  color: var(--white);
}

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-top: 4px solid var(--navy-950);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.98);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto auto;
  align-items: center;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--navy-950);
  line-height: 1.2;
  text-decoration: none;
}

.brand strong {
  font-size: 21px;
  letter-spacing: 0.01em;
}

.brand span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  position: relative;
  padding: 9px 11px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 11px;
  bottom: 4px;
  left: 11px;
  height: 2px;
  background: var(--red-700);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: 160ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-search-link,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.header-search-link {
  padding: 0 14px;
}

.menu-toggle {
  display: none;
  width: 44px;
}

.breadcrumbs {
  padding-block: 20px 6px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  color: #9aa5b6;
  content: "/";
}

.hero {
  padding: 68px 0 52px;
}

.hero h1,
.page-title {
  max-width: 900px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.hero .lede,
.page-lede {
  max-width: 800px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.24rem);
}

.search-shell {
  position: relative;
  max-width: 980px;
  margin-top: 38px;
}

.search-shell input {
  width: 100%;
  min-height: 68px;
  padding: 0 132px 0 52px;
  border: 2px solid var(--navy-900);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 18px;
}

.search-shell::before {
  position: absolute;
  z-index: 1;
  top: 23px;
  left: 20px;
  width: 17px;
  height: 17px;
  border: 2px solid var(--navy-900);
  border-radius: 50%;
  content: "";
}

.search-shell::after {
  position: absolute;
  z-index: 1;
  top: 40px;
  left: 36px;
  width: 8px;
  height: 2px;
  background: var(--navy-900);
  content: "";
  transform: rotate(45deg);
}

.search-shell button {
  position: absolute;
  top: 9px;
  right: 9px;
  min-width: 108px;
  min-height: 50px;
  border: 0;
  border-radius: 4px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 16px;
  font-weight: 750;
}

.search-results {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  max-height: 480px;
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.search-results[hidden] {
  display: none;
}

.search-result {
  display: block;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.search-result:last-child {
  border-bottom: 0;
}

.search-result strong {
  display: block;
  color: var(--navy-900);
}

.search-result span {
  color: var(--muted);
  font-size: 14px;
}

.search-empty {
  padding: 24px;
  color: var(--muted);
}

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

.section--tint {
  background: var(--surface);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.25;
}

.section-heading p {
  max-width: 650px;
  margin: 8px 0 0;
  color: var(--muted);
}

.link-arrow {
  white-space: nowrap;
  font-size: 15px;
  font-weight: 700;
}

.regime-grid,
.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.regime-link,
.quick-link {
  position: relative;
  min-height: 190px;
  padding: 30px;
  border-right: 1px solid var(--border);
  color: var(--ink);
  text-decoration: none;
}

.regime-link:last-child,
.quick-link:last-child {
  border-right: 0;
}

.regime-link:hover,
.quick-link:hover {
  background: var(--surface);
}

.regime-link h3,
.quick-link h3 {
  margin: 0 34px 10px 0;
  color: var(--navy-900);
  font-size: 21px;
  line-height: 1.35;
}

.regime-link:first-child h3,
.regime-link:nth-child(3) h3 {
  color: var(--red-700);
}

.regime-link p,
.quick-link p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.regime-link::after,
.quick-link::after {
  position: absolute;
  top: 30px;
  right: 28px;
  color: var(--red-700);
  content: "→";
  font-size: 23px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  counter-reset: steps;
}

.workflow-step {
  position: relative;
  padding: 58px 20px 0 0;
  counter-increment: steps;
}

.workflow-step::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  content: counter(steps);
  font-size: 14px;
  font-weight: 800;
}

.workflow-step::after {
  position: absolute;
  top: 17px;
  right: 0;
  left: 36px;
  height: 1px;
  background: var(--border);
  content: "";
}

.workflow-step:last-child::after {
  display: none;
}

.workflow-step h3 {
  margin: 0 0 8px;
  color: var(--navy-900);
  font-size: 16px;
}

.workflow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.home-lower {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 54px;
}

.ward-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ward-columns a {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  text-decoration: none;
}

.update-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.update-list li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.update-list time {
  color: var(--muted);
  font-size: 14px;
}

.page-header {
  padding: 38px 0 34px;
  border-bottom: 1px solid var(--line);
}

.page-header .page-title {
  font-size: clamp(2rem, 4vw, 2.85rem);
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  margin-top: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--border);
  overflow: hidden;
}

.meta-item {
  flex: 1 1 190px;
  padding: 13px 16px;
  background: var(--white);
}

.meta-item span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.meta-item strong {
  display: block;
  margin-top: 2px;
  color: var(--navy-950);
  font-size: 15px;
}

.article-layout {
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr) 260px;
  align-items: start;
  gap: 42px;
  padding-block: 42px 70px;
}

.article-nav,
.evidence-rail {
  position: sticky;
  top: 104px;
}

.article-nav h2,
.evidence-rail h2 {
  margin: 0 0 14px;
  color: var(--navy-950);
  font-size: 15px;
}

.article-nav ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-nav a {
  display: block;
  padding: 9px 10px;
  border-left: 2px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.article-nav a:hover,
.article-nav a.active {
  border-left-color: var(--red-700);
  background: var(--surface);
  color: var(--navy-900);
}

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

.content-narrow {
  max-width: 900px;
  margin-inline: auto;
  padding-block: 42px 70px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.article-body > :first-child {
  margin-top: 0;
}

.article-body h2 {
  margin: 52px 0 14px;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--navy-100);
  color: var(--navy-950);
  font-size: 1.55rem;
  line-height: 1.35;
}

.article-body h3 {
  margin: 32px 0 10px;
  color: var(--navy-900);
  font-size: 1.17rem;
}

.article-body p,
.article-body ul,
.article-body ol {
  max-width: 75ch;
}

.article-body li + li {
  margin-top: 8px;
}

.article-body table,
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.article-body th,
.article-body td,
.data-table th,
.data-table td {
  padding: 12px 14px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.article-body th,
.data-table th {
  background: var(--surface);
  color: var(--navy-950);
  font-weight: 750;
}

.notice {
  margin: 26px 0;
  padding: 16px 18px;
  border-left: 4px solid var(--navy-800);
  background: var(--navy-100);
}

.notice--risk {
  border-left-color: var(--red-700);
  background: var(--red-100);
}

.notice--warning {
  border-left-color: var(--amber-700);
  background: var(--amber-100);
}

.notice strong {
  color: var(--navy-950);
}

.evidence-box {
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.evidence-box h3 {
  margin: 0 0 10px;
  color: var(--navy-950);
  font-size: 15px;
}

.evidence-box ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
}

.source-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-list li + li {
  margin-top: 12px;
}

.source-list a {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.source-list span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 750;
}

.status::before {
  width: 5px;
  height: 18px;
  background: currentColor;
  content: "";
}

.status--risk {
  color: var(--red-700);
}

.status--warning {
  color: var(--amber-700);
}

.status--good {
  color: var(--green-700);
}

.directory-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 18px;
  margin: 30px 0;
}

.directory-toolbar input,
.directory-toolbar select {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 46px;
  padding: 0 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 700;
}

.filter-button[aria-pressed="true"] {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
}

.directory-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 28px;
}

.ward-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
}

.ward-table tbody tr {
  cursor: pointer;
}

.ward-table tbody tr:hover,
.ward-table tbody tr.is-selected {
  background: #eef4fb;
}

.ward-table tbody tr.is-selected td:first-child {
  box-shadow: inset 4px 0 0 var(--navy-800);
}

.ward-detail {
  position: sticky;
  top: 106px;
  min-height: 380px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.ward-detail h2 {
  margin: 0 0 18px;
  color: var(--navy-950);
}

.detail-group {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.detail-group h3 {
  margin: 0 0 7px;
  color: var(--navy-900);
  font-size: 15px;
}

.detail-group p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.tool-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.tool-panel {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.tool-panel h2 {
  margin: 0 0 18px;
  color: var(--navy-950);
  font-size: 1.35rem;
}

.progress-line {
  display: flex;
  gap: 7px;
  margin: 18px 0 28px;
}

.progress-dot {
  flex: 1;
  height: 5px;
  border-radius: 3px;
  background: var(--line);
}

.progress-dot.is-complete,
.progress-dot.is-current {
  background: var(--navy-900);
}

.question-title {
  margin: 0 0 18px;
  color: var(--navy-950);
  font-size: 1.3rem;
}

.option-list {
  display: grid;
  gap: 10px;
}

.option-label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.option-label:has(input:checked) {
  border-color: var(--navy-800);
  background: #f1f6fc;
}

.tool-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--navy-900);
  border-radius: var(--radius);
  background: var(--navy-900);
  color: var(--white);
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
}

.button:hover {
  background: var(--navy-800);
  color: var(--white);
}

.button--secondary {
  background: var(--white);
  color: var(--navy-900);
}

.button--danger {
  border-color: var(--red-700);
  background: var(--white);
  color: var(--red-700);
}

.result-title {
  margin: 0;
  color: var(--red-700);
  font-size: 1.7rem;
}

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

.result-section h3 {
  margin: 0 0 8px;
  color: var(--navy-950);
  font-size: 16px;
}

.checklist-shell {
  margin-top: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.checklist-group + .checklist-group {
  border-top: 1px solid var(--border);
}

.checklist-group h3 {
  margin: 0;
  padding: 14px 18px;
  background: var(--surface);
  color: var(--navy-950);
  font-size: 16px;
}

.check-row {
  display: grid;
  grid-template-columns: 36px 1fr 150px;
  align-items: start;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
}

.check-row p {
  margin: 0;
}

.check-row small {
  display: block;
  color: var(--muted);
}

.check-row .check-status {
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.check-row input {
  width: 20px;
  height: 20px;
  margin-top: 4px;
  accent-color: var(--navy-900);
}

.source-grid,
.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.source-card,
.topic-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.source-card h2,
.topic-card h2,
.source-card h3,
.topic-card h3 {
  margin: 0 0 10px;
  color: var(--navy-950);
  font-size: 1.2rem;
}

.source-card p,
.topic-card p {
  margin: 0;
  color: var(--muted);
}

.source-card a,
.topic-card a {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
}

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

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}

.footer-inner p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.footer-links a {
  font-size: 14px;
}

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

.noscript {
  padding: 12px 16px;
  border-bottom: 1px solid #e3c577;
  background: var(--amber-100);
  color: #664600;
  text-align: center;
}

.only-mobile {
  display: none;
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .main-nav {
    position: fixed;
    z-index: 120;
    top: 80px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 20px;
    background: var(--white);
    flex-direction: column;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 250px;
  }

  .article-nav {
    display: none;
  }

  .directory-layout {
    grid-template-columns: 1fr;
  }

  .ward-detail {
    position: static;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 68px;
    gap: 10px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand span {
    display: none;
  }

  .header-search-link {
    width: 42px;
    padding: 0;
    font-size: 0;
  }

  .header-search-link::before {
    content: "⌕";
    font-size: 22px;
  }

  .hero {
    padding: 46px 0 38px;
  }

  .search-shell input {
    min-height: 60px;
    padding-right: 90px;
    padding-left: 45px;
    font-size: 15px;
  }

  .search-shell button {
    min-width: 74px;
    min-height: 44px;
  }

  .regime-grid,
  .quick-grid,
  .source-grid,
  .topic-grid,
  .tool-layout,
  .home-lower,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .regime-link,
  .quick-link {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .regime-link:last-child,
  .quick-link:last-child {
    border-bottom: 0;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .workflow-step {
    min-height: 70px;
    padding: 4px 0 0 54px;
  }

  .workflow-step::after {
    top: 36px;
    bottom: -23px;
    left: 17px;
    width: 1px;
    height: auto;
  }

  .ward-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-layout {
    grid-template-columns: 1fr;
    padding-top: 28px;
  }

  .evidence-rail {
    position: static;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }

  .page-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .directory-toolbar {
    grid-template-columns: 1fr;
  }

  .ward-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .ward-table,
  .ward-table tbody,
  .ward-table tr,
  .ward-table td {
    display: block;
    width: 100%;
  }

  .ward-table tr {
    padding: 16px;
    border-bottom: 1px solid var(--border);
  }

  .ward-table td {
    padding: 4px 0;
    border: 0;
  }

  .ward-table td::before {
    display: inline-block;
    min-width: 92px;
    color: var(--muted);
    content: attr(data-label);
    font-size: 13px;
  }

  .check-row {
    grid-template-columns: 32px 1fr;
  }

  .check-row .check-status {
    grid-column: 2;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }

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

  .only-desktop {
    display: none;
  }

  .only-mobile {
    display: block;
  }
}

@media print {
  .site-header,
  .site-footer,
  .breadcrumbs,
  .article-nav,
  .evidence-rail,
  .tool-actions,
  .directory-toolbar,
  .no-print {
    display: none !important;
  }

  body {
    color: #000;
    font-size: 11pt;
  }

  .container,
  .article-layout {
    width: 100%;
    max-width: none;
  }

  .article-layout,
  .tool-layout {
    display: block;
  }

  .tool-panel,
  .checklist-shell,
  .page-meta {
    break-inside: avoid;
    box-shadow: none;
  }

  a {
    color: #000;
    text-decoration: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
