:root {
  --ink: #071a22;
  --ink-soft: #0b2832;
  --ink-raised: #103642;
  --paper: #f4f2eb;
  --paper-deep: #e6e5dc;
  --white: #ffffff;
  --muted: #58696d;
  --muted-light: #aebcc0;
  --signal: #d4f33d;
  --signal-soft: #e9ff81;
  --amber: #ffb43b;
  --cyan: #68c9d7;
  --line: rgb(7 26 34 / 16%);
  --line-dark: rgb(255 255 255 / 14%);
  --shadow: 0 24px 80px rgb(4 20 27 / 18%);
  --max-width: 1240px;
  --section-pad: clamp(4.5rem, 10vw, 8.5rem);
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--paper);
}

body,
button,
a,
summary {
  font: inherit;
}

a {
  color: inherit;
}

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

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

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 7vw, 5.35rem);
  font-weight: 760;
  line-height: 0.97;
}

h3 {
  font-size: 1.4rem;
  line-height: 1.1;
}

p {
  line-height: 1.7;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  color: var(--ink);
  background: var(--signal);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--signal);
}

section[id] {
  scroll-margin-top: 1rem;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--white);
}

.header__inner {
  width: min(var(--max-width), calc(100% - 2rem));
  min-height: 5.25rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgb(255 255 255 / 16%);
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
}

.brand img {
  flex: 0 0 auto;
}

.brand__name {
  display: inline-flex;
  align-items: baseline;
  gap: 0.33rem;
  font-size: 1.15rem;
  font-weight: 820;
  letter-spacing: -0.035em;
}

.brand__name > span {
  font-size: 0.65em;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
  font-size: 0.82rem;
  font-weight: 720;
}

.desktop-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgb(255 255 255 / 76%);
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav .nav-cta {
  padding-inline: 1rem;
  border: 1px solid rgb(255 255 255 / 45%);
  color: var(--white);
}

.desktop-nav .nav-cta:hover {
  border-color: var(--signal);
  color: var(--ink);
  background: var(--signal);
}

.mobile-menu {
  position: relative;
}

.mobile-menu summary {
  min-width: 4.25rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 34%);
  cursor: pointer;
  list-style: none;
  font-size: 0.8rem;
  font-weight: 760;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  width: min(17rem, calc(100vw - 2rem));
  padding: 0.5rem;
  border: 1px solid var(--line-dark);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.mobile-menu nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding-inline: 0.9rem;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  text-decoration: none;
  font-weight: 680;
}

.mobile-menu nav a:last-child {
  border-bottom: 0;
  color: var(--signal);
}

