@charset "UTF-8";

:root {
  --bg: #0d1218;
  --bg-deep: #090d12;
  --surface: #131a22;
  --surface-raised: #18212b;
  --line: #22303d;
  --line-strong: #31465a;
  --text: #e7ecf0;
  --text-soft: #c3cdd5;
  --text-dim: #93a3b1;
  --accent: #5fb4c9;
  --accent-bright: #7dd3e7;
  --accent-dim: #33606e;
  --civil: #7fae6e;
  --civil-line: #2e4030;
  --header-height: 78px;
  --radius: 4px;
  --shell: 1220px;
  --page-pad: clamp(22px, 4vw, 52px);
  --section-space: clamp(88px, 11vw, 144px);
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: var(--bg);
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--accent);
  color: var(--bg-deep);
}

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

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

a {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

p + p {
  margin-top: 1.25em;
}

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.section {
  position: relative;
  padding-block: var(--section-space);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 12px);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--accent-bright);
  color: var(--bg-deep);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

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

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background-color 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  background: rgb(9 13 18 / 88%);
  border-color: rgb(49 70 90 / 70%);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.site-nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  width: 27px;
  height: 27px;
  border: 1px solid var(--accent-dim);
  transform: rotate(45deg);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  content: "";
  position: absolute;
}

.brand-mark::before {
  inset: 5px;
  border: 1px solid var(--accent);
}

.brand-mark::after {
  top: 50%;
  left: -5px;
  width: calc(100% + 10px);
  height: 1px;
  background: var(--accent-dim);
}

.brand-mark span {
  top: -5px;
  left: 50%;
  width: 1px;
  height: calc(100% + 10px);
  background: var(--accent-dim);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-name strong {
  color: var(--text-dim);
  font-weight: 500;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(26px, 4vw, 54px);
  flex: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 38px);
}

.nav-links a {
  position: relative;
  padding-block: 8px;
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-toggle-lines {
  width: 22px;
  display: grid;
  gap: 6px;
}

.nav-toggle-lines span {
  height: 1px;
  background: currentColor;
  transition: transform 200ms ease;
}

.site-header.nav-open .nav-toggle-lines span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.nav-open .nav-toggle-lines span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Shared typography and controls */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  width: 64px;
  height: 1px;
  background: var(--accent-dim);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  text-wrap: balance;
}

h2 {
  max-width: 760px;
  margin-top: 20px;
  font-size: clamp(2.2rem, 4.7vw, 3.7rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: var(--bg-deep);
  border-color: var(--accent);
}

.button-primary:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
}

.button-outline {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgb(13 18 24 / 35%);
}

.button-outline:hover {
  border-color: var(--accent);
  color: var(--accent-bright);
}

.button-small {
  min-height: 38px;
  padding: 10px 16px;
}

.button-large {
  min-height: 56px;
  padding-inline: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.text-link:hover {
  color: var(--accent-bright);
}

.meta-label {
  display: block;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Hero */
.hero {
  position: relative;
  min-height: max(760px, 100svh);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 45%, rgb(51 96 110 / 18%), transparent 27%),
    linear-gradient(105deg, var(--bg-deep) 0%, var(--bg) 55%, #101923 100%);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg-deep) 0%, rgb(9 13 18 / 83%) 33%, transparent 72%),
    linear-gradient(0deg, var(--bg) 0%, transparent 25%);
  pointer-events: none;
}

.hero-grid,
.production-grid-bg,
.contact-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(95 180 201 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(95 180 201 / 5%) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: linear-gradient(to right, transparent 3%, black 55%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 3%, black 55%, transparent 100%);
}

.hero-grid::after {
  content: "";
  position: absolute;
  top: 0;
  left: 68%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, var(--accent-dim), transparent);
}

.terrain-lines {
  position: absolute;
  z-index: 0;
  top: 4%;
  right: -9%;
  width: min(75vw, 1050px);
  height: 90%;
  opacity: 0.32;
  stroke: var(--accent-dim);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.terrain-lines path:nth-child(2n) {
  stroke: var(--line-strong);
}

.hero-orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid rgb(95 180 201 / 14%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgb(95 180 201 / 10%);
}

.hero-orbit::before {
  inset: 13%;
}

.hero-orbit::after {
  inset: 30%;
}

.hero-orbit-one {
  top: 4%;
  right: -12%;
  width: min(65vw, 850px);
  aspect-ratio: 1;
}

.hero-orbit-two {
  right: 10%;
  bottom: -35%;
  width: min(48vw, 620px);
  aspect-ratio: 1;
}

.hero-reticle {
  position: absolute;
  z-index: 2;
  top: 42%;
  right: clamp(10%, 17vw, 24%);
  width: 86px;
  height: 86px;
  opacity: 0.72;
}

.reticle-axis,
.reticle-ring,
.reticle-core {
  position: absolute;
}

.reticle-axis-x {
  top: 50%;
  left: -22px;
  width: 130px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-dim) 30%, var(--accent-dim) 70%, transparent);
}

