:root {
  --black: #050505;
  --charcoal: #101214;
  --graphite: #171a1e;
  --panel: #1e2328;
  --paper: #f6f7f7;
  --white: #ffffff;
  --muted: #6c747b;
  --muted-light: #aeb8c0;
  --line: rgba(16, 18, 20, .12);
  --line-dark: rgba(255, 255, 255, .13);
  --orange: #ff8c0a;
  --orange-deep: #e86f00;
  --amber-soft: rgba(255, 140, 10, .16);
  --blue-steel: #7aa8ba;
  --max: 1180px;
}

/* Home video hero */
.home-video-hero {
  width: 100%;
  min-height: 100vh;
  background: #050505;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
}
.home-video-hero iframe {
  width: 100%;
  height: 100vh;
  border: 0;
}
@media (max-width: 680px) {
  .home-video-hero,
  .home-video-hero iframe {
    min-height: 72vh;
    height: 72vh;
  }
}

/* Homepage video embed */
.video-section {
  background: #0b0d10;
  color: var(--white);
  padding-top: 88px;
  padding-bottom: 88px;
}
.video-section .section-head p {
  color: var(--muted-light);
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #050505;
  border: 1px solid var(--line-dark);
  box-shadow: 0 28px 80px rgba(0,0,0,.32);
  overflow: hidden;
}
.video-frame:before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255,140,10,.22);
  z-index: 1;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 680px) {
  .video-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Roboto, Arial, sans-serif;
  color: var(--black);
  background: var(--paper);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.strato-shell { min-height: 100vh; overflow-x: hidden; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0,0,0,.04);
}
.navbar {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 258px;
  min-width: 0;
  transition: transform .28s ease;
}
.brand:hover { transform: translateY(-1px); }
.brand-logo {
  width: min(258px, 52vw);
  height: auto;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #202326;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.nav-links a:not(.btn) {
  position: relative;
  padding: 30px 0;
}
.nav-links a:not(.btn):after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover:after,
.nav-links a.active:after { transform: scaleX(1); }
.nav-links a:hover,
.nav-links a.active { color: var(--black); }
.nav-links .btn {
  min-width: 0;
  padding: 0 18px;
  white-space: nowrap;
  letter-spacing: .06em;
}
.nav-toggle { display: none; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--orange);
  color: var(--black);
  box-shadow: 0 12px 26px rgba(255,140,10,.22);
}
.btn-primary:hover { background: #ff981f; box-shadow: 0 16px 34px rgba(255,140,10,.3); }
.btn-secondary { border-color: rgba(255,255,255,.32); color: var(--white); }
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }
.hero {
  position: relative;
  color: var(--white);
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 22%, rgba(255,140,10,.22), transparent 28%),
    linear-gradient(90deg, rgba(5,5,5,.97), rgba(16,18,20,.88) 48%, rgba(16,18,20,.48)),
    url('../img/banner/feature3.jpg') center right / cover no-repeat;
}
.hero:before,
.page-hero:before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.08));
  animation: gridDrift 18s linear infinite;
  z-index: -1;
}
.hero:after,
.page-hero:after {
  content: '';
  position: absolute;
  left: -20%;
  top: 0;
  width: 18%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,140,10,.14), transparent);
  transform: skewX(-16deg);
  animation: scanSweep 6.5s ease-in-out infinite;
  pointer-events: none;
}
.hero-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: calc(100vh - 82px);
  max-height: 840px;
  padding: 96px 0 82px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, .72fr);
  align-items: center;
  gap: 58px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6.2vw, 84px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}
h3 { margin-bottom: 10px; font-size: 21px; line-height: 1.2; }
.lead { max-width: 760px; color: #dce2e6; font-size: clamp(17px, 1.6vw, 21px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.mission-panel {
  border: 1px solid var(--line-dark);
  background: rgba(16,18,20,.78);
  padding: 24px;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}
