:root {
  color-scheme: dark;
  --ink: #17201d;
  --ink-soft: #4a5550;
  --night: #0a100e;
  --night-2: #101916;
  --night-3: #18231f;
  --paper: #eee7d7;
  --paper-deep: #e2d7c2;
  --paper-line: #cfc2a8;
  --gold: #d3ad61;
  --gold-bright: #ecd28d;
  --sage: #8aac91;
  --sage-bright: #b8d5bd;
  --rust: #c27b59;
  --blue: #86aeb5;
  --white: #f8f3e7;
  --muted: #a7b2ac;
  --line-dark: rgba(236, 210, 141, 0.2);
  --shadow: 0 24px 70px rgba(3, 8, 6, 0.24);
  --radius: 4px;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --shell: 74rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
  background: var(--night);
}

body {
  margin: 0;
  min-width: 20rem;
  background: var(--night);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--gold-bright);
}

button,
a,
summary,
[tabindex] {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

::selection {
  background: var(--gold);
  color: var(--night);
}

h1,
h2,
h3,
p,
ul,
ol,
dl {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.5rem, 9vw, 7.8rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 5vw, 4.3rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: clamp(1.25rem, 2.1vw, 1.65rem);
  letter-spacing: -0.018em;
}

p:last-child,
ul:last-child,
ol:last-child,
dl:last-child {
  margin-bottom: 0;
}

.shell {
  width: min(calc(100% - 2.5rem), var(--shell));
  margin-inline: auto;
}

.narrow {
  max-width: 52rem;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  border: 2px solid var(--gold-bright);
  background: var(--night);
  color: var(--white);
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgba(236, 210, 141, 0.18);
  background: rgba(10, 16, 14, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--white);
  text-decoration: none;
}

.wordmark:hover {
  color: var(--white);
}

.wordmark__seal {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  transform: rotate(-3deg);
  border: 1px solid var(--gold);
  background:
    linear-gradient(135deg, rgba(211, 173, 97, 0.16), transparent 55%),
    var(--night-3);
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 3px var(--night-3), inset 0 0 0 4px rgba(211, 173, 97, 0.28);
}

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

.wordmark strong {
  font-family: var(--font-display);
  font-size: 1.16rem;
  letter-spacing: 0.025em;
}

.wordmark small {
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.075em;
  line-height: 1.2;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
}

.primary-nav a {
  position: relative;
  padding-block: 1.75rem;
  color: #d9ddd8;
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.045em;
  text-decoration: none;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1.1rem;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  content: "";
  transition: transform 160ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--gold-bright);
}

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

.breadcrumbs {
  width: min(calc(100% - 2.5rem), var(--shell));
  margin: 1.25rem auto -0.25rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

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

.breadcrumbs li + li::before {
  margin-inline: 0.6rem;
  color: var(--gold);
  content: "/";
}

.breadcrumbs a {
  color: var(--sage-bright);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 72% 30%, rgba(74, 112, 83, 0.28), transparent 26rem),
    radial-gradient(circle at 18% 0%, rgba(211, 173, 97, 0.08), transparent 30rem),
    linear-gradient(145deg, var(--night) 15%, #111b17 70%, #0b1411);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(211, 173, 97, 0.13);
  content: "";
  pointer-events: none;
}

.hero::before {
  top: -13rem;
  right: -9rem;
  width: 38rem;
  height: 38rem;
  transform: rotate(26deg);
}

.hero::after {
  bottom: -25rem;
  left: -17rem;
  width: 40rem;
  height: 40rem;
  transform: rotate(45deg);
}

.hero__grid {
  display: grid;
  min-height: min(49rem, calc(100svh - 5rem));
  padding-block: clamp(4.5rem, 9vw, 8rem);
  align-items: center;
  grid-template-columns: minmax(0, 1.7fr) minmax(18rem, 0.7fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.35rem;
}

.eyebrow span,
.kicker {
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(236, 210, 141, 0.35);
}

.eyebrow span + span {
  border-color: rgba(184, 213, 189, 0.35);
  color: var(--sage-bright);
}

.hero h1 {
  max-width: 9ch;
  margin-bottom: 1.4rem;
  color: var(--white);
}

.hero__lede {
  max-width: 47rem;
  margin-bottom: 2rem;
  color: #c7d0ca;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.7;
}

.hero__lede strong {
  color: var(--white);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.4rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  padding: 0.76rem 1.15rem;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.045em;
  text-align: center;
  text-decoration: none;
}

.button--primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #15150f;
  box-shadow: 5px 5px 0 rgba(211, 173, 97, 0.15);
}

.button--primary:hover {
  background: var(--gold-bright);
  color: var(--night);
}

.source-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.28rem;
  color: currentColor;
  font-size: 0.82rem;
  font-weight: 760;
}

