:root {
  color-scheme: light;
  --ink: #0b1114;
  --ink-soft: #1f2b2f;
  --muted: #5c6b70;
  --surface: #ffffff;
  --surface-alt: #f3f7f4;
  --line: rgba(11, 17, 20, 0.12);
  --green: #2e7d58;
  --green-dark: #173f30;
  --cyan: #33c6d6;
  --amber: #d9962a;
  --header: rgba(8, 14, 17, 0.78);
  --shadow: 0 20px 60px rgba(11, 17, 20, 0.16);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  border: 0;
}

.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;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: var(--header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(100% - 40px, var(--max-width));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 800;
}

.brand-mark {
  position: relative;
  width: 32px;
  height: 32px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  background: rgba(51, 198, 214, 0.1);
  box-shadow: inset 0 0 0 7px rgba(46, 125, 88, 0.22), 0 0 28px rgba(51, 198, 214, 0.45);
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  right: -2px;
  top: 4px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 16px rgba(217, 150, 42, 0.8);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  font-weight: 650;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.11);
}

.nav-links .nav-cta {
  margin-left: 8px;
  color: #081114;
  background: #ffffff;
}

.nav-links .nav-cta:hover {
  color: #081114;
  background: var(--cyan);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.nav-toggle-line {
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 58% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 10, 12, 0.93) 0%, rgba(5, 10, 12, 0.78) 35%, rgba(5, 10, 12, 0.32) 69%, rgba(5, 10, 12, 0.26) 100%),
    linear-gradient(180deg, rgba(5, 10, 12, 0.24) 0%, rgba(5, 10, 12, 0.1) 58%, rgba(5, 10, 12, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding-top: 92px;
  padding-bottom: 54px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  color: #ffffff;
  font-size: 4.25rem;
  line-height: 1.02;
  font-weight: 820;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
  line-height: 1.65;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 760;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: #081114;
  background: var(--cyan);
  box-shadow: 0 16px 34px rgba(51, 198, 214, 0.26);
}

.button-primary:hover {
  background: #7de7ef;
  box-shadow: 0 20px 44px rgba(51, 198, 214, 0.32);
}

.button-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.13);
}

.signal-band {
  width: min(100% - 40px, var(--max-width));
  min-height: 120px;
  margin: -46px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.metric {
  display: grid;
  align-content: center;
  min-height: 120px;
  padding: 26px;
  background: #ffffff;
}

.metric strong {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 2rem;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-weight: 680;
}

.section {
  padding: 112px 0;
}

.section-heading,
.applications,
.contact {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
  text-align: center;
}

.section-heading-narrow {
  max-width: 680px;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 2.8rem;
  line-height: 1.08;
  font-weight: 810;
}

.section-heading p,
.applications-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.technology {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(11, 17, 20, 0.97), rgba(15, 34, 36, 0.94)),
    var(--ink);
}