.flight-card {
  min-height: 330px;
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(135deg, rgba(255,140,10,.17), rgba(122,168,186,.12)),
    linear-gradient(0deg, rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: auto, 38px 38px, 38px 38px;
  position: relative;
  overflow: hidden;
}
.flight-card:before {
  content: '';
  position: absolute;
  inset: 62px 42px auto;
  height: 78px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.9), transparent);
  clip-path: polygon(0 48%, 41% 34%, 50% 0, 59% 34%, 100% 48%, 59% 58%, 50% 100%, 41% 58%);
  opacity: .92;
  animation: flightPulse 4s ease-in-out infinite;
}
.flight-card:after {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  top: 172px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  animation: signalLine 2.8s ease-in-out infinite;
}
.flight-card dl { position: absolute; left: 24px; right: 24px; bottom: 18px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0; }
.flight-card dt { color: var(--muted-light); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.flight-card dd { margin: 3px 0 0; font-weight: 900; color: var(--white); }
.section { padding: 96px 0; }
.section.dark { background: var(--charcoal); color: var(--white); }
.section.dark h1,
.section.dark h2,
.section.dark h3,
.section.dark p { color: var(--white); }
.section.steel { background: #eceff1; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 34px; margin-bottom: 34px; }
.section-head p { max-width: 560px; color: var(--muted); }
.dark .section-head p, .dark .muted { color: var(--muted-light); }
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  position: relative;
  background: var(--white);
  border: 1px solid #dde2e5;
  padding: 25px;
  min-height: 100%;
  overflow: hidden;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.card:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: var(--orange);
  transition: height .3s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(255,140,10,.45); box-shadow: 0 18px 46px rgba(8,13,18,.09); }
.card:hover:before { height: 100%; }
.dark .card { background: var(--panel); border-color: var(--line-dark); }
.dark .card:hover { box-shadow: 0 20px 52px rgba(0,0,0,.22); }
.card-number { color: var(--orange); font-weight: 900; font-size: 13px; letter-spacing: .12em; }
.card p, .muted { color: var(--muted); }
.dark .card p { color: var(--muted-light); }
.feature-band { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; align-items: stretch; }
.media-panel {
  min-height: 420px;
  background: linear-gradient(rgba(0,0,0,.12), rgba(0,0,0,.16)), url('../img/projects/1-1170x680.jpg') center / cover no-repeat;
  border: 1px solid #dbe2e6;
}
.media-panel.facility { background-image: linear-gradient(rgba(0,0,0,.18), rgba(0,0,0,.22)), url('../img/banner/feature3.jpg'); }
.media-panel.program { background-image: linear-gradient(rgba(0,0,0,.14), rgba(0,0,0,.18)), url('../img/banner/feature1.jpg'); }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #cfd8dd; margin-top: 30px; }
.stat { background: var(--white); padding: 22px; }
.stat strong { display: block; font-size: 32px; line-height: 1; color: var(--orange-deep); }
.process { counter-reset: step; }
.process .card { padding-top: 54px; }
.process .card:after {
  counter-increment: step;
  content: '0' counter(step);
  position: absolute;
  top: 20px;
  left: 24px;
  color: var(--orange);
  font-weight: 900;
  letter-spacing: .14em;
}
.page-hero {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 18%, rgba(255,140,10,.2), transparent 28%),
    linear-gradient(90deg, rgba(5,5,5,.97), rgba(16,18,20,.76)),
    url('../img/slider/one/home_00_16.jpg') center / cover no-repeat;
  color: var(--white);
  padding: 122px 0 74px;
}
.page-hero .lead { max-width: 760px; }
.list-clean { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.list-clean li { padding: 14px 0; border-bottom: 1px solid rgba(16,18,20,.12); }
.dark .list-clean li { border-bottom-color: var(--line-dark); }
.cta { background: var(--black); color: var(--white); padding: 76px 0; position: relative; overflow: hidden; }
.cta h1,
.cta h2,
.cta h3,
.cta p { color: var(--white); }
.cta .lead { color: #f2f5f7; }
.cta:before { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, transparent, rgba(255,140,10,.12), transparent); animation: scanSweep 7s ease-in-out infinite; }
.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-inner .hero-actions { margin-top: 0; justify-content: flex-end; }
.section .card strong { color: inherit; font-weight: 900; }
.section .card p + p { margin-top: 12px; }
.section .list-clean { max-width: 980px; }
.page-hero .container { position: relative; z-index: 2; }
.site-footer { background: #050505; color: var(--muted-light); padding: 42px 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 28px; }
.footer-grid h4 { color: var(--white); margin: 0 0 12px; }
.footer-grid a { display: block; margin: 8px 0; transition: color .2s ease; }
.footer-grid a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid var(--line-dark); margin-top: 30px; padding-top: 18px; font-size: 13px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
input, textarea, select { width: 100%; border: 1px solid #cfd8dd; background: var(--white); padding: 14px 15px; font: inherit; }
input:focus, textarea:focus, select:focus { outline: 2px solid rgba(255,140,10,.32); border-color: var(--orange); }
textarea { min-height: 150px; grid-column: 1 / -1; }
.full { grid-column: 1 / -1; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes gridDrift { from { background-position: 0 0, 0 0; } to { background-position: 92px 46px, 92px 46px; } }
@keyframes scanSweep { 0%, 42% { transform: translateX(0) skewX(-16deg); opacity: 0; } 52% { opacity: 1; } 100% { transform: translateX(760%) skewX(-16deg); opacity: 0; } }
@keyframes flightPulse { 0%,100% { transform: translateY(0) scale(1); opacity: .82; } 50% { transform: translateY(-5px) scale(1.035); opacity: 1; } }
@keyframes signalLine { 0%,100% { transform: scaleX(.2); opacity: .25; } 50% { transform: scaleX(1); opacity: 1; } }
@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; background: var(--black); color: var(--white); border: 1px solid var(--black); padding: 10px 12px; font-weight: 900; text-transform: uppercase; }
  .nav-links { position: absolute; left: 0; right: 0; top: 82px; display: none; flex-direction: column; align-items: flex-start; padding: 22px; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 20px 40px rgba(0,0,0,.08); }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { padding: 4px 0; }
  .nav-links a:not(.btn):after { bottom: -2px; }
  .hero-inner, .feature-band, .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr; }
  .section-head, .cta-inner { display: block; }
  .hero-inner { min-height: auto; }
}
@media (max-width: 680px) {
  .navbar, .container, .hero-inner { width: min(100% - 28px, var(--max)); }
  .brand { flex-basis: min(230px, calc(100% - 58px)); min-width: 0; }
  .brand-logo { width: min(230px, calc(100vw - 96px)); height: auto; max-height: 50px; }
  .grid-2, .stat-row, .form-grid { grid-template-columns: 1fr; }
  textarea, .full { grid-column: auto; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .flight-card dl { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Hero readability refinements */
.hero {
  background:
    linear-gradient(90deg, rgba(5,5,5,.98) 0%, rgba(5,5,5,.94) 34%, rgba(10,12,14,.78) 58%, rgba(10,12,14,.46) 100%),
    radial-gradient(circle at 18% 48%, rgba(255,140,10,.22), transparent 30%),
    url('../img/banner/feature3.jpg') center right / cover no-repeat;
}
.hero-inner { align-items: center; }
.hero-inner > div:first-child {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 28px 0;
}
.hero h1 {
  color: #ffffff;
  opacity: 1;
  text-shadow: 0 4px 28px rgba(0,0,0,.72), 0 1px 0 rgba(255,255,255,.05);
  -webkit-text-stroke: 0 transparent;
}
.hero .lead {
  max-width: 790px;
  color: #f2f5f7;
  text-shadow: 0 2px 18px rgba(0,0,0,.7);
  font-weight: 500;
}
.hero .eyebrow {
  text-shadow: 0 2px 14px rgba(0,0,0,.55);
}
.page-hero h1 {
  color: #ffffff;
  text-shadow: 0 4px 28px rgba(0,0,0,.72), 0 1px 0 rgba(255,255,255,.05);
}
.page-hero .lead {
  color: #f2f5f7;
  text-shadow: 0 2px 18px rgba(0,0,0,.7);
  font-weight: 500;
}
.page-hero .eyebrow {
  text-shadow: 0 2px 14px rgba(0,0,0,.55);
}
.hero-actions { margin-top: 36px; }
.mission-panel {
  background: rgba(16,18,20,.88);
}
@media (max-width: 980px) {
  .hero {
    background:
      linear-gradient(90deg, rgba(5,5,5,.98), rgba(5,5,5,.9)),
      url('../img/banner/feature3.jpg') center / cover no-repeat;
  }
  .hero-inner > div:first-child { padding: 10px 0; }
}


/* Parent-template style homepage motion */
.strato-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #050505;
  transition: opacity .55s ease, visibility .55s ease;
}
.strato-preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader-mark { display: grid; gap: 16px; justify-items: center; color: #fff; font-weight: 900; letter-spacing: .22em; }
.preloader-mark span {
  width: 54px;
  height: 54px;
  border: 3px solid rgba(255,255,255,.18);
  border-top-color: var(--orange);
  border-right-color: var(--orange);
  animation: preloaderSpin .85s linear infinite;
}
.hero { background: #050505; overflow: hidden; }
.hero-bg-slider { position: absolute; inset: 0; z-index: -3; perspective: 1200px; overflow: hidden; }
.hero-bg-slide {
  position: absolute;
  inset: -1px;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: translateX(10%) rotateY(-16deg) scale(1.08);
  filter: saturate(.9) contrast(1.04);
  transition: opacity .95s ease, transform 1.15s cubic-bezier(.2,.72,.2,1);
  will-change: opacity, transform;
}
.hero-bg-slide.is-active { opacity: 1; transform: translateX(0) rotateY(0) scale(1.02); }
.hero-bg-slide.was-active { opacity: 0; transform: translateX(-8%) rotateY(14deg) scale(1.05); }
.hero:before { z-index: -1; }
.hero:after { z-index: 0; }
.hero .hero-inner { position: relative; z-index: 2; }
.hero:has(.hero-bg-slider) {
  background:
    linear-gradient(90deg, rgba(5,5,5,.98) 0%, rgba(5,5,5,.94) 34%, rgba(10,12,14,.78) 58%, rgba(10,12,14,.46) 100%),
    radial-gradient(circle at 18% 48%, rgba(255,140,10,.22), transparent 30%);
}
.hero:has(.hero-bg-slider) .hero-bg-slider:after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,.98) 0%, rgba(5,5,5,.9) 38%, rgba(5,5,5,.55) 62%, rgba(5,5,5,.42) 100%),
    radial-gradient(circle at 20% 52%, rgba(255,140,10,.22), transparent 32%);
}
.hero-layer { animation-fill-mode: both; }
.hero.motion-in .layer-kicker { animation: revFromLeft .46s ease .12s both; }
.hero.motion-in .layer-title { animation: revFromRight .56s ease .34s both; }
.hero.motion-in .layer-copy { animation: revFromLeft .52s ease .62s both; }
.hero.motion-in .layer-actions { animation: revFromBottom .52s ease .86s both; }
.hero.motion-in .layer-panel { animation: revZoomIn .68s ease 1.04s both; }
.hero.motion-reset .hero-layer { opacity: 0; }
.hero-copy { position: relative; }
.hero-copy:before {
  content: '';
  position: absolute;
  left: -28px;
  top: 56px;
  bottom: 44px;
  width: 3px;
  background: linear-gradient(var(--orange), transparent);
  transform-origin: top;
  animation: verticalTrace 1.1s ease .25s both;
}
@keyframes preloaderSpin { to { transform: rotate(360deg); } }
@keyframes revFromLeft { from { opacity: 0; transform: translateX(-54px); } to { opacity: 1; transform: translateX(0); } }
@keyframes revFromRight { from { opacity: 0; transform: translateX(54px); } to { opacity: 1; transform: translateX(0); } }
@keyframes revFromBottom { from { opacity: 0; transform: translateY(54px); } to { opacity: 1; transform: translateY(0); } }
@keyframes revZoomIn { from { opacity: 0; transform: translateY(28px) scale(.94); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes verticalTrace { from { transform: scaleY(0); opacity: 0; } to { transform: scaleY(1); opacity: 1; } }
@media (max-width: 980px) {
  .hero-copy:before { display: none; }
}
@supports not selector(:has(*)) {
  .hero .hero-bg-slider:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5,5,5,.98), rgba(5,5,5,.78));
  }
}


/* Slider layering fix */
.hero:has(.hero-bg-slider) { background: #050505; }
.hero-bg-slider { z-index: 0; }
.hero:before { z-index: 1; }
.hero:after { z-index: 3; }
.hero .hero-inner { z-index: 4; }
.hero:has(.hero-bg-slider) .hero-bg-slider:after { z-index: 2; pointer-events: none; }
.hero-bg-slide { z-index: 1; }

/* QA fix: prevent mobile hero clipping */
.hero,
.hero-inner,
.hero-copy,
.mission-panel,
.flight-card {
  max-width: 100%;
}
.hero * {
  min-width: 0;
}
.hero h1,
.hero .lead {
  white-space: normal !important;
  overflow-wrap: break-word;
  word-break: normal;
}
@media (max-width: 680px) {
  .hero h1 {
    font-size: clamp(30px, 8.2vw, 36px) !important;
    line-height: 1.08;
  }
  .hero .lead {
    font-size: 16px;
    line-height: 1.56;
  }
  .hero-inner,
  .mission-panel {
    overflow: hidden;
  }
}

/* Final local-video hero viewport guard */
.raw-video-hero,
.home-video-content,
.home-video-content * {
  min-width: 0;
}

.home-video-content {
  max-width: calc(100% - 40px);
}

.home-video-content .lead,
.home-video-body {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
}

@media (max-width: 640px) {
  .home-video-content {
    width: min(362px, calc(100vw - 28px));
    max-width: min(362px, calc(100vw - 28px));
    margin-left: 14px;
    margin-right: auto;
  }
}

/* Local video landing hero */
.raw-video-hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050505;
}

.home-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(.86) saturate(1.18) contrast(1.08);
}

