:root {
  --color-bg: #ffffff;
  --color-raise: #f5f6f7;
  --color-text: #15171c;
  --color-muted: #565c66;
  --color-accent: #1a4fa0;
  --color-accent-deep: #143c78;
  --color-border: #dcdfe3;
  --font-head: Georgia, "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-mark: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --container: 1200px;
  --radius: 0px;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }

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

:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 700; letter-spacing: -0.01em; margin: 0 0 14px; line-height: 1.18; }
h1 { font-size: clamp(2rem, 5.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 15px; }

.nx-wrap { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

.nx-skip { position: absolute; left: -9999px; top: 0; background: var(--color-accent); color: #ffffff; padding: 10px 16px; z-index: 40; }
.nx-skip:focus { left: 0; color: #ffffff; }

.nx-head { padding: 22px 0 0; text-align: center; }
.nx-head__logo {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--color-text);
  text-decoration: none;
  display: inline-block;
}
.nx-head__tag {
  font-family: var(--font-mark);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-muted);
  margin: 6px 0 12px;
}
.nx-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.nx-nav li + li::before { content: "·"; color: var(--color-muted); padding: 0 10px; }
.nx-nav a {
  display: inline-block;
  padding: 10px 0;
  font-size: 0.92rem;
  color: var(--color-text);
  text-decoration: none;
}
.nx-nav a:hover { color: var(--color-accent); text-decoration: underline; }
.nx-rule { border-top: 1px solid var(--color-text); margin-top: 10px; }
.nx-rule::after { content: ""; display: block; border-top: 1px solid var(--color-text); margin-top: 3px; }

.nx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 14px 26px;
  border: 1px solid var(--color-accent);
  background: transparent;
  color: var(--color-accent);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
}
.nx-btn:hover { background: var(--color-accent); color: #ffffff; border-color: var(--color-accent); }

.nx-hero { padding: 30px 0 34px; }
.nx-hero h1 { max-width: 20ch; }
.nx-hero__lead { font-size: 1.08rem; margin-top: 18px; }
.nx-hero__lead p { margin-bottom: 14px; }
.nx-byline {
  font-family: var(--font-mark);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  margin-top: 18px;
}

.nx-sec { padding: 30px 0; }
.nx-sec--top { border-top: 1px solid var(--color-border); padding-top: 34px; }
.nx-cols p { margin-bottom: 15px; }
.nx-cols > :last-child { margin-bottom: 0; }
.nx-drop::first-letter {
  float: left;
  font-family: var(--font-head);
  font-size: 3.4em;
  line-height: 0.82;
  padding: 6px 10px 0 0;
  color: var(--color-accent);
}

.nx-disc { margin: 0; padding: 0; list-style: none; }
.nx-disc > li { border-top: 1px solid var(--color-border); padding: 26px 0; min-width: 0; }
.nx-disc > li:first-child { border-top: 0; padding-top: 6px; }
.nx-disc h3 { margin-bottom: 4px; }
.nx-disc__meta {
  font-family: var(--font-mark);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  margin: 0 0 12px;
}
.nx-disc__text { min-width: 0; }
.nx-disc__text > :last-child { margin-bottom: 0; }
.nx-disc figure { margin: 0 0 16px; }
.nx-disc figcaption { font-family: var(--font-mark); font-size: 0.72rem; color: var(--color-muted); margin-top: 6px; }

.nx-table__scroll { overflow-x: auto; }
table { border-collapse: collapse; width: 100%; min-width: 660px; font-size: 0.95rem; }
caption { text-align: left; color: var(--color-muted); font-size: 0.88rem; padding-bottom: 12px; }
th, td { text-align: left; padding: 12px 16px 12px 0; border-bottom: 1px solid var(--color-border); vertical-align: top; }
thead th {
  font-family: var(--font-mark);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  font-weight: 600;
}
tbody th { font-weight: 700; font-family: var(--font-head); font-size: 1rem; }
.nx-num { text-align: right; font-variant-numeric: tabular-nums; font-family: var(--font-mark); font-size: 0.86rem; padding-right: 0; }
.nx-source { font-style: italic; color: var(--color-muted); font-size: 0.88rem; margin-top: 12px; max-width: 74ch; }

.nx-nots { list-style: none; margin: 0; padding: 0; max-width: 74ch; }
.nx-nots li { padding: 14px 0; border-bottom: 1px solid var(--color-border); }
.nx-nots li:last-child { border-bottom: 0; }
.nx-nots strong { font-family: var(--font-head); }

.nx-feed { list-style: none; margin: 0; padding: 0; }
.nx-feed li {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  min-width: 0;
}
.nx-feed li:last-child { border-bottom: 0; }
.nx-feed h3 { margin: 0; font-size: 1.12rem; }
.nx-feed a { text-decoration: none; }
.nx-feed a:hover { text-decoration: underline; }
.nx-feed time { font-family: var(--font-mark); font-size: 0.74rem; color: var(--color-muted); white-space: nowrap; }
.nx-feed p { margin: 0; color: var(--color-muted); font-size: 0.94rem; }

.nx-mail { border-top: 3px solid var(--color-text); padding-top: 20px; }
.nx-mail__addr {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 4.5vw, 2rem);
  font-weight: 700;
  word-break: break-word;
  margin: 10px 0 14px;
}
.nx-mail p { max-width: 64ch; }

.nx-art { padding: 26px 0 44px; }
.nx-art__body { max-width: 70ch; }
.nx-art__body h2 { margin-top: 32px; font-size: clamp(1.35rem, 3vw, 1.75rem); }
.nx-art__body ul, .nx-art__body ol { padding-left: 22px; }
.nx-art__body li { margin-bottom: 8px; }
.nx-crumb { font-family: var(--font-mark); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-muted); }
.nx-crumb a { color: var(--color-muted); }
.nx-fig { margin: 24px 0; }
.nx-fig figcaption { font-family: var(--font-mark); font-size: 0.72rem; color: var(--color-muted); margin-top: 8px; }
.nx-pull {
  font-family: var(--font-head);
  font-size: 1.25rem;
  line-height: 1.4;
  border-top: 1px solid var(--color-text);
  border-bottom: 1px solid var(--color-text);
  padding: 16px 0;
  margin: 28px 0;
}
.nx-out { border-top: 1px solid var(--color-border); padding-top: 18px; margin-top: 32px; }
.nx-out__fine { font-size: 0.86rem; color: var(--color-muted); }

