@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@600;700&display=swap");

:root {
  --ink: #070908;
  --panel: rgba(15, 18, 16, 0.72);
  --panel-strong: rgba(21, 25, 22, 0.9);
  --line: rgba(207, 228, 203, 0.16);
  --line-hot: rgba(240, 116, 45, 0.42);
  --text: #f1f5ed;
  --muted: #aeb8ad;
  --dim: #747d75;
  --green: #9fbd76;
  --orange: #f07a35;
  --amber: #faaa22;
  --metal: #c8cdc1;
  --shadow: rgba(0, 0, 0, 0.56);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-width: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(240, 122, 53, 0.13), transparent 30rem),
    radial-gradient(circle at 82% 12%, rgba(159, 189, 118, 0.12), transparent 28rem),
    linear-gradient(180deg, #090c0a 0%, #0d100e 38%, #080a09 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: none;
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08));
}

body::after {
  content: none;
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 4px);
  opacity: 0.08;
}

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

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

[data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.site-header {
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 30;
  width: min(calc(100% - 28px), var(--max));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 4vw, 54px);
  min-height: 76px;
  padding: 14px 18px;
  border: 1px solid rgba(207, 228, 203, 0.16);
  border-bottom-color: rgba(240, 122, 53, 0.24);
  background: linear-gradient(180deg, rgba(12, 15, 13, 0.94), rgba(7, 9, 8, 0.9));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34), inset 0 1px rgba(255, 255, 255, 0.04);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 174px;
  height: auto;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 38px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(207, 228, 203, 0.18);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span + span {
  margin-top: 0;
  transform: none;
}

.nav-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-open .menu-toggle span + span {
  transform: translateY(-4px) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-links a,
.compact-link {
  padding: 11px 18px;
  border: 1px solid transparent;
  color: var(--muted);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.nav-links a.nav-cta {
  min-width: 112px;
  padding: 12px 22px;
  border-color: rgba(207, 228, 203, 0.24);
  background: rgba(207, 228, 203, 0.075);
  color: var(--text);
  text-align: center;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.07);
}

.nav-links a.nav-cta:hover {
  border-color: rgba(240, 122, 53, 0.48);
  background: rgba(240, 122, 53, 0.14);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  min-width: 154px;
  padding: 0 32px;
  overflow: hidden;
  border: 1px solid rgba(217, 229, 210, 0.18);
  border-radius: 2px;
  background: rgba(6, 8, 7, 0.82);
  color: var(--text);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 10px 24px rgba(0, 0, 0, 0.2);
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
  transform: translateZ(0);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0 22%, rgba(255, 255, 255, 0.13) 42%, transparent 62% 100%);
  opacity: 0;
  transform: translate3d(-55%, 0, 0);
  transition: opacity 180ms ease, transform 280ms ease;
  pointer-events: none;
}

.btn.primary {
  border-color: rgba(240, 122, 53, 0.52);
  background: linear-gradient(180deg, rgba(240, 122, 53, 0.8), rgba(166, 72, 28, 0.78));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.18), 0 14px 28px rgba(240, 122, 53, 0.16);
}

.btn.secondary {
  border-color: rgba(207, 228, 203, 0.3);
  background: linear-gradient(180deg, rgba(18, 23, 20, 0.9), rgba(5, 7, 6, 0.88));
}

.btn:hover {
  border-color: rgba(245, 171, 98, 0.64);
  color: #fffaf2;
  transform: translate3d(0, -1px, 0);
}

.btn:hover::before {
  opacity: 1;
  transform: translate3d(55%, 0, 0);
}

.hero {
  position: relative;
  min-height: clamp(690px, 100svh, 900px);
  display: grid;
  align-items: end;
  padding: clamp(122px, 15vh, 160px) 0 clamp(48px, 7vh, 72px);
  overflow: hidden;
  background: #080a09;
}

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

.hero-media video,
.hero-media img {
  object-fit: cover;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.hero-media video {
  object-position: center center;
}

.hero::before,
.systems-hero::before,
.contact-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 9, 8, 0.92), rgba(7, 9, 8, 0.36) 48%, rgba(7, 9, 8, 0.82)),
    linear-gradient(180deg, rgba(7, 9, 8, 0.28), rgba(7, 9, 8, 0.95));
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(5, 7, 6, 0.94), rgba(5, 7, 6, 0.52) 48%, rgba(5, 7, 6, 0.85)),
    linear-gradient(180deg, rgba(5, 7, 6, 0.42), rgba(5, 7, 6, 0.96));
}

.hero-media::after {
  content: none;
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 48% 42%, transparent 0 18rem, rgba(0, 0, 0, 0.18) 34rem),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 5px);
  opacity: 0.2;
}