.technology::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(51, 198, 214, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 198, 214, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.technology .section-heading {
  position: relative;
  z-index: 1;
}

.technology h2 {
  color: #ffffff;
}

.technology .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.tech-grid {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tech-card {
  min-height: 244px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.tech-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 30px;
  border-radius: 50%;
  color: #071114;
  background: var(--cyan);
  font-size: 0.88rem;
  font-weight: 850;
  box-shadow: 0 0 32px rgba(51, 198, 214, 0.28);
}

.tech-card h3 {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 1.34rem;
}

.tech-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.66;
}

.service-grid {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(11, 17, 20, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(3) {
  grid-column: span 4;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 6;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(46, 125, 88, 0.36);
  box-shadow: 0 24px 60px rgba(11, 17, 20, 0.11);
}

.service-media {
  position: relative;
  aspect-ratio: 1.48;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 17, 20, 0.04), rgba(11, 17, 20, 0.42)),
    linear-gradient(90deg, rgba(51, 198, 214, 0.1), transparent 46%);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.service-card:hover .service-media img {
  transform: scale(1.035);
}

.service-index {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #071114;
  background: #ffffff;
  font-size: 0.88rem;
  font-weight: 850;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.service-kicker {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.service-card h3,
.process-step h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.25;
}

.service-card p,
.process-step p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.service-facts {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
}

.service-facts div {
  display: grid;
  gap: 5px;
  padding-top: 14px;
  border-top: 1px solid rgba(11, 17, 20, 0.1);
}

.service-facts dt,
.service-facts dd {
  margin: 0;
}

.service-facts dt {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.service-facts dd {
  color: var(--muted);
  line-height: 1.55;
}

.gallery {
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(243, 247, 244, 0.74) 100%),
    var(--surface-alt);
}

.gallery-grid {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.gallery-card {
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(11, 17, 20, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gallery-card-large {
  grid-column: span 6;
}

.gallery-card:hover {
  transform: translateY(-5px);
  border-color: rgba(51, 198, 214, 0.38);
  box-shadow: 0 24px 60px rgba(11, 17, 20, 0.12);
}

.analysis-frame {
  position: relative;
  aspect-ratio: 1.52;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.analysis-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 8, 10, 0.02), rgba(3, 8, 10, 0.28)),
    linear-gradient(90deg, rgba(51, 198, 214, 0.12), transparent 45%);
  pointer-events: none;
}

.analysis-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-card:hover .analysis-frame img {
  transform: scale(1.035);
}

.vision-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.vision-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 10px;
  border: 1px solid rgba(51, 198, 214, 0.5);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(7, 17, 20, 0.72);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.vision-pill-amber {
  border-color: rgba(217, 150, 42, 0.68);
}

.vision-pill-green {
  border-color: rgba(46, 125, 88, 0.72);
}

.vision-box,
.vision-zone {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  height: var(--h);
  border-radius: 3px;
}

.vision-box {
  --detect: var(--cyan);
  border: 2px solid var(--detect);
  background: rgba(51, 198, 214, 0.08);
  box-shadow: 0 0 0 1px rgba(7, 17, 20, 0.25), 0 0 18px rgba(51, 198, 214, 0.28);
}

.vision-box::before,
.vision-zone::before {
  content: attr(data-label);
  position: absolute;
  left: -2px;
  top: -24px;
  max-width: max-content;
  padding: 4px 6px;
  color: #071114;
  background: var(--detect);
  border-radius: 3px 3px 3px 0;
  font-size: clamp(0.48rem, 0.78vw, 0.66rem);
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.vision-box-cyan {
  --detect: var(--cyan);
}

.vision-box-amber {
  --detect: var(--amber);
  background: rgba(217, 150, 42, 0.12);
  box-shadow: 0 0 0 1px rgba(7, 17, 20, 0.24), 0 0 18px rgba(217, 150, 42, 0.3);
}

.vision-box-green {
  --detect: #4fc27a;
  background: rgba(79, 194, 122, 0.12);
  box-shadow: 0 0 0 1px rgba(7, 17, 20, 0.24), 0 0 18px rgba(79, 194, 122, 0.26);
}

.vision-zone {
  --detect: rgba(51, 198, 214, 0.95);
  border: 2px dashed var(--detect);
  background:
    repeating-linear-gradient(135deg, rgba(51, 198, 214, 0.2) 0 6px, rgba(51, 198, 214, 0.05) 6px 12px);
  box-shadow: inset 0 0 40px rgba(51, 198, 214, 0.08);
}

.vision-zone-green {
  --detect: rgba(79, 194, 122, 0.95);
  background:
    repeating-linear-gradient(135deg, rgba(79, 194, 122, 0.2) 0 6px, rgba(79, 194, 122, 0.05) 6px 12px);
}

.vision-zone-amber {
  --detect: rgba(217, 150, 42, 0.96);
  background:
    repeating-linear-gradient(135deg, rgba(217, 150, 42, 0.24) 0 6px, rgba(217, 150, 42, 0.06) 6px 12px);
}

.gallery-body {
  padding: 22px;
}

.gallery-body span {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.gallery-body h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.25;
}

.gallery-card-large .gallery-body h3 {
  font-size: 1.28rem;
}

.gallery-body p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.process {
  background:
    linear-gradient(180deg, rgba(243, 247, 244, 0.7), rgba(243, 247, 244, 1)),
    var(--surface-alt);
}

.process-track {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(23, 63, 48, 0.18);
}

.process-step {
  position: relative;
  padding: 38px 24px 0 0;
}

.process-step::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 12px;
  height: 12px;
  border: 3px solid var(--surface-alt);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 125, 88, 0.15);
}

.process-step span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--amber);
  font-size: 0.9rem;
  font-weight: 850;
}

.applications {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
  gap: 52px;
  align-items: center;
}

.application-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.application-list li {
  position: relative;
  padding-left: 32px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 650;
}

.application-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 4px solid rgba(51, 198, 214, 0.25);
  background: var(--green);
}

