:root {
  --bg: #020202;
  --bg-soft: #050505;
  --ink: #f2f1eb;
  --ink-strong: #ffffff;
  --muted: #9d9d96;
  --muted-quiet: #676760;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --line-soft: rgba(255, 255, 255, 0.07);
  --panel: rgba(255, 255, 255, 0.026);
  --panel-strong: rgba(255, 255, 255, 0.045);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
  --font-display: "Newsreader", "Source Serif 4", Georgia, serif;
  --font-ui: "IBM Plex Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1180px, calc(100vw - clamp(32px, 8vw, 112px)));
  --wide-container: min(1320px, calc(100vw - clamp(28px, 5vw, 84px)));
  --header-height: 68px;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 50% 0 / 72px 72px,
    linear-gradient(rgba(255, 255, 255, 0.027) 1px, transparent 1px) 50% 0 / 72px 72px,
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.07), transparent 34%),
    radial-gradient(circle at 18% 68%, rgba(255, 255, 255, 0.034), transparent 29%),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.95), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.95)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.38), transparent 28%, rgba(0, 0, 0, 0.42));
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.34;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.16) 0 1px, transparent 1.5px),
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.05) 50%, transparent calc(50% + 1px));
  background-position: 24px 40px, center;
  background-size: 182px 182px, 100% 100%;
}

main {
  overflow-x: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.82);
  outline-offset: 4px;
}

::selection {
  background: rgba(255, 255, 255, 0.18);
  color: var(--ink-strong);
}

.site-frame {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.site-frame::before,
.site-frame::after {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.075);
}

.site-frame::before {
  top: var(--header-height);
}

.site-frame::after {
  bottom: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 clamp(18px, 4vw, 60px);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.2em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  min-width: 0;
}

.site-nav a,
.button,
.text-link,
.section-kicker,
.strip-label,
.project-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(242, 241, 235, 0.72);
  transition: color 220ms ease;
}

.site-nav a:hover {
  color: var(--ink-strong);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.022);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.button span,
.text-link span {
  transition: transform 220ms ease;
}

.button:hover {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.button:hover span,
.text-link:hover span {
  transform: translateX(4px);
}

.button-small {
  min-height: 34px;
  padding: 0 15px;
  font-size: 10px;
}

.button-primary {
  color: #080808;
  border-color: rgba(255, 255, 255, 0.86);
  background: var(--ink-strong);
}

.button-primary:hover {
  color: #000;
  border-color: var(--ink-strong);
  background: #d9d9d2;
}

.button-quiet,
.button-outline {
  background: transparent;
}

.section,
.hero {
  position: relative;
  isolation: isolate;
}

.section {
  padding: clamp(76px, 11vw, 150px) 0;
  border-top: 1px solid var(--line-soft);
}

.hero {
  min-height: calc(100svh - var(--header-height));
  padding: clamp(72px, 9vw, 128px) 0 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, rgba(2, 2, 2, 0.98) 0%, rgba(2, 2, 2, 0.88) 35%, rgba(2, 2, 2, 0.2) 58%, transparent 76%);
}

.hero-grid,
.section-grid,
.capability-layout,
.process-stage-list,
.project-grid,
.results-grid,
.testimonial-inner,
.site-footer {
  width: var(--wide-container);
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(480px, 1.18fr);
  gap: clamp(20px, 4vw, 58px);
  align-items: center;
  min-height: clamp(560px, 74svh, 780px);
}

.hero-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
  max-width: 570px;
  padding-bottom: 40px;
}

.section-kicker {
  margin: 0 0 18px;
  color: rgba(242, 241, 235, 0.64);
}

.hero-title,
.section h2,
.testimonial h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
}

.hero-title {
  font-size: clamp(70px, 8.8vw, 144px);
  line-height: 0.87;
  max-width: 760px;
}

.hero-title span {
  display: block;
}

.hero-body {
  max-width: 480px;
  margin: 28px 0 0;
  color: rgba(242, 241, 235, 0.72);
  font-size: clamp(16px, 1.25vw, 18px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.technical-field {
  position: relative;
  pointer-events: none;
}

.hero-visual {
  z-index: 0;
  min-height: clamp(460px, 54vw, 690px);
  margin-right: calc((100vw - var(--wide-container)) / -2);
}

.engineering-asset {
  pointer-events: none;
  user-select: none;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.09));
}

.hero-asset {
  position: absolute;
  top: 47%;
  right: -9vw;
  width: min(74vw, 1040px);
  max-width: none;
  opacity: 0.82;
  transform:
    translate3d(calc(var(--parallax-x, 0px) * 0.6), calc(-50% + var(--parallax-y, 0px) * 0.38), 0)
    scale(1.02);
  mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 80%, transparent 100%);
}