.hero {
  position: relative;
  min-height: 780px;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero__veil {
  z-index: 1;
  background:
    linear-gradient(180deg, rgb(4 18 24 / 16%) 0%, rgb(4 18 24 / 2%) 34%, rgb(4 18 24 / 83%) 100%),
    linear-gradient(90deg, rgb(4 18 24 / 95%) 0%, rgb(4 18 24 / 83%) 47%, rgb(4 18 24 / 28%) 84%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: min(var(--max-width), calc(100% - 2rem));
  min-height: 780px;
  margin-inline: auto;
  padding: 8.5rem 0 2.1rem;
  display: grid;
  align-content: space-between;
  gap: 3.5rem;
}

.hero__content {
  width: min(100%, 760px);
  align-self: center;
}

.eyebrow,
.kicker {
  margin-bottom: 1rem;
  color: #40575d;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.eyebrow span {
  padding: 0.38rem 0.55rem;
  color: var(--ink);
  background: var(--signal);
  letter-spacing: 0.1em;
}

.eyebrow--light {
  color: rgb(255 255 255 / 68%);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 1.3rem;
  color: var(--white);
  font-size: clamp(3.25rem, 10.5vw, 7.7rem);
  font-weight: 770;
  letter-spacing: -0.065em;
  line-height: 0.89;
}

.hero__lede {
  max-width: 680px;
  margin-bottom: 1.8rem;
  color: rgb(255 255 255 / 82%);
  font-size: clamp(1rem, 2.25vw, 1.22rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.15rem;
  border: 1px solid transparent;
  color: inherit;
  text-align: center;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 790;
}

.button--signal {
  color: var(--ink);
  background: var(--signal);
}

.button--signal:hover {
  background: var(--signal-soft);
}

.button--ghost {
  border-color: rgb(255 255 255 / 42%);
  color: var(--white);
  background: rgb(7 26 34 / 22%);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  border-color: var(--white);
  background: rgb(7 26 34 / 52%);
}

.hero__note {
  margin: 1rem 0 0;
  color: rgb(255 255 255 / 60%);
  font-size: 0.75rem;
}

.hero__principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-block: 1px solid rgb(255 255 255 / 20%);
}

.hero__principles span {
  min-height: 3.5rem;
  display: flex;
  align-items: center;
  padding: 0.65rem 0.25rem;
  color: rgb(255 255 255 / 72%);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__principles span::before {
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.55rem;
  background: var(--signal);
  content: "";
}

.section {
  padding: var(--section-pad) max(1rem, calc((100% - var(--max-width)) / 2));
}

.section__intro {
  display: grid;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 6vw, 4.75rem);
}

.section__intro > p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.section__intro h2 {
  max-width: 820px;
}

.section--paper {
  background:
    linear-gradient(90deg, transparent calc(100% - 1px), rgb(7 26 34 / 4%) 1px) 0 0 / 72px
      72px,
    var(--paper);
}

.mission-grid {
  display: grid;
  gap: 1rem;
}

.mission-card {
  min-width: 0;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-top: 3px solid var(--ink);
  background: rgb(255 255 255 / 70%);
}

.mission-card__topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.mission-icon {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--signal);
}

.mission-icon svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.status-label {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--line);
  color: #68787b;
  background: rgb(255 255 255 / 42%);
  font-size: 0.62rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mission-card h3 {
  max-width: 15ch;
  margin-bottom: 1rem;
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.mission-card p {
  min-height: 0;
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 0.42rem 0.65rem;
  border: 1px solid var(--line);
  color: #4e6166;
  font-size: 0.68rem;
  font-weight: 750;
  text-transform: uppercase;
}

.section--command {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 40%, rgb(104 201 215 / 15%), transparent 25rem),
    linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px) 0 0 / 50px 50px,
    linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px) 0 0 / 50px 50px,
    var(--ink);
}

.command-layout {
  display: grid;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}

.kicker--signal {
  color: var(--signal);
}

.command-copy > h2 {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.command-copy > p:not(.kicker) {
  max-width: 650px;
  color: var(--muted-light);
}

.workflow-list {
  margin: 2.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.workflow-list > li {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  gap: 0.7rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.workflow-list > li > span {
  color: var(--signal);
  font-size: 0.7rem;
  font-weight: 800;
}

.workflow-list strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--white);
  font-size: 1rem;
}

.workflow-list p {
  margin: 0;
  color: var(--muted-light);
  font-size: 0.84rem;
  line-height: 1.5;
}

.command-console {
  width: 100%;
  margin: 0;
  border: 1px solid rgb(255 255 255 / 18%);
  background: #0a222b;
  box-shadow: 0 32px 100px rgb(0 0 0 / 38%);
}

.command-console figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  color: var(--muted-light);
  font-size: 0.62rem;
}

.command-console figcaption > span {
  color: var(--signal);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.console__bar {
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.8rem;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  color: #dfe9e9;
  font-size: 0.72rem;
  font-weight: 720;
}

.console__bar div {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.console__bar > span {
  color: var(--muted-light);
  font-size: 0.6rem;
}

.console__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 4px rgb(212 243 61 / 12%);
}

.console__body {
  display: grid;
}

.console__map {
  position: relative;
  min-height: 24rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 70%, rgb(83 125 101 / 25%), transparent 16rem),
    #0d2a2f;
}

.console__map > svg {
  width: 100%;
  height: 100%;
  min-height: 24rem;
}