.source-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.8rem;
}

.source-links .source-link {
  min-height: 2.2rem;
}

.external-mark {
  font-size: 0.92em;
  text-decoration: none;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.3rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.hero__meta strong {
  color: #d9ddd8;
}

.release-panel {
  position: relative;
  padding: 2rem;
  border: 1px solid rgba(236, 210, 141, 0.34);
  background:
    linear-gradient(rgba(211, 173, 97, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(211, 173, 97, 0.05) 1px, transparent 1px),
    rgba(9, 15, 13, 0.82);
  background-size: 1.5rem 1.5rem;
  box-shadow: var(--shadow);
}

.release-panel::before {
  position: absolute;
  inset: 0.55rem;
  border: 1px solid rgba(211, 173, 97, 0.12);
  content: "";
  pointer-events: none;
}

.release-panel img {
  width: 7.5rem;
  margin: -5.5rem auto 1.2rem;
  filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.35));
}

.release-panel__label,
.release-panel__time {
  margin-bottom: 0.55rem;
  color: var(--sage-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.release-panel__date {
  display: grid;
  margin-bottom: 0.55rem;
  place-items: center;
  color: var(--gold-bright);
  line-height: 0.88;
}

.release-panel__date strong {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 500;
}

.release-panel__date span {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.3em;
}

.release-panel hr {
  margin-block: 1.4rem;
  border: 0;
  border-top: 1px solid var(--line-dark);
}

.release-panel > p:not([class]) {
  margin-bottom: 0.8rem;
  text-align: center;
}

.microcopy {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.section {
  position: relative;
  padding-block: clamp(4.5rem, 8vw, 7.8rem);
}

.section--paper {
  color-scheme: light;
  border-block: 1px solid var(--paper-line);
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 255, 255, 0.45), transparent 24rem),
    linear-gradient(90deg, transparent 49.9%, rgba(111, 94, 62, 0.035) 50%, transparent 50.1%),
    var(--paper);
  color: var(--ink);
}

.section--tinted {
  color-scheme: light;
  border-block: 1px solid #bfcbbd;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent 35%),
    #d9e0d4;
  color: var(--ink);
}

.section--dark {
  border-block: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 95% 0%, rgba(74, 112, 83, 0.22), transparent 30rem),
    linear-gradient(145deg, #101916, #0b120f 62%);
  color: var(--white);
}

.section-heading {
  max-width: 45rem;
  margin-bottom: 2.5rem;
}

.section-heading--wide {
  max-width: 57rem;
}

.section-heading .kicker {
  margin-bottom: 0.8rem;
}

.section--paper .kicker,
.section--tinted .kicker,
.trust-hero + .section .kicker {
  color: #6f5420;
}

.section-heading > p:not(.kicker) {
  max-width: 48rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.section--dark .section-heading > p:not(.kicker),
.section:not(.section--paper):not(.section--tinted) .section-heading > p:not(.kicker) {
  color: var(--muted);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(15rem, 0.78fr) minmax(0, 1.52fr);
  gap: clamp(3rem, 9vw, 8rem);
}

.sticky-heading {
  align-self: start;
}

@media (min-width: 61rem) {
  .sticky-heading {
    position: sticky;
    top: 8rem;
  }
}

.prose {
  font-size: 1.03rem;
}

.prose > p,
.prose > ul,
.prose > ol {
  margin-bottom: 1.25rem;
}

.prose > p:first-child {
  font-size: 1.17rem;
}

.prose h2 {
  margin-top: 3.4rem;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 2rem;
}

.prose a,
.section--paper .source-link,
.section--tinted .source-link {
  color: #315c4c;
}

.prose a:hover,
.section--paper .source-link:hover,
.section--tinted .source-link:hover {
  color: #714717;
}

.callout {
  margin-top: 2rem;
  padding: 1.45rem 1.55rem;
  border-left: 4px solid var(--sage);
  background: #e9e3d5;
  color: var(--ink);
  box-shadow: 0 15px 35px rgba(25, 39, 31, 0.07);
}

.callout > strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #29473c;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.callout p {
  margin-bottom: 0.3rem;
}

.callout--warning {
  border-left-color: var(--rust);
  background: #f1e2d4;
}

.callout--warning > strong {
  color: #713d2c;
}

.answer-grid {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--paper-line);
  border-left: 1px solid var(--paper-line);
}