.home-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 4, 5, .84) 0%, rgba(3, 4, 5, .56) 42%, rgba(3, 4, 5, .18) 100%),
    linear-gradient(0deg, rgba(3, 4, 5, .72) 0%, rgba(3, 4, 5, .04) 48%, rgba(3, 4, 5, .54) 100%),
    radial-gradient(circle at 18% 44%, rgba(255, 143, 15, .22), transparent 34%);
}

.home-video-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 122px 0 92px;
  color: #fff;
}

.home-video-content .eyebrow {
  color: var(--orange);
  margin-bottom: 16px;
}

.home-video-content h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 8.4vw, 118px);
  line-height: .9;
  letter-spacing: 0;
  text-shadow: 0 18px 42px rgba(0, 0, 0, .55);
}

.home-video-content .lead {
  max-width: 800px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .94);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.35;
}

.home-video-body {
  max-width: 780px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.7;
}

.home-video-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 980px;
  margin-top: 34px;
  border: 1px solid rgba(255, 143, 15, .34);
  background: rgba(255, 143, 15, .28);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .42);
}

.home-video-stat {
  min-height: 130px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(12, 13, 14, .72);
  backdrop-filter: blur(10px);
}

.home-video-stat strong {
  display: block;
  color: var(--orange);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1;
  letter-spacing: 0;
}

