:root {
  --ink: #07090c;
  --graphite: #11161c;
  --steel: #d8e3ea;
  --muted: #8f9da9;
  --white: #f6f9fb;
  --cyan: #00b7d8;
  --blue: #2f7cff;
  --aqua: #4de3ff;
  --coral: #ff5a36;
  --violet: #7d6bff;
  --line: rgba(216, 227, 234, 0.18);
  --surface: rgba(246, 249, 251, 0.055);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

p {
  color: rgba(246, 249, 251, 0.76);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(24px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(180deg, rgba(7, 9, 12, 0.86), rgba(7, 9, 12, 0.48), transparent);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 16px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(246, 249, 251, 0.74);
  font-size: 13px;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--aqua);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
}

.header-cta {
  background: rgba(47, 124, 255, 0.15);
  color: var(--aqua);
}

.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-color: rgba(77, 227, 255, 0.72);
  color: #f6fbff;
  box-shadow: 0 10px 34px rgba(47, 124, 255, 0.24);
}

.button.ghost {
  background: rgba(246, 249, 251, 0.05);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #05070a;
}

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

.hero-video {
  object-fit: cover;
  opacity: 0.55;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(7, 9, 12, 0.96), rgba(7, 9, 12, 0.62), rgba(7, 9, 12, 0.25)),
    linear-gradient(0deg, var(--ink), transparent 42%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 54px;
  padding: 120px 0 64px;
}

.kicker,
.section-intro span,
.system-panel span,
.mission-card span,
.product-card span,
.proof-copy span,
.console-top span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 900px;
  margin-top: 18px;
  font-size: clamp(48px, 8vw, 104px);
}

h2 {
  font-size: clamp(34px, 4.6vw, 66px);
}

h3 {
  font-size: 24px;
}

.hero-copy p,
.page-hero p {
  max-width: 660px;
  font-size: clamp(17px, 2vw, 22px);
}

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

.mission-console {
  border: 1px solid rgba(0, 191, 216, 0.22);
  border-radius: 8px;
  padding: 18px;
  background: rgba(7, 9, 12, 0.58);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.32);
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.route-map {
  position: relative;
  height: 220px;
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(rgba(216, 227, 234, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 227, 234, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  overflow: hidden;
}

.route-map:before {
  content: "";
  position: absolute;
  left: 12%;
  top: 64%;
  width: 76%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--coral));
  transform: rotate(-18deg);
  transform-origin: left center;
}

.route-map span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 8px rgba(77, 227, 255, 0.12);
}

.route-map span:nth-child(1) { left: 14%; top: 62%; }
.route-map span:nth-child(2) { left: 35%; top: 52%; background: var(--cyan); }
.route-map span:nth-child(3) { left: 58%; top: 43%; background: var(--coral); }
.route-map span:nth-child(4) { left: 80%; top: 34%; }

.console-grid,
.stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metric {
  min-height: 78px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  background: rgba(246, 249, 251, 0.045);
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.metric strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 18px;
}

.band {
  background: #f2f6f8;
  color: #10151a;
}

.band p,
.band .lead {
  color: rgba(16, 21, 26, 0.72);
}

.problem,
.stack,
.missions,
.loop,
.role-band,
.proof-strip,
.partner,
.brief,
.content-band,
.page-hero {
  padding: 96px max(24px, calc((100vw - var(--max)) / 2));
}

.section-intro {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-intro p {
  max-width: 720px;
  font-size: 18px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(16, 21, 26, 0.16);
}

.problem-item {
  min-height: 180px;
  padding: 26px;
  border-right: 1px solid rgba(16, 21, 26, 0.16);
}

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

.problem-item span {
  color: var(--coral);
  font-weight: 800;
}

.problem-item h3 {
  margin-top: 72px;
}

.stack {
  background:
    linear-gradient(180deg, rgba(0, 191, 216, 0.08), transparent 32%),
    var(--ink);
}

.stack-grid,
.product-grid,
.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.system-panel,
.product-card,
.mission-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.system-panel img,
.product-card img,
.mission-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.system-panel:hover img,
.product-card:hover img,
.mission-card:hover img {
  transform: scale(1.035);
}

.system-panel div,
.mission-card div {
  padding: 22px;
}

.product-card {
  padding-bottom: 24px;
}

.product-card span,
.product-card h3,
.product-card p {
  margin-left: 22px;
  margin-right: 22px;
}

.missions .mission-card {
  background: #10151a;
  color: var(--white);
}

.loop {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 90, 54, 0.16), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(0, 191, 216, 0.12), transparent 30%),
    var(--ink);
}