.technical-field::before,
.technical-field::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-visual::before {
  inset: 7% 7% 9% -4%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.hero-visual::after {
  top: 13%;
  left: 7%;
  width: 66%;
  height: 60%;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.62;
}

.radar-line {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.radar-line-one {
  inset: 11% 15% 24% 4%;
  transform: rotate(8deg);
}

.radar-line-two {
  inset: 28% 4% 22% 12%;
  transform: rotate(-19deg);
}

.coordinate {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 8vw, 112px);
  color: rgba(242, 241, 235, 0.44);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.coordinate-a {
  bottom: 27%;
}

.coordinate-b {
  bottom: 23%;
}

.coordinate-c {
  bottom: 19%;
}

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

.hero-metrics {
  position: relative;
  z-index: 3;
  width: var(--wide-container);
  margin: 0 auto;
}

.metric {
  display: grid;
  gap: 5px;
  padding: 22px clamp(16px, 2.4vw, 34px);
  border-right: 1px solid var(--line-soft);
}

.metric:first-child {
  border-left: 1px solid var(--line-soft);
}

.metric strong {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  line-height: 0.95;
}

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

.industries-strip {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  width: var(--wide-container);
  margin: 0 auto;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
}

.industries-strip::before {
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.58);
  transition: width 1300ms var(--ease);
}

.industries-strip.is-visible::before {
  left: 0;
  right: auto;
  width: 100%;
}

.strip-label {
  color: rgba(242, 241, 235, 0.58);
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-left: 1px solid var(--line-soft);
}

.industry-list span {
  min-width: 0;
  padding: 7px 14px;
  overflow: hidden;
  border-right: 1px solid var(--line-soft);
  color: rgba(242, 241, 235, 0.72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-grid {
  display: grid;
  gap: clamp(34px, 5vw, 76px);
}

.two-column {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
}

.section-intro h2,
.section-heading h2,
.case-copy h2,
.results-copy h2,
.cta-copy h2 {
  font-size: clamp(44px, 5.4vw, 82px);
  line-height: 0.96;
}

.section-intro p,
.case-copy p,
.results-copy p,
.cta-copy p {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(242, 241, 235, 0.68);
}

.advantage {
  overflow: hidden;
}

.section-mesh {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.28;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.06));
}

.mesh-back {
  top: 2%;
  right: -12%;
  width: min(78vw, 1080px);
  transform: translate3d(calc(var(--parallax-x, 0px) * -0.18), calc(var(--parallax-y, 0px) * -0.14), 0);
  mask-image: linear-gradient(90deg, transparent 0, #000 22%, #000 78%, transparent 100%);
}

.advantage-modules {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
}

.module,
.capability-card,
.project-card {
  position: relative;
  min-width: 0;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 44%),
    rgba(255, 255, 255, 0.018);
}

.module {
  min-height: 254px;
  padding: 30px 24px 28px;
}

.module::before,
.capability-card::before,
.project-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.56);
  transition: width 1100ms var(--ease);
}

.module.is-visible::before,
.capability-card.is-visible::before,
.project-card.is-visible::before {
  width: 100%;
}

.module h3,
.capability-card h3,
.project-card h3,
.process-stage h3 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
}

.module p,
.capability-card p,
.project-card p,
.process-stage p {
  margin: 13px 0 0;
  color: rgba(242, 241, 235, 0.62);
  font-size: 14px;
}

.module-glyph {
  position: relative;
  display: block;
  width: 74px;
  height: 54px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.62);
}

.glyph-cube::before,
.glyph-cube::after {
  position: absolute;
  inset: 8px 15px 10px;
  content: "";
  border: 1px solid currentColor;
  transform: skewY(-30deg);
}

.glyph-cube::after {
  transform: translate(16px, -8px) skewY(-30deg);
  opacity: 0.52;
}

.glyph-shield::before {
  position: absolute;
  left: 20px;
  width: 34px;
  height: 42px;
  content: "";
  border: 1px solid currentColor;
  clip-path: polygon(50% 0, 100% 16%, 89% 78%, 50% 100%, 11% 78%, 0 16%);
}

.glyph-wave::before {
  position: absolute;
  top: 24px;
  left: 4px;
  width: 64px;
  height: 18px;
  content: "";
  border-top: 1px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 -11px 0 -10px currentColor, 0 11px 0 -10px currentColor;
}

.glyph-orbit::before,
.glyph-orbit::after {
  position: absolute;
  inset: 5px 8px;
  content: "";
  border: 1px solid currentColor;
  border-radius: 50%;
  transform: rotate(-28deg);
}

.glyph-orbit::after {
  inset: 19px 29px;
  background: currentColor;
}

.case-study {
  overflow: hidden;
}

.case-grid {
  grid-template-columns: minmax(330px, 0.68fr) minmax(0, 1.32fr);
  align-items: center;
}

.case-copy {
  position: relative;
  z-index: 2;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 32px 0 28px;
}

.case-metrics div {
  min-width: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

.case-metrics strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 500;
  line-height: 1;
}

.case-metrics span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.case-visual {
  min-height: clamp(310px, 42vw, 520px);
}

.aircraft-asset {
  position: absolute;
  top: 50%;
  right: -7vw;
  width: min(80vw, 960px);
  max-width: none;
  opacity: 0.78;
  transform: translate3d(calc(var(--parallax-x, 0px) * 0.3), calc(-50% + var(--parallax-y, 0px) * 0.16), 0);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.orbit-one {
  inset: 16% -4% 16% 3%;
  transform: rotate(-13deg);
}

.orbit-two {
  inset: 26% 12% 23% 20%;
  transform: rotate(20deg);
}

.section-heading {
  width: var(--wide-container);
  margin: 0 auto clamp(34px, 5vw, 66px);
}

.section-heading h2 {
  max-width: 760px;
}

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

.capability-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(420px, 1.12fr);
  gap: 18px;
}

.capability-card {
  padding: 28px;
  overflow: hidden;
}

.capability-card-large {
  min-height: 430px;
}

.capability-card-large .capability-copy {
  position: relative;
  z-index: 2;
  max-width: 300px;
}

.capability-asset {
  position: absolute;
  right: -24%;
  bottom: -34%;
  width: min(64vw, 660px);
  max-width: none;
  opacity: 0.74;
  transform: rotate(-5deg);
  mask-image: radial-gradient(circle at 50% 52%, #000 0 56%, transparent 76%);
}

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

.capability-stack .capability-card {
  min-height: 206px;
}

.process {
  overflow: hidden;
}

.process-stage-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.process-stage {
  position: relative;
  min-width: 0;
  padding: 24px 18px 26px;
  border-right: 1px solid var(--line-soft);
}

.process-stage:first-child {
  border-left: 1px solid var(--line-soft);
}

.process-stage span {
  display: block;
  margin-bottom: 14px;
  color: rgba(242, 241, 235, 0.54);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.process-stage::after {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -1px;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.58);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1000ms var(--ease);
}

.process-stage.is-visible::after {
  transform: scaleX(1);
}

.process-visual {
  width: var(--wide-container);
  min-height: clamp(260px, 36vw, 440px);
  margin: clamp(26px, 5vw, 62px) auto 0;
}

.process-asset {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1180px, 108vw);
  max-width: none;
  opacity: 0.76;
  transform: translate(-50%, -50%);
  mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}

