:root {
  color-scheme: light;
  --ink: #181c1d;
  --ink-soft: #32383a;
  --muted: #626a6b;
  --line: #d9ddd8;
  --line-strong: #bcc3bc;
  --paper: #ffffff;
  --canvas: #f2f3ef;
  --canvas-deep: #e8ebe5;
  --charcoal: #1b2022;
  --charcoal-raised: #252b2d;
  --olive: #657150;
  --olive-dark: #49543a;
  --olive-pale: #e8ece1;
  --red: #a64035;
  --red-dark: #7f2f28;
  --red-pale: #f3e5e2;
  --amber: #ad7731;
  --max-width: 1180px;
  --sidebar-width: 260px;
  --radius: 8px;
  --radius-small: 5px;
  --shadow-small: 0 1px 2px rgb(24 28 29 / 8%);
  --shadow-card: 0 8px 24px rgb(24 28 29 / 7%);
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--red-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

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

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

::selection {
  background: var(--olive-dark);
  color: var(--paper);
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: 68px;
  border-bottom: 1px solid #343a3c;
  background: var(--charcoal);
  color: var(--paper);
}

.site-header > .shell {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  flex: 0 1 auto;
  align-items: center;
  gap: 11px;
  color: var(--paper);
  text-decoration: none;
}

.brand:hover {
  color: var(--paper);
}

.brand-mark {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #707778;
  border-radius: var(--radius-small);
  background: #2b3032;
  box-shadow: inset 0 0 0 2px #191d1f;
  color: #f6f6f2;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  z-index: 0;
  background: var(--red);
  content: "";
  opacity: 0.85;
}

.brand-mark::before,
.brand-mark::after {
  display: none;
}

.brand-mark img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-mark::before {
  width: 24px;
  height: 1px;
}

.brand-mark::after {
  width: 1px;
  height: 24px;
}

.brand-mark > * {
  position: relative;
  z-index: 1;
}

.brand-copy {
  display: grid;
  min-width: 0;
  gap: 1px;
  line-height: 1.2;
}

.brand-copy strong,
.brand-copy b {
  overflow: hidden;
  font-size: 15px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy small {
  overflow: hidden;
  color: #b9c0c1;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav {
  display: flex;
  min-width: 0;
  flex: 0 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 4px 6px;
}

.nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 7px 9px;
  border-radius: var(--radius-small);
  color: #d7dcdd;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: #303638;
  color: var(--paper);
}

.nav a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--red);
}

.hero,
.page-hero {
  border-bottom: 1px solid #323a38;
  background: #111719;
  color: var(--paper);
}

.hero > .shell {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  align-items: center;
  gap: clamp(40px, 6vw, 76px);
  min-height: 520px;
  padding-block: 64px 76px;
}

.hero-copy {
  min-width: 0;
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #dca35b;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(42px, 6vw, 70px);
  font-weight: 820;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow),
.page-hero p {
  max-width: 680px;
  margin: 24px 0 0;
  color: #cbd1d1;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  background: var(--red);
  color: var(--paper);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--red-dark);
  color: var(--paper);
  transform: translateY(-1px);
}

.button.secondary,
.button[data-variant="secondary"] {
  border-color: #60686a;
  background: #292f31;
  color: var(--paper);
}

.button.secondary:hover,
.button[data-variant="secondary"]:hover {
  border-color: #899091;
  background: #353c3e;
}

.hero-media {
  min-width: 0;
}

.hero-media > img,
.hero-media > picture,
.hero-media > figure,
.hero-media .media-frame {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid #424a4c;
  border-radius: var(--radius);
  background: #242a2c;
  box-shadow: 0 24px 60px rgb(0 0 0 / 24%);
}

.hero-media > picture img,
.hero-media > figure img,
.hero-media .media-frame img,
.hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media > figure {
  margin: 0;
}

.snapshot {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 16px;
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid #3c4547;
  border-radius: var(--radius);
  background: var(--charcoal-raised);
  box-shadow: var(--shadow-small);
}