.hero::after,
.systems-hero::after {
  content: none;
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(159, 189, 118, 0.1) 12.15%, transparent 12.3% 88%, rgba(240, 122, 53, 0.1) 88.15%, transparent 88.3%),
    linear-gradient(180deg, transparent 0 22%, rgba(255, 255, 255, 0.08) 22.1%, transparent 22.2% 78%, rgba(255, 255, 255, 0.05) 78.1%, transparent 78.2%);
  opacity: 0.55;
  pointer-events: none;
}

.hero-inner,
.section-inner,
.systems-hero-inner,
.footer-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 392px);
  gap: clamp(28px, 6vw, 78px);
  align-items: end;
}

.hero-content {
  width: min(700px, 100%);
}

.legacy-panel {
  align-self: end;
  position: relative;
  padding: 22px;
  border: 1px solid rgba(207, 228, 203, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.01)),
    rgba(7, 10, 8, 0.76);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3), inset 0 1px rgba(255, 255, 255, 0.045);
}

.legacy-panel::before,
.mission-console::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(207, 228, 203, 0.055);
  pointer-events: none;
}

.panel-kicker {
  color: var(--green);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legacy-panel > strong {
  display: block;
  margin: 0 0 18px;
  color: var(--text);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: clamp(34px, 3.6vw, 46px);
  line-height: 0.9;
  text-transform: uppercase;
}

.legacy-highlight {
  padding: 14px 0 16px;
  border-top: 1px solid rgba(240, 122, 53, 0.32);
  border-bottom: 1px solid rgba(207, 228, 203, 0.12);
  background: transparent;
}

.legacy-highlight b {
  display: block;
  color: var(--orange);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 40px;
  line-height: 0.9;
  text-transform: uppercase;
}

.legacy-highlight span,
.legacy-grid span,
.legacy-chips span,
.legacy-panel p {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.legacy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 0;
}

.legacy-grid div {
  min-height: 0;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(207, 228, 203, 0.1);
  background: transparent;
}

.legacy-grid b {
  display: block;
  color: var(--text);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.legacy-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.legacy-chips span {
  padding: 6px 8px;
  border: 1px solid rgba(159, 189, 118, 0.22);
  background: rgba(159, 189, 118, 0.08);
  color: var(--green);
}

.legacy-panel p {
  margin: 12px 0 0;
  color: var(--text);
  letter-spacing: 0.08em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--green);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--orange);
}

.tactical-label {
  color: #d7e7cb;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}

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

.hero h1,
.systems-hero h1 {
  margin-bottom: 18px;
  max-width: 720px;
  font-size: clamp(48px, 7vw, 92px) !important;
  line-height: 0.88;
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.hero-title .accent-line {
  color: var(--orange);
  text-shadow: 0 0 30px rgba(240, 122, 53, 0.18);
}

.systems-hero h1 {
  max-width: 620px;
  font-size: clamp(40px, 5.15vw, 66px) !important;
  line-height: 0.92;
}

.section h2,
.contact-band h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 56px) !important;
  line-height: 0.96;
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.system-card h3,
.cap h3,
.why h3,
.contact-card h3 {
  margin-bottom: 9px;
  font-size: 22px !important;
  line-height: 1;
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: #d4ddd1;
  font-family: Rajdhani, Inter, sans-serif;
  font-size: clamp(18px, 1.85vw, 23px);
  font-weight: 700;
  line-height: 1.35;
}

.section {
  position: relative;
  padding: 78px 0;
  scroll-margin-top: 96px;
  background: linear-gradient(180deg, #090c0a 0%, #0a0d0b 46%, #090c0a 100%);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 24%, rgba(240, 122, 53, 0.08), transparent 22rem),
    radial-gradient(circle at 84% 56%, rgba(159, 189, 118, 0.07), transparent 24rem),
    linear-gradient(180deg, rgba(9, 12, 10, 0), rgba(9, 12, 10, 0.22) 24%, rgba(9, 12, 10, 0.22) 76%, rgba(9, 12, 10, 0)),
    linear-gradient(90deg, transparent 0 8%, rgba(255, 255, 255, 0.035) 8.05%, transparent 8.1% 92%, rgba(255, 255, 255, 0.025) 92.05%, transparent 92.1%);
  opacity: 0.62;
}

.section-inner {
  position: relative;
}

.section.tight {
  padding: 54px 0;
}

.systems-hero + .section {
  padding-top: 58px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 26px;
}

.section-head p {
  color: var(--muted);
  line-height: 1.55;
}

.lineup-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  gap: 14px;
}

.system-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  transition: border-color 150ms ease;
}

