:root {
  color-scheme: dark;
  --bg: #050607;
  --bg-soft: #090d0d;
  --panel: #0b272b;
  --panel-2: #0d3438;
  --line: #748184;
  --line-soft: #273234;
  --text: #edf1e8;
  --muted: #9aa49f;
  --green: #b9f24a;
  --green-deep: #6fa83b;
  --orange: #f28a21;
  --yellow: #d6e35a;
  --red: #ef3f39;
  --blue: #5aa9ff;
  --shadow: 0 24px 70px rgb(0 0 0 / 45%);
  --shell: min(1180px, calc(100% - 40px));
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  width: 100%;
  max-width: 100%;
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 70% 4%, rgb(20 65 66 / 26%), transparent 30rem),
    linear-gradient(180deg, #020303, var(--bg) 30rem);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.013) 1px, transparent 1px);
  background-size: 4px 4px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

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

button,
select,
input {
  font: inherit;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin-top: 0;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: 94px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--yellow);
  color: #000;
  font-weight: 800;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgb(5 6 7 / 72%);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line-soft);
  background: rgb(5 6 7 / 94%);
}

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}

.brand-mark {
  color: var(--orange);
  font-family: var(--display);
  font-size: 2.25rem;
  font-style: italic;
  letter-spacing: -0.08em;
  line-height: 0.9;
  text-shadow: 3px 3px 0 #592405;
}

.brand-copy {
  display: grid;
  gap: 1px;
  text-transform: uppercase;
}

.brand-copy strong,
.brand-copy small {
  font-family: var(--mono);
  letter-spacing: 0.09em;
}