.assembly-scan {
  position: absolute;
  inset: 15% 0 18%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  opacity: 0;
  transform: translateX(-55%);
}

.process-visual.is-visible .assembly-scan {
  animation: scanAssembly 2100ms var(--ease) 220ms both;
}

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

.project-card {
  min-height: 336px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.project-visual {
  position: relative;
  min-height: 126px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}

.project-visual::before,
.project-visual::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.satellite-preview::before {
  inset: 36px 38px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  transform: rotate(28deg);
}

.satellite-preview::after {
  left: 17%;
  right: 17%;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 42px rgba(255, 255, 255, 0.012);
  transform: rotate(-22deg);
}

.power-preview::before {
  inset: 28px 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px) 0 0 / 22px 100%,
    linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px) 0 0 / 100% 22px;
  transform: skewX(-10deg);
}

.power-preview::after {
  left: 22%;
  right: 22%;
  bottom: 30px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.robotic-preview::before {
  left: 24%;
  top: 34px;
  width: 42%;
  height: 55px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px 999px 0 0;
}

.robotic-preview::after {
  left: 44%;
  bottom: 25px;
  width: 72px;
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 22px -26px 0 rgba(255, 255, 255, 0.36), -36px -50px 0 rgba(255, 255, 255, 0.28);
  transform: rotate(-24deg);
}

.project-category {
  margin: 0 0 12px;
  color: rgba(242, 241, 235, 0.5);
}

.project-card .text-link {
  margin-top: auto;
  padding-top: 24px;
}

.results-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(520px, 1.38fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.results-metrics {
  grid-column: 2;
}

.results-metrics .metric {
  padding: 20px 22px;
}

.chart-panel {
  grid-column: 2;
  padding: 24px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.018);
}

.chart-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
  color: rgba(242, 241, 235, 0.62);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.line-chart {
  width: 100%;
  height: auto;
  overflow: visible;
}

.chart-grid path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.075);
  stroke-width: 1;
}

.chart-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.86);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 780;
  stroke-dashoffset: 780;
}

.chart-panel.is-visible .chart-line {
  animation: drawLine 1600ms var(--ease) 260ms forwards;
}

.chart-points circle {
  fill: var(--ink-strong);
  opacity: 0;
}

.chart-panel.is-visible .chart-points circle {
  animation: pointIn 520ms ease forwards;
}

.chart-panel.is-visible .chart-points circle:nth-child(1) {
  animation-delay: 500ms;
}

.chart-panel.is-visible .chart-points circle:nth-child(2) {
  animation-delay: 620ms;
}

.chart-panel.is-visible .chart-points circle:nth-child(3) {
  animation-delay: 740ms;
}

.chart-panel.is-visible .chart-points circle:nth-child(4) {
  animation-delay: 860ms;
}

.chart-panel.is-visible .chart-points circle:nth-child(5) {
  animation-delay: 980ms;
}

.chart-panel.is-visible .chart-points circle:nth-child(6) {
  animation-delay: 1100ms;
}

.chart-panel.is-visible .chart-points circle:nth-child(7) {
  animation-delay: 1220ms;
}

.chart-labels text {
  fill: rgba(242, 241, 235, 0.44);
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0;
}

.testimonial {
  min-height: clamp(420px, 52vw, 620px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.testimonial-mesh {
  left: -16%;
  bottom: -12%;
  width: min(92vw, 1240px);
  opacity: 0.18;
  transform: scaleY(-1);
  mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 82%, transparent 100%);
}

.testimonial-inner {
  position: relative;
  max-width: 980px;
}

.quote-mark {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.44);
  font-family: var(--font-display);
  font-size: 74px;
  line-height: 0.7;
}

.testimonial h2 {
  max-width: 900px;
  font-size: clamp(34px, 5vw, 68px);
  font-style: italic;
  line-height: 1.02;
}

.testimonial p {
  margin: 22px 0 0;
  color: var(--muted);
}

.final-cta {
  overflow: hidden;
}

.cta-grid {
  grid-template-columns: minmax(300px, 0.68fr) minmax(300px, 1.32fr);
  align-items: center;
}

.cta-copy {
  position: relative;
  z-index: 2;
}

.cta-copy .button {
  margin-top: 26px;
}

.cta-visual {
  min-height: clamp(340px, 44vw, 570px);
}

.orbital-asset {
  position: absolute;
  top: 50%;
  right: 4%;
  width: min(48vw, 590px);
  opacity: 0.76;
  transform: translate3d(calc(var(--parallax-x, 0px) * 0.22), calc(-50% + var(--parallax-y, 0px) * 0.14), 0);
}

.cta-visual::before {
  inset: 9% 4% 6% 18%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  transform: rotate(16deg);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1.5fr);
  gap: clamp(34px, 6vw, 94px);
  padding: 44px 0 30px;
  border-top: 1px solid var(--line-soft);
}

