:root {
  --ink: #101820;
  --graphite: #1b252c;
  --graphite-2: #24323b;
  --graphite-3: #30424c;
  --line: #758994;
  --line-soft: #d4dde1;
  --paper: #f3f6f7;
  --white: #ffffff;
  --muted: #b7c8cf;
  --cyan: #43d9f5;
  --cyan-soft: #b8f3ff;
  --red: #f13a2f;
  --military: #9aa66a;
  --signal: #d6ff4a;
  --success: #4fd18b;
  --warning: #ffca66;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

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

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 8px;
  z-index: 30;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--cyan);
  color: var(--ink);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 12px 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(18, 27, 34, 0.95);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand__mark {
  display: inline-grid;
  width: 42px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--cyan);
  border-radius: 4px;
  color: var(--cyan);
}

.brand__name {
  font-size: 0.95rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

.site-nav a {
  position: relative;
  padding: 8px 0;
}

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

.site-nav a,
.header-cta {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="true"] {
  color: var(--white);
}

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

.header-cta {
  padding: 9px 16px;
  border: 1px solid rgba(67, 217, 245, 0.55);
  border-radius: 4px;
  color: var(--cyan);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: rgba(67, 217, 245, 0.12);
}

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

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: 4.25rem;
  line-height: 1.02;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.45rem;
  line-height: 1.12;
  overflow-wrap: break-word;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.25;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.mobile-reveal {
  display: none;
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d93228;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(67, 217, 245, 0.75);
}

.hero {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(420px, 0.86fr);
  grid-template-rows: 1fr auto;
  gap: 0 56px;
  min-height: 760px;
  padding: 92px 54px 0;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(67, 217, 245, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(67, 217, 245, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, #18232b 0%, #2d404b 100%);
  background-size: 96px 96px, 96px 96px, auto;
}

.hero__rail {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: stretch;
  padding-top: 14px;
  border-right: 1px solid rgba(184, 243, 255, 0.24);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  writing-mode: vertical-rl;
}

.hero__copy {
  align-self: center;
  min-width: 0;
  padding-bottom: 42px;
  position: relative;
  z-index: 2;
}

.hero__lead {
  max-width: 680px;
  color: #d9e5e9;
  font-size: 1.16rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__visual {
  position: relative;
  align-self: end;
  min-width: 0;
  min-height: 620px;
  z-index: 1;
  --hero-image-x: 0px;
  --hero-image-y: 0px;
  --hero-reticle-x: 0px;
  --hero-reticle-y: 0px;
}

.hero__visual::before {
  position: absolute;
  inset: 9% 2% 20% 14%;
  border: 1px solid rgba(67, 217, 245, 0.34);
  content: "";
  transition: border-color 180ms ease, transform 220ms ease;
}

.hero__visual::after {
  position: absolute;
  right: 6%;
  top: 18%;
  width: 52%;
  height: 44%;
  border: 1px dashed rgba(67, 217, 245, 0.42);
  content: "";
  transform: translate(var(--hero-reticle-x), var(--hero-reticle-y));
  transition: border-color 180ms ease, transform 220ms ease;
}

.hero__visual img {
  position: relative;
  z-index: 1;
  width: 108%;
  max-width: none;
  margin-left: 0;
  transform: translate(calc(4% + var(--hero-image-x)), var(--hero-image-y));
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.38));
  transition: transform 220ms ease, filter 220ms ease;
}

.hero__visual.is-interacting::before,
.hero__visual.is-interacting::after {
  border-color: rgba(214, 255, 74, 0.5);
}

.hero__visual.is-interacting img {
  filter: drop-shadow(0 32px 46px rgba(0, 0, 0, 0.44));
}

.target-panel {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 14%;
  display: grid;
  gap: 1px;
  width: 168px;
  border: 1px solid rgba(67, 217, 245, 0.48);
  background: rgba(67, 217, 245, 0.25);
}

.target-panel span {
  padding: 10px 12px;
  background: rgba(15, 24, 31, 0.88);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 700;
}

.metric-ledger {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr 1.2fr;
  margin: 0 -54px 0 0;
  border-top: 1px solid rgba(184, 243, 255, 0.22);
  background: rgba(13, 21, 28, 0.62);
  min-width: 0;
}

.metric-ledger div {
  min-height: 118px;
  padding: 22px 26px;
  border-right: 1px solid rgba(184, 243, 255, 0.18);
}

.metric-ledger dt {
  max-width: 220px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.86rem;
}

.metric-ledger dd {
  margin: 0;
  color: var(--cyan-soft);
  font-size: 1.34rem;
  font-weight: 700;
}

.brief-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) 1.15fr;
  border-bottom: 1px solid var(--line-soft);
  background: var(--white);
}