.map__contours path {
  fill: none;
  stroke: rgb(186 219 185 / 16%);
  stroke-width: 1.5;
}

.map__water {
  fill: none;
  stroke: rgb(104 201 215 / 35%);
  stroke-width: 18;
}

.map__road {
  fill: none;
  stroke: rgb(255 255 255 / 25%);
  stroke-dasharray: 8 7;
  stroke-width: 4;
}

.map__route {
  fill: none;
  stroke: var(--amber);
  stroke-dasharray: 9 8;
  stroke-width: 4;
}

.map__segment {
  fill: rgb(212 243 61 / 12%);
  stroke: var(--signal);
  stroke-width: 2;
}

.map__segment--two {
  fill: rgb(104 201 215 / 10%);
  stroke: var(--cyan);
}

.map__marker {
  fill: var(--signal);
  stroke: var(--ink);
  stroke-width: 6;
}

.map__marker--alert {
  fill: var(--amber);
}

.map__pulse {
  fill: none;
  stroke: rgb(255 180 59 / 42%);
  stroke-width: 2;
}

.map__legend {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0.5rem 0.6rem;
  color: #bdc9ca;
  background: rgb(7 26 34 / 82%);
  font-size: 0.55rem;
}

.map__legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.map__legend i {
  width: 0.45rem;
  height: 0.45rem;
  display: inline-block;
}

.legend__team {
  background: var(--signal);
}

.legend__report {
  background: var(--amber);
}

.legend__area {
  border: 1px solid var(--cyan);
}

.map__scale {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  padding-top: 0.3rem;
  border-top: 2px solid rgb(255 255 255 / 70%);
  color: rgb(255 255 255 / 72%);
  font-size: 0.55rem;
}

.console__rail {
  display: grid;
  gap: 0.55rem;
  align-content: start;
  padding: 0.8rem;
  border-top: 1px solid rgb(255 255 255 / 10%);
  background: #0b252f;
}