.reticle-axis-y {
  top: -22px;
  left: 50%;
  width: 1px;
  height: 130px;
  background: linear-gradient(transparent, var(--accent-dim) 30%, var(--accent-dim) 70%, transparent);
}

.reticle-ring {
  inset: 0;
  border: 1px solid var(--accent);
  border-radius: 50%;
}

.reticle-ring::before,
.reticle-ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.reticle-ring::before {
  inset: 11px;
  border: 1px dashed var(--accent-dim);
}

.reticle-ring::after {
  inset: 30px;
  border: 1px solid var(--accent);
}

.reticle-core {
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: var(--accent-bright);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px var(--accent);
}

.hero-side-data {
  position: absolute;
  z-index: 3;
  display: flex;
  gap: 28px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-side-data-left {
  top: 31%;
  left: 18px;
  transform: rotate(180deg);
}

.hero-side-data-right {
  right: 18px;
  bottom: 20%;
}

.hero-inner {
  position: relative;
  z-index: 4;
  min-height: max(760px, 100svh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--header-height) + 50px);
  padding-bottom: 38px;
}

.hero-copy {
  width: min(900px, 82%);
  padding-block: 40px 110px;
}

.hero .eyebrow {
  gap: 12px;
  flex-wrap: wrap;
}

.hero .eyebrow span + span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero .eyebrow span + span::before {
  content: "/";
  color: var(--accent-dim);
}

.hero .eyebrow::after {
  display: none;
}

.hero h1 {
  margin-top: 28px;
  font-size: clamp(3rem, 6.6vw, 6.25rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 em {
  color: var(--accent-bright);
  font-style: normal;
  font-weight: 500;
}

.hero-lead {
  max-width: 700px;
  margin-top: 34px;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 36px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 190px)) 1fr;
  gap: 30px;
  align-items: end;
  margin-top: auto;
  padding-top: 23px;
  border-top: 1px solid var(--line-strong);
}

.hero-meta strong {
  display: block;
  margin-top: 5px;
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-status {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--civil);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgb(127 174 110 / 12%);
}

/* Position rail */
.position-rail {
  border-bottom: 1px solid var(--line);
  background: var(--bg-deep);
}

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

.position-item {
  min-height: 210px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 23px;
  padding: 42px clamp(24px, 3vw, 40px);
  border-left: 1px solid var(--line);
}

.position-item:last-child {
  border-right: 1px solid var(--line);
}

.position-index,
.capability-index,
.process-number {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.position-item h2 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
}

.position-item p {
  margin-top: 11px;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.7;
}

/* Editorial section layouts */
.section-layout {
  display: grid;
  grid-template-columns: minmax(260px, 4fr) minmax(420px, 7fr);
  gap: clamp(70px, 10vw, 150px);
}

.section-heading {
  position: relative;
  align-self: start;
}