.mission-panel {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.mission-map {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background:
    linear-gradient(rgba(51, 198, 214, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 198, 214, 0.14) 1px, transparent 1px),
    radial-gradient(circle at 72% 28%, rgba(217, 150, 42, 0.36), transparent 21%),
    radial-gradient(circle at 32% 68%, rgba(46, 125, 88, 0.62), transparent 26%),
    linear-gradient(135deg, #132019, #0d1518 58%, #17242a);
  background-size: 36px 36px, 36px 36px, auto, auto, auto;
}

.mission-map::before {
  content: "";
  position: absolute;
  inset: 42px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
}

.mission-map::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 16px rgba(51, 198, 214, 0.08), 0 0 48px rgba(51, 198, 214, 0.32);
}

.scan-line {
  position: absolute;
  inset: 0;
  transform-origin: center;
  background: linear-gradient(90deg, transparent 49.6%, rgba(51, 198, 214, 0.72) 50%, transparent 50.4%);
}

.scan-line-one {
  transform: rotate(32deg);
}

.scan-line-two {
  transform: rotate(-24deg);
}

.scan-area {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(51, 198, 214, 0.65);
  background: rgba(51, 198, 214, 0.12);
}

.scan-area-one {
  width: 140px;
  height: 84px;
  left: 18%;
  top: 22%;
  transform: rotate(-12deg);
}

.scan-area-two {
  width: 180px;
  height: 92px;
  right: 14%;
  bottom: 18%;
  transform: rotate(18deg);
}

.mission-data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.mission-data div {
  min-height: 104px;
  padding: 20px;
  background: #0e171a;
}

.mission-data span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.84rem;
}

.mission-data strong {
  color: #ffffff;
  line-height: 1.35;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 52px;
  align-items: start;
  padding-top: 0;
}

.contact-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.contact-facts div {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface-alt);
}

.contact-facts span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
}

.contact-facts a,
.contact-facts strong {
  color: var(--ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

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

.contact-form label span {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 760;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(11, 17, 20, 0.16);
  border-radius: var(--radius);
  color: var(--ink);
  background: #ffffff;
  outline: 0;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.contact-form input {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 122px;
  padding: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(46, 125, 88, 0.14);
}

.contact-form .is-invalid {
  border-color: #b6453a;
  background: #fff8f7;
}

.form-button {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.form-status.is-error {
  color: #9b3129;
}

.form-status.is-success {
  color: var(--green-dark);
}

.site-footer {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: 42px 0 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  color: var(--ink);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 980px) {
  .nav-shell {
    width: min(100% - 28px, var(--max-width));
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(8, 14, 17, 0.96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(18px);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a,
  .nav-links .nav-cta {
    min-height: 46px;
    justify-content: center;
    margin-left: 0;
    border-radius: var(--radius);
  }

  .hero {
    min-height: 90svh;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .signal-band {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 96px;
  }

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

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

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

  .service-card:nth-child(n) {
    grid-column: auto;
  }

  .gallery-card,
  .gallery-card-large {
    grid-column: auto;
  }

  .process-track {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }

  .applications,
  .contact {
    grid-template-columns: 1fr;
  }

  .mission-data {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .nav-shell,
  .hero-content,
  .signal-band,
  .section-heading,
  .tech-grid,
  .service-grid,
  .gallery-grid,
  .process-track,
  .applications,
  .contact,
  .site-footer {
    width: min(100% - 28px, var(--max-width));
  }

  .hero {
    min-height: 88svh;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-content {
    padding-top: 112px;
    padding-bottom: 72px;
  }

  h1 {
    max-width: 100%;
    font-size: 2.42rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-lede,
  .section-heading p,
  .applications-copy p,
  .contact-copy p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 82px 0;
  }

  .signal-band {
    margin-top: -34px;
  }

  .service-grid,
  .tech-grid,
  .gallery-grid,
  .process-track,
  .contact-facts {
    grid-template-columns: 1fr;
  }

  .analysis-frame {
    aspect-ratio: 1.2;
  }

  .vision-box::before,
  .vision-zone::before {
    display: none;
  }

  .vision-pill {
    top: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
    font-size: 0.64rem;
  }

  .process-track {
    border-top: 0;
    gap: 0;
  }

  .process-step {
    padding: 28px 0 28px 26px;
    border-left: 1px solid rgba(23, 63, 48, 0.18);
  }

  .process-step::before {
    top: 32px;
    left: -7px;
  }

  .mission-map {
    min-height: 290px;
  }

  .contact-form {
    padding: 20px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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

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