.snapshot > * {
  min-width: 0;
  margin: 0;
}

.snapshot small,
.snapshot .label {
  color: #aeb6b7;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.snapshot strong,
.snapshot .value {
  color: var(--paper);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.status-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(calc(100% - 40px), var(--max-width));
  margin: -34px auto 0;
  overflow: hidden;
  border: 1px solid #343b3d;
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: 0 16px 36px rgb(16 20 21 / 18%);
  color: var(--paper);
}

.status-strip > * {
  min-width: 0;
  padding: 17px 18px;
  border-right: 1px solid #343b3d;
}

.status-strip > *:last-child {
  border-right: 0;
}

.status-strip small,
.status-strip .label {
  display: block;
  margin-bottom: 5px;
  color: #aeb6b7;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.3;
  text-transform: uppercase;
}

.status-strip strong,
.status-strip .value {
  display: block;
  color: var(--paper);
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.main-grid {
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
  align-items: start;
  gap: 48px;
  padding-block: 72px 96px;
}

.sidebar,
.content {
  min-width: 0;
}

.sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 18px;
}

.toc {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-small);
}

.toc h2,
.toc h3,
.toc > strong {
  display: block;
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.toc li + li {
  border-top: 1px solid #eceeea;
}

.toc a {
  display: block;
  padding: 9px 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}

.toc a:hover,
.toc a[aria-current="true"] {
  color: var(--red-dark);
}

.content {
  max-width: 852px;
}

.section {
  scroll-margin-top: 94px;
}

.section + .section {
  margin-top: 72px;
  padding-top: 64px;
  border-top: 1px solid var(--line);
}

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

.section h2 {
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.section h3 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 760;
  line-height: 1.25;
}

.section h4 {
  margin: 26px 0 8px;
  font-size: 17px;
  line-height: 1.35;
}

.section p,
.section li {
  color: var(--ink-soft);
}

.section p {
  max-width: 76ch;
  margin: 0 0 18px;
}

.section ul:not(.checklist),
.section ol:not(.checklist) {
  max-width: 74ch;
  margin: 0 0 22px;
  padding-left: 24px;
}

.section li + li {
  margin-top: 7px;
}

.section img:not(.icon) {
  width: 100%;
  max-height: 560px;
  margin-block: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--canvas-deep);
  object-fit: cover;
}

.card-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.guide-card {
  display: flex;
  min-width: 0;
  min-height: 190px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-small);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.guide-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-card);
  color: var(--ink);
  transform: translateY(-2px);
}

.guide-card > img,
.guide-card > picture {
  width: calc(100% + 44px);
  aspect-ratio: 16 / 9;
  margin: -22px -22px 18px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--canvas-deep);
}

.guide-card > picture img,
.guide-card > img {
  width: calc(100% + 44px);
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.guide-card > picture img {
  width: 100%;
  height: 100%;
}

.guide-card small,
.guide-card .eyebrow {
  margin: 0 0 8px;
  color: var(--red-dark);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.guide-card h3,
.guide-card h4,
.guide-card strong {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 780;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.guide-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.guide-card .meta {
  margin-top: auto;
  padding-top: 18px;
  color: var(--olive-dark);
  font-size: 12px;
  font-weight: 750;
}

.answer-box,
.callout {
  margin-block: 24px;
  padding: 22px 24px;
  border: 1px solid var(--line-strong);
  border-left: 4px solid var(--olive);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-small);
}

.answer-box {
  border-left-color: var(--red);
}

.answer-box > :first-child,
.callout > :first-child {
  margin-top: 0;
}

.answer-box > :last-child,
.callout > :last-child {
  margin-bottom: 0;
}

.answer-box h2,
.answer-box h3,
.callout h2,
.callout h3 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.25;
}

.answer-box p,
.callout p {
  margin: 0;
}

.callout.warning,
.callout[data-type="warning"] {
  border-left-color: var(--amber);
  background: #fffaf1;
}

.callout.danger,
.callout[data-type="danger"] {
  border-left-color: var(--red);
  background: var(--red-pale);
}

.table-wrap {
  width: 100%;
  margin-block: 24px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-small);
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.data-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.45;
}

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