.console__rail > p {
  margin: 0.1rem 0 0.3rem;
  color: #7f969a;
  font-size: 0.58rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.console__rail article {
  padding: 0.7rem;
  border: 1px solid rgb(255 255 255 / 9%);
  background: rgb(255 255 255 / 3%);
}

.console__rail article > div {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.console__rail strong {
  color: #edf3f3;
  font-size: 0.72rem;
}

.console__rail small {
  display: block;
  margin-top: 0.35rem;
  color: #8da1a4;
  font-size: 0.58rem;
}

.resource-badge {
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--signal);
  font-size: 0.53rem;
  font-style: normal;
  font-weight: 850;
}

.resource-badge--k9 {
  background: var(--amber);
}

.resource-badge--uas {
  background: var(--cyan);
}

.review-card {
  margin-top: 0.25rem;
  padding: 0.85rem;
  border-left: 3px solid var(--amber);
  background: rgb(255 180 59 / 8%);
}

.review-card span,
.review-card strong,
.review-card small {
  display: block;
}

.review-card span {
  color: #94a7aa;
  font-size: 0.55rem;
  text-transform: uppercase;
}

.review-card strong {
  margin-top: 0.2rem;
  color: #f1f5f5;
  font-size: 0.78rem;
}

.review-card small {
  margin-top: 0.3rem;
  color: #8da1a4;
  font-size: 0.52rem;
}

.resource-band {
  color: var(--ink);
  background: var(--signal);
}

.resource-band__inner {
  width: min(var(--max-width), calc(100% - 2rem));
  min-height: 4.75rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  padding-block: 1rem;
}

.resource-band span {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.68rem;
  font-weight: 840;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.resource-band span:not(:last-child)::after {
  width: 0.28rem;
  height: 0.28rem;
  background: var(--ink);
  content: "";
  transform: rotate(45deg);
}

.section--principles {
  background: var(--paper-deep);
}

.principle-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.principle-grid article {
  min-width: 0;
  padding: clamp(1.25rem, 3.5vw, 2rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-grid article > span {
  display: block;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
}

.principle-grid h3 {
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.principle-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.section--status {
  color: var(--white);
  background:
    radial-gradient(circle at 0% 20%, rgb(212 243 61 / 8%), transparent 25rem), var(--ink-soft);
}

.status-layout {
  display: grid;
  gap: clamp(3rem, 8vw, 7rem);
}

.status-layout h2 {
  max-width: 690px;
  margin-bottom: 1.5rem;
}

.status-layout__lede {
  max-width: 630px;
  color: var(--muted-light);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  color: var(--signal);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  font-size: 1.2rem;
}

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

.roadmap-item {
  position: relative;
  display: grid;
  grid-template-columns: 1.2rem minmax(0, 1fr);
  gap: 0.9rem;
  padding-bottom: 2.25rem;
}

.roadmap-item:not(:last-child)::before {
  position: absolute;
  top: 1.05rem;
  bottom: 0;
  left: 0.32rem;
  width: 1px;
  background: rgb(255 255 255 / 18%);
  content: "";
}

.roadmap-item__marker {
  position: relative;
  z-index: 1;
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.3rem;
  border: 2px solid #799096;
  border-radius: 50%;
  background: var(--ink-soft);
}

.roadmap-item--current .roadmap-item__marker {
  border-color: var(--signal);
  background: var(--signal);
  box-shadow: 0 0 0 5px rgb(212 243 61 / 10%);
}

.roadmap-item p {
  margin-bottom: 0.3rem;
  color: #80969a;
  font-size: 0.65rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.roadmap-item h3 {
  max-width: 38rem;
  margin-bottom: 0.85rem;
  color: #eef3f3;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.roadmap-item .status-label {
  border-color: rgb(255 255 255 / 15%);
  color: #9cafb2;
  background: transparent;
}

.roadmap-item .status-label--current {
  border-color: rgb(212 243 61 / 45%);
  color: var(--signal);
}

.roadmap-item .status-label--next {
  border-color: rgb(104 201 215 / 38%);
  color: var(--cyan);
}

.section--faq {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  gap: 3rem;
}

.faq-layout > div:first-child > p:not(.kicker) {
  max-width: 25rem;
  color: var(--muted);
}

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

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

.faq-list summary {
  position: relative;
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  padding: 1rem 3rem 1rem 0;
  cursor: pointer;
  list-style: none;
  font-weight: 760;
  line-height: 1.35;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  width: 1rem;
  height: 2px;
  background: var(--ink);
  content: "";
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details > p {
  max-width: 46rem;
  margin-bottom: 1.5rem;
  padding-right: 2rem;
  color: var(--muted);
}

.contact-section {
  padding: clamp(4.5rem, 11vw, 9rem) 1rem;
  color: var(--white);
  background:
    linear-gradient(135deg, rgb(212 243 61 / 8%), transparent 35%),
    linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px) 0 0 / 50px 50px,
    var(--ink);
}

.contact-section__inner {
  width: min(900px, 100%);
  margin-inline: auto;
  text-align: center;
}

.contact-section h2 {
  margin-bottom: 1.5rem;
}

.contact-section p:not(.kicker) {
  max-width: 690px;
  margin: 0 auto 2rem;
  color: var(--muted-light);
}

.contact-section small {
  display: block;
  margin-top: 1rem;
  color: #71898e;
}

.site-footer {
  color: #a9b8bb;
  background: #041219;
}

.site-footer__inner {
  width: min(var(--max-width), calc(100% - 2rem));
  margin-inline: auto;
  padding: 2.5rem 0 2rem;
  display: grid;
  gap: 1.2rem;
  align-items: center;
}

.brand--footer {
  width: fit-content;
  color: var(--white);
}

.site-footer p {
  margin: 0;
  color: #7e9297;
  font-size: 0.82rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}

.site-footer nav a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #bac6c8;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.site-footer nav a:hover {
  color: var(--signal);
}

.site-footer small {
  padding-top: 1.25rem;
  border-top: 1px solid rgb(255 255 255 / 10%);
  color: #7e9297;
  font-size: 0.68rem;
}

.legal-page {
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent calc(100% - 1px), rgb(7 26 34 / 4%) 1px) 0 0 / 72px
      72px,
    var(--paper);
}

.legal-header,
.legal-content,
.legal-footer {
  width: min(880px, calc(100% - 2rem));
  margin-inline: auto;
}

.legal-header {
  min-height: 5.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.legal-header > a:last-child,
.legal-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 750;
}

.legal-content {
  padding-block: clamp(4rem, 10vw, 7rem);
}

.legal-content > h1 {
  max-width: 720px;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 0.94;
}

.legal-content__lede {
  max-width: 650px;
  margin-bottom: 4rem;
  color: var(--muted);
  font-size: 1.12rem;
}

.legal-content section {
  max-width: 690px;
  padding-block: 1.5rem;
  border-top: 1px solid var(--line);
}

.legal-content section h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.4rem, 4vw, 2rem);
  line-height: 1.1;
}

.legal-content section p {
  margin: 0;
  color: var(--muted);
}

.legal-content__updated {
  margin: 3rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.legal-footer {
  padding-block: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: var(--white);
  background:
    linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px) 0 0 / 48px 48px,
    var(--ink);
}

.not-found main {
  width: min(760px, 100%);
}

.not-found .brand {
  width: fit-content;
  margin-bottom: clamp(3rem, 12vw, 7rem);
}

.not-found h1 {
  max-width: 700px;
  margin-bottom: 1.3rem;
  font-size: clamp(3.25rem, 11vw, 7rem);
  line-height: 0.9;
}

.not-found p:not(.kicker) {
  max-width: 540px;
  margin-bottom: 2rem;
  color: var(--muted-light);
}

@media (min-width: 560px) {
  .hero__principles {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero__principles span {
    justify-content: center;
  }

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

  .console__body {
    grid-template-columns: minmax(0, 1fr) 12rem;
  }

  .console__rail {
    border-top: 0;
    border-left: 1px solid rgb(255 255 255 / 10%);
  }
}

@media (min-width: 760px) {
  .desktop-nav {
    display: flex;
  }

  .mobile-menu {
    display: none;
  }

  .hero,
  .hero__inner {
    min-height: 800px;
  }

  .hero__inner {
    padding-top: 10rem;
  }

  .hero__media img {
    object-position: center;
  }

  .section__intro {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  }

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

  .mission-card p {
    min-height: 9.3rem;
  }

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

  .status-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  }

  .faq-layout {
    grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  }

  .site-footer__inner {
    grid-template-columns: auto minmax(240px, 1fr) auto;
  }

  .site-footer small {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1050px) {
  .command-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 830px;
  }

  .hero__inner {
    min-height: 830px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__principles span {
    font-size: 0.6rem;
  }

  .resource-band span:not(:last-child)::after {
    display: none;
  }

  .command-console figcaption {
    align-items: start;
    flex-direction: column;
    gap: 0.25rem;
  }
}

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

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

@media (prefers-contrast: more) {
  :root {
    --muted: #405156;
    --muted-light: #d2dddd;
    --line: rgb(7 26 34 / 38%);
    --line-dark: rgb(255 255 255 / 34%);
  }

  .hero__veil {
    background:
      linear-gradient(180deg, transparent 0%, rgb(0 0 0 / 90%) 100%),
      linear-gradient(90deg, rgb(0 0 0 / 98%) 0%, rgb(0 0 0 / 80%) 65%, rgb(0 0 0 / 45%) 100%);
  }
}

@media print {
  .site-header,
  .hero__media,
  .hero__veil,
  .hero__actions,
  .mobile-menu,
  .contact-section,
  .site-footer {
    display: none !important;
  }

  .hero,
  .hero__inner {
    min-height: auto;
    color: #000;
    background: #fff;
  }

  .hero__inner {
    padding: 2rem 0;
  }

  .hero h1,
  .hero__lede,
  .hero__note {
    color: #000;
  }

  .section,
  .section--command,
  .section--status {
    padding: 2rem 0;
    color: #000;
    background: #fff;
  }

  .command-console {
    display: none;
  }
}