.system-card::after,
.deep-card::after,
.cap::after,
.why::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(207, 228, 203, 0.055);
  pointer-events: none;
  z-index: 2;
}

.system-card:hover {
  border-color: rgba(240, 122, 53, 0.32);
}

.system-card.feature {
  grid-row: span 2;
  min-height: 520px;
}

.system-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) brightness(1.01);
  backface-visibility: hidden;
}

.deep-card {
  transition: border-color 150ms ease;
}

.deep-card:hover {
  border-color: rgba(240, 122, 53, 0.25);
}

.deep-card:hover .deep-media img {
  transform: none;
}

.system-card::before,
.media-card::before,
.deep-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 8, 7, 0), rgba(6, 8, 7, 0.72)),
    linear-gradient(90deg, rgba(6, 8, 7, 0.46), transparent 64%);
}

.card-copy {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 16px;
}

.tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 8px;
  border: 1px solid rgba(159, 189, 118, 0.34);
  color: var(--green);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.metric-row span {
  padding: 7px 9px;
  border: 1px solid rgba(250, 170, 34, 0.24);
  background: rgba(250, 170, 34, 0.07);
  color: var(--amber);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.055);
}

.system-card.feature h3 {
  font-size: 38px !important;
}

.system-card h3 {
  color: #fff8ef;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.64);
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.cap {
  position: relative;
  min-height: 160px;
  padding: 18px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(10, 13, 11, 0.76);
}

.cap:last-child {
  border-right: 0;
}

.cap .num {
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 28px;
}

.cap p,
.system-card p,
.deep-card p,
.why p {
  color: var(--muted);
  line-height: 1.5;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 220px;
  gap: 14px;
}

.media-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.media-card.large {
  grid-row: span 2;
}

.media-card img,
.media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95) contrast(1.06);
  backface-visibility: hidden;
}

.media-label {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 12px;
  right: 14px;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.why {
  position: relative;
  padding: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
}

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

.client {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.client img {
  max-height: 54px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0.15) drop-shadow(0 10px 18px rgba(0, 0, 0, 0.3));
}

.contact-band {
  position: relative;
  overflow: hidden;
  padding: 78px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 20%, rgba(240, 122, 53, 0.17), transparent 26rem),
    radial-gradient(circle at 76% 65%, rgba(159, 189, 118, 0.16), transparent 24rem),
    #090c0a;
}

.contact-band::after {
  content: none;
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(207, 228, 203, 0.08);
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(159, 189, 118, 0.08) 18.1%, transparent 18.2%),
    linear-gradient(180deg, transparent 0 68%, rgba(240, 122, 53, 0.08) 68.1%, transparent 68.2%);
  pointer-events: none;
}

.contact-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(230px, 0.62fr) minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.contact-card {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(8, 10, 9, 0.72);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.36);
}

.contact-card p {
  color: var(--muted);
}

.contact-intro {
  display: grid;
  align-content: center;
}

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

.contact-method {
  min-height: 118px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(207, 228, 203, 0.18);
  background: rgba(255, 255, 255, 0.048);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
  transition: border-color 150ms ease, background 150ms ease;
}

.contact-method:hover {
  border-color: var(--line-hot);
  background: rgba(240, 122, 53, 0.08);
}

.mission-console {
  position: relative;
  min-height: 100%;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(240, 122, 53, 0.22);
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 7px),
    linear-gradient(135deg, rgba(240, 122, 53, 0.08), transparent 44%),
    rgba(7, 10, 8, 0.82);
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--green);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.console-top b {
  color: var(--orange);
}

.mission-console p {
  margin: 0;
  color: #d4ddd1;
  line-height: 1.45;
}