.loop-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.loop-step {
  min-height: 270px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.loop-step:last-child {
  border-right: 0;
}

.loop-step span,
.role-card span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.loop-step h3 {
  margin-top: 70px;
}

.role-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 42px;
}

.role-head h2 {
  margin-top: 14px;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.role-card {
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(16, 21, 26, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
}

.role-card h3 {
  margin-top: 44px;
}

.proof-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
  background: #10151a;
}

.proof-copy p {
  font-size: 18px;
}

.proof-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.proof-image {
  width: 100%;
  height: 220px;
  border-radius: 8px;
  object-fit: cover;
}

.proof-image.tall {
  grid-row: span 2;
  height: 454px;
}

.partner-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 42px;
  align-items: end;
}

.partner-copy {
  border-left: 3px solid var(--coral);
  padding-left: 24px;
}

.brief {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.8fr);
  gap: 40px;
  background:
    linear-gradient(135deg, rgba(125, 107, 255, 0.16), transparent 36%),
    var(--ink);
}

.brief-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 249, 251, 0.055);
}

.brief-form label,
.brief-form .wide {
  display: grid;
  gap: 8px;
}

.brief-form .wide {
  grid-column: 1 / -1;
}

.brief-form span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.check-grid label {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  background: rgba(7, 9, 12, 0.5);
  color: rgba(246, 249, 251, 0.78);
  font-size: 13px;
}

.check-grid input {
  width: auto;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--aqua);
  font-size: 13px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  background: rgba(7, 9, 12, 0.74);
  color: var(--white);
  font: inherit;
}

.page-hero {
  min-height: 58svh;
  display: grid;
  align-items: end;
  padding-top: 140px;
  background:
    linear-gradient(135deg, rgba(0, 191, 216, 0.18), transparent 34%),
    linear-gradient(180deg, var(--graphite), var(--ink));
}

.page-hero h1 {
  font-size: clamp(48px, 7vw, 96px);
}

.contact-hero {
  min-height: 100svh;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.78fr);
  gap: 46px;
  align-items: center;
  padding-bottom: 72px;
}

.contact-hero .brief-form {
  align-self: center;
  background:
    linear-gradient(150deg, rgba(77, 227, 255, 0.08), transparent 38%),
    rgba(246, 249, 251, 0.05);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.media-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: center;
}

.media-hero img {
  width: 100%;
  height: 440px;
  border-radius: 8px;
  object-fit: cover;
}

.content-band {
  background: var(--ink);
}

.lead {
  max-width: 850px;
  font-size: 22px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 28px;
  margin-top: 42px;
}

.product-intro {
  margin-top: 56px;
}

.product-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: center;
  margin-top: 62px;
}

.product-story-grid h2 {
  margin-top: 12px;
}

.product-story-grid p {
  max-width: 680px;
  font-size: 18px;
}

.product-story-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 249, 251, 0.04);
}

.product-story-media img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.product-story-media figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 4px;
  background: rgba(7, 9, 12, 0.72);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.product-focus-grid,
.configuration-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.product-focus-grid article,
.configuration-strip article {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(150deg, rgba(47, 124, 255, 0.08), transparent 44%),
    var(--surface);
}