.home-video-stat span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .raw-video-hero {
    min-height: auto;
  }

  .home-video-content {
    padding: 112px 0 72px;
  }

  .home-video-content h1 {
    font-size: clamp(44px, 10vw, 78px);
    line-height: .96;
  }

  .home-video-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .raw-video-hero {
    min-height: 100svh;
    height: auto;
  }

  .home-video-content {
    width: calc(100% - 28px);
    padding: 96px 0 54px;
  }

  .home-video-content h1 {
    font-size: clamp(31px, 8.7vw, 35px);
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  .home-video-content .lead {
    font-size: 14px;
    line-height: 1.48;
  }

  .home-video-body {
    font-size: 14px;
  }

  .home-video-stats {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .home-video-stat {
    min-height: 104px;
  }
}


/* QA fix: preloader must never block the site */
.strato-preloader {
  pointer-events: none;
  animation: preloaderFallback .45s ease 1.25s forwards;
}
.strato-preloader.is-hidden {
  pointer-events: none;
}
@keyframes preloaderFallback {
  to { opacity: 0; visibility: hidden; }
}


/* QA responsive polish */
html, body { max-width: 100%; overflow-x: hidden; }
.brand-logo { width: min(258px, 52vw); height: auto; max-height: 58px; }
@media (max-width: 980px) {
  .hero-inner { padding: 72px 0 52px; gap: 34px; }
  .hero h1 { max-width: 100%; font-size: clamp(38px, 10vw, 58px); line-height: 1.04; }
  .hero .lead { max-width: 100%; font-size: 18px; }
  .mission-panel { width: 100%; }
}
@media (max-width: 680px) {
  .navbar { min-height: 82px; }
  .brand { flex-basis: min(232px, calc(100% - 58px)); }
  .brand-logo { width: min(232px, calc(100vw - 96px)); height: auto; max-height: 54px; }
  .nav-toggle { padding: 9px 11px; font-size: 0; width: 44px; height: 44px; position: relative; }
  .nav-toggle:before, .nav-toggle:after { content: ''; position: absolute; left: 12px; right: 12px; height: 2px; background: #fff; }
  .nav-toggle:before { top: 15px; box-shadow: 0 6px 0 #fff; }
  .nav-toggle:after { top: 27px; }
  .hero-inner { width: calc(100% - 28px); padding: 68px 0 46px; }
  .hero-copy { width: 100%; min-width: 0; }
  .hero h1 { font-size: clamp(33px, 9vw, 40px); line-height: 1.06; overflow-wrap: normal; }
  .hero .lead { font-size: 17px; line-height: 1.58; }
  .hero-actions .btn { width: 100%; }
  .mission-panel { padding: 18px; }
  .flight-card { min-height: 270px; }
}

/* Final mobile QA override */
.hero,
.hero-inner,
.hero-copy,
.mission-panel,
.flight-card {
  max-width: 100%;
}
.hero * {
  min-width: 0;
}
.hero h1,
.hero .lead {
  white-space: normal !important;
  overflow-wrap: break-word;
  word-break: normal;
}
@media (max-width: 680px) {
  .hero h1 {
    font-size: clamp(30px, 8.2vw, 36px) !important;
    line-height: 1.08;
  }
  .hero .lead {
    font-size: 16px;
    line-height: 1.56;
  }
  .hero-inner,
  .mission-panel {
    overflow: hidden;
  }
}

/* Locked mobile guard for the local video hero */
@media (max-width: 640px) {
  .home-video-content {
    width: min(362px, calc(100vw - 28px)) !important;
    max-width: min(362px, calc(100vw - 28px)) !important;
    margin-left: 14px !important;
    margin-right: auto !important;
  }

  .home-video-content h1 {
    font-size: clamp(31px, 8.7vw, 35px) !important;
    line-height: 1.04 !important;
  }

  .home-video-content .lead,
  .home-video-body {
    font-size: 14px !important;
    line-height: 1.48 !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
  }
}

/* Presentation-copy metric treatment */
.home-video-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 980px;
  padding: 24px 30px;
  border: 1px solid rgba(255, 143, 15, .48);
  background: rgba(12, 13, 14, .62);
  backdrop-filter: blur(12px);
}

.home-video-stat {
  min-height: auto;
  padding: 8px 0;
  display: block;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, .86);
}

.home-video-stat strong {
  display: inline;
  margin-right: 8px;
  color: var(--orange);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.25;
}

.home-video-stat span {
  display: inline;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(18px, 1.8vw, 27px);
  line-height: 1.35;
}

@media (max-width: 640px) {
  .home-video-stats {
    padding: 18px 20px;
  }

  .home-video-stat {
    padding: 9px 0;
  }

  .home-video-stat strong,
  .home-video-stat span {
    display: block;
  }

  .home-video-stat strong {
    margin: 0 0 4px;
    font-size: 24px;
  }

  .home-video-stat span {
    font-size: 13px;
  }
}

/* Premium visual polish pass */
:root {
  --navy: #0d1f3c;
  --ink: #0a0d14;
  --smoke: #f5f7fa;
  --electric: #2e7eea;
}

body {
  font-family: Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--smoke);
  font-size: 16px;
  line-height: 1.72;
}

h1,
h2,
h3,
.btn,
.nav-links,
.eyebrow,
.card-number,
.home-video-stat strong,
.stat strong {
  font-family: Roboto, Arial, sans-serif;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  font-size: clamp(56px, 6.4vw, 94px);
  line-height: .92;
}

h2 {
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: .98;
}

h3 {
  font-size: 25px;
  line-height: 1.05;
}

p {
  max-width: 72ch;
}

.site-header {
  background: rgba(255, 255, 255, .96);
}

.navbar {
  min-height: 76px;
}

.brand-logo {
  width: min(230px, 40vw);
  height: 54px;
}

.nav-links {
  gap: 15px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .055em;
}

.nav-links a:not(.btn) {
  padding: 27px 0;
}

.nav-links a:not(.btn):after {
  bottom: 19px;
}

.btn {
  min-height: 48px;
  padding: 0 22px;
  font-size: 14px;
  letter-spacing: .055em;
  border-radius: 2px;
}

.nav-links .btn {
  min-height: 50px;
  padding: 0 22px;
}

.raw-video-hero {
  min-height: calc(100vh - 76px);
}

.home-video-overlay {
  background:
    linear-gradient(90deg, rgba(5, 8, 12, .88) 0%, rgba(5, 8, 12, .54) 43%, rgba(5, 8, 12, .18) 100%),
    linear-gradient(0deg, rgba(5, 8, 12, .78) 0%, rgba(5, 8, 12, .06) 52%, rgba(5, 8, 12, .5) 100%),
    radial-gradient(circle at 17% 46%, rgba(255, 140, 10, .2), transparent 35%);
}

.home-video-content {
  padding: 104px 0 78px;
}

.home-video-content h1 {
  max-width: 690px;
  font-size: clamp(62px, 7.7vw, 112px);
  line-height: .88;
}

.home-video-content .lead {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(20px, 1.75vw, 27px);
  line-height: 1.34;
}

.home-video-body {
  max-width: 760px;
  color: rgba(255, 255, 255, .82);
}

.home-video-stats {
  max-width: 900px;
  margin-top: 30px;
  padding: 22px 28px;
  background: linear-gradient(90deg, rgba(10, 13, 20, .78), rgba(10, 13, 20, .56));
  border-color: rgba(255, 140, 10, .38);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

.home-video-stat {
  padding: 6px 0;
}

.home-video-stat strong {
  font-size: clamp(26px, 2.1vw, 33px);
  letter-spacing: .01em;
}

.home-video-stat span {
  font-size: clamp(17px, 1.35vw, 23px);
}

.section {
  padding: 104px 0;
}

.section.steel {
  background: linear-gradient(180deg, #eef3f7, #f7f9fb);
}

.container,
.navbar {
  width: min(1220px, calc(100% - 48px));
}

.section-head {
  align-items: start;
  gap: 52px;
  margin-bottom: 42px;
}

.section-head p,
.lead,
.muted,
.card p,
.list-clean li {
  font-size: 16px;
  line-height: 1.72;
}

.feature-band {
  gap: 46px;
  align-items: center;
}

.grid {
  gap: 22px;
}

.card {
  border-radius: 6px;
  padding: 30px;
  border-color: rgba(13, 31, 60, .13);
  box-shadow: 0 18px 44px rgba(10, 13, 20, .055);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 140, 10, .45);
  box-shadow: 0 24px 58px rgba(10, 13, 20, .11);
}

.dark .card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .028));
  border-color: rgba(255, 255, 255, .12);
  box-shadow: none;
}

