:root {
  color-scheme: dark;
  --bg: #101715;
  --panel: #151e1a;
  --ink: #e8ece4;
  --muted: #a2afa5;
  --accent: #c8e4b4;
  --line: #2b3630;
  --mono: ui-monospace, SFMono-Regular, Consolas, monospace;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}
::selection {
  background: var(--accent);
  color: var(--bg);
}
svg {
  display: block;
}
p,
h1,
h2,
h3 {
  margin: 0;
}
strong {
  color: #d9e1d7;
  font-weight: 550;
}
.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  background: var(--accent);
  color: var(--bg);
  padding: 12px;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.55px;
  line-height: 1.6;
}
.site-header {
  height: 83px;
  padding: 0 4.8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-bottom: 1px solid var(--line);
  background: #101715f2;
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  white-space: nowrap;
}
.brand > svg,
.footer-brand svg {
  width: 34px;
  height: 34px;
  stroke: var(--accent);
  stroke-width: 1.5;
}
.brand > span {
  display: flex;
  align-items: center;
  gap: 19px;
}
.brand-divider {
  color: #4c5e51;
  font-weight: 300;
}
.brand-subtitle {
  font: 10px var(--mono);
  letter-spacing: 1.6px;
  color: #abb8ad;
}
.top-nav {
  display: flex;
  gap: 32px;
  color: var(--muted);
  font-size: 12px;
}
.top-nav a:hover,
.top-nav a.active {
  color: var(--accent);
}
.header-cta {
  font-size: 11px;
  border: 1px solid #53614f;
  padding: 9px 15px;
  border-radius: 3px;
}
.header-cta span {
  margin-left: 22px;
  color: var(--accent);
}
.header-cta:hover {
  background: var(--panel);
  border-color: var(--accent);
}
.reading-progress {
  position: fixed;
  top: 82px;
  width: 100%;
  height: 2px;
  z-index: 25;
  pointer-events: none;
}
.reading-progress span {
  display: block;
  transform-origin: left;
  transform: scaleX(0);
  height: 100%;
  background: var(--accent);
}
main,
footer {
  max-width: 1600px;
  margin: auto;
}
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  padding: 72px 6.2% 60px;
  min-height: 670px;
  gap: 32px;
  overflow: hidden;
}
.hero-label {
  color: #b5c3b4;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
}
.status-dot {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px #c8e4b40c;
  flex-shrink: 0;
}
h1 {
  font: clamp(48px, 5.5vw, 86px)/1.05 var(--serif);
  letter-spacing: -3.8px;
  margin: 25px 0 24px;
  font-weight: 400;
}
h1 em {
  font-weight: 400;
  color: var(--accent);
}
.hero-copy > p {
  font-size: 13px;
  max-width: 495px;
  color: var(--muted);
  line-height: 1.85;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #182018;
  font-size: 12px;
  font-weight: 550;
  padding: 13px 20px;
  border-radius: 3px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #d9efc9;
  transform: translateY(-2px);
}
.button svg,
.overview-strip svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 1.5;
}
.hero .button {
  margin-top: 27px;
}
.hero-footnote {
  font: 8px var(--mono);
  letter-spacing: 1.5px;
  color: #92a194;
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.tiny-cross {
  font-size: 18px;
  line-height: 1;
  color: var(--accent);
}
.hero-art {
  width: 100%;
  max-width: 580px;
  justify-self: center;
  position: relative;
}
.art-label {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font: 8px var(--mono);
  letter-spacing: 1.35px;
  color: #93a696;
  padding: 0 30px;
}
.orbital {
  width: 100%;
  height: auto;
}
.art-caption {
  display: flex;
  justify-content: center;
  gap: 27px;
  color: #a1b2a1;
  font: 8px var(--mono);
  letter-spacing: 1.2px;
}
.overview-strip {
  border-block: 1px solid var(--line);
  margin: 0 4.8%;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  align-items: center;
  min-height: 90px;
  padding: 18px 20px;
}
.overview-strip > .eyebrow {
  font-size: 9px;
  color: #95a396;
}
.overview-strip > a {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 3px 28px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}
.overview-strip a:hover {
  color: var(--accent);
}
.overview-strip b {
  color: var(--ink);
  font: 30px var(--serif);
  font-weight: 400;
}
.overview-strip svg {
  margin-left: auto;
  color: #9daf99;
  width: 15px;
}
.document-layout {
  display: grid;
  grid-template-columns: 215px minmax(0, 1fr);
  gap: 50px;
  padding: 70px 6.2% 0;
}
.contents {
  align-self: start;
  position: sticky;
  top: 128px;
}
.contents > .eyebrow {
  color: #899c8e;
  font-size: 9px;
}
.contents nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 23px 0 34px;
}
.contents nav a {
  display: flex;
  gap: 16px;
  font-size: 11px;
  color: #94a499;
  padding: 11px 0 11px 15px;
  border-left: 1px solid var(--line);
}
.contents nav a span {
  font: 10px var(--mono);
  color: #7e9383;
  align-self: center;
}
.contents nav a.active {
  border-color: var(--accent);
  color: var(--accent);
  background: linear-gradient(90deg, #c8e4b409, transparent);
}
.contents nav a:hover {
  color: var(--ink);
}
.contents-note {
  border-top: 1px solid var(--line);
  padding-top: 23px;
  color: #9aaa9d;
  font-size: 11px;
  line-height: 1.9;
  max-width: 174px;
}
.contents-note span {
  display: block;
  font: 8px/1.8 var(--mono);
  letter-spacing: 1px;
  margin-top: 15px;
  color: #85988a;
}
.back-top {
  display: inline-block;
  color: #a1b39f;
  font: 9px var(--mono);
  margin-top: 30px;
}
.content-section {
  padding-bottom: 66px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 10px;
}
.section-kicker {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 15px;
  color: var(--accent);
}
.section-kicker .eyebrow {
  font-size: 9px;
}
.section-number {
  color: #809485;
  font: 9px var(--mono);
}
h2 {
  font: 42px/1.15 var(--serif);
  font-weight: 400;
  letter-spacing: -1.1px;
}
h2 > span {
  color: var(--accent);
}
.section-intro {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
  margin-top: 15px;
  max-width: 690px;
}
.axiom-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin-top: 30px;
}
.axiom-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #1a241e, #141c18);
  border-radius: 4px;
  padding: 23px 20px 24px;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.axiom-card:hover {
  border-color: #576c53;
  transform: translateY(-3px);
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 10px;
  color: #a7ba9e;
}
.card-top .eyebrow {
  font-size: 8px;
}
.card-symbol {
  font-size: 23px;
  color: var(--accent);
  line-height: 1;
}
.axiom-card h3 {
  font: 23px/1.25 var(--serif);
  font-weight: 400;
  letter-spacing: -0.4px;
  min-height: 87px;
  padding-bottom: 17px;
}
.axiom-card p {
  font-size: 11px;
  color: #a4b0a6;
  line-height: 1.95;
}
.table-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  padding: 17px 19px;
  background: #1c2720;
  border: 1px solid #344335;
  border-radius: 4px 4px 0 0;
}
.table-heading .eyebrow {
  font-size: 8px;
  color: var(--accent);
}
.table-heading > span + span {
  color: #a1b39e;
  font-size: 10px;
}
.table-heading > span + span span {
  margin-left: 10px;
}
.table-wrapper {
  border: 1px solid var(--line);
  border-top: 0;
  overflow: auto;
  border-radius: 0 0 4px 4px;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 11px;
  text-align: left;
}
th {
  font: 8px/1.5 var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 15px 14px;
  color: #a3b29f;
  background: #18211b;
  white-space: nowrap;
}
td {
  padding: 17px 14px;
  border-top: 1px solid var(--line);
  vertical-align: top;
  color: #acb7ac;
  font-size: 11px;
  line-height: 1.65;
}
td:first-child {
  font: 12px var(--mono);
  width: 9%;
  color: var(--accent);
  padding-top: 20px;
}
td:first-child strong {
  color: inherit;
}
td:nth-child(2) {
  width: 29%;
  color: #dae0d4;
}
td:nth-child(3) {
  width: 18%;
}
td:nth-child(4) {
  width: 44%;
}
tbody tr:first-child {
  background: #c8e4b407;
}
tbody tr:hover {
  background: #c8e4b40a;
}
.score {
  display: inline-block;
  padding: 3px 7px;
  border: 1px solid #3c4d3c;
  background: #243126;
  color: #cee3bc;
  font: 8px/1.5 var(--mono);
  border-radius: 3px;
  white-space: nowrap;
}
tbody tr:nth-child(n + 5) .score {
  color: #a7b5a7;
  background: #202822;
  border-color: #323e34;
}
.table-note {
  margin-top: 13px;
  color: #8ca08e;
  font-size: 10px;
}
.table-note > span {
  padding-right: 5px;
}
.policy-list {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}
.policy-item {
  border-bottom: 1px solid var(--line);
}
.policy-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 25px 0;
  gap: 22px;
  cursor: pointer;
}
.policy-item summary::-webkit-details-marker {
  display: none;
}
.policy-letter {
  font: 11px var(--mono);
  color: #94a688;
}
.policy-name {
  font: 24px var(--serif);
  color: #e0e7dc;
}
.policy-name small {
  display: block;
  font: 9px var(--mono);
  color: #91a58e;
  margin-top: 8px;
}
.expand {
  margin-left: auto;
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}
.policy-item[open] .expand {
  transform: rotate(45deg);
}
.policy-item ol {
  margin: 0;
  padding: 0 32px 10px 0;
  list-style: none;
}
.policy-item li {
  position: relative;
  font-size: 12px;
  color: #a5b3a6;
  line-height: 1.85;
  margin: 0 0 22px;
  padding-left: 0;
}
.policy-item strong {
  color: #d5dfce;
  font-weight: 500;
}
.end-note {
  position: relative;
  margin: 0 0 65px;
  padding: 8px 0 0;
}
.end-note > .eyebrow {
  color: #9bad96;
  font-size: 8px;
}
.end-note p {
  font: 38px/1.22 var(--serif);
  margin-top: 17px;
  letter-spacing: -0.6px;
}
.end-note em {
  color: #abc79c;
}
.end-note > a {
  position: absolute;
  right: 0;
  bottom: 0;
  border: 1px solid #46543f;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--accent);
}
footer {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 29px 6.2%;
  color: #98a798;
  font-size: 10px;
}
.footer-brand {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
  letter-spacing: 2px;
  color: #c4d0bf;
}
.footer-brand svg {
  width: 27px;
  height: 27px;
}
footer button {
  background: none;
  border: 0;
  color: #b6c7ad;
  font-size: 10px;
  padding: 9px 0;
}
footer button span {
  margin-left: 14px;
}
dialog {
  background: #18211b;
  color: var(--ink);
  border: 1px solid #56644f;
  border-radius: 7px;
  max-width: 540px;
  width: calc(100% - 36px);
  padding: 36px;
  max-height: 85vh;
  overscroll-behavior: contain;
}
dialog::backdrop {
  background: #050b08ce;
  backdrop-filter: blur(5px);
}
dialog > .eyebrow {
  font-size: 9px;
  color: var(--accent);
}
dialog h2 {
  font-size: 32px;
  line-height: 1.2;
  margin: 16px 0 22px;
}
dialog p {
  font-size: 13px;
  line-height: 1.8;
  color: #acb9a9;
  margin-bottom: 15px;
}
dialog .button {
  margin-top: 10px;
  width: 100%;
}
.close-button {
  position: absolute;
  top: 9px;
  right: 17px;
  color: var(--muted);
  background: none;
  border: 0;
  font-size: 26px;
}
body:has(dialog[open]) {
  overflow: hidden;
}
@media (min-width: 1500px) {
  .hero {
    min-height: 760px;
  }
  .document-layout {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 75px;
  }
  .axiom-card {
    padding: 28px;
  }
  .axiom-card p {
    font-size: 12px;
  }
  .axiom-card h3 {
    font-size: 26px;
  }
}
@media (max-width: 1100px) {
  .document-layout {
    grid-template-columns: 165px minmax(0, 1fr);
    gap: 30px;
    padding-inline: 5%;
  }
  .hero {
    padding-inline: 5%;
  }
  .hero-label {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .overview-strip > a {
    padding-inline: 18px;
  }
  .overview-strip > .eyebrow {
    font-size: 8px;
    letter-spacing: 0.8px;
  }
  .axiom-grid {
    grid-template-columns: 1fr;
  }
  .axiom-card {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    column-gap: 25px;
    padding: 24px;
  }
  .card-top {
    grid-column: 1;
    margin-bottom: 12px;
  }
  .axiom-card h3 {
    grid-column: 1;
    min-height: 0;
    font-size: 24px;
    padding: 0;
  }
  .axiom-card p {
    grid-column: 2;
    grid-row: 1/3;
    font-size: 12px;
  }
  .top-nav {
    gap: 22px;
  }
  .brand-subtitle {
    font-size: 9px;
  }
  h1 {
    font-size: 63px;
  }
  .art-label {
    padding: 0 10px;
    font-size: 7px;
  }
  .art-caption {
    gap: 12px;
    font-size: 7px;
  }
  table {
    min-width: 580px;
  }
}
@media (max-width: 780px) {
  .site-header {
    height: 72px;
    padding-inline: 5%;
    gap: 12px;
  }
  .reading-progress {
    top: 71px;
  }
  .brand-subtitle,
  .brand-divider,
  .header-cta {
    display: none;
  }
  .brand {
    font-size: 19px;
    gap: 9px;
  }
  .top-nav {
    font-size: 11px;
    gap: 23px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 48px 6% 35px;
    min-height: 0;
  }
  .hero-copy > p {
    max-width: 560px;
    font-size: 13px;
  }
  h1 {
    font-size: clamp(52px, 9vw, 78px);
    letter-spacing: -2.7px;
    margin-top: 24px;
  }
  .hero-art {
    max-width: 400px;
    margin-top: 2px;
  }
  .hero-footnote {
    margin-top: 25px;
  }
  .overview-strip {
    grid-template-columns: repeat(3, 1fr);
    margin-inline: 5%;
    padding: 20px 0;
    gap: 16px 0;
  }
  .overview-strip > .eyebrow {
    grid-column: 1/-1;
    padding-left: 10px;
    font-size: 8px;
  }
  .overview-strip > a {
    padding: 0 10px;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 10px;
  }
  .overview-strip > a:first-of-type {
    border-left: 0;
  }
  .overview-strip b {
    font-size: 25px;
  }
  .overview-strip svg {
    display: none;
  }
  .document-layout {
    display: block;
    padding: 40px 6% 0;
  }
  .contents {
    display: none;
  }
  .content-section {
    padding-bottom: 42px;
    margin-bottom: 40px;
  }
  .section-intro {
    font-size: 12px;
  }
  h2 {
    font-size: 36px;
  }
  .axiom-grid {
    margin-top: 25px;
  }
  .axiom-card h3 {
    font-size: 24px;
  }
  .section-kicker .eyebrow {
    font-size: 8px;
    letter-spacing: 1.1px;
  }
  .section-number {
    font-size: 8px;
  }
  .table-heading {
    padding: 16px 12px;
  }
  .table-heading .eyebrow {
    font-size: 7px;
    letter-spacing: 0.7px;
  }
  .table-heading > span + span {
    font-size: 9px;
  }
  .policy-name {
    font-size: 23px;
  }
  .policy-item summary {
    gap: 15px;
  }
  .policy-item ol {
    padding-left: 0;
    padding-right: 0;
  }
  .end-note {
    margin-bottom: 45px;
  }
  .end-note p {
    font-size: 33px;
  }
  footer {
    flex-wrap: wrap;
    gap: 14px;
    padding: 25px 6%;
  }
  footer p {
    order: 3;
    flex-basis: 100%;
    font-size: 9px;
  }
}
@media (max-width: 450px) {
  .hero-label {
    font-size: 7px;
    letter-spacing: 0.8px;
  }
  .hero-art {
    max-width: 330px;
  }
  .art-label {
    font-size: 6px;
  }
  .axiom-card {
    display: block;
    padding: 24px;
  }
  .card-top {
    margin-bottom: 18px;
  }
  .axiom-card h3 {
    padding-bottom: 15px;
    max-width: 220px;
  }
  .axiom-card p {
    font-size: 12px;
  }
  .top-nav {
    gap: 18px;
    font-size: 10px;
  }
  .brand svg {
    width: 28px;
  }
  .overview-strip > a {
    font-size: 9px;
    gap: 6px;
  }
  .overview-strip b {
    font-size: 23px;
  }
  .policy-name {
    font-size: 21px;
  }
  .table-heading > span + span span {
    display: none;
  }
  dialog {
    padding: 28px;
  }
  dialog h2 {
    font-size: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  :root {
    color-scheme: light;
    --bg: white;
    --panel: white;
    --ink: #111;
    --muted: #333;
    --accent: #234d27;
    --line: #bbb;
  }
  body {
    background: white;
    color: #111;
  }
  .site-header,
  .reading-progress,
  .hero-art,
  .contents,
  .overview-strip,
  .hero .button,
  .hero-footnote,
  .end-note,
  footer button {
    display: none;
  }
  .hero {
    display: block;
    padding: 20px;
    min-height: 0;
  }
  h1 {
    font-size: 42px;
  }
  .hero-copy > p {
    max-width: none;
  }
  .document-layout {
    display: block;
    padding: 20px;
  }
  .axiom-grid {
    display: block;
  }
  .axiom-card {
    display: block;
    background: white;
    break-inside: avoid;
    margin-bottom: 10px;
  }
  .axiom-card h3 {
    min-height: 0;
  }
  .axiom-card p,
  td,
  td:nth-child(2),
  strong,
  .policy-name,
  .policy-item li,
  .policy-item strong {
    color: #222;
  }
  .policy-item::details-content {
    display: block;
    content-visibility: visible;
  }
  .content-section {
    padding-bottom: 20px;
    margin-bottom: 25px;
  }
  table {
    min-width: 0;
  }
  .score {
    background: white !important;
    color: #222 !important;
  }
  th,
  .table-heading {
    background: #eee;
  }
  .table-wrapper {
    overflow: visible;
  }
  footer {
    padding: 20px;
  }
}