.footer-brand p {
  max-width: 260px;
  margin: 22px 0 0;
  color: rgba(242, 241, 235, 0.5);
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.footer-links h3 {
  margin: 0 0 14px;
  color: rgba(242, 241, 235, 0.54);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  display: block;
  margin-top: 8px;
  color: rgba(242, 241, 235, 0.62);
  font-size: 12px;
  transition: color 220ms ease;
}

.footer-links a:hover {
  color: var(--ink-strong);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
  color: rgba(242, 241, 235, 0.42);
  font-size: 11px;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.module,
.capability-card,
.project-card,
.process-stage {
  transition:
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.module:hover,
.capability-card:hover,
.project-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 42%),
    rgba(255, 255, 255, 0.034);
  transform: translateY(-3px);
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 1000ms var(--ease),
    transform 1100ms var(--ease),
    filter 1100ms var(--ease);
}

.motion-ready [data-reveal="asset"] {
  filter: blur(10px);
  transform: translate3d(18px, 18px, 0) scale(0.985);
}

.motion-ready [data-reveal="hero-line"] {
  transform: translate3d(0, 0.38em, 0);
}

.motion-ready [data-reveal].is-visible,
.motion-ready .is-visible[data-reveal],
.motion-ready .is-visible [data-reveal] {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-ready [data-reveal="card"]:nth-child(2),
.motion-ready [data-reveal="stage"]:nth-child(2) {
  transition-delay: 90ms;
}

.motion-ready [data-reveal="card"]:nth-child(3),
.motion-ready [data-reveal="stage"]:nth-child(3) {
  transition-delay: 180ms;
}

.motion-ready [data-reveal="card"]:nth-child(4),
.motion-ready [data-reveal="stage"]:nth-child(4) {
  transition-delay: 270ms;
}

.motion-ready [data-reveal="card"]:nth-child(5),
.motion-ready [data-reveal="stage"]:nth-child(5) {
  transition-delay: 360ms;
}

.motion-ready [data-reveal="hero-line"]:nth-child(2) {
  transition-delay: 130ms;
}

.motion-ready [data-reveal="hero-line"]:nth-child(3) {
  transition-delay: 260ms;
}

.motion-ready.is-loaded [data-reveal="hero"],
.motion-ready.is-loaded [data-reveal="hero-line"],
.motion-ready.is-loaded .site-header[data-reveal] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-ready.is-loaded [data-reveal="hero"]:nth-child(3) {
  transition-delay: 300ms;
}

.motion-ready.is-loaded .hero-actions[data-reveal="hero"] {
  transition-delay: 450ms;
}

.motion-ready.is-loaded .hero-metrics[data-reveal="group"] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 620ms;
}

.motion-ready.is-loaded .hero-visual[data-reveal="asset"] {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 520ms;
}

.motion-ready:not(.reduced-motion) .hero-asset,
.motion-ready:not(.reduced-motion) .orbital-asset {
  animation: slowFloat 11s ease-in-out 1.2s infinite alternate;
}

.motion-ready:not(.reduced-motion) .mesh-back {
  animation: slowDrift 22s ease-in-out infinite alternate;
}

@keyframes slowFloat {
  from {
    translate: 0 -5px;
  }

  to {
    translate: 0 7px;
  }
}

@keyframes slowDrift {
  from {
    translate: -10px 0;
    opacity: 0.18;
  }

  to {
    translate: 12px 8px;
    opacity: 0.3;
  }
}

@keyframes scanAssembly {
  0% {
    opacity: 0;
    transform: translateX(-55%);
  }

  34% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: translateX(55%);
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes pointIn {
  from {
    opacity: 0;
    transform: scale(0.4);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 18px;
  }

  .hero-grid,
  .case-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual,
  .case-visual,
  .cta-visual {
    min-height: clamp(320px, 58vw, 540px);
    margin-right: 0;
  }

  .hero-asset {
    right: -16vw;
    width: min(112vw, 920px);
  }

  .aircraft-asset {
    right: -13vw;
    width: min(108vw, 880px);
  }

  .orbital-asset {
    right: 50%;
    width: min(68vw, 560px);
    transform: translate(50%, -50%);
  }

  .two-column,
  .capability-layout,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .results-metrics,
  .chart-panel {
    grid-column: auto;
  }

  .advantage-modules,
  .process-stage-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .site-header .button {
    min-height: 34px;
    padding: 0 12px;
    font-size: 9px;
  }

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

  .hero-title {
    font-size: clamp(62px, 17vw, 106px);
  }

  .hero-visual {
    min-height: 350px;
  }

  .hero-asset {
    top: 48%;
    right: 50%;
    width: min(118vw, 760px);
    transform: translate(50%, -50%);
    opacity: 0.66;
  }

  .coordinate {
    display: none;
  }

  .metrics-row,
  .case-metrics,
  .project-grid,
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industries-strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .industry-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .capability-stack {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  :root {
    --container: min(100% - 28px, 1180px);
    --wide-container: min(100% - 28px, 1320px);
  }

  body {
    background-size: 58px 58px, 58px 58px, auto, auto, auto;
  }

  .brand-copy strong {
    font-size: 11px;
  }

  .brand-copy span {
    font-size: 7px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
    font-size: 27px;
  }

  .site-header {
    padding: 0 14px;
  }

  .site-header .button {
    max-width: 136px;
    gap: 7px;
    white-space: normal;
  }

  .hero-body {
    max-width: 100%;
    font-size: 15px;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(48px, 14vw, 56px);
    line-height: 0.94;
  }

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

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 278px;
  }

  .hero-asset {
    width: 142vw;
    opacity: 0.54;
  }

  .section {
    padding: 68px 0;
  }

  .metrics-row,
  .case-metrics,
  .advantage-modules,
  .process-stage-list,
  .project-grid,
  .footer-links,
  .industry-list {
    grid-template-columns: 1fr;
  }

  .metric {
    border-left: 1px solid var(--line-soft);
  }

  .industry-list span {
    white-space: normal;
  }

  .module,
  .capability-card,
  .project-card,
  .process-stage {
    min-height: auto;
  }

  .case-visual {
    min-height: 250px;
  }

  .aircraft-asset {
    right: 50%;
    width: 138vw;
    opacity: 0.56;
    transform: translate(50%, -50%);
  }

  .capability-card-large {
    min-height: 350px;
  }

  .capability-asset {
    right: -48%;
    bottom: -30%;
    width: 136vw;
    opacity: 0.42;
  }

  .process-visual {
    min-height: 220px;
  }

  .process-asset {
    width: 178vw;
    opacity: 0.56;
  }

  .chart-panel {
    padding: 18px;
  }

  .chart-head {
    display: grid;
  }

  .testimonial {
    min-height: 390px;
  }

  .testimonial h2 {
    font-size: clamp(32px, 11vw, 48px);
  }

  .cta-visual {
    min-height: 260px;
  }

  .orbital-asset {
    width: 106vw;
    opacity: 0.5;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-bottom div {
    flex-wrap: wrap;
  }
}

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

  .motion-ready [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .chart-line {
    stroke-dashoffset: 0;
  }

  .chart-points circle {
    opacity: 1;
  }
}

/* Reconstruction pass: tighter black engineering system, denser rhythm, staged assets. */
:root {
  --bg: #000;
  --bg-soft: #030303;
  --ink: #f7f5ef;
  --muted: #aaa8a1;
  --muted-quiet: #6e6c66;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);
  --line-soft: rgba(255, 255, 255, 0.08);
  --panel: rgba(255, 255, 255, 0.024);
  --panel-strong: rgba(255, 255, 255, 0.052);
  --font-display: "Source Serif 4", "Newsreader", Georgia, serif;
  --font-ui: "IBM Plex Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --section-pad: clamp(62px, 8vw, 118px);
  --technical-mask: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.036) 1px, transparent 1px) 50% 0 / 88px 88px,
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px) 50% 0 / 88px 88px,
    linear-gradient(90deg, transparent 0 10%, rgba(255, 255, 255, 0.026) 10.04%, transparent 10.08% 50%, rgba(255, 255, 255, 0.02) 50.04%, transparent 50.08% 90%, rgba(255, 255, 255, 0.026) 90.04%, transparent 90.08%),
    radial-gradient(ellipse at 76% 12%, rgba(255, 255, 255, 0.095), transparent 38%),
    radial-gradient(ellipse at 20% 78%, rgba(255, 255, 255, 0.035), transparent 35%),
    #000;
  font-feature-settings: "kern" 1, "liga" 1;
}