.dark .card:hover {
  border-color: rgba(255, 140, 10, .55);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .24);
}

.card-number {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 17px;
}

.page-hero {
  padding: 126px 0 112px;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(5, 8, 12, .96), rgba(13, 31, 60, .48) 100%);
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(52px, 6vw, 80px);
  line-height: .96;
  letter-spacing: -.01em;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 4px 28px rgba(0, 0, 0, .72), 0 1px 0 rgba(255, 255, 255, .05);
  margin-bottom: 24px;
}

.page-hero .lead {
  max-width: 840px;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.42;
  color: rgba(255, 255, 255, .95);
  text-shadow: 0 2px 16px rgba(0, 0, 0, .64);
}

@media (max-width: 980px) {
  .page-hero {
    padding: 96px 0 84px;
    min-height: auto;
  }

  .page-hero h1 {
    font-size: clamp(44px, 8vw, 68px);
    line-height: 1;
    margin-bottom: 18px;
  }

  .page-hero .lead {
    font-size: clamp(16px, 2.2vw, 22px);
    line-height: 1.48;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 72px 0 64px;
    min-height: auto;
    background: linear-gradient(135deg, rgba(5, 8, 12, .97), rgba(13, 31, 60, .52) 100%);
  }

  .page-hero h1 {
    font-size: clamp(36px, 9vw, 48px);
    line-height: 1.04;
    margin-bottom: 16px;
    letter-spacing: 0;
  }

  .page-hero .lead {
    font-size: 15px;
    line-height: 1.52;
    color: rgba(255, 255, 255, .93);
  }

  .page-hero .eyebrow {
    font-size: 12px;
    margin-bottom: 12px;
  }
}

.cta {
  padding: 86px 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 140, 10, .18), transparent 28%),
    linear-gradient(135deg, #050505, #0d1f3c 120%);
}

.cta h2 {
  max-width: 760px;
}

.cta-inner .hero-actions {
  min-width: 330px;
}

.footer-grid {
  gap: 36px;
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 11px;
    font-size: 12px;
  }

  .nav-links .btn {
    padding: 0 16px;
  }

  .brand {
    min-width: 196px;
  }

  .brand-logo {
    width: 208px;
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: clamp(44px, 10vw, 72px);
  }

  h2 {
    font-size: clamp(32px, 7vw, 48px);
  }

  .container,
  .navbar {
    width: min(100% - 32px, 1220px);
  }

  .feature-band,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .section,
  .page-hero,
  .cta {
    padding: 72px 0;
  }

  .section-head,
  .cta-inner {
    display: block;
  }

  .cta-inner .hero-actions {
    min-width: 0;
    justify-content: flex-start;
    margin-top: 24px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .brand-logo {
    width: 156px;
    height: 48px;
  }

  .home-video-content {
    padding-top: 82px;
  }

  .home-video-content h1 {
    font-size: clamp(38px, 12.5vw, 52px) !important;
    line-height: .96 !important;
  }

  .home-video-content .lead,
  .home-video-body {
    font-size: 15px !important;
  }

  .home-video-stats {
    padding: 16px 18px;
  }

  .card {
    padding: 24px;
  }

  .page-hero {
    min-height: auto;
  }

  .btn {
    width: 100%;
  }
}

/* Locked mobile navigation polish */
@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(10, 13, 20, .14);
    background: var(--ink);
    color: transparent;
    border-radius: 4px;
    position: relative;
  }

  .nav-toggle:before,
  .nav-toggle:after {
    content: '';
    position: absolute;
    left: 13px;
    right: 13px;
    height: 2px;
    background: #fff;
  }

  .nav-toggle:before {
    top: 15px;
    box-shadow: 0 7px 0 #fff;
  }

  .nav-toggle:after {
    top: 29px;
  }

  .nav-links {
    top: 76px;
    gap: 12px;
  }
}

/* Homepage hero first-pass correction */
.raw-video-hero {
  min-height: calc(100vh - 96px);
  background: #050505;
}

.home-bg-video {
  object-fit: cover;
  object-position: center 48%;
  background: #050505;
}

.home-video-overlay {
  background:
    linear-gradient(90deg, rgba(5, 8, 12, .93) 0%, rgba(5, 8, 12, .62) 43%, rgba(5, 8, 12, .18) 100%),
    linear-gradient(0deg, rgba(5, 8, 12, .78) 0%, rgba(5, 8, 12, .08) 52%, rgba(5, 8, 12, .48) 100%);
}

.home-video-content .lead {
  width: max-content;
  max-width: 760px;
  line-height: 1.28;
}

@media (max-width: 980px) {
  .home-bg-video {
    object-fit: cover;
    object-position: center center;
  }

  .home-video-content .lead {
    width: auto;
    max-width: 100%;
    word-spacing: .08em;
  }

  .home-video-content .lead br {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    overflow: visible;
  }

  .site-header .navbar {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0;
    margin: 0 !important;
    padding: 0 14px !important;
    gap: 12px !important;
  }

  .site-header .brand {
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }

  .site-header .brand-logo {
    width: min(150px, 62vw) !important;
    height: 46px !important;
  }

  .site-header .nav-toggle {
    position: fixed !important;
    right: 14px !important;
    top: 14px !important;
    margin-left: auto !important;
    transform: none !important;
    z-index: 1001;
  }

  .home-video-content .lead {
    word-spacing: .1em;
  }
}

/* Final homepage media frame: keep video inside a controlled box */
.raw-video-hero {
  min-height: calc(100vh - 96px);
  overflow: hidden;
  display: block;
  align-items: initial;
  background:
    radial-gradient(circle at 82% 34%, rgba(255, 140, 10, .12), transparent 28%),
    linear-gradient(115deg, #05070a 0%, #0a0d14 56%, #101820 100%);
}

.raw-video-hero:before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .48;
}

.home-video-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, .94) 0%, rgba(5, 7, 10, .82) 43%, rgba(5, 7, 10, .34) 100%),
    linear-gradient(0deg, rgba(5, 7, 10, .72) 0%, rgba(5, 7, 10, .08) 56%, rgba(5, 7, 10, .46) 100%);
}

.home-video-frame {
  position: absolute;
  z-index: 2;
  right: 0;
  top: clamp(38px, 7vh, 86px);
  width: min(43vw, 660px);
  aspect-ratio: 16 / 9;
  padding: 10px;
  border: 1px solid rgba(255, 140, 10, .5);
  background:
    linear-gradient(145deg, rgba(255, 140, 10, .18), rgba(255,255,255,.04)),
    rgba(3, 5, 8, .84);
  box-shadow: 0 28px 80px rgba(0,0,0,.46), 0 0 0 1px rgba(255,255,255,.07) inset;
}