.product-focus-grid span,
.configuration-strip span {
  color: var(--aqua);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.product-focus-grid ul {
  margin: 38px 0 0;
  padding-left: 20px;
  color: rgba(246, 249, 251, 0.78);
}

.product-focus-grid li + li {
  margin-top: 10px;
}

.configuration-strip h3 {
  margin-top: 44px;
}

.product-path-grid,
.evidence-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.product-path-grid article,
.evidence-points article {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(150deg, rgba(47, 124, 255, 0.08), transparent 44%),
    var(--surface);
}

.product-path-grid span,
.evidence-points span {
  color: var(--aqua);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.product-path-grid h3 {
  margin-top: 42px;
}

.evidence-points {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.evidence-points article {
  min-height: 150px;
}

.resource-list {
  display: grid;
  gap: 12px;
  max-width: 640px;
}

.resource-list a {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px;
  background: var(--surface);
}

.system-detail,
.partner-detail,
.resources-detail {
  padding: 96px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
}

.detail-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.detail-head h2 {
  margin-top: 12px;
}

.detail-rows {
  display: grid;
  gap: 16px;
}

.detail-rows article {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 300px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.detail-rows img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 6px;
}

.detail-rows span,
.fit-grid span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.partner-detail,
.resources-detail {
  background: #f2f6f8;
  color: #10151a;
}

.partner-detail p,
.resources-detail p {
  color: rgba(16, 21, 26, 0.72);
}

.resources-detail .resource-list a {
  color: #10151a;
  background: white;
  border-color: rgba(16, 21, 26, 0.16);
}

.contact-brief {
  padding-top: 96px;
}

.fit-grid,
.mission-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 42px;
}

.mission-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
}

.fit-grid article,
.mission-detail-grid > div {
  min-height: 160px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.fit-grid strong {
  display: block;
  margin-top: 46px;
  font-size: 20px;
}

.mission-detail-grid ul {
  margin: 24px 0 0;
  padding-left: 20px;
  color: rgba(246, 249, 251, 0.78);
}

.mission-detail-grid li + li {
  margin-top: 10px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 42px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: #05070a;
}

.site-footer p {
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
}

[data-reveal] {
  opacity: 1;
  transform: translateY(16px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.site-header[data-reveal],
.recon-hero-copy[data-reveal],
.hero-bottomline[data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    padding: 14px 16px 12px;
    background: linear-gradient(180deg, rgba(7, 9, 12, 0.92), rgba(7, 9, 12, 0.68), transparent);
  }

  .site-nav {
    order: 3;
    display: flex;
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 0 4px;
    color: rgba(246, 249, 251, 0.88);
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(216, 227, 234, 0.2);
    border-radius: 6px;
    padding: 7px 10px;
    background: rgba(7, 9, 12, 0.46);
    font-size: 12px;
    font-weight: 750;
  }

  .header-cta {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .hero-grid,
  .proof-strip,
  .partner-grid,
  .brief,
  .contact-hero,
	  .media-hero,
	  .product-story-grid,
	  .two-column,
	  .role-band {
	    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 108px;
  }

  .mission-console {
    display: none;
  }

  .problem-grid,
  .stack-grid,
  .product-grid,
  .mission-grid,
  .loop-rail,
  .role-grid,
  .console-grid,
	  .stat-row,
	  .product-focus-grid,
	  .configuration-strip,
	  .product-path-grid,
	  .evidence-points {
	    grid-template-columns: 1fr;
  }

  .problem-item {
    border-right: 0;
    border-bottom: 1px solid rgba(16, 21, 26, 0.16);
  }

  .loop-step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

	  .proof-image.tall,
	  .proof-image,
	  .product-story-media img,
	  .media-hero img {
	    height: 280px;
	  }

	  .brief-form {
	    grid-template-columns: 1fr;
	  }

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

  .detail-rows article,
  .fit-grid,
  .mission-detail-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    min-height: auto;
    padding-top: 120px;
    align-items: start;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .header-cta {
    display: inline-flex;
  }

  h1 {
    font-size: 44px;
  }

  .problem,
  .stack,
  .missions,
  .proof-strip,
  .partner,
  .brief,
  .content-band,
  .page-hero {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* Reconstruction pass: overseas field-operations narrative */
.recon-hero {
  height: 100vh;
  min-height: 680px;
}

.recon-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-poster, none) center / cover no-repeat;
  opacity: 0;
  transform: scale(1.08);
  filter: blur(24px) saturate(1.1);
}

.recon-hero .hero-video {
  opacity: 0.9;
  filter: saturate(1.05) contrast(1.08);
}

.recon-hero .hero-scrim {
  background:
    linear-gradient(90deg, rgba(4, 6, 9, 0.58) 0%, rgba(4, 6, 9, 0.2) 48%, rgba(4, 6, 9, 0.08) 100%),
    linear-gradient(180deg, rgba(4, 6, 9, 0.52) 0%, transparent 34%, transparent 58%, rgba(4, 6, 9, 0.82) 100%);
}

.product-video-hero {
  border-top: 1px solid rgba(246, 249, 251, 0.12);
}

.product-video-hero .hero-scrim {
  background:
    linear-gradient(90deg, rgba(4, 6, 9, 0.42) 0%, rgba(4, 6, 9, 0.12) 52%, rgba(4, 6, 9, 0.1) 100%),
    linear-gradient(180deg, rgba(4, 6, 9, 0.36) 0%, transparent 42%, transparent 66%, rgba(4, 6, 9, 0.84) 100%);
}

.recon-hero-stage {
  position: relative;
  z-index: 2;
  width: min(1380px, calc(100% - 56px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 28px;
  padding: 118px 0 44px;
}

.recon-hero-copy {
  align-self: end;
  width: min(560px, 100%);
}

.video-led-hero-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.recon-hero-copy h1 {
  max-width: 560px;
  margin-top: 12px;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.92;
}

.recon-hero-copy p {
  max-width: 430px;
  margin-top: 16px;
  font-size: clamp(16px, 1.18vw, 20px);
  color: rgba(246, 249, 251, 0.86);
}

.hero-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-product-tag {
  display: grid;
  gap: 4px;
  min-width: 132px;
  padding: 11px 13px;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(246, 249, 251, 0.2);
  background: rgba(4, 7, 10, 0.28);
  backdrop-filter: blur(12px);
  border-radius: 6px;
}

.hero-product-tag strong {
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0;
}

.hero-product-tag span {
  color: rgba(246, 249, 251, 0.7);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.recon-hero .hero-actions {
  margin-top: 22px;
}

.recon-hero .button {
  backdrop-filter: blur(14px);
}

.hero-bottomline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(246, 249, 251, 0.22);
}

.hero-bottomline span {
  min-height: 46px;
  display: flex;
  align-items: center;
  color: rgba(246, 249, 251, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.spine-row span,
.flagship-card span,
.support-card span,
.product-system-card span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.mission-map,
.system-spine,
.mission-theater,
.product-system,
.evidence-matrix,
.operating-model,
.recon-partner,
.recon-brief {
  padding: 110px max(24px, calc((100vw - 1240px) / 2));
}

.mission-map {
  background: #edf3f6;
  color: #10151a;
}

.mission-map p,
.mission-map .map-brief p,
.product-system p,
.operating-model p {
  color: rgba(16, 21, 26, 0.7);
}

.mission-map-copy {
  max-width: 960px;
  margin-bottom: 44px;
}

.mission-map-copy h2,
.spine-intro h2,
.theater-head h2,
.product-system-copy h2,
.evidence-copy h2,
.operating-model h2 {
  margin-top: 12px;
}

.mission-map-stage {
  position: relative;
  min-height: 640px;
  border: 1px solid rgba(16, 21, 26, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(rgba(16, 21, 26, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 21, 26, 0.07) 1px, transparent 1px),
    #f7fafb;
  background-size: 54px 54px;
}

.mission-route {
  position: absolute;
  left: 8%;
  top: 58%;
  width: 84%;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--cyan), var(--blue));
  transform: rotate(-12deg);
  transform-origin: left center;
}

.map-tile,
.map-brief {
  position: absolute;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(16, 21, 26, 0.16);
  background: white;
  box-shadow: 0 22px 70px rgba(16, 21, 26, 0.14);
}

.map-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-tile span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: 4px;
  background: rgba(7, 9, 12, 0.76);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.tile-a {
  left: 5%;
  top: 11%;
  width: 40%;
  height: 270px;
}

.tile-b {
  right: 7%;
  top: 8%;
  width: 35%;
  height: 210px;
}

.tile-c {
  right: 12%;
  bottom: 10%;
  width: 39%;
  height: 280px;
}

.map-brief {
  left: 12%;
  bottom: 13%;
  width: 32%;
  padding: 24px;
}

.map-brief b {
  display: block;
  font-size: 22px;
}

.system-spine {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
  gap: 58px;
  background: var(--ink);
}

.spine-intro {
  position: sticky;
  top: 110px;
  align-self: start;
}

.spine-intro p {
  font-size: 18px;
}

.spine-list {
  display: grid;
  gap: 18px;
}

.spine-row {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.72fr);
  gap: 26px;
  min-height: 330px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 249, 251, 0.045);
  align-items: center;
}

.spine-row img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 6px;
}

.mission-theater {
  background: #10151a;
}

.theater-head {
  max-width: 900px;
  margin-bottom: 34px;
}

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

.theater-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 260px;
  gap: 24px;
  align-items: center;
  min-height: 170px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.theater-row > span {
  color: var(--coral);
  font-weight: 900;
}

.theater-row img {
  width: 100%;
  height: 134px;
  object-fit: cover;
  border-radius: 6px;
  opacity: 0.86;
}

.product-system {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  gap: 44px;
  background: #edf3f6;
  color: #10151a;
}

.flagship-and-stack {
  display: grid;
  gap: 18px;
}

.flagship-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.flagship-card,
.product-system-card {
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
  background: #0d1116;
  color: var(--white);
  display: grid;
  grid-template-rows: 1fr auto;
}

.flagship-card {
  min-height: 560px;
  box-shadow: 0 24px 80px rgba(16, 21, 26, 0.16);
}

.flagship-card img,
.product-system-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.flagship-card div,
.product-system-card div {
  padding: 20px;
}

.flagship-card h3 {
  margin-top: 14px;
  font-size: 34px;
}

.flagship-card p {
  color: rgba(246, 249, 251, 0.72);
}

.flagship-card b {
  display: inline-flex;
  margin-top: 12px;
  color: var(--aqua);
  font-size: 13px;
}

.support-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 21, 26, 0.16);
}

.support-stack p {
  margin-bottom: 0;
}

.support-stack-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.support-card {
  min-height: 142px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(16, 21, 26, 0.16);
  background: white;
  color: #10151a;
}

.support-card span {
  color: var(--blue);
}

.support-card strong {
  font-size: 18px;
}

.evidence-matrix {
  background: var(--ink);
}

.evidence-copy {
  max-width: 900px;
  margin-bottom: 34px;
}

.evidence-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr;
  grid-auto-rows: 260px;
  gap: 14px;
}

.evidence-grid figure {
  position: relative;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(246, 249, 251, 0.04);
}

.evidence-grid .evidence-large {
  grid-row: span 2;
}

.evidence-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.evidence-grid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 4px;
  background: rgba(7, 9, 12, 0.72);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.operating-model {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
  gap: 44px;
  background: #f2f6f8;
  color: #10151a;
}

.operating-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.operating-steps article {
  min-height: 220px;
  border: 1px solid rgba(16, 21, 26, 0.16);
  border-radius: 8px;
  padding: 22px;
  background: white;
}

.operating-steps span {
  color: var(--coral);
  font-weight: 900;
}

.operating-steps h3 {
  margin-top: 44px;
}

.recon-partner {
  background: #11161c;
}

.recon-brief {
  background:
    linear-gradient(120deg, rgba(0, 191, 216, 0.12), transparent 34%),
    linear-gradient(180deg, #090c10, var(--ink));
}

@media (max-width: 980px) {
	  .system-spine,
	  .product-system,
	  .support-stack,
	  .operating-model {
	    grid-template-columns: 1fr;
	  }

  .spine-intro {
    position: static;
  }

  .spine-row,
  .theater-row {
    grid-template-columns: 1fr;
  }

	  .flagship-grid,
	  .support-stack-grid,
	  .product-system-grid,
	  .evidence-grid,
	  .operating-steps {
	    grid-template-columns: 1fr;
  }

  .evidence-grid .evidence-large {
    grid-row: auto;
  }

  .mission-map-stage {
    min-height: auto;
    display: grid;
    gap: 14px;
    padding: 14px;
  }

  .mission-route {
    display: none;
  }

  .map-tile,
  .map-brief {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
  }

  .map-tile img {
    height: 240px;
  }
}

@media (max-width: 560px) {
  .recon-hero {
    height: clamp(460px, 68svh, 620px);
    min-height: 0;
    background: #05070a;
  }

  .recon-hero::before {
    opacity: 0.46;
  }

  .recon-hero .hero-video {
    inset: 52% 0 auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    opacity: 1;
    transform: translateY(-50%);
    filter: saturate(1.04) contrast(1.04);
    background: #05070a;
  }

  .recon-hero-stage {
    min-height: 100%;
    width: min(100% - 36px, 1280px);
    padding: 112px 0 24px;
  }

  .recon-hero-copy h1 {
    font-size: 46px;
  }

  .recon-hero-copy p {
    font-size: 16px;
  }

  .hero-product-tags {
    gap: 8px;
  }

  .hero-product-tag {
    min-width: 118px;
    padding: 10px 11px;
  }

  .recon-hero .hero-actions {
    gap: 8px;
  }

  .recon-hero .button {
    min-height: 40px;
    padding: 9px 12px;
  }

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

  .hero-bottomline span {
    min-height: 38px;
    font-size: 11px;
  }

  .mission-map,
  .system-spine,
  .mission-theater,
  .product-system,
  .evidence-matrix,
  .operating-model,
  .recon-partner,
  .recon-brief,
  .loop,
  .role-band {
    padding-left: 18px;
    padding-right: 18px;
  }

	  .spine-row img,
	  .theater-row img,
	  .flagship-card img,
	  .product-system-card img,
	  .evidence-grid figure {
	    height: 240px;
  }
}