.brief-band__statement {
  padding: 36px 48px;
  border-right: 1px solid var(--line-soft);
}

.brief-band__statement span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-weight: 700;
}

.brief-band__statement p {
  max-width: 640px;
  margin-bottom: 0;
  font-size: 1.18rem;
  line-height: 1.5;
}

.brief-band__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
}

.brief-band__facts div {
  min-height: 148px;
  padding: 34px 28px;
  border-right: 1px solid var(--line-soft);
}

.brief-band__facts div:last-child {
  border-right: 0;
}

.brief-band__facts dt {
  margin-bottom: 12px;
  color: #62727a;
  font-size: 0.88rem;
}

.brief-band__facts dd {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
}

.section,
.lead-section {
  padding: 88px 64px;
}

.section-light {
  color: var(--ink);
  background: var(--paper);
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(67, 217, 245, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(67, 217, 245, 0.06) 1px, transparent 1px),
    #1a2730;
  background-size: 92px 92px, 92px 92px, auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading--wide {
  max-width: 940px;
}

.system-dossier {
  display: grid;
  gap: 32px;
}

.dossier {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  min-height: 520px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--white);
  transition: border-color 180ms ease;
}

.dossier:hover {
  border-color: rgba(67, 217, 245, 0.52);
}

.dossier--launcher {
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
}

.dossier__image {
  position: relative;
  display: grid;
  min-height: 480px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(67, 217, 245, 0.16), transparent 42%),
    linear-gradient(90deg, rgba(67, 217, 245, 0.09) 1px, transparent 1px),
    linear-gradient(0deg, rgba(67, 217, 245, 0.08) 1px, transparent 1px),
    #101820;
  background-size: auto, 64px 64px, 64px 64px, auto;
}

.dossier__image img {
  position: relative;
  z-index: 1;
  width: 92%;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.38));
  transition: transform 220ms ease, filter 220ms ease;
}

.dossier:hover .dossier__image img {
  transform: translateY(-4px);
  filter: drop-shadow(0 26px 36px rgba(0, 0, 0, 0.44));
}

.dossier__body {
  align-self: center;
  padding: 46px;
}

.dossier__code {
  margin-bottom: 10px;
  color: var(--red);
  font-weight: 700;
}

.dossier__body p {
  color: #43535b;
  line-height: 1.64;
}

.dossier__rows {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid var(--line-soft);
}

.dossier__rows span {
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
  font-weight: 700;
  transition: color 160ms ease, padding-left 160ms ease;
}

.dossier__rows span:hover {
  padding-left: 8px;
  color: var(--red);
}

.callout {
  position: absolute;
  z-index: 2;
  padding: 8px 10px;
  border: 1px solid rgba(67, 217, 245, 0.5);
  background: rgba(18, 29, 36, 0.82);
  color: var(--cyan-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.callout::before {
  position: absolute;
  top: 50%;
  width: 82px;
  height: 1px;
  background: rgba(67, 217, 245, 0.48);
  content: "";
}

.callout--one {
  left: 8%;
  top: 24%;
}

.callout--one::before {
  left: 100%;
}

.callout--two {
  right: 8%;
  top: 18%;
}

.callout--two::before {
  right: 100%;
}

.callout--three {
  right: 10%;
  bottom: 22%;
}

.callout--three::before {
  right: 100%;
}

.launch-sequence {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-soft);
}

.launch-sequence li {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  min-height: 54px;
  border-bottom: 1px solid var(--line-soft);
  font-weight: 700;
}

.launch-sequence span,
.argument-ledger span,
.deployment-track span {
  color: var(--red);
  font-weight: 700;
}

.argument-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: 54px;
  align-items: start;
}