.home-video-frame:after {
  content: '';
  position: absolute;
  inset: 10px;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .36;
}

.home-video-frame .home-bg-video {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #020304;
}

.home-video-content {
  position: relative;
  z-index: 3;
  width: min(100% - 48px, 1420px);
  padding-top: clamp(98px, 13vh, 142px);
}

.home-video-content h1,
.home-video-content .lead,
.home-video-body,
.home-video-content .hero-actions {
  max-width: min(760px, 52vw);
}

.home-video-stats {
  max-width: min(900px, 70vw);
}

@media (max-width: 1180px) {
  .home-video-frame {
    width: min(40vw, 480px);
    top: 74px;
  }

  .home-video-content h1,
  .home-video-content .lead,
  .home-video-body,
  .home-video-content .hero-actions {
    max-width: 58vw;
  }
}

@media (max-width: 980px) {
  .raw-video-hero {
    padding-bottom: 56px;
  }

  .home-video-frame {
    position: relative;
    right: auto;
    top: auto;
    width: min(100% - 40px, 760px);
    margin: 26px auto 0;
  }

  .home-video-content {
    width: min(100% - 40px, 760px);
    padding: 76px 0 0;
  }

  .home-video-content h1,
  .home-video-content .lead,
  .home-video-body,
  .home-video-content .hero-actions,
  .home-video-stats {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .raw-video-hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  .home-video-content {
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
    padding-top: 78px;
    margin: 0 auto;
    order: 1;
    overflow: hidden;
  }

  .home-video-frame {
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
    padding: 7px;
    margin: 26px auto 0;
    order: 2;
    overflow: hidden;
    aspect-ratio: 16 / 9;
  }

  .home-video-frame:after {
    inset: 7px;
    background-size: 30px 30px;
  }

  .home-video-frame .home-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Final: framed background video hero */
.raw-video-hero {
  min-height: calc(100vh - 96px);
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.home-video-frame {
  position: absolute !important;
  inset: 22px !important;
  z-index: 0 !important;
  width: auto !important;
  height: auto !important;
  aspect-ratio: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  border: 1px solid rgba(255, 140, 10, .48);
  background: #020304;
  box-shadow: 0 0 0 1px rgba(255,255,255,.06) inset, 0 32px 100px rgba(0,0,0,.52);
}

.home-video-frame:after {
  inset: 0 !important;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .42;
}

.home-video-frame .home-bg-video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  opacity: 1 !important;
  filter: brightness(1.18) saturate(1.12) contrast(1.04);
}

.home-video-overlay {
  z-index: 1 !important;
  background:
    linear-gradient(90deg, rgba(3, 5, 8, .78) 0%, rgba(3, 5, 8, .48) 42%, rgba(3, 5, 8, .18) 100%),
    linear-gradient(0deg, rgba(3, 5, 8, .58) 0%, rgba(3, 5, 8, .06) 55%, rgba(3, 5, 8, .38) 100%) !important;
}

.home-video-content {
  position: relative;
  z-index: 2 !important;
  order: initial !important;
  padding: clamp(92px, 13vh, 142px) 0 76px !important;
}

.home-video-content h1,
.home-video-content .lead,
.home-video-body,
.home-video-content .hero-actions {
  max-width: 800px !important;
}

.home-video-stats {
  max-width: 980px !important;
}

@media (max-width: 980px) {
  .home-video-frame {
    inset: 14px !important;
  }

  .home-video-content {
    width: min(100% - 40px, 760px) !important;
    padding: 86px 0 58px !important;
  }
}

@media (max-width: 640px) {
  .raw-video-hero {
    flex-direction: row !important;
    align-items: center !important;
  }

  .home-video-frame {
    inset: 10px !important;
  }

  .home-video-frame .home-bg-video {
    object-position: center center !important;
    filter: brightness(1.28) saturate(1.14) contrast(1.04);
  }

  .home-video-overlay {
    background:
      linear-gradient(90deg, rgba(3, 5, 8, .72) 0%, rgba(3, 5, 8, .44) 48%, rgba(3, 5, 8, .2) 100%),
      linear-gradient(0deg, rgba(3, 5, 8, .5) 0%, rgba(3, 5, 8, .04) 54%, rgba(3, 5, 8, .34) 100%) !important;
  }

  .home-video-content {
    width: min(100% - 28px, 560px) !important;
    padding: 78px 0 44px !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 420px) {
  .home-video-frame {
    inset: 8px !important;
  }

  .home-video-content {
    width: min(100% - 24px, 380px) !important;
    padding: 72px 0 38px !important;
  }

  .home-video-content h1 {
    font-size: clamp(36px, 11.5vw, 46px) !important;
    line-height: .98 !important;
  }

  .home-video-content .lead,
  .home-video-body {
    font-size: 15px !important;
    line-height: 1.52 !important;
  }

  .home-video-stats {
    margin-top: 24px !important;
  }
}

/* Dark theme header override */
.site-header {
  background: rgba(7, 8, 10, .98) !important;
  border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .34) !important;
}

.navbar {
  min-height: 78px;
}

.brand {
  min-width: 0;
  gap: 12px;
}

.brand:after {
  content: "STRATOSYN\A ORIGIN";
  white-space: pre;
  color: #ffffff;
  font-family: Roboto, Arial, sans-serif;
  font-size: 23px;
  line-height: .82;
  font-weight: 900;
  letter-spacing: .03em;
}

.brand-logo {
  width: 92px;
  height: 68px;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.nav-links a:not(.btn) {
  color: rgba(255, 255, 255, .88) !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff !important;
}

.nav-links a:not(.btn):after {
  background: rgba(255, 255, 255, .72) !important;
}

.nav-links a.active:after,
.nav-links a:hover:after {
  background: rgba(255, 255, 255, .72) !important;
}

.home-video-frame {
  border-color: rgba(255, 255, 255, .16) !important;
}

.home-video-frame:after {
  opacity: .22 !important;
}

.nav-toggle {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
}

@media (max-width: 980px) {
  .nav-links {
    background: rgba(5, 7, 10, .98) !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
  }

  .nav-links .btn {
    color: var(--black) !important;
  }
}

/* Orange restraint: black-led theme with orange as a small accent */
.eyebrow {
  color: rgba(255, 140, 10, .86) !important;
}

.section:not(.dark):not(.steel) h2,
.feature-band h2,
.section:not(.dark):not(.steel) h3,
.card h3 {
  color: #080a0d !important;
}

.home-video-content h1,
.home-video-content .lead,
.home-video-body {
  color: #ffffff !important;
}

.card-number,
.home-video-stat strong,
.stat strong {
  color: #0b0d10 !important;
}

.home-video-stats .home-video-stat strong,
.dark .card-number,
.dark .card h3,
.dark .stat strong,
.steel .card-number {
  color: rgba(255, 140, 10, .9) !important;
}

.card,
.stat,
.media-panel {
  border-color: rgba(8, 10, 13, .12) !important;
}

.btn-primary {
  background: #0b0d10 !important;
  color: #ffffff !important;
  border-color: #0b0d10 !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .22) !important;
}

.btn-primary:hover {
  background: #151922 !important;
  border-color: #151922 !important;
}

.hero-actions .btn-primary:first-child,
.home-video-content .btn-primary {
  background: var(--orange) !important;
  color: #080a0d !important;
  border-color: var(--orange) !important;
}

@media (max-width: 640px) {
  .brand {
    gap: 9px;
  }

  .brand:after {
    font-size: 17px;
  }

  .brand-logo {
    width: 72px !important;
    height: 58px !important;
    object-fit: contain;
    object-position: left center;
    padding: 0;
  }

  .site-header .nav-toggle {
    top: 17px !important;
  }
}

/* Final responsive header and hero QA */
.site-header .navbar {
  width: min(100% - 32px, 1530px) !important;
  gap: 22px !important;
}

.site-header .brand {
  flex: 0 0 260px;
  min-width: 0 !important;
}

@media (max-width: 1320px) {
  .site-header .navbar {
    gap: 16px !important;
  }

  .site-header .brand {
    flex-basis: 214px;
  }

  .brand-logo {
    width: 78px !important;
    height: 60px !important;
  }

  .brand:after {
    font-size: 19px;
  }

  .nav-links {
    gap: 10px !important;
    font-size: 12px !important;
    letter-spacing: .04em !important;
  }

  .nav-links .btn {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

@media (max-width: 1120px) {
  .brand:after {
    display: none;
  }

  .site-header .brand {
    flex-basis: 92px;
  }

  .brand-logo {
    width: 86px !important;
    height: 58px !important;
  }
}

@media (max-width: 980px) {
  .site-header .navbar {
    min-height: 76px !important;
  }

  .site-header .brand {
    flex: 0 0 auto;
  }

  .nav-links {
    left: 0 !important;
    right: 0 !important;
    top: 76px !important;
    padding: 22px !important;
  }
}

@media (max-width: 640px) {
  .site-header .navbar {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 74px !important;
    padding: 0 14px !important;
  }

  .site-header .brand {
    flex: 0 0 auto !important;
  }

  .brand-logo {
    width: 78px !important;
    height: 56px !important;
  }

  .home-video-content h1 {
    font-size: clamp(42px, 13vw, 58px) !important;
    line-height: .94 !important;
  }

  .home-video-content .lead br {
    display: none;
  }

  .home-video-content .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .home-video-content .hero-actions .btn {
    width: 100% !important;
  }

  .home-video-stats {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
  }

  .home-video-stat {
    min-height: 0 !important;
    padding: 18px !important;
  }
}

/* Mobile hamburger menu fix */
@media (max-width: 980px) {
  .site-header {
    overflow: visible !important;
  }

  .site-header .navbar {
    position: relative;
  }

  .site-header .nav-links {
    display: none !important;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 1002;
    flex-direction: column;
    align-items: stretch;
    gap: 0 !important;
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #05070a !important;
    border-top: 1px solid rgba(255, 255, 255, .08) !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
    padding: 22px 28px 28px !important;
    box-shadow: 0 22px 40px rgba(0, 0, 0, .58) !important;
  }

  .site-header .nav-links.open {
    display: flex !important;
  }

  .site-header .nav-links a:not(.btn) {
    width: 100%;
    padding: 15px 0 !important;
    color: rgba(255, 255, 255, .88) !important;
    line-height: 1.2 !important;
  }

  .site-header .nav-links a:not(.btn):after {
    left: 0 !important;
    right: auto !important;
    bottom: 7px !important;
    width: 28px !important;
    height: 2px !important;
    background: var(--orange) !important;
  }

  .site-header .nav-links .btn {
    width: 100%;
    margin-top: 16px !important;
    min-height: 54px !important;
    background: var(--orange) !important;
    border-color: var(--orange) !important;
    color: #080a0d !important;
  }

  .site-header .nav-toggle {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    z-index: 1003;
    cursor: pointer;
  }
}

body.nav-open {
  overflow: hidden;
}

/* Final hamburger icon lock */
@media (max-width: 980px) {
  .site-header .nav-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 46px !important;
    height: 46px !important;
    padding: 0 !important;
    border: 1px solid rgba(255, 255, 255, .16) !important;
    border-radius: 6px !important;
    background: #0b0d10 !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .28) !important;
  }

  .site-header .nav-toggle:before,
  .site-header .nav-toggle:after {
    content: '' !important;
    position: absolute !important;
    left: 13px !important;
    right: 13px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    transform-origin: center !important;
    transition: transform .22s ease, top .22s ease, box-shadow .22s ease !important;
  }

  .site-header .nav-toggle:before {
    top: 15px !important;
    box-shadow: 0 7px 0 #ffffff !important;
  }

  .site-header .nav-toggle:after {
    top: 29px !important;
  }

  .site-header .nav-toggle[aria-expanded="true"]:before {
    top: 22px !important;
    transform: rotate(45deg) !important;
    box-shadow: none !important;
  }

  .site-header .nav-toggle[aria-expanded="true"]:after {
    top: 22px !important;
    transform: rotate(-45deg) !important;
  }
}

/* Safari/mobile navigation lock */
@media (max-width: 980px) {
  body.nav-open .site-header {
    z-index: 10000 !important;
  }

  .site-header .nav-links {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .site-header .nav-links.open,
  .site-header .nav-links.is-open,
  body.nav-open .site-header .nav-links {
    display: flex !important;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    top: 76px !important;
    width: 100vw !important;
    max-height: calc(100dvh - 76px) !important;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .site-header .nav-toggle {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
}

@media (max-width: 640px) {
  .site-header .nav-links.open,
  .site-header .nav-links.is-open,
  body.nav-open .site-header .nav-links {
    top: 74px !important;
    max-height: calc(100dvh - 74px) !important;
  }
}

.home-bg-video {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Logo-only brand lock */
.site-header .brand {
  gap: 0 !important;
  flex-basis: auto !important;
}

.site-header .brand:after {
  content: none !important;
  display: none !important;
}

.site-header .brand-logo {
  width: 128px !important;
  height: auto !important;
  max-height: 58px !important;
}

@media (max-width: 640px) {
  .site-header .brand-logo {
    width: 126px !important;
    max-height: 54px !important;
  }
}

/* Production responsive pass for Stratosyn pages */
.site-header {
  width: 100% !important;
  background: rgba(7, 8, 10, .98) !important;
}

.site-header .navbar {
  width: min(100% - 56px, 1680px) !important;
  min-height: 92px !important;
  gap: 28px !important;
}

.site-header .brand {
  flex: 0 0 clamp(190px, 12.5vw, 230px) !important;
  min-width: clamp(190px, 12.5vw, 230px) !important;
  max-width: 230px !important;
}

.site-header .brand:after {
  content: none !important;
  display: none !important;
}

.site-header .brand-logo {
  width: clamp(188px, 11.8vw, 220px) !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 74px !important;
}

.site-header .nav-links {
  flex: 1 1 auto !important;
  justify-content: flex-end !important;
  gap: clamp(14px, 1.25vw, 26px) !important;
  font-size: clamp(12px, .82vw, 16px) !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.site-header .nav-links a:not(.btn) {
  padding: 36px 0 !important;
}

.site-header .nav-links a:not(.btn):after {
  bottom: 28px !important;
}

.site-header .nav-links .btn {
  min-height: 48px !important;
  padding: 0 clamp(16px, 1.2vw, 24px) !important;
}

.container {
  width: min(100% - 56px, 1240px) !important;
}

.raw-video-hero {
  min-height: calc(100svh - 92px) !important;
}

.home-video-content {
  width: min(100% - 56px, 1240px) !important;
  padding: clamp(96px, 8vw, 150px) 0 clamp(76px, 7vw, 120px) !important;
}

.home-video-content h1 {
  max-width: min(760px, 58vw) !important;
  font-size: clamp(72px, 6.6vw, 124px) !important;
  line-height: .88 !important;
}

.home-video-content .lead,
.home-video-body,
.home-video-content .hero-actions {
  max-width: min(780px, 58vw) !important;
}

.home-video-content .lead {
  font-size: clamp(22px, 1.65vw, 31px) !important;
  line-height: 1.32 !important;
}

.home-video-body {
  font-size: clamp(18px, 1.15vw, 23px) !important;
  line-height: 1.7 !important;
}

.home-video-stats {
  max-width: min(760px, 58vw) !important;
}

.page-hero {
  padding: clamp(96px, 8vw, 148px) 0 clamp(82px, 7vw, 128px) !important;
}

.page-hero h1 {
  max-width: 980px !important;
  font-size: clamp(48px, 5vw, 88px) !important;
  line-height: .96 !important;
}

.page-hero .lead {
  max-width: 840px !important;
  font-size: clamp(19px, 1.45vw, 25px) !important;
  line-height: 1.55 !important;
}

.section {
  padding: clamp(76px, 7vw, 116px) 0 !important;
}

.grid {
  min-width: 0 !important;
}

.grid-2,
.feature-band,
.cta-inner {
  gap: clamp(34px, 4vw, 64px) !important;
}

.card,
.cta,
.site-footer {
  min-width: 0 !important;
}

.card h3,
.card p,
.section-head h2,
.section-head p,
.cta h2,
.cta p {
  overflow-wrap: break-word !important;
}

@media (max-width: 1320px) {
  .site-header .navbar {
    width: min(100% - 40px, 1240px) !important;
    gap: 18px !important;
  }

  .site-header .brand {
    flex-basis: 176px !important;
    min-width: 176px !important;
  }

  .site-header .brand-logo {
    width: 172px !important;
    max-height: 62px !important;
  }

  .site-header .nav-links {
    gap: 13px !important;
    font-size: 12px !important;
  }

  .site-header .nav-links .btn {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

@media (max-width: 1080px) {
  .site-header .navbar {
    min-height: 78px !important;
  }

  .site-header .brand {
    flex: 0 0 148px !important;
    min-width: 148px !important;
  }

  .site-header .brand-logo {
    width: 146px !important;
    max-height: 58px !important;
  }

  .site-header .nav-toggle {
    display: inline-flex !important;
  }

  .site-header .nav-links {
    display: none !important;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    top: 78px !important;
    width: 100vw !important;
    max-height: calc(100dvh - 78px) !important;
    padding: 22px 28px 30px !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    white-space: normal !important;
    overflow-y: auto !important;
  }

  .site-header .nav-links.open,
  .site-header .nav-links.is-open,
  body.nav-open .site-header .nav-links {
    display: flex !important;
  }

  .site-header .nav-links a:not(.btn) {
    width: 100% !important;
    padding: 15px 0 !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
  }

  .site-header .nav-links a:not(.btn):after {
    bottom: 7px !important;
  }

  .site-header .nav-links .btn {
    width: 100% !important;
    margin-top: 16px !important;
  }

  .raw-video-hero {
    min-height: calc(100svh - 78px) !important;
  }

  .home-video-content,
  .container {
    width: min(100% - 40px, 900px) !important;
  }

  .home-video-content h1,
  .home-video-content .lead,
  .home-video-body,
  .home-video-content .hero-actions,
  .home-video-stats {
    max-width: 100% !important;
  }
}

@media (max-width: 680px) {
  .site-header .navbar {
    width: 100% !important;
    min-height: 74px !important;
    padding: 0 18px !important;
  }

  .site-header .brand {
    flex: 0 0 142px !important;
    min-width: 142px !important;
  }

  .site-header .brand-logo {
    width: 140px !important;
    max-height: 54px !important;
  }

  .site-header .nav-links {
    top: 74px !important;
    max-height: calc(100dvh - 74px) !important;
    padding: 18px 22px 26px !important;
  }

  .container,
  .home-video-content {
    width: calc(100% - 36px) !important;
  }

  .raw-video-hero {
    min-height: calc(100svh - 74px) !important;
  }

  .home-video-content {
    padding: 58px 0 38px !important;
  }

  .home-video-content h1 {
    font-size: clamp(38px, 10.8vw, 48px) !important;
    line-height: .98 !important;
  }

  .home-video-content .lead {
    font-size: clamp(15px, 4vw, 18px) !important;
    line-height: 1.5 !important;
  }

  .home-video-body {
    font-size: 14px !important;
    line-height: 1.62 !important;
  }

  .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }

  .hero-actions .btn,
  .btn {
    width: 100%;
    min-height: 52px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    font-size: 13px !important;
    white-space: normal !important;
    text-align: center !important;
  }

  .home-video-stats,
  .grid-2,
  .grid-3,
  .grid-4,
  .feature-band,
  .section-head,
  .footer-grid,
  .cta-inner {
    grid-template-columns: 1fr !important;
  }

  .page-hero {
    padding: 70px 0 58px !important;
  }

  .page-hero h1 {
    font-size: clamp(34px, 10vw, 48px) !important;
    line-height: 1.02 !important;
  }

  .page-hero .lead {
    font-size: 16px !important;
  }

  .section {
    padding: 58px 0 !important;
  }

  .card {
    padding: 24px !important;
  }
}

@media (max-width: 420px) {
  .site-header .brand {
    flex-basis: 132px !important;
    min-width: 132px !important;
  }

  .site-header .brand-logo {
    width: 130px !important;
  }

  .site-header .navbar {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .container,
  .home-video-content {
    width: calc(100% - 28px) !important;
  }

  .home-video-content h1 {
    font-size: clamp(36px, 10.5vw, 43px) !important;
  }
}