body::before {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), transparent 12%, transparent 88%, rgba(0, 0, 0, 0.96)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 18%, rgba(0, 0, 0, 0.5));
}

body::after {
  z-index: -2;
  opacity: 0.42;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.17) 0 1px, transparent 1.5px),
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.055) 50%, transparent calc(50% + 1px)),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-position: 32px 48px, center, center;
  background-size: 164px 164px, 100% 100%, 100% 42px;
}

.site-header {
  min-height: 66px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.84);
}

.brand-mark {
  font-family: var(--font-display);
  font-weight: 600;
}

.site-nav a,
.button,
.text-link,
.section-kicker,
.strip-label,
.project-category,
.module-index,
.module-meta,
.capability-index,
.stage-label,
.project-meta {
  font-family: var(--font-ui);
  letter-spacing: 0.11em;
}

.button {
  min-height: 42px;
  border-color: rgba(255, 255, 255, 0.25);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
    rgba(255, 255, 255, 0.012);
}

.button-primary {
  color: #050505;
  background: linear-gradient(180deg, #fff, #d8d7cf);
  box-shadow: 0 12px 34px rgba(255, 255, 255, 0.08);
}

.section {
  padding: var(--section-pad) 0;
  border-top-color: rgba(255, 255, 255, 0.075);
}

.section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  opacity: 0.38;
  background:
    linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.035) 12%, transparent 12.12% 88%, rgba(255, 255, 255, 0.035) 88.12%, transparent 100%),
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px) 50% 0 / 100% 46px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.section::after {
  position: absolute;
  top: 28px;
  right: max(18px, calc((100vw - var(--wide-container)) / 2));
  z-index: -1;
  width: 118px;
  height: 1px;
  pointer-events: none;
  content: "";
  background: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 18px 0 rgba(255, 255, 255, 0.08),
    -42px 36px 0 rgba(255, 255, 255, 0.05);
}

.hero {
  min-height: min(920px, calc(100svh - var(--header-height)));
  padding: clamp(42px, 6vw, 78px) 0 0;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.9) 32%, rgba(0, 0, 0, 0.44) 53%, rgba(0, 0, 0, 0.08) 75%, transparent),
    linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.18) 72%, rgba(0, 0, 0, 0.88) 100%);
}

.hero-grid {
  grid-template-columns: minmax(360px, 0.78fr) minmax(480px, 1.22fr);
  min-height: clamp(548px, 68svh, 720px);
  gap: clamp(18px, 3vw, 48px);
}

.hero-copy {
  max-width: 610px;
  padding-bottom: clamp(18px, 4vw, 44px);
}

.hero-title {
  max-width: 710px;
  font-size: clamp(72px, 7.9vw, 126px);
  font-weight: 500;
  line-height: 0.9;
  text-wrap: balance;
}

.hero-body {
  max-width: 510px;
  color: rgba(247, 245, 239, 0.74);
  font-size: clamp(16px, 1.12vw, 18px);
  line-height: 1.55;
}

.hero-metrics {
  margin-top: -4px;
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(8px);
}

.metric {
  min-height: 96px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 64%),
    rgba(255, 255, 255, 0.006);
}

.metric strong {
  font-family: var(--font-display);
  font-size: clamp(34px, 3.6vw, 50px);
  font-variant-numeric: lining-nums;
}

.asset-stage {
  overflow: hidden;
}

.asset-stage::before,
.asset-stage::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.asset-stage::before {
  inset: 7% 3% 8%;
  z-index: -2;
  opacity: 0.72;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px) 0 0 / 72px 72px,
    radial-gradient(ellipse at 55% 48%, rgba(255, 255, 255, 0.14), transparent 54%);
  mask-image: radial-gradient(ellipse at 56% 48%, #000 0 45%, transparent 78%);
}