.field-video {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 54px;
  align-items: center;
  padding: 88px 64px;
}

.field-video__brief {
  max-width: 720px;
}

.field-video__brief h2 {
  max-width: 680px;
}

.field-video__brief p {
  max-width: 620px;
  color: #d8e4e8;
  line-height: 1.65;
}

.field-video__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px 0 0;
  border-top: 1px solid rgba(184, 243, 255, 0.2);
  border-bottom: 1px solid rgba(184, 243, 255, 0.2);
}

.field-video__meta div {
  min-height: 92px;
  padding: 18px;
  border-right: 1px solid rgba(184, 243, 255, 0.16);
  transition: background 160ms ease;
}

.field-video__meta div:hover {
  background: rgba(67, 217, 245, 0.06);
}

.field-video__meta div:last-child {
  border-right: 0;
}

.field-video__meta dt {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.84rem;
}

.field-video__meta dd {
  margin: 0;
  color: var(--signal);
  font-weight: 700;
}

.field-video__frame {
  display: grid;
  justify-items: end;
}

.video-shell {
  position: relative;
  width: min(100%, 390px);
  padding: 10px;
  border: 1px solid rgba(214, 255, 74, 0.36);
  background:
    linear-gradient(135deg, rgba(214, 255, 74, 0.12), transparent 34%),
    #090d10;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.video-shell:hover,
.video-shell:focus-within {
  transform: translateY(-2px);
  border-color: rgba(214, 255, 74, 0.72);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.video-shell::before {
  position: absolute;
  left: -22px;
  top: 24px;
  padding: 6px 8px;
  background: var(--red);
  color: var(--white);
  content: "REC";
  font-size: 0.72rem;
  font-weight: 700;
}

.video-shell video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 480 / 688;
  background: #050809;
}

.argument-layout__lead {
  position: sticky;
  top: 92px;
}

.argument-layout__lead p {
  max-width: 560px;
  color: #d8e4e8;
  line-height: 1.65;
}

.argument-ledger {
  display: grid;
  border-top: 1px solid rgba(184, 243, 255, 0.24);
}

.argument-ledger div {
  display: grid;
  grid-template-columns: 62px 0.8fr 1fr;
  gap: 22px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid rgba(184, 243, 255, 0.24);
  transition: background 160ms ease, border-color 160ms ease;
}

.argument-ledger div:hover {
  background: rgba(67, 217, 245, 0.05);
  border-color: rgba(67, 217, 245, 0.42);
}

.argument-ledger strong {
  color: var(--white);
  line-height: 1.35;
}

.argument-ledger p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.field-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: start;
}

.field-map__header {
  grid-column: 1 / -1;
  max-width: 800px;
}

.field-map__matrix {
  border-top: 1px solid var(--line-soft);
  background: var(--white);
}

.field-map__matrix div {
  display: grid;
  grid-template-columns: 290px 1fr;
  min-height: 98px;
  border-bottom: 1px solid var(--line-soft);
  transition: background 160ms ease;
}

.field-map__matrix div:hover {
  background: #edf4f6;
}

.field-map__matrix span {
  padding: 24px 28px;
  color: var(--graphite);
  font-weight: 700;
}

.field-map__matrix p {
  margin: 0;
  padding: 24px 28px;
  border-left: 1px solid var(--line-soft);
  color: #43535b;
  line-height: 1.55;
}

.field-map__aside {
  padding: 28px 0 0 26px;
  border-left: 3px solid var(--red);
}

.field-map__aside span {
  display: block;
  margin-bottom: 14px;
  color: var(--graphite);
  font-weight: 700;
}

.field-map__aside p {
  color: #43535b;
  line-height: 1.62;
}

.section-specs {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(67, 217, 245, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(67, 217, 245, 0.06) 1px, transparent 1px),
    #17222a;
  background-size: 92px 92px, 92px 92px, auto;
}