.console-cta {
  display: inline-flex;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid rgba(207, 228, 203, 0.24);
  background: rgba(207, 228, 203, 0.1);
  color: var(--text);
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-method span {
  color: var(--orange);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-method b {
  color: var(--text);
  font-family: Rajdhani, Inter, sans-serif;
  font-weight: 900;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.25;
}

.contact-method.linkedin span {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(207, 228, 203, 0.18);
  color: var(--text);
  font-size: 15px;
  text-transform: none;
}

.footer {
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 12px;
}

.made {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.systems-hero {
  position: relative;
  min-height: clamp(680px, 94svh, 860px);
  display: grid;
  align-items: end;
  padding: clamp(118px, 14vh, 150px) 0 clamp(48px, 7vh, 68px);
  overflow: hidden;
}

.systems-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  transform: scale(1.02);
  filter: brightness(0.56) contrast(1.08) saturate(1.02);
  backface-visibility: hidden;
}

.systems-hero::before {
  background:
    radial-gradient(circle at 68% 38%, rgba(159, 189, 118, 0.08), transparent 22rem),
    linear-gradient(90deg, rgba(7, 9, 8, 0.9), rgba(7, 9, 8, 0.46) 52%, rgba(7, 9, 8, 0.8)),
    linear-gradient(180deg, rgba(7, 9, 8, 0.16), rgba(7, 9, 8, 0.88) 82%, #090c0a 100%);
}

.systems-hero::after {
  background:
    linear-gradient(90deg, transparent 0 9%, rgba(159, 189, 118, 0.11) 9.08%, transparent 9.16% 88%, rgba(240, 122, 53, 0.1) 88.08%, transparent 88.16%),
    linear-gradient(180deg, transparent 0 28%, rgba(255, 255, 255, 0.08) 28.08%, transparent 28.16% 76%, rgba(255, 255, 255, 0.05) 76.08%, transparent 76.16%);
}

.hero-ops {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(560px, 100%);
  margin-top: 18px;
}

.hero-ops div {
  padding: 13px 14px;
  border: 1px solid rgba(207, 228, 203, 0.2);
  background: rgba(8, 10, 9, 0.58);
}

.systems-panel {
  position: absolute;
  right: max(16px, calc((100vw - var(--max)) / 2));
  bottom: 56px;
  z-index: 2;
  width: min(392px, calc(100% - 32px));
}

.systems-panel .legacy-grid span {
  color: #faa222;
}

.hero-ops span {
  display: block;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-ops b {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 19px;
  text-transform: uppercase;
}

.systems-shell {
  display: grid;
  gap: 18px;
}

.deep-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 0;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(12, 15, 13, 0.8);
  scroll-margin-top: 104px;
}

.deep-card.reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.deep-card.reverse .deep-media {
  order: -1;
}

.deep-copy {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 3.5vw, 38px);
  align-self: center;
}

.deep-media {
  position: relative;
  min-height: 360px;
}

.deep-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.08) contrast(1.06) saturate(1.04);
  backface-visibility: hidden;
}

.deep-card h2 {
  font-size: clamp(34px, 5vw, 68px) !important;
  line-height: 0.9;
}

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

.spec {
  padding: 13px;
  border: 1px solid rgba(207, 228, 203, 0.17);
  background: rgba(255, 255, 255, 0.052);
  transition: border-color 160ms ease, background 160ms ease;
}

.spec:hover {
  border-color: rgba(240, 122, 53, 0.28);
  background: rgba(240, 122, 53, 0.06);
}

.spec b {
  display: block;
  color: var(--amber);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 18px;
  line-height: 1.04;
}