.asset-stage::after {
  inset: 0;
  z-index: 4;
  background:
    linear-gradient(90deg, #000 0, transparent 18%, transparent 80%, #000 100%),
    linear-gradient(180deg, #000 0, transparent 18%, transparent 74%, #000 100%);
  opacity: 0.5;
}

.stage-label {
  position: absolute;
  z-index: 5;
  color: rgba(247, 245, 239, 0.52);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.stage-label-top {
  top: 12%;
  left: 8%;
}

.stage-label-bottom {
  right: 8%;
  bottom: 11%;
}

.stage-node {
  position: absolute;
  z-index: 5;
  width: 6px;
  height: 6px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: #000;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.035);
}

.node-one {
  top: 28%;
  left: 28%;
}

.node-two {
  top: 47%;
  right: 18%;
}

.node-three {
  right: 31%;
  bottom: 20%;
}

.engineering-asset {
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.08));
}

.hero-visual {
  min-height: clamp(440px, 48vw, 650px);
  margin-right: calc((100vw - var(--wide-container)) / -2);
}

.hero-asset {
  top: 47%;
  right: -7vw;
  width: min(66vw, 980px);
  opacity: 0.68;
  filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.08));
  mask-image:
    linear-gradient(90deg, transparent 0, #000 12%, #000 76%, transparent 99%),
    radial-gradient(ellipse at 42% 48%, #000 0 58%, transparent 80%);
}

.radar-line {
  z-index: 1;
  opacity: 0.9;
}

.coordinate {
  right: clamp(30px, 9vw, 128px);
}

.industries-strip {
  padding: 14px 0;
  margin-top: 0;
  background: rgba(0, 0, 0, 0.22);
}

.industry-list span {
  padding: 9px 14px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.018), transparent);
}

.advantage {
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(64px, 8vw, 108px);
}

.two-column {
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
}

.section-intro h2,
.section-heading h2,
.case-copy h2,
.results-copy h2,
.cta-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(42px, 4.7vw, 74px);
  font-weight: 500;
  line-height: 0.98;
  text-wrap: balance;
}

.section-intro p,
.case-copy p,
.results-copy p,
.cta-copy p {
  color: rgba(247, 245, 239, 0.69);
  font-size: clamp(15px, 1.05vw, 17px);
}

.mesh-back {
  top: -1%;
  right: -7%;
  width: min(80vw, 1120px);
  opacity: 0.34;
  mask-image: linear-gradient(90deg, transparent 0, #000 14%, #000 84%, transparent 100%);
}

.advantage-modules {
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(2px);
}

.module {
  min-height: 226px;
  padding: 22px 22px 20px;
}

.module::after,
.capability-card::after,
.project-card::after {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 34px;
  height: 34px;
  pointer-events: none;
  content: "";
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.module-index,
.capability-index {
  display: block;
  margin-bottom: 16px;
  color: rgba(247, 245, 239, 0.42);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.module-glyph {
  width: 66px;
  height: 46px;
  margin-bottom: 22px;
}

.module-meta,
.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  color: rgba(247, 245, 239, 0.45);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.case-study {
  padding-top: clamp(60px, 7vw, 96px);
  padding-bottom: clamp(54px, 6vw, 90px);
}

.case-grid {
  grid-template-columns: minmax(340px, 0.62fr) minmax(0, 1.38fr);
}

.case-metrics {
  gap: 12px;
  margin: 28px 0 24px;
}

.case-metrics div {
  position: relative;
  padding: 16px 12px 0 0;
}

.case-metrics div::after {
  position: absolute;
  top: 0;
  right: 6px;
  width: 1px;
  height: 32px;
  content: "";
  background: rgba(255, 255, 255, 0.12);
}

.case-visual {
  min-height: clamp(330px, 39vw, 500px);
}

.aircraft-asset {
  right: -4vw;
  width: min(78vw, 1000px);
  opacity: 0.82;
  mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 88%, transparent 100%);
}

.aircraft-stage::before {
  inset: 10% -2% 8% 2%;
}

.case-connectors span {
  position: absolute;
  z-index: 5;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform-origin: right center;
}

.case-connectors span:nth-child(1) {
  top: 34%;
  left: 4%;
  width: 38%;
  transform: rotate(-12deg);
}

.case-connectors span:nth-child(2) {
  top: 53%;
  left: 0;
  width: 45%;
}

.case-connectors span:nth-child(3) {
  right: 15%;
  bottom: 27%;
  width: 32%;
  transform: rotate(16deg);
}

.section-heading {
  margin-bottom: clamp(28px, 4vw, 52px);
}

.capability-layout {
  grid-template-columns: minmax(360px, 0.92fr) minmax(430px, 1.08fr);
  gap: 16px;
}

.capability-card {
  border-color: rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.052), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    rgba(255, 255, 255, 0.012);
}

.capability-card-large {
  min-height: 404px;
}

.capability-card-large::after {
  width: 42%;
  height: 1px;
  right: 28px;
  bottom: 72px;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
}

.capability-card-large .capability-copy {
  max-width: 330px;
}

.capability-specs {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(247, 245, 239, 0.48);
  font-size: 11px;
  text-transform: uppercase;
}

.capability-specs span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.capability-specs span::before {
  width: 18px;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.28);
}