.data-table th {
  background: #e9ece7;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.data-table td {
  color: var(--ink-soft);
}

.data-table tbody tr:last-child td {
  border-bottom: 0;
}

.data-table tbody tr:nth-child(even) td {
  background: #fafbf8;
}

.data-table code {
  font-family: var(--font-mono);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.checklist {
  display: grid;
  max-width: 760px;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  min-height: 44px;
  margin: 0;
  padding: 11px 14px 11px 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--paper);
}

.checklist li::before {
  position: absolute;
  top: 13px;
  left: 15px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid var(--olive);
  border-radius: 50%;
  color: var(--olive-dark);
  content: "\2713";
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.page-hero > .shell {
  padding-block: 44px 50px;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.02;
}

.page-hero p {
  font-size: 17px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 9px;
  margin-bottom: 20px;
  color: #aeb6b7;
  font-size: 12px;
  line-height: 1.4;
}

.breadcrumbs a {
  color: #d7dcdd;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--paper);
}

.breadcrumbs > * {
  min-width: 0;
  overflow-wrap: anywhere;
}

.breadcrumbs > * + *::before {
  margin-right: 9px;
  color: #737c7e;
  content: "/";
}

.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-grid .guide-card {
  min-height: 170px;
  padding: 18px;
}

.site-footer {
  border-top: 1px solid #32383a;
  background: var(--charcoal);
  color: #bec5c6;
}

.site-footer > .shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 36px;
  padding-block: 38px 44px;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--paper);
  font-size: 14px;
}