.spec span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.system-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.system-nav a {
  padding: 12px 15px;
  border: 1px solid rgba(207, 228, 203, 0.24);
  background: rgba(7, 10, 8, 0.78);
  color: var(--text);
  font-family: Rajdhani, Inter, sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.system-nav a:hover {
  color: var(--text);
  border-color: var(--line-hot);
}

.download-chip {
  display: inline-flex;
  margin-top: 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 920px) {
  .site-header {
    top: 8px;
    width: min(calc(100% - 16px), var(--max));
  }

  .brand img {
    width: 128px;
  }

  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    padding: 8px 7px;
    font-size: 10px;
  }

  .hero {
    min-height: auto;
    padding-top: 96px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .systems-panel {
    display: none;
  }

  .section-head,
  .deep-card,
  .deep-card.reverse {
    grid-template-columns: 1fr;
  }

  .deep-card.reverse .deep-media {
    order: 0;
  }

  .lineup-grid,
  .media-grid {
    grid-template-columns: 1fr 1fr;
  }

  .system-card.feature,
  .media-card.large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .cap-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    gap: 12px;
    min-height: 62px;
    padding: 9px 10px;
    width: min(calc(100% - 16px), var(--max));
    z-index: 80;
  }

  .brand img {
    width: 124px;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
    width: 44px;
    height: 40px;
    background: rgba(207, 228, 203, 0.07);
  }

  .nav-links {
    position: absolute;
    z-index: 90;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
    border: 1px solid rgba(207, 228, 203, 0.13);
    background: rgba(8, 10, 9, 0.94);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.44);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
    overflow: visible;
  }

  .site-header.nav-open .nav-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    padding: 13px 10px;
    text-align: center;
    font-size: 14px;
  }

  .nav-links a.nav-cta {
    padding: 13px 10px;
    min-width: 0;
    border-color: rgba(207, 228, 203, 0.22);
    background: rgba(207, 228, 203, 0.08);
  }

  .hero,
  .systems-hero {
    min-height: auto;
    padding-top: 94px;
  }

  .hero {
    padding-bottom: 34px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(5, 7, 6, 0.94), rgba(5, 7, 6, 0.62) 50%, rgba(5, 7, 6, 0.88)),
      linear-gradient(180deg, rgba(5, 7, 6, 0.52), rgba(5, 7, 6, 0.95) 72%, rgba(5, 7, 6, 0.98));
  }

  .hero h1 {
    font-size: clamp(40px, 12.6vw, 56px) !important;
    line-height: 0.9;
  }

  .systems-hero h1 {
    font-size: clamp(34px, 11vw, 48px) !important;
    line-height: 0.92;
  }

  .lead {
    font-size: 17px;
    line-height: 1.32;
    margin-bottom: 22px;
  }

  .button-row {
    gap: 10px;
  }

  .btn {
    min-height: 54px;
    flex: 1 1 150px;
    min-width: 0;
    padding: 0 18px;
    font-size: 15px;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  }

  .home-capabilities {
    display: none;
  }

  .lineup-grid,
  .media-grid,
  .cap-grid,
  .why-grid,
  .contact-methods,
  .client-strip,
  .spec-grid {
    grid-template-columns: 1fr;
  }

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

  .system-card,
  .system-card.feature {
    min-height: 265px;
  }

  .legacy-panel {
    padding: 14px;
  }

  .legacy-panel > strong {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .legacy-highlight {
    padding: 10px;
  }

  .legacy-highlight b {
    font-size: 28px;
  }

  .legacy-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .legacy-grid div {
    min-height: 58px;
    padding: 8px;
  }

  .legacy-grid b {
    font-size: 16px;
  }

  .legacy-chips span {
    padding: 5px 7px;
    font-size: 9px;
  }

  .section {
    padding: 46px 0;
  }

  .systems-hero + .section {
    padding-top: 28px;
  }

  .section.tight {
    padding: 38px 0;
  }

  .section-head {
    gap: 12px;
    margin-bottom: 18px;
  }

  .section h2,
  .contact-band h2 {
    font-size: clamp(28px, 10vw, 40px) !important;
  }

  .card-copy {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .system-card h3,
  .cap h3,
  .why h3,
  .contact-card h3 {
    font-size: 24px !important;
  }

  .system-card.feature h3 {
    font-size: 30px !important;
  }

  .metric-row {
    gap: 6px;
    margin-top: 11px;
  }

  .metric-row span {
    padding: 6px 8px;
    font-size: 10px;
  }

  .media-grid {
    grid-auto-rows: 220px;
  }

  .media-grid .media-card:nth-child(2),
  .media-grid .media-card:nth-child(3) {
    display: none;
  }

  .why p {
    display: none;
  }

  .client-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .client {
    min-height: 74px;
    padding: 10px;
  }

  .client img {
    max-height: 44px;
  }

  .systems-hero {
    min-height: auto;
    padding-bottom: 34px;
  }

  .systems-hero > img {
    transform: scale(1.01);
    object-position: center 58%;
    filter: brightness(0.58) contrast(1.08) saturate(1.02);
  }

  .hero-ops {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 14px;
  }

  .hero-ops div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
  }

  .system-nav {
    gap: 8px;
    margin-top: 14px;
  }

  .system-nav a {
    padding: 10px 11px;
    font-size: 12px;
  }

  .deep-card,
  .deep-card.reverse {
    min-height: auto;
  }

  .deep-copy {
    padding: 17px;
  }

  .deep-card h2 {
    font-size: clamp(30px, 10vw, 42px) !important;
  }

  .deep-card p {
    font-size: 14px;
    margin-bottom: 0;
  }

  .deep-media {
    min-height: 220px;
  }

  .spec-grid {
    gap: 6px;
    margin-top: 14px;
  }

  .spec {
    padding: 10px;
  }

  .spec b {
    font-size: 15px;
  }

  .spec span {
    font-size: 10px;
  }

  .contact-band {
    padding: 52px 0;
  }

  .contact-card {
    padding: 20px;
  }

  .mission-console {
    padding: 18px;
    min-height: 0;
  }

  .contact-method {
    min-height: 112px;
    padding: 17px;
    gap: 16px;
    background: rgba(255, 255, 255, 0.06);
  }

  .contact-method span {
    font-size: 12px;
    letter-spacing: 0.07em;
  }

  .contact-method b {
    font-size: clamp(20px, 6vw, 25px);
    line-height: 1.12;
  }

  .footer-inner {
    align-items: center;
    flex-direction: row;
  }
}

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