.capability-asset {
  right: -18%;
  bottom: -26%;
  width: min(62vw, 650px);
  opacity: 0.62;
  mask-image:
    radial-gradient(ellipse at 52% 50%, #000 0 55%, transparent 78%),
    linear-gradient(90deg, transparent 0, #000 18%, #000 86%, transparent);
}

.capability-stack {
  gap: 16px;
}

.capability-stack .capability-card {
  min-height: 176px;
  padding: 22px;
}

.process {
  padding-top: clamp(58px, 7vw, 96px);
  padding-bottom: clamp(54px, 7vw, 96px);
}

.process-stage-list {
  background: rgba(0, 0, 0, 0.28);
}

.process-stage {
  min-height: 162px;
  padding: 22px 17px 24px;
}

.process-stage p {
  font-size: 13px;
}

.process-visual {
  min-height: clamp(270px, 31vw, 410px);
  margin-top: clamp(20px, 3.5vw, 42px);
}

.process-asset {
  width: min(1160px, 104vw);
  opacity: 0.78;
}

.assembly-stage::before {
  inset: 2% 0 2%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px) 0 0 / 58px 58px,
    radial-gradient(ellipse at 50% 56%, rgba(255, 255, 255, 0.12), transparent 60%);
}

.process-connectors span {
  position: absolute;
  z-index: 5;
  top: 8%;
  width: 1px;
  height: 34%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent);
  transform-origin: top center;
}

.process-connectors span:nth-child(1) {
  left: 13%;
  transform: rotate(15deg);
}

.process-connectors span:nth-child(2) {
  left: 31%;
  transform: rotate(8deg);
}

.process-connectors span:nth-child(3) {
  left: 50%;
}

.process-connectors span:nth-child(4) {
  right: 31%;
  transform: rotate(-8deg);
}

.process-connectors span:nth-child(5) {
  right: 13%;
  transform: rotate(-15deg);
}

.project-grid {
  gap: 16px;
}

.project-card {
  min-height: 316px;
  padding: 20px;
}