.section-coordinate {
  margin-top: 46px;
  color: var(--line-strong);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.section-body {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.8;
}

.section-body .lead {
  color: var(--text);
  font-size: clamp(1.15rem, 1.8vw, 1.42rem);
  line-height: 1.6;
}

.mission {
  background:
    linear-gradient(90deg, rgb(95 180 201 / 3%) 1px, transparent 1px),
    var(--bg);
  background-size: calc((100vw - min(100vw, var(--shell))) / 2 + 17%) 100%;
}

.mission::after {
  content: "US / 001";
  position: absolute;
  right: -12px;
  bottom: 30px;
  color: rgb(95 180 201 / 3%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 21vw, 20rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.7;
  pointer-events: none;
}

.mission-body {
  position: relative;
  z-index: 1;
}

.mission blockquote {
  position: relative;
  margin-top: 52px;
  padding: 30px 0 0 28px;
  border-top: 1px solid var(--line-strong);
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 500;
  line-height: 1.35;
}

.mission blockquote::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 6px;
  left: 0;
  width: 2px;
  background: var(--accent);
}

.mission blockquote span {
  display: block;
  color: var(--text-dim);
}

/* Technology */
.technology {
  background: var(--bg-deep);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(60px, 11vw, 150px);
  align-items: end;
  margin-bottom: 70px;
}

.split-heading > p,
.split-heading > div:last-child {
  color: var(--text-dim);
  line-height: 1.75;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability {
  min-height: 400px;
  padding: clamp(28px, 3.5vw, 44px);
  border-left: 1px solid var(--line);
  background: linear-gradient(145deg, rgb(24 33 43 / 28%), transparent 60%);
  transition: background-color 250ms ease;
}

.capability:last-child {
  border-right: 1px solid var(--line);
}

.capability:hover {
  background-color: rgb(24 33 43 / 55%);
}

.capability-top {
  min-height: 120px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.capability-top svg {
  width: 96px;
  height: 64px;
  stroke: var(--line-strong);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.capability-top svg .svg-accent {
  stroke: var(--accent);
}

.capability h3 {
  margin-top: 35px;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.25;
}

.capability p {
  margin-top: 16px;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.75;
}

.conditions {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 30px;
  padding: 26px 0;
}

.conditions-label {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.conditions ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.conditions li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.conditions li::before {
  content: "";
  width: 4px;
  height: 4px;
  border: 1px solid var(--accent-dim);
  transform: rotate(45deg);
}

/* Applications */
.applications {
  background:
    radial-gradient(circle at 85% 20%, rgb(51 96 110 / 9%), transparent 28%),
    var(--bg);
}

.applications-heading {
  margin-bottom: 64px;
}

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

.application-card {
  position: relative;
  min-height: 270px;
  padding: 28px 26px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 250ms ease, transform 250ms ease, background-color 250ms ease;
}

.application-card:hover {
  background: var(--surface-raised);
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 0 solid var(--accent-dim);
  transition: border-color 250ms ease;
}

.corner-top-left {
  top: -1px;
  left: -1px;
  border-top-width: 2px;
  border-left-width: 2px;
}

.corner-top-right {
  top: -1px;
  right: -1px;
  border-top-width: 2px;
  border-right-width: 2px;
}

.corner-bottom-left {
  bottom: -1px;
  left: -1px;
  border-bottom-width: 2px;
  border-left-width: 2px;
}

.corner-bottom-right {
  right: -1px;
  bottom: -1px;
  border-right-width: 2px;
  border-bottom-width: 2px;
}

.application-card:hover .corner {
  border-color: var(--accent);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.card-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tag {
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.tag-civil {
  color: var(--civil);
  border-color: var(--civil-line);
}

.application-card h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1.35;
}

.application-card p {
  margin-top: 10px;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.7;
}

/* Production */
.production {
  background: #0b1117;
}

.production-grid-bg {
  opacity: 0.62;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 75%);
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

.production .shell {
  position: relative;
}

.production .split-heading > div:last-child p {
  color: var(--text-dim);
}

.process {
  margin-top: 70px;
}

.process ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.process ol::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 20px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent), var(--accent-dim));
}

.process li {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 12px;
  text-align: center;
}

.process-number {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}

.process-number::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--bg-deep);
  border: 1px solid var(--accent-dim);
  transform: rotate(45deg);
}

.process li strong {
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.process li small {
  margin-top: 6px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.process-caption {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 52px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-caption span {
  width: 7px;
  height: 7px;
  border: 1px solid var(--accent);
  transform: rotate(45deg);
}

/* Company */
.company {
  background: var(--bg);
}

.company-layout {
  grid-template-columns: minmax(300px, 5fr) minmax(420px, 6fr);
}

.company-facts {
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.company-facts > div {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.company-facts dt {
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.company-facts dd {
  color: var(--text-soft);
  font-size: 13px;
}

.company-body {
  padding-top: 8px;
}

/* Leadership */
.leadership {
  background: var(--bg-deep);
}

.section-intro {
  max-width: 780px;
}

.leader-profile {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(60px, 10vw, 140px);
  align-items: center;
  margin-top: 70px;
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid var(--line);
  background: linear-gradient(120deg, var(--surface) 0%, rgb(19 26 34 / 42%) 55%, transparent 100%);
}

.leader-identity {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  align-items: center;
}

.leader-monogram {
  position: relative;
  width: 120px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgb(95 180 201 / 7%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(95 180 201 / 7%) 1px, transparent 1px),
    var(--bg);
  background-size: 20px 20px;
  border: 1px solid var(--line);
}

.leader-monogram::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid var(--accent-dim);
  border-radius: 50%;
}

.leader-monogram span {
  position: relative;
  z-index: 1;
  color: var(--accent-bright);
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.monogram-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 0 solid var(--accent);
}

.monogram-corner-one { top: -1px; left: -1px; border-top-width: 2px; border-left-width: 2px; }
.monogram-corner-two { top: -1px; right: -1px; border-top-width: 2px; border-right-width: 2px; }
.monogram-corner-three { bottom: -1px; left: -1px; border-bottom-width: 2px; border-left-width: 2px; }
.monogram-corner-four { right: -1px; bottom: -1px; border-right-width: 2px; border-bottom-width: 2px; }

.leader-identity h3 {
  margin-top: 10px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.leader-route {
  margin-top: 13px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.leader-route span {
  margin-inline: 7px;
  color: var(--accent);
}

.leader-bio {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.8;
}

/* Contact */
.contact {
  position: relative;
  padding-block: clamp(90px, 12vw, 150px);
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 50%, rgb(95 180 201 / 15%), transparent 32%),
    var(--surface);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 38%;
  height: 2px;
  background: var(--accent);
}

.contact-grid {
  opacity: 0.7;
  -webkit-mask-image: linear-gradient(to left, black, transparent 70%);
  mask-image: linear-gradient(to left, black, transparent 70%);
}

.contact-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.7fr);
  gap: clamp(65px, 11vw, 150px);
  align-items: end;
}

.contact-action > p {
  color: var(--text-dim);
  line-height: 1.75;
}

.contact-action .button {
  margin-top: 30px;
}

.contact-email {
  width: max-content;
  display: block;
  margin-top: 24px;
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  border-bottom: 1px solid var(--line-strong);
  transition: color 180ms ease, border-color 180ms ease;
}

.contact-email:hover {
  color: var(--accent-bright);
  border-color: var(--accent);
}

/* Footer */
.site-footer {
  background: var(--bg-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1.15fr) minmax(280px, 0.9fr);
  gap: clamp(50px, 8vw, 100px);
  align-items: start;
  padding-top: 65px;
  padding-bottom: 58px;
}

.footer-brand > p {
  margin-top: 24px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-brand > p a {
  transition: color 180ms ease;
}

.footer-brand > p a:hover {
  color: var(--accent-bright);
}

.footer-summary,
.footer-compliance {
  margin-top: 0;
  color: var(--text-dim);
  font-size: 12px;
  line-height: 1.75;
}

.footer-compliance {
  position: relative;
  padding-left: 22px;
}

.footer-compliance::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 0;
  width: 1px;
  background: var(--accent-dim);
}

.footer-legal {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
  color: #6f7d89;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-placeholders {
  display: flex;
  gap: 10px;
}

.back-to-top {
  justify-self: end;
  transition: color 180ms ease;
}

.back-to-top:hover {
  color: var(--accent-bright);
}

/* Progressive reveals */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.application-grid .reveal:nth-child(2),
.capability-grid .reveal:nth-child(2),
.position-grid .reveal:nth-child(2) {
  transition-delay: 80ms;
}

.application-grid .reveal:nth-child(3),
.capability-grid .reveal:nth-child(3),
.position-grid .reveal:nth-child(3) {
  transition-delay: 160ms;
}

.application-grid .reveal:nth-child(5),
.application-grid .reveal:nth-child(8) {
  transition-delay: 80ms;
}

.application-grid .reveal:nth-child(6),
.application-grid .reveal:nth-child(9) {
  transition-delay: 160ms;
}

/* Responsive */
@media (max-width: 1080px) {
  .hero-copy {
    width: 90%;
  }

  .hero-reticle {
    right: 10%;
    opacity: 0.48;
  }

  .section-layout,
  .company-layout {
    gap: 70px;
  }

  .split-heading {
    gap: 70px;
  }

  .capability {
    padding: 30px;
  }

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

  .leader-profile {
    gap: 55px;
  }

  .leader-identity {
    grid-template-columns: 100px 1fr;
    gap: 22px;
  }

  .leader-monogram {
    width: 100px;
  }

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

  .footer-compliance {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .js .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
  }

  .js .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    min-height: calc(100dvh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 36px;
    padding: 45px var(--page-pad);
    background: rgb(9 13 18 / 97%);
    border-top: 1px solid var(--line);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: visibility 220ms, opacity 220ms ease, transform 220ms ease;
  }

  .js .site-header.nav-open .nav-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .js .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .js .nav-links a {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .js .nav-links a::after {
    display: none;
  }

  .js .nav-contact {
    width: 100%;
    min-height: 52px;
  }

  .no-js .site-nav {
    flex-wrap: wrap;
    padding-top: 18px;
    padding-bottom: 15px;
  }

  .no-js .nav-menu {
    flex-basis: 100%;
    justify-content: space-between;
    gap: 20px;
  }

  .no-js .nav-links {
    flex-wrap: wrap;
    gap: 8px 20px;
  }

  .no-js .nav-contact {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 8.8vw, 5.4rem);
  }

  .hero-copy {
    width: 100%;
  }

  .hero-reticle {
    top: 32%;
    right: -15px;
  }

  .hero-meta {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-status {
    display: none;
  }

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

  .position-item {
    min-height: auto;
    padding: 30px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .position-item:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .section-layout,
  .company-layout,
  .split-heading,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .section-coordinate {
    display: none;
  }

  .split-heading {
    align-items: start;
    margin-bottom: 54px;
  }

  .split-heading > p,
  .split-heading > div:last-child {
    max-width: 650px;
  }

  .capability-grid {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .capability {
    min-height: 300px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .capability-top {
    min-height: 80px;
  }

  .conditions ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px 25px;
  }

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

  .process ol {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 20px;
  }

  .process ol::before {
    top: 20px;
    bottom: 20px;
    left: 39px;
    width: 1px;
    height: auto;
    background: linear-gradient(var(--accent-dim), var(--accent), var(--accent-dim));
  }

  .process li {
    min-height: 105px;
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
    column-gap: 24px;
    align-items: center;
    justify-items: start;
    padding: 0;
    text-align: left;
  }

  .process-number {
    grid-row: 1 / 3;
  }

  .process li strong {
    align-self: end;
    margin-top: 0;
  }

  .process li small {
    align-self: start;
    margin-top: 2px;
  }

  .leader-profile {
    grid-template-columns: 1fr;
  }

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

  .footer-compliance {
    grid-column: 1 / -1;
    max-width: 650px;
  }
}

@media (max-width: 620px) {
  :root {
    --page-pad: 20px;
    --section-space: 78px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-inner {
    min-height: 780px;
    padding-top: calc(var(--header-height) + 35px);
    padding-bottom: 25px;
  }

  .brand-name {
    font-size: 13px;
  }

  .hero-side-data,
  .hero-orbit-two {
    display: none;
  }

  .terrain-lines {
    right: -60%;
    width: 150vw;
    opacity: 0.23;
  }

  .hero-grid {
    background-size: 42px 42px;
  }

  .hero-copy {
    padding-block: 30px 55px;
  }

  .hero .eyebrow {
    display: block;
  }

  .hero .eyebrow span {
    display: block;
  }

  .hero .eyebrow span + span {
    display: flex;
    margin-top: 5px;
  }

  .hero h1 {
    margin-top: 24px;
    font-size: clamp(2.2rem, 10vw, 3.6rem);
    line-height: 1.04;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .hero h1 br {
    display: none;
  }

  .hero-lead {
    margin-top: 26px;
    font-size: 0.96rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-meta {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .hero-meta > div:nth-child(3) {
    display: none;
  }

  .hero-reticle {
    top: 24%;
    right: -40px;
    transform: scale(0.75);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

  .position-item {
    grid-template-columns: 30px 1fr;
  }

  .mission blockquote {
    margin-top: 42px;
    padding-top: 25px;
    padding-left: 20px;
  }

  .mission blockquote::before {
    top: 25px;
  }

  .capability {
    min-height: auto;
    padding: 27px 24px 34px;
  }

  .capability-top svg {
    width: 80px;
  }

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

  .application-card {
    min-height: 250px;
  }

  .process {
    margin-top: 50px;
  }

  .process-caption {
    justify-content: flex-start;
  }

  .company-facts {
    margin-top: 40px;
  }

  .leader-profile {
    margin-top: 50px;
    padding: 26px 22px;
  }

  .leader-identity {
    grid-template-columns: 76px 1fr;
    gap: 18px;
  }

  .leader-monogram {
    width: 76px;
  }

  .leader-monogram::before {
    inset: 13px;
  }

  .leader-monogram span {
    font-size: 21px;
  }

  .contact-action .button {
    width: 100%;
  }

  .contact-email {
    width: auto;
    overflow-wrap: anywhere;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 50px;
    padding-bottom: 44px;
  }

  .footer-compliance {
    grid-column: auto;
  }

  .footer-legal {
    grid-template-columns: 1fr auto;
    gap: 12px 20px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .legal-placeholders {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .back-to-top {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (hover: none) {
  .application-card:hover,
  .button:hover {
    transform: none;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Modal */
.modal {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin: 0;
  border: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms;
}

.modal[open] {
  opacity: 1;
  visibility: visible;
}

.modal::backdrop {
  display: none;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgb(9 13 18 / 82%);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(740px, 100%);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: clamp(32px, 5vw, 48px);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}

.modal-header h2 {
  margin-top: 12px;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
}

.modal-close {
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease;
}

.modal-close:hover {
  color: var(--text);
  border-color: var(--accent);
}

.modal-form {
  display: grid;
  gap: 22px;
}

.modal-form[hidden] {
  display: none;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field label span {
  color: var(--accent);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-dim);
  opacity: 0.6;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgb(95 180 201 / 12%);
}

.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) {
  border-color: #c96060;
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  margin-top: 8px;
}

.form-actions .button {
  width: 100%;
}

.form-note {
  margin-top: 16px;
  color: var(--text-dim);
  font-size: 12px;
  text-align: center;
}

.form-note a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent-dim);
  transition: color 180ms ease, border-color 180ms ease;
}

.form-note a:hover {
  color: var(--accent-bright);
  border-color: var(--accent);
}

/* Form result state (thank you / error) */
.modal-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 40px 20px;
}

.modal-result[hidden] {
  display: none;
}

.modal-result-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
}

.modal-result.is-success .modal-result-icon {
  background: rgb(95 180 201 / 12%);
  color: var(--accent-bright);
  border: 1px solid var(--accent-dim);
}

.modal-result.is-error .modal-result-icon {
  background: rgb(201 96 96 / 12%);
  color: #f87171;
  border: 1px solid #5c2a2a;
}

.modal-result-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}

.modal-result-text {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
}

.modal-result .button {
  margin-top: 8px;
  min-width: 120px;
}

@media (max-width: 620px) {
  .modal-panel {
    padding: 28px 22px;
  }
}