.spec-header {
  max-width: 760px;
  margin-bottom: 42px;
}

.spec-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 18px;
}

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

.spec-table {
  border: 1px solid rgba(184, 243, 255, 0.2);
  background: #22333d;
}

.spec-table--main {
  align-self: stretch;
}

.spec-table h3 {
  margin: 0;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(184, 243, 255, 0.2);
  color: var(--cyan);
}

.spec-table dl {
  margin: 0;
}

.spec-table div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(184, 243, 255, 0.12);
  transition: background 160ms ease;
}

.spec-table div:hover {
  background: rgba(67, 217, 245, 0.06);
}

.spec-table div:last-child {
  border-bottom: 0;
}

.spec-table dt {
  color: var(--muted);
}

.spec-table dd {
  margin: 0;
  color: var(--white);
  font-weight: 700;
  text-align: right;
}

.deployment {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.deployment__intro {
  position: sticky;
  top: 92px;
}

.deployment-track {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-soft);
}

.deployment-track li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: background 160ms ease, padding-left 160ms ease;
}

.deployment-track li:hover {
  padding-left: 12px;
  background: rgba(67, 217, 245, 0.06);
}

.deployment-track h3 {
  margin-bottom: 8px;
}

.deployment-track p {
  max-width: 720px;
  margin-bottom: 0;
  color: #43535b;
  line-height: 1.55;
}

.contacts-section {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 46px;
  border-top: 1px solid var(--line-soft);
}

.contacts-section__head {
  max-width: 300px;
}

.contact-roster {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-soft);
  background: var(--white);
}

.contact-roster article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  padding: 26px 28px;
  border-bottom: 1px solid var(--line-soft);
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.contact-roster article:hover {
  transform: translateY(-2px);
  border-color: rgba(67, 217, 245, 0.42);
}

.contact-roster__index {
  color: var(--red);
  font-weight: 700;
}

.contact-roster__role {
  margin-bottom: 8px;
  color: #62727a;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-roster h3 {
  margin-bottom: 18px;
}

.contact-roster dl {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line-soft);
}

.contact-roster dl div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}

.contact-roster dt {
  color: #62727a;
}

.contact-roster dd {
  margin: 0;
  font-weight: 700;
}

.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: start;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(67, 217, 245, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(67, 217, 245, 0.06) 1px, transparent 1px),
    #1a2730;
  background-size: 92px 92px, 92px 92px, auto;
}

.lead-section__copy {
  max-width: 620px;
}

.lead-section__copy p {
  color: #d8e4e8;
  line-height: 1.65;
}

.lead-note {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 3px solid var(--red);
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  line-height: 1.5;
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(184, 243, 255, 0.22);
  border-radius: 4px;
  background: rgba(16, 24, 32, 0.78);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.lead-form:focus-within {
  border-color: rgba(67, 217, 245, 0.62);
  box-shadow: 0 0 0 3px rgba(67, 217, 245, 0.08);
}

.lead-contacts {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
  margin-top: 12px;
  padding-top: 34px;
  border-top: 1px solid rgba(184, 243, 255, 0.22);
}

.lead-contacts__head {
  max-width: 300px;
}

.lead-contacts__head h2 {
  color: var(--white);
}

.lead-contacts .contact-roster {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border-top: 0;
  background: transparent;
}

.lead-contacts .contact-roster article {
  min-width: 0;
  border: 1px solid rgba(184, 243, 255, 0.22);
  background: rgba(16, 24, 32, 0.78);
}

.lead-contacts .contact-roster__role,
.lead-contacts .contact-roster dt {
  color: var(--muted);
}

.lead-contacts .contact-roster h3,
.lead-contacts .contact-roster dd {
  color: var(--white);
}

.lead-contacts .contact-roster dl,
.lead-contacts .contact-roster dl div {
  border-color: rgba(184, 243, 255, 0.18);
}

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

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(184, 243, 255, 0.22);
  border-radius: 4px;
  background: #101820;
  color: var(--white);
  outline: 0;
}

.lead-form input,
.lead-form select {
  min-height: 48px;
  padding: 0 12px;
}