.project-visual {
  min-height: 112px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 28px 28px;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.project-meta span {
  padding-top: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.results {
  padding-top: clamp(58px, 7vw, 94px);
  padding-bottom: clamp(58px, 7vw, 96px);
}

.results-grid {
  grid-template-columns: minmax(300px, 0.58fr) minmax(520px, 1.42fr);
}

.results-metrics {
  background: rgba(0, 0, 0, 0.28);
}

.chart-panel {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px) 0 0 / 48px 48px,
    rgba(255, 255, 255, 0.016);
}

.testimonial {
  min-height: clamp(360px, 43vw, 540px);
  padding-top: clamp(48px, 6vw, 88px);
  padding-bottom: clamp(48px, 6vw, 88px);
}

.testimonial-mesh {
  left: -9%;
  bottom: -18%;
  width: min(96vw, 1300px);
  opacity: 0.24;
}

.testimonial-inner {
  max-width: 1040px;
}

.testimonial h2 {
  max-width: 980px;
  font-size: clamp(34px, 4.45vw, 62px);
  line-height: 1.08;
}

.final-cta {
  padding-top: clamp(58px, 7vw, 100px);
  padding-bottom: clamp(62px, 8vw, 112px);
}

.final-cta::before {
  opacity: 0.5;
}

.cta-grid {
  grid-template-columns: minmax(320px, 0.64fr) minmax(420px, 1.36fr);
  gap: clamp(28px, 5vw, 80px);
}

.cta-copy h2 {
  max-width: 610px;
  font-size: clamp(48px, 5.6vw, 88px);
}

.cta-visual {
  min-height: clamp(320px, 38vw, 520px);
}

.orbital-stage::before {
  inset: 5% 6% 4% 10%;
  background:
    radial-gradient(ellipse at 52% 52%, rgba(255, 255, 255, 0.15), transparent 56%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px) 0 0 / 64px 64px;
}

.orbital-asset {
  right: 7%;
  width: min(44vw, 540px);
  opacity: 0.66;
  mask-image: radial-gradient(circle at 50% 50%, #000 0 62%, transparent 83%);
}

.cta-visual::before {
  inset: 8% 8% 7% 16%;
}

.site-footer {
  padding-top: 34px;
}

.motion-ready [data-reveal] {
  filter: blur(14px);
  transform: translate3d(0, 42px, 0) scale(0.985);
  transition:
    opacity 1100ms var(--ease),
    transform 1250ms var(--ease),
    filter 1250ms var(--ease);
  transition-delay: calc(var(--reveal-index, 0) * 90ms);
}

.motion-ready [data-reveal="hero-line"] {
  filter: blur(12px);
  transform: translate3d(0, 0.54em, 0) scale(0.985);
}

.motion-ready [data-reveal="asset"] {
  filter: blur(16px);
  transform: translate3d(28px, 34px, 0) scale(0.965);
}

.motion-ready [data-reveal="metric"] {
  transform: translate3d(0, 24px, 0);
}

.motion-ready [data-reveal].is-visible,
.motion-ready .is-visible[data-reveal],
.motion-ready .is-visible [data-reveal] {
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-ready .asset-stage::before,
.motion-ready .asset-stage::after,
.motion-ready .case-connectors span,
.motion-ready .process-connectors span {
  opacity: 0;
  transition:
    opacity 1200ms var(--ease),
    transform 1300ms var(--ease);
}

.motion-ready .asset-stage.is-visible::before {
  opacity: 0.72;
}

.motion-ready .asset-stage.is-visible::after {
  opacity: 0.5;
}

.motion-ready .case-visual.is-visible .case-connectors span,
.motion-ready .process-visual.is-visible .process-connectors span {
  opacity: 1;
  transition-delay: 520ms;
}

.motion-ready.is-loaded .hero-metrics,
.motion-ready.is-loaded .hero-metrics .metric {
  opacity: 1;
  filter: none;
  transform: none;
}

.motion-ready:not(.reduced-motion) .hero-stage.is-visible .radar-line,
.motion-ready:not(.reduced-motion) .orbital-stage.is-visible::before {
  animation: orbitDrift 18s ease-in-out 900ms infinite alternate;
}

@keyframes orbitDrift {
  from {
    rotate: -1deg;
    opacity: 0.54;
  }

  to {
    rotate: 2deg;
    opacity: 0.82;
  }
}

@media (min-height: 1050px) and (min-width: 900px) {
  .hero {
    min-height: 900px;
  }

  .hero-grid {
    min-height: 660px;
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .case-grid,
  .cta-grid,
  .two-column,
  .capability-layout,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual,
  .case-visual,
  .cta-visual {
    margin-right: 0;
  }

  .hero-asset {
    right: -10vw;
    width: min(98vw, 880px);
  }

  .aircraft-asset {
    right: -8vw;
    width: min(104vw, 890px);
  }

  .orbital-asset {
    right: 50%;
    width: min(66vw, 520px);
    transform: translate(50%, -50%);
  }
}

@media (max-width: 860px) {
  body {
    background-size: 64px 64px, 64px 64px, auto, auto, auto, auto;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-title {
    max-width: 680px;
    font-size: clamp(58px, 14vw, 94px);
    line-height: 0.94;
  }

  .hero-visual {
    min-height: clamp(300px, 58vw, 440px);
    margin-top: 4px;
  }

  .hero-asset {
    top: 54%;
    right: 50%;
    width: min(126vw, 760px);
    opacity: 0.48;
    transform: translate(50%, -50%);
  }

  .stage-label {
    font-size: 9px;
  }

  .metrics-row,
  .case-metrics,
  .project-grid,
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advantage-modules,
  .process-stage-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100% - 30px, 1180px);
    --wide-container: min(100% - 30px, 1320px);
    --section-pad: 58px;
  }

  body::after {
    opacity: 0.26;
    background-size: 132px 132px, 100% 100%, 100% 54px;
  }

  .site-frame {
    border-left-color: rgba(255, 255, 255, 0.045);
    border-right-color: rgba(255, 255, 255, 0.045);
  }

  .site-header {
    grid-template-columns: 1fr;
    min-height: 62px;
  }

  .site-header .button {
    display: none;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-title {
    font-size: clamp(48px, 13.7vw, 60px);
    line-height: 0.96;
  }

  .hero-body {
    font-size: 15px;
  }

  .hero-visual {
    min-height: 245px;
    overflow: hidden;
  }

  .hero-asset {
    top: 60%;
    width: 132vw;
    opacity: 0.38;
  }

  .asset-stage::before {
    inset: 12% -16% 8%;
    opacity: 0.42;
  }

  .asset-stage::after {
    opacity: 0.7;
  }

  .stage-label,
  .coordinate,
  .stage-node {
    display: none;
  }

  .metrics-row,
  .case-metrics,
  .advantage-modules,
  .process-stage-list,
  .project-grid,
  .footer-links,
  .industry-list {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 82px;
    padding: 18px 18px;
  }

  .industry-list span {
    padding: 8px 12px;
  }

  .section-intro h2,
  .section-heading h2,
  .case-copy h2,
  .results-copy h2,
  .cta-copy h2 {
    font-size: clamp(36px, 10.6vw, 48px);
    line-height: 1.02;
  }

  .module,
  .capability-card,
  .project-card,
  .process-stage {
    padding: 20px;
  }

  .case-visual {
    min-height: 238px;
  }

  .aircraft-asset {
    right: 50%;
    width: 132vw;
    opacity: 0.48;
    transform: translate(50%, -50%);
  }

  .capability-card-large {
    min-height: 332px;
  }

  .capability-asset {
    right: -42%;
    bottom: -24%;
    width: 124vw;
    opacity: 0.38;
  }

  .process-visual {
    min-height: 214px;
  }

  .process-asset {
    width: 162vw;
    opacity: 0.52;
  }

  .process-connectors,
  .case-connectors {
    display: none;
  }

  .testimonial {
    min-height: auto;
  }

  .testimonial h2 {
    font-size: clamp(31px, 9.8vw, 43px);
  }

  .cta-visual {
    min-height: 235px;
  }

  .orbital-asset {
    width: 92vw;
    opacity: 0.42;
  }

  .footer-bottom,
  .footer-bottom div {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .asset-stage::before,
  .motion-ready .asset-stage::after,
  .motion-ready .case-connectors span,
  .motion-ready .process-connectors span {
    opacity: 1;
  }

  .motion-ready [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* Final responsive correction: keep hero cinematic without swallowing the first viewport. */
.hero {
  min-height: min(820px, calc(100svh - var(--header-height)));
  padding-top: clamp(32px, 4.6vw, 58px);
}

.hero-grid {
  min-height: clamp(480px, 57svh, 610px);
}

.hero-title {
  font-size: clamp(66px, 7.2vw, 114px);
}

.hero-visual {
  min-height: clamp(390px, 42vw, 560px);
}

.hero-asset {
  right: -5vw;
  width: min(61vw, 900px);
}

@media (min-width: 900px) and (max-width: 1120px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(320px, 0.78fr) minmax(360px, 1.22fr);
    align-items: center;
    min-height: clamp(480px, 60svh, 590px);
  }

  .hero-copy {
    max-width: 540px;
  }

  .hero-title {
    font-size: clamp(58px, 7.6vw, 86px);
  }

  .hero-visual {
    min-height: clamp(360px, 44vw, 500px);
  }

  .hero-asset {
    right: -14vw;
    width: min(76vw, 760px);
  }
}

@media (max-width: 899px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(1180px, calc(100vw - 36px));
    --wide-container: min(1320px, calc(100vw - 36px));
  }

  .hero-copy,
  .hero-body,
  .hero-actions,
  .button {
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(38px, 11.4vw, 52px);
    overflow-wrap: anywhere;
  }

  .hero-body,
  .section-intro p,
  .case-copy p,
  .results-copy p,
  .cta-copy p {
    overflow-wrap: break-word;
  }

  .button {
    min-height: 40px;
    padding-right: 16px;
    padding-left: 16px;
    font-size: 10px;
    letter-spacing: 0.09em;
  }
}