.answer-grid > div {
  min-height: 9.5rem;
  padding: 1.25rem;
  border-right: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  background: rgba(255, 255, 255, 0.24);
}

.answer-grid dt {
  margin-bottom: 0.65rem;
  color: #6f5420;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.answer-grid dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.35;
}

.answer-grid .status {
  margin-bottom: 0.55rem;
}

.source-note {
  margin-top: 1.25rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.section:not(.section--paper):not(.section--tinted) .source-note {
  color: var(--muted);
}

.toc {
  display: grid;
  padding-block: 2.6rem;
  grid-template-columns: 13rem 1fr;
  gap: 2rem;
  border-bottom: 1px solid var(--line-dark);
}

.toc > div p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.toc ol {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem 1.4rem;
  list-style: none;
}

.toc a {
  display: flex;
  min-height: 2.75rem;
  align-items: baseline;
  gap: 0.48rem;
  color: #dce2dd;
  font-size: 0.75rem;
  font-weight: 740;
  line-height: 1.35;
  text-decoration: none;
}

.toc a:hover {
  color: var(--gold-bright);
}

.toc a span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.8rem;
}

.status {
  display: inline-flex;
  min-height: 2.1rem;
  padding: 0.35rem 0.65rem;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid currentColor;
  color: inherit;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-transform: uppercase;
}

.status--compact {
  min-height: 1.85rem;
  padding: 0.25rem 0.48rem;
  font-size: 0.61rem;
}