.site-footer p {
  max-width: 720px;
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

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

.footer-links a {
  color: #d7dcdd;
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1040px) {
  .site-header > .shell {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-block: 11px 12px;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .nav a {
    min-height: 34px;
    padding: 6px 8px;
  }

  .hero > .shell {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
    gap: 36px;
    min-height: auto;
  }

  .main-grid {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 32px;
  }

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

@media (max-width: 820px) {
  html {
    scroll-padding-top: 16px;
  }

  .site-header {
    position: relative;
  }

  .hero > .shell {
    grid-template-columns: 1fr;
    padding-block: 48px 62px;
  }

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

  .hero-media {
    width: min(100%, 640px);
  }

  .status-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .status-strip > *:nth-child(2) {
    border-right: 0;
  }

  .status-strip > *:nth-child(-n + 2) {
    border-bottom: 1px solid #343b3d;
  }

  .main-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 52px 72px;
  }

  .sidebar {
    position: static;
  }

  .toc {
    padding: 16px 18px;
  }

  .toc ul {
    columns: 2;
    column-gap: 28px;
  }

  .toc li {
    break-inside: avoid;
  }

  .content {
    max-width: none;
  }

  .section + .section {
    margin-top: 56px;
    padding-top: 48px;
  }
}

@media (max-width: 600px) {
  .shell,
  .status-strip {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .site-header > .shell {
    width: 100%;
    padding-inline: 14px;
  }

  .brand {
    width: 100%;
  }

  .brand-copy {
    max-width: calc(100% - 52px);
  }

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

  .nav a:nth-child(3),
  .nav a:nth-child(4),
  .nav a:nth-child(5),
  .nav a:nth-child(6) {
    display: none;
  }

  .nav a {
    justify-content: center;
    padding-inline: 5px;
    white-space: normal;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 38px;
    line-height: 1.02;
  }

  .hero-copy > p:not(.eyebrow),
  .page-hero p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero > .shell {
    gap: 32px;
    padding-block: 40px 56px;
  }

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

  .status-strip {
    grid-template-columns: 1fr;
    margin-top: -24px;
  }

  .status-strip > * {
    border-right: 0;
    border-bottom: 1px solid #343b3d;
  }

  .status-strip > *:last-child {
    border-bottom: 0;
  }

  .main-grid {
    padding-block: 44px 64px;
  }

  .toc ul {
    columns: 1;
  }

  .section h2 {
    font-size: 29px;
  }

  .section h3 {
    font-size: 20px;
  }

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

  .guide-card {
    min-height: 0;
  }

  .answer-box,
  .callout {
    padding: 18px;
  }

  .table-wrap {
    width: calc(100vw - 28px);
    max-width: 100%;
  }

  .page-hero > .shell {
    padding-block: 32px 38px;
  }

  .site-footer > .shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  :root {
    color-scheme: light;
  }

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

  .site-header,
  .hero-actions,
  .sidebar,
  .site-footer {
    display: none !important;
  }

  .shell,
  .status-strip {
    width: 100%;
    max-width: none;
  }

  .hero,
  .page-hero {
    border-bottom: 1px solid #999;
    background: #fff;
    color: #000;
  }

  .hero > .shell {
    display: block;
    min-height: 0;
    padding-block: 24px;
  }

  .hero h1,
  .page-hero h1,
  .hero-copy > p:not(.eyebrow),
  .page-hero p,
  .eyebrow {
    color: #000;
  }

  .hero-media {
    max-width: 520px;
    margin-top: 20px;
  }

  .status-strip {
    margin: 0;
    border-color: #999;
    background: #fff;
    box-shadow: none;
    color: #000;
  }

  .status-strip small,
  .status-strip .label,
  .status-strip strong,
  .status-strip .value {
    color: #000;
  }

  .main-grid {
    display: block;
    padding-block: 24px;
  }

  .content {
    max-width: none;
  }

  .guide-card,
  .answer-box,
  .callout,
  .table-wrap {
    break-inside: avoid;
    box-shadow: none;
  }

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

  a[href^="http"]::after {
    color: #555;
    content: " (" attr(href) ")";
    font-size: 9pt;
    overflow-wrap: anywhere;
  }
}


/* depth-pass-2026-08-03 */
.answer-next,.editor-note,.source-line{margin-top:16px;padding:14px 16px;border-left:3px solid var(--accent);background:rgba(176,62,50,.06);color:var(--muted)}
.answer-next strong,.editor-note strong{color:var(--text)}
.update-brief{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(260px,.65fr);gap:24px;padding:26px;border:1px solid var(--line);background:var(--surface)}
.fact-list{margin:0;display:grid;border:1px solid var(--line)}
.fact-list div{padding:12px 14px;border-bottom:1px solid var(--line)}
.fact-list div:last-child{border-bottom:0}.fact-list dt{font-size:.72rem;font-weight:800;text-transform:uppercase;color:var(--muted)}.fact-list dd{margin:4px 0 0;font-weight:700}
.text-link{align-self:end;font-weight:800;color:var(--accent)}
.step-grid,.platform-grid,.note-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin:20px 0}
.step-grid article,.platform-grid article,.note-grid article{min-height:132px;padding:18px;border:1px solid var(--line);background:var(--surface)}
.step-grid span,.note-grid span{display:block;margin-bottom:10px;font-size:.76rem;font-weight:900;color:var(--accent)}
.step-grid h3,.platform-grid h3,.note-grid h3{margin:0 0 8px;font-size:1rem}.step-grid p,.platform-grid p,.note-grid p{margin:0;color:var(--muted)}
.note-grid{grid-template-columns:repeat(5,minmax(0,1fr))}.note-grid article{min-height:154px}.note-grid span{font-size:1.2rem}
.status-table{display:grid;margin:20px 0;border:1px solid var(--line)}.status-table div{display:grid;grid-template-columns:190px 1fr;gap:18px;padding:15px 16px;border-bottom:1px solid var(--line)}.status-table div:last-child{border-bottom:0}.status-table span{color:var(--muted)}
@media (max-width:900px){.update-brief{grid-template-columns:1fr}.note-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.status-table div{grid-template-columns:1fr;gap:5px}}
@media (max-width:560px){.step-grid,.platform-grid,.note-grid{grid-template-columns:1fr}.step-grid article,.platform-grid article,.note-grid article{min-height:0}.update-brief{padding:18px}}