.lead-form textarea {
  resize: vertical;
  min-height: 112px;
  padding: 12px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(67, 217, 245, 0.18);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #7f929b;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.consent input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--red);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

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

.form-status.is-error {
  color: var(--warning);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 34px;
  background: #0f171d;
  color: var(--muted);
}

@media (max-width: 1180px) {
  h1 {
    font-size: 3.45rem;
  }

  .hero {
    grid-template-columns: 42px 1fr;
    grid-template-rows: auto auto auto;
    gap: 28px;
  }

  .hero__visual {
    grid-column: 2;
    min-height: 420px;
  }

  .hero__visual img {
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .metric-ledger {
    grid-column: 2;
    grid-template-columns: repeat(2, 1fr);
    margin-right: 0;
  }

  .dossier,
  .dossier--launcher,
  .argument-layout,
  .field-video,
  .spec-layout,
  .deployment,
  .contacts-section,
  .lead-contacts,
  .lead-section {
    grid-template-columns: 1fr;
  }

  .argument-layout__lead,
  .deployment__intro {
    position: static;
  }

  .field-map {
    grid-template-columns: 1fr;
  }

  .field-map__aside {
    max-width: 620px;
  }

  .field-video__frame {
    justify-items: start;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 12px 18px;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 52px 22px 0;
  }

  .hero__rail {
    display: none;
  }

  .hero__visual,
  .metric-ledger {
    grid-column: 1;
  }

  .section,
  .lead-section {
    padding: 52px 22px;
  }

  .field-video {
    padding: 52px 22px;
  }

  .brief-band__statement {
    padding: 28px 22px;
  }

  h1 {
    font-size: 2.42rem;
  }

  h2 {
    font-size: 2rem;
  }

  .brief-band,
  .brief-band__facts,
  .field-video__meta,
  .metric-ledger,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .brief-band__statement,
  .brief-band__facts div {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .brief-band__facts div,
  .metric-ledger div,
  .field-video__meta div {
    min-height: 0;
    padding: 18px 22px;
  }

  .dossier__body {
    padding: 28px 22px;
  }

  .dossier__image {
    min-height: 300px;
  }

  .dossier {
    min-height: 0;
  }

  .callout {
    display: none;
  }

  .argument-ledger div {
    grid-template-columns: 48px 1fr;
  }

  .argument-ledger p {
    grid-column: 2;
  }

  .argument-ledger div,
  .deployment-track li {
    padding: 20px 0;
  }

  .field-map__matrix div {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .field-map__matrix p {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
  }

  .deployment-track li {
    grid-template-columns: 48px 1fr;
  }

  [data-mobile-limit] > [hidden] {
    display: none !important;
  }

  .mobile-reveal {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 10px 14px;
    border: 1px solid rgba(67, 217, 245, 0.45);
    border-radius: 4px;
    background: rgba(67, 217, 245, 0.08);
    color: var(--cyan);
    font-weight: 700;
    cursor: pointer;
  }

  .mobile-reveal[hidden] {
    display: none;
  }

  .contacts-section__head {
    max-width: none;
  }

  .lead-contacts__head {
    max-width: none;
  }

  .lead-contacts .contact-roster {
    grid-template-columns: 1fr;
  }

  .contact-roster article {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 24px 0;
  }

  .lead-contacts .contact-roster article {
    padding: 24px;
  }

  .contact-roster dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 520px) {
  .brand__name {
    display: none;
  }

  .header-cta {
    padding: 9px 12px;
  }

  h1 {
    font-size: 2.02rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .hero__visual {
    min-height: 290px;
  }

  .field-video {
    padding: 48px 22px;
  }

  .video-shell {
    width: 100%;
  }

  .video-shell::before {
    left: 10px;
    top: 10px;
  }

  .target-panel {
    display: none;
  }

  .brief-band__statement,
  .brief-band__facts div,
  .lead-form {
    padding: 22px;
  }

  .spec-table div {
    grid-template-columns: 1fr;
  }

  .spec-table dd {
    text-align: left;
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 22px;
  }
}

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