.status__dot {
  width: 0.42rem;
  height: 0.42rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.status--official {
  color: #28614b;
}

.section--dark .status--official,
.section:not(.section--paper):not(.section--tinted) .status--official,
.hero .status--official,
.site-footer .status--official {
  color: #9dd8b3;
}

.status--partial {
  color: #715317;
}

.section--dark .status--partial,
.section:not(.section--paper):not(.section--tinted) .status--partial,
.hero .status--partial,
.site-footer .status--partial {
  color: #e9c573;
}

.status--unknown {
  color: #7a4c37;
}

.section--dark .status--unknown,
.section:not(.section--paper):not(.section--tinted) .status--unknown,
.hero .status--unknown,
.site-footer .status--unknown {
  color: #e4a583;
}

.status--speculation {
  color: #485c76;
}

.section--dark .status--speculation,
.section:not(.section--paper):not(.section--tinted) .status--speculation,
.hero .status--speculation,
.site-footer .status--speculation {
  color: #acc6eb;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid rgba(77, 94, 82, 0.34);
  background: #e8e3d7;
  box-shadow: 0 20px 50px rgba(18, 36, 27, 0.09);
  overscroll-behavior-inline: contain;
}

table {
  width: 100%;
  min-width: 50rem;
  border-collapse: collapse;
  color: var(--ink);
  font-size: 0.91rem;
}

caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

th,
td {
  padding: 1rem 1.1rem;
  border-right: 1px solid rgba(77, 94, 82, 0.19);
  border-bottom: 1px solid rgba(77, 94, 82, 0.25);
  text-align: left;
  vertical-align: top;
}

thead th {
  background: #26362f;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

tbody th {
  width: 16%;
  color: #27483c;
  font-weight: 800;
}

tbody tr:nth-child(even) {
  background: #f6f1e7;
}

.section:not(.section--paper):not(.section--tinted) .table-scroll .status--official {
  color: #28614b;
}

.section:not(.section--paper):not(.section--tinted) .table-scroll .status--partial {
  color: #715317;
}

.section:not(.section--paper):not(.section--tinted) .table-scroll .status--unknown {
  color: #7a4c37;
}

.section:not(.section--paper):not(.section--tinted) .table-scroll .status--speculation {
  color: #485c76;
}

tbody tr:last-child > * {
  border-bottom: 0;
}

tr > *:last-child {
  border-right: 0;
}

.steps {
  margin: 0 0 2.4rem;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.steps li {
  display: grid;
  padding-block: 1.25rem;
  grid-template-columns: 3.3rem 1fr;
  gap: 1.1rem;
  border-top: 1px solid rgba(184, 213, 189, 0.18);
}

.steps li:last-child {
  border-bottom: 1px solid rgba(184, 213, 189, 0.18);
}

.steps li > span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.steps h3 {
  margin-bottom: 0.35rem;
  color: var(--white);
}

.steps p {
  margin: 0;
  color: #b8c2bc;
}

.access-grid {
  display: grid;
  margin-bottom: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(184, 213, 189, 0.22);
  background: rgba(184, 213, 189, 0.22);
}

.access-grid article {
  padding: 1.25rem;
  background: var(--night-2);
}

.access-grid h3 {
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
}

.access-grid p {
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.fact-card {
  display: flex;
  min-height: 18rem;
  padding: 1.45rem;
  flex-direction: column;
  border: 1px solid rgba(211, 173, 97, 0.2);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.fact-card__top {
  display: flex;
  margin-bottom: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.fact-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.fact-card > p {
  color: #b9c4be;
  font-size: 0.91rem;
}

.fact-card__sources {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(211, 173, 97, 0.12);
}

.legend-wrap {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid rgba(211, 173, 97, 0.2);
  background: rgba(0, 0, 0, 0.14);
}

.legend-wrap > h3 {
  margin-bottom: 1rem;
}

.legend-wrap > p {
  margin: 1rem 0 0;
  font-size: 0.85rem;
}

.status-legend {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.legend-item {
  padding: 1rem;
  border: 1px solid rgba(127, 143, 132, 0.24);
}

.legend-item p {
  margin: 0.6rem 0 0;
  color: inherit;
  font-size: 0.78rem;
  opacity: 0.78;
}

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

.highlight-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border: 1px solid var(--paper-line);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 35px rgba(38, 31, 18, 0.07);
}

.highlight-card__code {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 1.1rem;
  place-items: center;
  transform: rotate(-2deg);
  border: 1px solid #897041;
  background: #26362f;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 4px #26362f, inset 0 0 0 5px rgba(236, 210, 141, 0.3);
}

.highlight-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.7rem;
}

.highlight-card dl {
  margin-block: 1.2rem;
}

.highlight-card dl > div {
  padding-block: 0.85rem;
  border-top: 1px solid var(--paper-line);
}

.highlight-card dt {
  color: #6f5420;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.highlight-card dd {
  margin: 0.35rem 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.preview-stack {
  border-top: 1px solid rgba(54, 75, 63, 0.3);
}

.preview-stack article {
  display: grid;
  padding-block: 1.5rem;
  grid-template-columns: 3.2rem 1fr;
  gap: 1rem;
  border-bottom: 1px solid rgba(54, 75, 63, 0.3);
}

.preview-stack article > span {
  color: #795f2d;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.preview-stack h3 {
  margin-bottom: 0.7rem;
}

.preview-stack p {
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
  font-size: 0.91rem;
}

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

.update-list::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12.7rem;
  width: 1px;
  background: rgba(184, 213, 189, 0.2);
  content: "";
}

.update-list li {
  position: relative;
  display: grid;
  padding-block: 1.7rem;
  grid-template-columns: 11rem minmax(0, 1fr);
  gap: 3.5rem;
  border-top: 1px solid rgba(184, 213, 189, 0.16);
}

.update-list li::before {
  position: absolute;
  top: 2rem;
  left: 12.35rem;
  width: 0.75rem;
  height: 0.75rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--night);
  content: "";
}

.update-list__date span,
.update-list__region {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.update-list__date time {
  color: #d7ddd8;
  font-size: 0.86rem;
}

.update-list__body h3 {
  margin-bottom: 0.45rem;
}

.update-list__body > p:not(.update-list__region) {
  max-width: 48rem;
  margin-bottom: 0.4rem;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-item {
  border-bottom: 1px solid var(--line-dark);
}

.faq-item summary {
  display: grid;
  min-height: 4.8rem;
  padding: 1rem 3rem 1rem 0;
  align-items: center;
  grid-template-columns: 2.7rem 1fr;
  gap: 0.8rem;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  right: 0.5rem;
  color: var(--gold);
  content: "+";
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.86rem;
}

.faq-item summary strong {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
}

.faq-item__answer {
  padding: 0 1rem 1.5rem 3.5rem;
}

.faq-item__answer > p {
  color: #b8c2bc;
}

.faq-item__answer > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1rem;
}

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

.source-grid article {
  display: flex;
  min-height: 18rem;
  padding: 1.35rem;
  flex-direction: column;
  border: 1px solid var(--paper-line);
  background: rgba(255, 255, 255, 0.25);
}

.source-grid__publisher {
  margin-bottom: 0.55rem;
  color: #6f5420;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.source-grid h3 {
  margin-bottom: 1rem;
  font-size: 1.28rem;
}

.source-grid dl {
  margin: 0 0 1rem;
}

.source-grid dl div {
  display: flex;
  padding-block: 0.35rem;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(102, 84, 51, 0.15);
  font-size: 0.75rem;
}

.source-grid dt {
  color: var(--ink-soft);
}

.source-grid dd {
  margin: 0;
  text-align: right;
}

.source-grid .source-link {
  margin-top: auto;
}

.verification-note {
  display: grid;
  margin-top: 1.5rem;
  padding: 1.4rem;
  grid-template-columns: auto 1fr;
  gap: 1.3rem;
  border: 1px solid #b8934a;
  background: #eadab8;
}

.verification-note h3 {
  margin-bottom: 0.35rem;
}

.verification-note p {
  margin: 0;
  color: var(--ink-soft);
}

.trust-hero {
  padding-block: clamp(5rem, 10vw, 9rem);
  background:
    linear-gradient(90deg, rgba(211, 173, 97, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(211, 173, 97, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 70% 20%, rgba(75, 112, 85, 0.25), transparent 30rem),
    var(--night);
  background-size: 3rem 3rem, 3rem 3rem, auto, auto;
}

.trust-hero h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 8vw, 6.4rem);
}

.trust-hero__lede {
  max-width: 48rem;
  color: #c3cdc7;
  font-size: clamp(1.1rem, 2.1vw, 1.35rem);
}

.page-stamp {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.trust-prose {
  font-size: 1.04rem;
}

.trust-prose h2 {
  padding-top: 0.4rem;
  border-top: 1px solid var(--paper-line);
}

.trust-prose li {
  margin-bottom: 0.55rem;
  padding-left: 0.35rem;
}

.trust-prose .status-legend {
  margin-bottom: 1.25rem;
}

.not-found {
  display: grid;
  min-height: 70vh;
  padding-block: 6rem;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.not-found__code {
  margin-bottom: -3.5rem;
  color: rgba(211, 173, 97, 0.08);
  font-family: var(--font-display);
  font-size: clamp(9rem, 28vw, 22rem);
  font-weight: 700;
  line-height: 0.72;
}

.not-found h1 {
  margin-bottom: 1rem;
  font-size: clamp(3rem, 8vw, 6rem);
}

.not-found p:not(.not-found__code):not(.kicker) {
  max-width: 36rem;
  margin-inline: auto;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line-dark);
  background: #070c0a;
  color: var(--white);
}

.footer-grid {
  display: grid;
  padding-block: 3.5rem;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  gap: 3rem;
}

.wordmark--footer {
  margin-bottom: 1.1rem;
}

.footer-note {
  max-width: 29rem;
  color: var(--muted);
  font-size: 0.83rem;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.72rem;
}

.site-footer nav a {
  color: #d4dbd6;
  font-size: 0.82rem;
}

.footer-meta {
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-meta strong {
  color: #d4dbd6;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal {
  padding-block: 1.2rem;
  border-top: 1px solid rgba(184, 213, 189, 0.12);
  color: #77827c;
  font-size: 0.7rem;
}

@media (max-width: 65rem) {
  .hero__grid {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.58fr);
    gap: 3rem;
  }

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

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

  .highlight-card {
    display: grid;
    grid-template-columns: 5rem 1fr;
    gap: 0 1.3rem;
  }

  .highlight-card > *:not(.highlight-card__code) {
    grid-column: 2;
  }

  .highlight-card__code {
    grid-row: 1 / span 5;
  }

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

@media (max-width: 52rem) {
  html {
    scroll-padding-top: 8.5rem;
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: auto;
    padding-block: 0.85rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .primary-nav {
    width: 100%;
    padding-bottom: 0.15rem;
    gap: 0.1rem;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .primary-nav::-webkit-scrollbar {
    display: none;
  }

  .primary-nav a {
    min-height: 2.75rem;
    padding: 0.72rem 0.6rem;
    flex: 0 0 auto;
    font-size: 0.8rem;
  }

  .primary-nav a::after {
    bottom: 0.3rem;
  }

  .hero__grid {
    padding-block: 5.5rem 4rem;
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .release-panel {
    width: min(100%, 25rem);
    margin: 2rem auto 0;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

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

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

  .fact-card,
  .source-grid article {
    min-height: 0;
  }

  .status-legend {
    grid-template-columns: 1fr;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 39rem) {
  .shell,
  .breadcrumbs {
    width: min(calc(100% - 1.5rem), var(--shell));
  }

  h1 {
    font-size: clamp(3.15rem, 17vw, 5.1rem);
  }

  h2 {
    font-size: clamp(2.15rem, 12vw, 3.25rem);
  }

  .section {
    padding-block: 4rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .source-link {
    justify-content: center;
  }

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

  .answer-grid > div {
    min-height: 0;
  }

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

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

  .fact-card__top {
    flex-direction: column;
  }

  .highlight-card {
    display: block;
  }

  .highlight-card > *:not(.highlight-card__code) {
    grid-column: auto;
  }

  .update-list::before {
    left: 0.38rem;
  }

  .update-list li {
    padding-left: 2rem;
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .update-list li::before {
    top: 2.1rem;
    left: 0;
  }

  .faq-item summary {
    min-height: 4.4rem;
    grid-template-columns: 2rem 1fr;
  }

  .faq-item__answer {
    padding-left: 2.8rem;
  }

  .verification-note {
    grid-template-columns: 1fr;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::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,
  .section,
  .hero,
  .section--dark,
  .section--paper,
  .section--tinted {
    background: #fff !important;
    color: #111 !important;
  }

  .site-header,
  .site-footer,
  .hero__actions,
  .toc {
    display: none;
  }

  a {
    color: #111 !important;
  }

  .table-scroll {
    overflow: visible;
  }
}