.nx-legal { padding: 26px 0 44px; }
.nx-legal__body { max-width: 70ch; }
.nx-legal__body h2 { margin-top: 30px; font-size: clamp(1.25rem, 3vw, 1.6rem); }
.nx-legal__body ul { padding-left: 22px; }
.nx-legal__body li { margin-bottom: 8px; }
.nx-legal__body dt { font-family: var(--font-head); font-weight: 700; margin-top: 14px; }
.nx-legal__body dd { margin: 2px 0 0; color: var(--color-muted); }

.nx-foot { border-top: 3px solid var(--color-text); padding: 26px 0 36px; margin-top: 28px; }
.nx-foot__disc { font-size: 0.86rem; color: var(--color-muted); max-width: 80ch; }
.nx-foot__links { list-style: none; margin: 18px 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 24px; }
.nx-foot__links a { font-size: 0.9rem; }
.nx-foot__copy { font-family: var(--font-mark); font-size: 0.76rem; color: var(--color-muted); margin: 0; }

.nx-cookie {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--color-bg);
  border-top: 2px solid var(--color-text);
  padding: 14px 0;
  z-index: 30;
}
.nx-cookie[hidden] { display: none; }
.nx-cookie__in { display: grid; gap: 12px; }
.nx-cookie p { margin: 0; font-size: 0.9rem; max-width: 74ch; }
.nx-cookie__btns { display: flex; flex-wrap: wrap; gap: 10px; }
.nx-cookie__btns .nx-btn { padding: 11px 18px; }

@media (min-width: 720px) {
  body { font-size: 17px; }
  .nx-hero { padding: 40px 0 40px; }
  .nx-hero__lead { column-count: 2; column-gap: 40px; column-rule: 1px solid var(--color-border); }
  .nx-sec { padding: 38px 0; }
  .nx-cols { column-count: 2; column-gap: 44px; column-rule: 1px solid var(--color-border); }
  .nx-disc > li { display: grid; grid-template-columns: 320px 1fr; gap: 28px; align-items: start; }
  .nx-disc > li.nx-disc--text { display: block; }
  .nx-disc > li.nx-disc--text .nx-disc__text { max-width: 74ch; }
  .nx-feed li { grid-template-columns: 1fr 130px; align-items: baseline; gap: 8px 24px; }
  .nx-feed time { text-align: right; grid-column: 2; grid-row: 1; }
  .nx-feed p { grid-column: 1; }
  .nx-cookie__in { grid-template-columns: 1fr auto; align-items: center; gap: 28px; }
}

@media (min-width: 1000px) {
  .nx-cols { column-gap: 60px; }
  .nx-disc > li { grid-template-columns: 380px 1fr; gap: 40px; }
  .nx-disc > li.nx-disc--text { display: block; }
}