.brand-copy strong {
  font-size: 0.73rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.64rem;
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-nav a {
  position: relative;
  color: #c3cbc7;
  font-family: var(--mono);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

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

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

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

.primary-nav .nav-passwords {
  display: none;
}

.header-cta {
  padding: 11px 15px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #14262a, #0a1214);
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 2px #0a0d0d;
}

.header-cta:hover,
.header-cta[aria-current="page"] {
  border-color: var(--green);
}

.menu-button {
  display: none;
}

.ad-shell {
  width: var(--shell);
  margin-inline: auto;
  overflow: hidden;
}

.ad-shell-content {
  padding-block: 10px 40px;
}

.hero {
  position: relative;
  padding-top: 70px;
  padding-bottom: 62px;
}

.hero::after {
  position: absolute;
  right: -16vw;
  bottom: 2%;
  width: 46vw;
  height: 46vw;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgb(185 242 74 / 8%), transparent 67%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(500px, 1.16fr);
  gap: clamp(40px, 5vw, 78px);
  align-items: center;
}

.hero-copy,
.hero-console {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  50% { opacity: 0.35; }
}

.hero h1 {
  max-width: 640px;
  margin-bottom: 4px;
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 6.5rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow: 5px 5px 0 #461e08, 0 0 22px rgb(242 138 33 / 10%);
}

.title-kicker {
  display: block;
  font-size: 0.8em;
}

.hero-subtitle {
  margin: 20px 0 18px;
  color: #d3d8d2;
  font-family: var(--mono);
  font-size: clamp(0.82rem, 1.3vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-intro {
  max-width: 620px;
  margin-bottom: 28px;
  color: #b2bcb7;
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 2px solid var(--line);
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 2px #060808, 4px 4px 0 #000;
  transition: transform 150ms ease, border-color 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: #a9bd6b;
  background: linear-gradient(180deg, #1f3b2d, #0c1c17);
  color: var(--green);
}

.button-primary:hover {
  border-color: var(--green);
}

.button-secondary {
  background: linear-gradient(180deg, #1e2628, #0d1011);
}

.button-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.button-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.objective-finder {
  max-width: 570px;
  margin-bottom: 30px;
  padding: 14px;
  border: 1px solid #364447;
  background: #071012;
  box-shadow: inset 0 0 0 3px #020303;
}

.objective-finder label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finder-control {
  display: grid;
  grid-template-columns: 1fr auto;
}

.finder-control select,
.finder-control button {
  min-height: 44px;
  border: 0;
}

.finder-control select {
  width: 100%;
  min-width: 0;
  padding: 0 12px;
  background: var(--panel);
  color: #dce4df;
  font-family: var(--mono);
  font-size: 0.78rem;
}

.finder-control button {
  padding: 0 18px;
  background: var(--green);
  color: #071005;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  margin-bottom: 0;
}

.quick-facts div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  align-items: baseline;
  padding-bottom: 7px;
  border-bottom: 1px dotted #334043;
}

.quick-facts dt,
.quick-facts dd {
  margin-bottom: 0;
  font-family: var(--mono);
  font-size: 0.68rem;
}

.quick-facts dt {
  color: var(--green-deep);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.quick-facts dd {
  color: #d7ddd8;
}

.hero-console {
  padding: 17px;
  border: 1px solid #5c6263;
  background:
    linear-gradient(135deg, transparent 12px, #1b1e1f 0) top left,
    linear-gradient(225deg, transparent 12px, #1b1e1f 0) top right,
    linear-gradient(315deg, transparent 12px, #1b1e1f 0) bottom right,
    linear-gradient(45deg, transparent 12px, #1b1e1f 0) bottom left;
  background-size: 51% 51%;
  background-repeat: no-repeat;
  box-shadow: var(--shadow), inset 0 0 0 4px #080909;
}

.hero-console::before,
.hero-console::after {
  position: absolute;
  width: 48px;
  height: 7px;
  content: "";
  background: repeating-linear-gradient(90deg, #111 0 3px, #3b3e3f 3px 5px);
}

.hero-console::before {
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-console::after {
  right: 30px;
  bottom: 5px;
}

.console-topline {
  display: flex;
  height: 30px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.console-topline::before,
.console-topline::after {
  width: 68px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, #4c5151);
}

.console-topline::after {
  transform: rotate(180deg);
}

.console-signal {
  display: inline-flex;
  gap: 3px;
}

.console-signal i {
  width: 3px;
  height: 8px;
  background: var(--green);
}

.console-signal i:nth-child(1) { height: 4px; margin-top: 4px; }
.console-signal i:nth-child(2) { height: 6px; margin-top: 2px; }

.feed-screen {
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
  border: 2px solid #4e5a5d;
  background: #020404;
  box-shadow: inset 0 0 20px #000;
}

.feed-screen img {
  width: 100%;
  aspect-ratio: 1399 / 803;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06) brightness(0.9);
}

.feed-screen figcaption {
  position: absolute;
  right: 9px;
  bottom: 7px;
  padding: 4px 6px;
  background: rgb(0 0 0 / 72%);
  color: #a9b2ad;
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.03em;
}

.scanline-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(180deg, transparent 0 3px, rgb(0 0 0 / 18%) 3px 4px);
  mix-blend-mode: multiply;
}

.hud-row {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 7px;
  margin-top: 10px;
}

.hud-health,
.hud-stat {
  min-height: 55px;
  padding: 8px 10px;
  border: 1px solid #4d5658;
  background: #06090a;
  box-shadow: inset 0 0 0 2px #171b1c;
  font-family: var(--mono);
  text-transform: uppercase;
}

.hud-health span,
.hud-stat span {
  display: block;
  color: var(--green);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
}

.hud-health i {
  display: block;
  height: 13px;
  margin-top: 8px;
  border: 1px solid #6a7272;
  background: #111;
}

.hud-health b {
  display: block;
  width: 74%;
  height: 100%;
  background: var(--red);
}

.hud-stat strong {
  display: block;
  margin-top: 5px;
  color: var(--yellow);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.console-alert {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 9px;
  padding: 11px 13px;
  border: 1px solid #425456;
  background: linear-gradient(90deg, #0c3337, #071012);
  font-family: var(--mono);
}

.console-alert span {
  color: var(--green);
  font-size: 0.57rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.console-alert strong {
  color: #d2dad5;
  font-size: 0.66rem;
  font-weight: 500;
}

.overview-strip {
  border-block: 1px solid var(--line-soft);
  background: #080c0d;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.overview-grid > div {
  display: flex;
  min-height: 110px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  border-right: 1px solid var(--line-soft);
}

.overview-grid > div:last-child {
  border-right: 0;
}

.overview-grid strong {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

.overview-grid span {
  max-width: 112px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.tools-section {
  background:
    linear-gradient(180deg, transparent, rgb(11 39 43 / 18%)),
    var(--bg);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading h2,
.version-copy h2 {
  margin-bottom: 0;
  color: #f0f2ec;
  font-family: var(--display);
  font-size: clamp(2.45rem, 5vw, 4.3rem);
  font-style: italic;
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-transform: uppercase;
}

.section-heading > p {
  margin-bottom: 3px;
  color: var(--muted);
  line-height: 1.7;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.tool-card {
  position: relative;
  min-height: 285px;
  padding: 26px;
  overflow: visible;
  border: 1px solid #3e4a4c;
  background:
    linear-gradient(135deg, transparent 14px, #0b181a 0) top left,
    linear-gradient(225deg, transparent 14px, #0b181a 0) top right,
    linear-gradient(315deg, transparent 14px, #0b181a 0) bottom right,
    linear-gradient(45deg, transparent 14px, #0b181a 0) bottom left;
  background-size: 52% 52%;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 3px #060809;
  transition: transform 160ms ease, border-color 160ms ease;
}

.tool-card::after {
  position: absolute;
  right: -30px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  content: "";
  border: 1px solid rgb(185 242 74 / 12%);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgb(185 242 74 / 3%), 0 0 0 40px rgb(185 242 74 / 2%);
}

.tool-card:hover,
.tool-card:focus {
  z-index: 1;
  border-color: #809092;
  transform: translateY(-4px);
}

.tool-card-featured {
  grid-column: span 2;
  border-color: #607173;
  background: linear-gradient(90deg, rgb(13 52 56 / 92%), rgb(5 13 14 / 94%)), #0b181a;
}

.tool-card-featured::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 4px;
  content: "";
  background: var(--green);
}

.tool-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 23px;
  border: 1px solid #889293;
  background: #092429;
  color: var(--green);
  font-family: var(--mono);
  font-size: 1.15rem;
  font-weight: 900;
  box-shadow: inset 0 0 0 3px #041012;
}

.tool-label {
  margin-bottom: 9px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tool-card h3 {
  margin-bottom: 12px;
  font-family: var(--mono);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.tool-card > p:not(.tool-label) {
  max-width: 520px;
  color: #aeb8b3;
  font-size: 0.92rem;
  line-height: 1.65;
}

.tool-card a,
.card-status {
  position: absolute;
  bottom: 25px;
  left: 26px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tool-card a {
  color: var(--green);
  text-decoration: none;
}

.card-status {
  color: #7f8d88;
}

.legal-card .tool-icon,
.legal-card .tool-label {
  color: var(--blue);
}

.missions-section {
  border-top: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 20% 20%, rgb(35 79 74 / 18%), transparent 25rem),
    #070a0b;
}

.mission-heading {
  align-items: center;
  margin-bottom: 20px;
}

.progress-panel {
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid #3a4749;
  background: #080d0e;
}

.progress-panel > div:first-child {
  display: grid;
  gap: 1px;
}

.progress-panel span,
.progress-panel button {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.progress-panel > div:first-child span {
  color: var(--muted);
}

.progress-panel strong {
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.85rem;
}

.progress-track {
  height: 10px;
  border: 1px solid #4b5657;
  background: #121718;
  box-shadow: inset 0 0 0 2px #050708;
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: repeating-linear-gradient(90deg, var(--green) 0 12px, #85c137 12px 14px);
  transition: width 220ms ease;
}

.progress-panel button {
  min-height: 44px;
  border: 0;
  background: transparent;
  color: #89928e;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.progress-panel button:hover {
  color: var(--orange);
}

.coverage-note {
  display: flex;
  gap: 14px;
  align-items: baseline;
  margin: 0 0 26px;
  padding: 12px 14px;
  border-left: 3px solid var(--orange);
  background: #0a0e0f;
  color: #a5afaa;
  font-size: 0.82rem;
}

.coverage-note span {
  flex: 0 0 auto;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.mission-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #3e494a;
  background: #0a1112;
  transition: border-color 160ms ease, transform 160ms ease;
}

.mission-card:hover,
.mission-card:focus-within {
  border-color: #778385;
  transform: translateY(-3px);
}

.mission-card.is-complete {
  border-color: #6e9b42;
}

.mission-card.is-complete::after {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  padding: 4px 6px;
  content: "COMPLETE";
  background: #101a0b;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.52rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.mission-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.mission-card-link:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: -2px;
}

.mission-thumb {
  position: relative;
  height: 145px;
  overflow: hidden;
  border-bottom: 1px solid #394345;
  background: #0a1012;
}

.mission-thumb-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  transition: transform 180ms ease;
}

.mission-card:hover .mission-thumb-image,
.mission-card:focus-within .mission-thumb-image {
  transform: scale(1.04);
}

.mission-thumb::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 55%, rgb(5 8 9 / 55%) 100%),
    linear-gradient(0deg, transparent 88%, rgb(214 227 90 / 8%) 100%);
  pointer-events: none;
}

.mission-thumb-badge {
  position: absolute;
  left: 9px;
  bottom: 8px;
  z-index: 3;
  padding: 4px 6px;
  border: 1px solid #838d8f;
  background: #091012;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 900;
}

.mission-content {
  position: relative;
  min-height: 132px;
  padding: 18px 18px 13px;
}

.mission-content p {
  margin-bottom: 6px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mission-content h3 {
  min-height: 34px;
  margin-bottom: 8px;
  font-family: var(--mono);
  font-size: 0.89rem;
  text-transform: uppercase;
}

.mission-content > span {
  display: block;
  padding-right: 90px;
  color: #8f9b97;
  font-size: 0.75rem;
}

.mission-content em {
  position: absolute;
  right: 14px;
  bottom: 13px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 0.52rem;
  font-style: normal;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.mission-card:hover .mission-content em,
.mission-card:focus-within .mission-content em {
  color: var(--green);
}

.mission-check {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-top: 1px solid #2c3637;
  background: #070b0c;
  color: #9aa39f;
  font-family: var(--mono);
  font-size: 0.61rem;
  cursor: pointer;
  text-transform: uppercase;
}

.mission-check input {
  appearance: none;
  width: 17px;
  height: 17px;
  margin: 0;
  border: 1px solid #758082;
  background: #0b1011;
  cursor: pointer;
}

.mission-check input:checked {
  border-color: var(--green);
  background:
    linear-gradient(135deg, transparent 42%, #0a1703 43% 54%, transparent 55%),
    linear-gradient(45deg, transparent 54%, var(--green) 55% 66%, transparent 67%),
    linear-gradient(135deg, transparent 30%, var(--green) 31% 42%, transparent 43%);
}

.version-section {
  border-top: 1px solid var(--line-soft);
}

.version-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.version-copy h2 {
  max-width: 740px;
  margin-bottom: 24px;
}

.version-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: #aab4af;
  line-height: 1.75;
}

.version-copy .source-note {
  padding-left: 13px;
  border-left: 2px solid #425456;
  color: #9aa49f;
  font-size: 0.82rem;
}

.text-link {
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.version-terminal {
  border: 1px solid #566365;
  background: #071113;
  box-shadow: var(--shadow), inset 0 0 0 4px #030505;
}

.terminal-header {
  display: flex;
  min-height: 43px;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border-bottom: 1px solid #405052;
  background: #12191a;
}

.terminal-header span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4d5557;
}

.terminal-header span:first-child { background: var(--red); }
.terminal-header span:nth-child(2) { background: var(--yellow); }
.terminal-header span:nth-child(3) { background: var(--green); }

.terminal-header b {
  margin-left: auto;
  color: #86918d;
  font-family: var(--mono);
  font-size: 0.59rem;
  letter-spacing: 0.04em;
}

.intel-list {
  margin-bottom: 0;
  padding: 18px;
}

.intel-list > div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 8px;
  border-bottom: 1px dotted #354244;
}

.intel-list > div:last-child {
  border-bottom: 0;
}

.intel-list dt,
.intel-list dd {
  margin-bottom: 0;
  font-family: var(--mono);
  font-size: 0.7rem;
}

.intel-list dt {
  color: var(--green);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.intel-list dd {
  color: #c4cec8;
}

.crc-row dd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.crc-row code {
  color: var(--yellow);
  font-family: inherit;
}

.crc-row button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #5f6d6f;
  background: #10191a;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.copy-status {
  min-height: 20px;
  margin: -8px 26px 18px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.6rem;
}

.site-footer {
  padding-block: 42px;
  border-top: 1px solid var(--line-soft);
  background: #030405;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: end;
}

.footer-brand {
  margin-bottom: 17px;
}

.footer-grid p {
  max-width: 560px;
  margin-bottom: 0;
  color: #9aa49f;
  font-size: 0.75rem;
}

.footer-links,
.footer-meta {
  display: grid;
  gap: 7px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links a {
  color: #8a9590;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-meta {
  justify-items: end;
  color: #909b96;
}

.inner-page,
.article-page {
  min-height: 68vh;
  padding-block: 80px 110px;
}

.inner-heading,
.article-page > header {
  max-width: 820px;
  margin-bottom: 42px;
}

.inner-heading h1,
.article-page h1 {
  margin-bottom: 18px;
  color: var(--orange);
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 5.4rem);
  font-style: italic;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}

.inner-heading > p:last-child {
  max-width: 640px;
  color: var(--muted);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.post-card {
  border: 1px solid #3e4a4c;
  background: #0b181a;
}

.post-card a {
  display: block;
  height: 100%;
  text-decoration: none;
}

.post-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.75);
}

.post-card div {
  padding: 22px;
}

.post-card p {
  margin-bottom: 8px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.post-card h2 {
  font-family: var(--mono);
  font-size: 1rem;
  text-transform: uppercase;
}

.post-card span {
  color: var(--muted);
  font-size: 0.84rem;
}

.empty-state {
  grid-column: 1 / -1;
  padding: clamp(32px, 7vw, 70px);
  border: 1px solid #465355;
  background: linear-gradient(135deg, #0b272b, #071012);
  text-align: center;
}

.empty-state > strong {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-family: var(--display);
  font-size: 4rem;
  font-style: italic;
}

.empty-state h2 {
  font-family: var(--mono);
  text-transform: uppercase;
}

.empty-state p {
  max-width: 580px;
  margin: 0 auto 26px;
  color: var(--muted);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.search-form {
  max-width: 760px;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid #465355;
  background: #071012;
}

.search-form label {
  display: block;
  margin-bottom: 9px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.search-form > div {
  display: grid;
  grid-template-columns: 1fr auto;
}

.search-form input,
.search-form button {
  min-height: 48px;
  border: 0;
}

.search-form input {
  min-width: 0;
  padding: 0 14px;
  background: var(--panel);
  color: var(--text);
}

.search-form button {
  padding-inline: 22px;
  background: var(--green);
  color: #071005;
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.search-summary {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.article-page {
  max-width: 920px;
}

.article-banner {
  width: 100%;
  margin-bottom: 32px;
  border: 1px solid #4d5a5c;
}

.article-body {
  color: #c2cbc6;
  font-size: 1.02rem;
  line-height: 1.8;
}

.article-body h2,
.article-body h3 {
  color: var(--text);
  font-family: var(--mono);
  text-transform: uppercase;
}

.article-body a {
  color: var(--green);
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-console {
    max-width: 850px;
  }

  .quick-facts {
    max-width: 680px;
  }

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

  .tool-card-featured {
    grid-column: span 2;
  }

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

  .version-terminal {
    max-width: 720px;
  }

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

  .footer-meta {
    grid-column: 1 / -1;
    justify-items: start;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(720px, calc(100% - 28px));
  }

  .section {
    padding-block: 72px;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    justify-self: end;
    border: 1px solid #465052;
    background: #0a1011;
    cursor: pointer;
  }

  .menu-button > span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--green);
  }

  .primary-nav {
    position: absolute;
    top: 76px;
    right: 14px;
    left: 14px;
    justify-self: stretch;
    display: none;
    padding: 12px;
    border: 1px solid #455153;
    background: #070b0c;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 13px;
    border-bottom: 1px solid #20292a;
  }

  .primary-nav .nav-passwords {
    display: flex;
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .primary-nav a::after {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .overview-grid > div:nth-child(2) {
    border-right: 0;
  }

  .overview-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-soft);
  }

  .progress-panel {
    width: 100%;
  }

  .mission-heading {
    align-items: stretch;
  }

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

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 22px);
  }

  html {
    scroll-padding-top: 78px;
  }

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

  .primary-nav {
    top: 68px;
  }

  .brand-mark {
    font-size: 1.95rem;
  }

  .brand-copy strong {
    font-size: 0.63rem;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding-top: 44px;
    padding-bottom: 50px;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 17vw, 5rem);
  }

  .hero-intro {
    font-size: 0.96rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .finder-control,
  .search-form > div {
    grid-template-columns: 1fr;
  }

  .finder-control button {
    min-height: 42px;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .quick-facts div {
    grid-template-columns: 100px 1fr;
  }

  .hero-console {
    padding: 10px;
  }

  .console-topline {
    height: 26px;
  }

  .feed-screen figcaption {
    display: none;
  }

  .hud-row {
    grid-template-columns: 1.5fr 1fr;
  }

  .hud-row .hud-stat:nth-child(3),
  .hud-row .hud-stat:nth-child(4) {
    display: none;
  }

  .console-alert {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .overview-grid > div {
    min-height: 90px;
    justify-content: flex-start;
    padding: 17px 12px;
  }

  .overview-grid strong {
    font-size: 1rem;
  }

  .overview-grid span {
    font-size: 0.55rem;
  }

  .tool-grid,
  .mission-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .tool-card-featured {
    grid-column: auto;
  }

  .tool-card {
    min-height: 275px;
    padding: 22px;
  }

  .tool-card a,
  .card-status {
    left: 22px;
  }

  .progress-panel {
    grid-template-columns: auto 1fr;
  }

  .progress-panel button {
    grid-column: 1 / -1;
    justify-self: start;
    padding: 0;
  }

  .coverage-note {
    display: grid;
  }

  .mission-thumb {
    height: 170px;
  }

  .intel-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

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

  .footer-meta {
    grid-column: auto;
    justify-items: start;
  }

  .inner-page,
  .article-page {
    padding-block: 56px 80px;
  }
}

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