@font-face {
  font-family: 'Big Caslon Medium';
  src: url('/work/demos/fonts/BigCaslonMedium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
:root {
  --font-display: 'Big Caslon Medium', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --blue: #28b7ff;
  --blue-strong: #0071e3;
  --green: #35d399;
  --navy: #06111f;
  --navy-2: #0a1b31;
  --ink: #0b1524;
  --white: #ffffff;
  --radius: 8px;
  --content-max: 1180px;
  --content-gutter: clamp(18px, 4vw, 52px);
  --content-width: min(var(--content-max), calc(100vw - (var(--content-gutter) * 2)));
  --shadow-soft: 0 24px 70px rgba(4, 14, 28, 0.12);
  --shadow-strong: 0 36px 120px rgba(3, 10, 22, 0.38);
}

body[data-theme="navy"] {
  --page: #050b14;
  --surface: rgba(10, 22, 40, 0.72);
  --surface-solid: #0a1628;
  --surface-soft: rgba(255, 255, 255, 0.055);
  --text: #edf7ff;
  --muted: #91a8be;
  --line: rgba(125, 211, 252, 0.16);
  --line-strong: rgba(125, 211, 252, 0.28);
  --panel-text: #edf7ff;
  --panel-muted: #9cb4c8;
  --section-band: rgba(255, 255, 255, 0.025);
}

body[data-theme="white"] {
  --page: #f4f7fb;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-solid: #ffffff;
  --surface-soft: rgba(8, 21, 37, 0.045);
  --text: #0b1524;
  --muted: #5f7184;
  --line: rgba(11, 21, 36, 0.1);
  --line-strong: rgba(11, 21, 36, 0.18);
  --panel-text: #0b1524;
  --panel-muted: #5f7184;
  --section-band: rgba(255, 255, 255, 0.58);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(rgba(56, 189, 248, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(40, 183, 255, 0.16), transparent 42%),
    var(--page);
  background-size: 78px 78px, 78px 78px, auto, auto;
  font-family: var(--font-sans);
  letter-spacing: 0;
  transition:
    color 260ms ease,
    background-color 260ms ease;
}

body[data-theme="white"] {
  background:
    linear-gradient(rgba(11, 21, 36, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 21, 36, 0.032) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(40, 183, 255, 0.12), transparent 42%),
    var(--page);
  background-size: 78px 78px, 78px 78px, auto, auto;
}

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

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

button,
input,
select,
textarea {
  font-family: var(--font-sans);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 1.5vw, 24px);
  min-height: 72px;
  padding: 10px var(--content-gutter);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 11, 20, 0.84);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset;
  backdrop-filter: blur(24px);
}

.demo-tools {
  position: relative;
  min-width: 0;
  font-family: var(--font-sans);
}

.demo-tools summary {
  display: inline-grid;
  place-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: var(--surface-soft);
  font-size: 0.74rem;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

.demo-tools summary::-webkit-details-marker {
  display: none;
}

.demo-tools[open] summary {
  border-color: var(--line-strong);
  background: rgba(40, 183, 255, 0.12);
}

.demo-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 70;
  display: grid;
  gap: 13px;
  width: min(280px, calc(100vw - 32px));
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background: var(--surface-solid);
  box-shadow: var(--shadow-soft);
}

.demo-panel-label {
  display: block;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.old-layout-link {
  display: inline-grid;
  place-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.74rem;
  font-family: var(--font-sans);
  font-weight: 900;
  white-space: nowrap;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.old-layout-link:hover {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(40, 183, 255, 0.1);
}

body[data-theme="white"] .site-header {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

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

.brand-cp {
  width: clamp(92px, 10vw, 136px);
}

.brand-divider {
  width: 1px;
  height: 34px;
  background: var(--line-strong);
}

.brand-medical {
  width: 62px;
}

body[data-theme="navy"] .brand img {
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.3));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.1vw, 18px);
  min-width: 0;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 800;
}

.site-nav a,
.site-nav button {
  white-space: nowrap;
}

.nav-link,
.nav-group > button {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-height: 38px;
  padding: 0 3px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-link::after,
.nav-group > button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-group:hover > button::after,
.nav-group:focus-within > button::after,
.nav-group.is-open > button::after {
  transform: scaleX(1);
}

.nav-group {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 60;
  display: grid;
  min-width: 290px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-solid);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  backdrop-filter: blur(18px);
}

.dropdown-panel a {
  padding: 12px 13px;
  border-radius: 6px;
  color: var(--panel-text);
  font-size: 0.84rem;
  line-height: 1.25;
}

.dropdown-panel a:hover {
  background: var(--surface-soft);
}

.nav-group:hover .dropdown-panel,
.nav-group:focus-within .dropdown-panel,
.nav-group.is-open .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-utility {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: clamp(6px, 0.8vw, 14px);
  padding-left: clamp(8px, 1vw, 16px);
  border-left: 1px solid var(--line);
}

.nav-utility a {
  display: grid;
  place-items: center;
  height: 28px;
}

.nav-utility img {
  max-width: 54px;
  max-height: 26px;
  object-fit: contain;
}

.nav-utility a:nth-child(3) img {
  max-width: 44px;
}

.nav-utility a:nth-child(4) img {
  max-width: 74px;
}

.nav-cta,
.button,
.request-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 900;
}

.nav-cta {
  min-height: 42px;
  padding: 0 18px;
  color: #03111e;
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(40, 183, 255, 0.22);
}

.theme-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 0;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.theme-btn {
  flex: 1;
  min-height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 900;
}

.theme-btn.is-active {
  color: #03111e;
  background: var(--blue);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: var(--surface-soft);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: min(760px, 100vh);
  overflow: hidden;
  color: #ffffff;
  background: #06111f;
}

.hero-media {
  z-index: 1;
}

body.hero-video-ready .hero-media::after {
  content: none;
}

.hero-media,
.hero-video,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  z-index: 1;
  opacity: 0;
  filter: saturate(0.94) contrast(1.06) brightness(0.92);
  transform: scale(1);
  transition:
    opacity 900ms ease,
    transform 900ms ease;
}

body.hero-video-ready .hero-video {
  opacity: 1;
  transform: scale(1.38);
  transform-origin: center center;
}

body.hero-video-ready .hero-media img {
  opacity: 0;
}

.hero-media img {
  opacity: 0;
  transform: scale(1.02);
  filter: saturate(0.94) contrast(1.06) brightness(0.92);
  transition:
    opacity 1200ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 8600ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.photos-loading .hero-media img {
  opacity: 0 !important;
}

.hero-media img.is-active {
  opacity: 1;
  transform: scale(1.055);
}

.hero::before {
  content: none;
}

.hero-overlay {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(5, 11, 20, 0.24) 0%, transparent 20%),
    linear-gradient(90deg, rgba(5, 11, 20, 0.34) 0%, rgba(5, 11, 20, 0.14) 42%, transparent 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(rgba(125, 211, 252, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.055) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.72) 48%, transparent 84%);
}

.hero-shell {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "copy"
    "dots";
  gap: 18px;
  align-items: end;
  align-content: end;
  justify-content: start;
  width: var(--content-width);
  min-height: min(760px, 100vh);
  margin: 0 auto;
  padding: 136px 0 42px;
}

.hero-content {
  grid-area: copy;
  width: min(960px, 100%);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 28px;
  margin: 0 0 14px;
  color: var(--blue);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 16px rgba(40, 183, 255, 0.7);
}

.hero .eyebrow {
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #bdeaff;
  background: transparent;
  backdrop-filter: none;
}

.hero h1 {
  display: grid;
  gap: 2px;
  margin: 0;
  max-width: 960px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.15rem, 6.2vw, 6.15rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow:
    0 12px 32px rgba(0, 0, 0, 0.46),
    0 1px 8px rgba(0, 0, 0, 0.32);
}

.hero h1 span + span {
  color: var(--blue);
}

.hero h1 em {
  position: relative;
  display: inline-block;
  color: var(--blue);
  font-style: normal;
  filter: drop-shadow(0 0 8px rgba(40, 183, 255, 0.2));
}

.hero h1 em::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 54, 76, 0.82) 32%, #ffffff 47%, #ffffff 54%, rgba(38, 115, 255, 0.86) 68%, transparent 100%);
  background-size: 320% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  opacity: 0;
  text-shadow:
    0 0 0.04em rgba(255, 255, 255, 0.52),
    -0.02em 0 0 rgba(255, 54, 76, 0.26),
    0.02em 0 0 rgba(38, 115, 255, 0.26);
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.24));
  animation: ambulanceSignal 10s ease-in-out infinite;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  inset: 0 -0.06em;
  z-index: -1;
  border-radius: 0.08em;
  background:
    radial-gradient(circle at 26% 55%, rgba(255, 54, 76, 0.18), transparent 34%),
    radial-gradient(circle at 72% 55%, rgba(38, 115, 255, 0.2), transparent 36%),
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.18), transparent 42%);
  opacity: 0;
  filter: blur(14px);
  animation: ambulanceGlow 10s ease-in-out infinite;
}

@keyframes ambulanceSignal {
  0%,
  82%,
  100% {
    background-position: -115% 50%;
    opacity: 0;
  }
  84% {
    background-position: 10% 50%;
    opacity: 0.58;
  }
  86% {
    background-position: 50% 50%;
    opacity: 1;
  }
  88% {
    background-position: 90% 50%;
    opacity: 0.62;
  }
  91% {
    background-position: 150% 50%;
    opacity: 0;
  }
  92%,
  95.4% {
    background-position: 50% 50%;
    opacity: 0;
  }
  93.1%,
  96.5% {
    background-position: 50% 50%;
    opacity: 1;
  }
  94.2%,
  97.6% {
    background-position: 50% 50%;
    opacity: 0;
  }
}

@keyframes ambulanceGlow {
  0%,
  82%,
  100% {
    opacity: 0;
    transform: translateX(0);
  }
  84% {
    opacity: 0.22;
    transform: translateX(-0.015em);
  }
  86% {
    opacity: 0.56;
    transform: translateX(0);
  }
  88% {
    opacity: 0.26;
    transform: translateX(0.015em);
  }
  91% {
    opacity: 0;
    transform: translateX(0);
  }
  92%,
  95.4% {
    opacity: 0;
    transform: scale(0.98);
  }
  93.1%,
  96.5% {
    opacity: 0.82;
    transform: scale(1.04);
  }
  94.2%,
  97.6% {
    opacity: 0;
    transform: scale(1);
  }
}

.hero-copy {
  max-width: 600px;
  margin: 12px 0 0;
  color: rgba(237, 247, 255, 0.82);
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  line-height: 1.62;
}

.hero .hero-copy {
  display: none;
}

.hero .hero-actions {
  display: flex;
  width: auto;
  margin-top: 18px;
}

.hero .hero-actions .button.primary,
.hero .hero-assurance {
  display: none;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.button {
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  box-sizing: border-box;
  font-family: var(--font-sans);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  width: 100%;
  color: #06111f;
  background: var(--blue);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.38) inset,
    0 0 18px rgba(255, 255, 255, 0.32),
    0 14px 30px rgba(40, 183, 255, 0.16);
  animation: callWhiteGlow 3s ease-in-out infinite;
}

.button.secondary {
  width: auto;
  min-width: 260px;
  min-height: 54px;
  padding: 0 20px;
  color: #ffffff;
  border: 1px solid rgba(189, 234, 255, 0.32);
  background: rgba(6, 17, 31, 0.42);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 18px 44px rgba(4, 14, 28, 0.22);
  backdrop-filter: blur(16px);
}

.button img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.button.primary img {
  filter: none;
}

.button span {
  display: grid;
  gap: 2px;
  text-align: left;
}

.button b {
  font-size: 0.82rem;
  line-height: 1.05;
}

.button small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.62rem;
  font-weight: 700;
}

.button.primary small {
  color: rgba(6, 17, 31, 0.72);
}

.hero-assurance {
  grid-column: 1 / -1;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 0;
}

.hero-assurance span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(237, 247, 255, 0.72);
  background: rgba(255, 255, 255, 0.07);
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.hero-assurance .is-proof-pulse {
  justify-content: center;
  min-width: 122px;
  border-color: rgba(255, 214, 74, 0.58);
  color: #ffe999;
  background: rgba(255, 214, 74, 0.1);
  box-shadow:
    0 0 0 1px rgba(255, 226, 118, 0.1) inset,
    0 0 14px rgba(255, 214, 74, 0.26);
  animation: proofPulse 2.8s ease-in-out infinite;
}

@keyframes proofPulse {
  0%,
  100% {
    border-color: rgba(255, 214, 74, 0.45);
    box-shadow:
      0 0 0 1px rgba(255, 226, 118, 0.08) inset,
      0 0 10px rgba(255, 214, 74, 0.18);
  }
  50% {
    border-color: rgba(255, 226, 118, 0.86);
    box-shadow:
      0 0 0 1px rgba(255, 226, 118, 0.16) inset,
      0 0 20px rgba(255, 214, 74, 0.36);
  }
}

@keyframes callWhiteGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.34) inset,
      0 0 12px rgba(255, 255, 255, 0.22),
      0 14px 30px rgba(40, 183, 255, 0.16);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.58) inset,
      0 0 24px rgba(255, 255, 255, 0.44),
      0 16px 34px rgba(40, 183, 255, 0.22);
  }
}

.hero-dots {
  grid-area: dots;
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 0;
}

.hero-dots button {
  position: relative;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.hero-dots button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  transform: translate(-50%, -50%);
  transition:
    width 180ms ease,
    height 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.hero-dots button:hover::before {
  background: rgba(255, 255, 255, 0.72);
}

.hero-dots button.is-active {
  transform: scale(1.08);
}

.hero-dots button.is-active::before {
  width: 6px;
  height: 6px;
  background: var(--blue);
  box-shadow: 0 0 10px rgba(40, 183, 255, 0.38);
}

.standards-section,
.mission-section,
.capabilities-section,
.feature-section,
.request-section,
.fleet-section {
  width: var(--content-width);
  margin: 0 auto;
}

.standards-section,
.mission-section,
.capabilities-section,
.request-section,
.fleet-section {
  padding: clamp(56px, 7vw, 96px) 0;
}

.section-copy {
  max-width: 680px;
}

.section-copy h2,
.request-copy h2,
.feature-copy h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.85rem, 3.55vw, 3.55rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-copy p,
.request-copy p,
.feature-copy p {
  margin: 20px 0 0;
  max-width: 640px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.75;
}

.standards-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
  padding-top: clamp(50px, 6vw, 86px);
}

.standards-board {
  display: grid;
  grid-template-columns: 142px 1fr;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 14px);
  background:
    linear-gradient(135deg, rgba(40, 183, 255, 0.08), transparent 42%),
    var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.logo-stack {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0;
  min-height: 100%;
  padding: 18px 16px;
  border: 1px solid rgba(226, 241, 249, 0.82);
  border-radius: calc(var(--radius) + 2px);
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 56, 78, 0.055), transparent 32%),
    radial-gradient(circle at 86% 14%, rgba(38, 115, 255, 0.07), transparent 34%),
    #ffffff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 18px 38px rgba(4, 14, 28, 0.1),
    -10px 0 24px rgba(255, 56, 78, 0.035),
    10px 0 24px rgba(38, 115, 255, 0.045);
  animation: logoPanelPulse 10s ease-in-out infinite;
}

.logo-stack::before {
  content: "";
  position: absolute;
  inset: -45% -35%;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.24) 42%, rgba(255, 255, 255, 0.74) 50%, rgba(255, 255, 255, 0.22) 58%, transparent 100%);
  opacity: 0;
  transform: translateX(-62%);
  animation: logoPanelSweep 10s ease-in-out infinite;
}

.logo-stack::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 28%, transparent 72%, rgba(233, 247, 255, 0.5));
  opacity: 0.5;
}

.logo-stack span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 116px;
}

.logo-stack span + span {
  border-top: 1px solid rgba(12, 38, 62, 0.08);
}

.logo-stack img {
  max-width: 112px;
  max-height: 58px;
  object-fit: contain;
}

@keyframes logoPanelPulse {
  0%,
  78%,
  100% {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.85) inset,
      0 18px 38px rgba(4, 14, 28, 0.1),
      -10px 0 24px rgba(255, 56, 78, 0.035),
      10px 0 24px rgba(38, 115, 255, 0.045);
  }
  84% {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.85) inset,
      0 18px 38px rgba(4, 14, 28, 0.1),
      -16px 0 34px rgba(255, 56, 78, 0.07),
      16px 0 34px rgba(38, 115, 255, 0.085),
      0 0 24px rgba(255, 255, 255, 0.48);
  }
}

@keyframes logoPanelSweep {
  0%,
  78%,
  100% {
    opacity: 0;
    transform: translateX(-62%);
  }
  82% {
    opacity: 0.64;
  }
  88% {
    opacity: 0.18;
    transform: translateX(62%);
  }
  92% {
    opacity: 0;
    transform: translateX(62%);
  }
}

.standard-list,
.pathway,
.capability-grid {
  display: grid;
  gap: 10px;
}

.standard-list article,
.pathway article,
.capability-grid article {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 52%),
    var(--surface);
  color: var(--panel-text);
  backdrop-filter: blur(18px);
}

.standard-list article::before,
.pathway article::before,
.capability-grid article::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 1px;
  border-radius: 999px;
  background: rgba(40, 183, 255, 0.45);
}

.standard-list article {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 18px;
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.standard-list b,
.capability-grid span {
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 900;
}

.standard-list span,
.capability-grid p,
.pathway p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.mission-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(24px, 4vw, 38px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mission-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 14px);
  background: #06111f;
  box-shadow: var(--shadow-soft);
}

.mission-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.06);
}

.mission-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(4, 9, 16, 0.82), transparent 58%),
    linear-gradient(90deg, rgba(4, 9, 16, 0.42), transparent 54%);
}

.mission-visual div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: grid;
  gap: 6px;
  max-width: 620px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: #ffffff;
  background: rgba(6, 17, 31, 0.58);
  backdrop-filter: blur(18px);
}

.mission-visual span {
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mission-visual b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  line-height: 1.12;
}

.pathway {
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.pathway article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(4, 14, 28, 0.08);
}

.pathway span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 30px;
  border: 1px solid rgba(40, 183, 255, 0.26);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(40, 183, 255, 0.08);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 950;
}

.pathway h3 {
  margin: auto 0 12px;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.35rem, 1.8vw, 1.85rem);
  line-height: 1.08;
}

.capabilities-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 7vw, 78px);
  align-items: start;
}

.capability-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.capability-grid article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(4, 14, 28, 0.08);
}

.capability-grid article:nth-child(1) {
  background:
    linear-gradient(145deg, rgba(40, 183, 255, 0.18), transparent 58%),
    var(--surface);
}

.feature-section {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 18px);
  color: #ffffff;
  background: var(--navy);
  box-shadow: var(--shadow-strong);
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 66px);
  background:
    radial-gradient(circle at 92% 8%, rgba(40, 183, 255, 0.28), transparent 34%),
    linear-gradient(135deg, #0d233a, #07111f 70%);
}

.feature-copy h2 {
  color: #ffffff;
  font-size: clamp(1.85rem, 3vw, 3.2rem);
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 30px;
}

.feature-stats span {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 4px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-sans);
  font-size: 0.82rem;
}

.feature-stats b {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 1.16rem;
}

.feature-stats .urgent-stat {
  border-color: rgba(189, 234, 255, 0.34);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 56, 78, 0.13), transparent 32%),
    radial-gradient(circle at 82% 14%, rgba(38, 115, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.055) inset,
    -10px 0 26px rgba(255, 56, 78, 0.055),
    10px 0 26px rgba(38, 115, 255, 0.07),
    0 0 24px rgba(40, 183, 255, 0.1);
  animation: urgentStatPulse 8s ease-in-out infinite;
}

.feature-stats .urgent-stat::before {
  content: "";
  position: absolute;
  inset: -45% -30%;
  background:
    linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.36) 43%, rgba(255, 255, 255, 0.72) 50%, rgba(255, 255, 255, 0.28) 57%, transparent 100%);
  opacity: 0;
  transform: translateX(-64%);
  animation: urgentWhiteSweep 8s ease-in-out infinite;
}

.feature-stats .urgent-stat::after {
  content: "";
  position: absolute;
  inset: auto 12px 10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 56, 78, 0.72), rgba(255, 255, 255, 0.8), rgba(38, 115, 255, 0.78));
  opacity: 0;
  filter: blur(0.2px);
  animation: urgentSignalLine 8s ease-in-out infinite;
}

.feature-stats .urgent-stat b {
  color: #ffffff;
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.2),
    -7px 0 18px rgba(255, 56, 78, 0.16),
    7px 0 18px rgba(38, 115, 255, 0.18);
}

@keyframes urgentStatPulse {
  0%,
  72%,
  100% {
    border-color: rgba(189, 234, 255, 0.18);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.04) inset,
      0 0 20px rgba(40, 183, 255, 0.06);
  }
  78% {
    border-color: rgba(255, 255, 255, 0.42);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.1) inset,
      -10px 0 28px rgba(255, 56, 78, 0.14),
      10px 0 28px rgba(38, 115, 255, 0.16),
      0 0 32px rgba(255, 255, 255, 0.12);
  }
  84% {
    border-color: rgba(189, 234, 255, 0.24);
  }
}

@keyframes urgentWhiteSweep {
  0%,
  72%,
  100% {
    opacity: 0;
    transform: translateX(-64%);
  }
  76% {
    opacity: 0.7;
  }
  82% {
    opacity: 0.22;
    transform: translateX(64%);
  }
  86% {
    opacity: 0;
    transform: translateX(64%);
  }
}

@keyframes urgentSignalLine {
  0%,
  72%,
  100% {
    opacity: 0;
    transform: scaleX(0.28);
  }
  78% {
    opacity: 0.9;
    transform: scaleX(1);
  }
  85% {
    opacity: 0;
    transform: scaleX(0.82);
  }
}

.request-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 7vw, 78px);
  align-items: start;
  scroll-margin-top: 96px;
}

.request-copy {
  position: sticky;
  top: 100px;
}

.request-note {
  display: inline-grid;
  gap: 4px;
  margin-top: 26px;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  font-family: var(--font-sans);
  box-shadow: var(--shadow-soft);
}

.request-note b {
  color: var(--text);
}

.request-note a {
  color: var(--blue);
  font-weight: 900;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 14px);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.field {
  display: grid;
  gap: 8px;
  min-height: 84px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.field-wide {
  grid-column: 1 / -1;
  min-height: 160px;
}

.field span {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: color-mix(in srgb, var(--muted), transparent 25%);
}

.request-submit {
  grid-column: 1 / -1;
  min-height: 54px;
  color: #03111e;
  background: var(--blue);
  box-shadow: 0 18px 50px rgba(40, 183, 255, 0.18);
}

.fleet-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(34px, 7vw, 78px);
  align-items: center;
  padding-top: 30px;
}

.fleet-gallery {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 12px;
}

.fleet-gallery img {
  width: 100%;
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.fleet-gallery img:first-child {
  grid-row: span 2;
  min-height: 500px;
}

/* Page-wide UX/UI polish: calmer grids, lighter cards, stronger editorial rhythm. */
.standards-section,
.mission-section,
.capabilities-section,
.request-section,
.fleet-section {
  padding: clamp(60px, 7vw, 104px) 0;
}

.section-copy h2,
.request-copy h2,
.feature-copy h2 {
  font-size: clamp(2rem, 3.7vw, 3.85rem);
  line-height: 1;
}

.section-copy p,
.request-copy p,
.feature-copy p {
  max-width: 580px;
  line-height: 1.68;
}

.standards-section,
.capabilities-section,
.request-section,
.fleet-section {
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(42px, 8vw, 94px);
}

.standards-board,
.request-form {
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(135deg, rgba(40, 183, 255, 0.06), transparent 42%),
    color-mix(in srgb, var(--surface), transparent 14%);
  box-shadow: 0 18px 54px rgba(4, 14, 28, 0.1);
}

.standards-board {
  grid-template-columns: 162px 1fr;
  gap: 14px;
  padding: 14px;
}

.standard-list,
.pathway,
.capability-grid {
  gap: 14px;
}

.standard-list article,
.pathway article,
.capability-grid article {
  border-color: color-mix(in srgb, var(--line), transparent 18%);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 52%),
    color-mix(in srgb, var(--surface), transparent 14%);
  box-shadow: 0 14px 42px rgba(4, 14, 28, 0.07);
}

.standard-list article {
  grid-template-columns: minmax(118px, 0.42fr) 1fr;
  padding: 20px;
}

.mission-section {
  grid-template-columns: minmax(300px, 0.64fr) minmax(0, 1.36fr);
  gap: clamp(28px, 5vw, 56px);
}

.mission-visual {
  border-radius: calc(var(--radius) + 8px);
  box-shadow: 0 16px 46px rgba(4, 14, 28, 0.12);
}

.mission-visual::after {
  background:
    linear-gradient(0deg, rgba(4, 9, 16, 0.68), transparent 56%),
    linear-gradient(90deg, rgba(4, 9, 16, 0.28), transparent 54%);
}

.mission-visual div {
  border-radius: calc(var(--radius) - 1px);
  background: rgba(6, 17, 31, 0.52);
}

.pathway article {
  min-height: 220px;
  padding: 24px;
}

.capability-grid {
  gap: 14px;
}

.capability-grid article {
  min-height: 176px;
  padding: 24px;
}

.feature-section {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  border-radius: calc(var(--radius) + 10px);
}

.feature-image img {
  min-height: 560px;
}

.feature-copy {
  padding: clamp(38px, 5vw, 72px);
  background: #07111f;
}

.feature-stats {
  gap: 12px;
}

.feature-stats span,
.field,
.request-note {
  border-radius: calc(var(--radius) - 1px);
}

.feature-stats span {
  background: rgba(255, 255, 255, 0.045);
}

.request-form {
  gap: 14px;
  padding: 20px;
}

.field {
  min-height: 88px;
  padding: 16px;
  background: color-mix(in srgb, var(--surface-soft), transparent 14%);
}

.request-note {
  background: color-mix(in srgb, var(--surface), transparent 12%);
  box-shadow: 0 14px 38px rgba(4, 14, 28, 0.08);
}

.fleet-gallery {
  grid-template-columns: 1.22fr 0.78fr;
  gap: 14px;
}

.fleet-gallery img {
  min-height: 250px;
  box-shadow: 0 16px 44px rgba(4, 14, 28, 0.12);
}

.fleet-gallery img:first-child {
  min-height: 520px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  padding: 36px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-sans);
  background: #06111f;
}

.footer-logo {
  width: 78px;
  margin-bottom: 10px;
}

.site-footer p {
  max-width: 360px;
  margin: 0;
  font-size: 0.86rem;
}

.footer-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.footer-links a {
  font-size: 0.84rem;
}

.social-links img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.reveal-section,
.js-card,
.js-hero-reveal,
.js-hero-title span,
.hero-copy,
.hero-actions {
  will-change: transform, opacity, filter;
}

@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;
  }

  .hero h1 em,
  .hero h1 em::before,
  .hero h1 em::after,
  .feature-stats .urgent-stat,
  .feature-stats .urgent-stat::before,
  .feature-stats .urgent-stat::after,
  .logo-stack,
  .logo-stack::before {
    animation: none !important;
  }
}

@media (max-width: 1180px) {
  .site-header {
    display: flex;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-solid);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-link,
  .nav-group > button,
  .nav-cta {
    justify-content: flex-start;
    width: 100%;
    padding: 0 12px;
  }

  .dropdown-panel {
    position: static;
    min-width: 0;
    margin-top: 4px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .nav-group.is-open .dropdown-panel {
    display: grid;
  }

  .nav-utility {
    justify-content: flex-start;
    margin-left: 0;
    padding-left: 12px;
    border-left: 0;
    padding: 8px 12px;
  }

  .demo-tools {
    margin-left: auto;
  }
}

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

  body.hero-video-ready .hero-video {
    transform: scale(1.28);
  }

  .hero-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "dots";
    padding: 132px 0 56px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .hero-actions {
    grid-column: auto;
    grid-row: auto;
    margin-top: 18px;
  }

  .standards-section,
  .mission-section,
  .capabilities-section,
  .feature-section,
  .request-section,
  .fleet-section {
    grid-template-columns: 1fr;
  }

  .request-copy {
    position: static;
  }

  .pathway {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 720px) {
  .site-header {
    flex-wrap: wrap;
    gap: 10px;
    min-height: 66px;
    padding-inline: 14px;
  }

  .brand {
    flex: 1 1 auto;
  }

  .brand-cp {
    width: 96px;
  }

  .brand-medical {
    width: 50px;
  }

  .brand-divider {
    height: 28px;
  }

  .demo-tools {
    margin-left: auto;
  }

  .old-layout-link {
    min-height: 36px;
  }

  .theme-switch {
    width: 100%;
  }

  .site-nav {
    top: 76px;
  }

  .hero-shell,
  .standards-section,
  .mission-section,
  .capabilities-section,
  .request-section,
  .fleet-section {
    width: min(100% - 28px, var(--content-max));
  }

  .hero-shell {
    padding-top: 280px;
  }

  .hero-content {
    padding: 0;
    border-radius: 0;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 11.4vw, 3.35rem);
  }

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

  .hero-dots {
    padding-left: 0;
  }

  .request-form,
  .capability-grid,
  .feature-stats,
  .fleet-gallery,
  .standards-board {
    grid-template-columns: 1fr;
  }

  .button {
    justify-content: flex-start;
  }

  .button {
    min-height: 38px;
  }

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

  .pathway article,
  .capability-grid article {
    min-height: 180px;
  }

  .feature-section {
    border-radius: var(--radius);
  }

  .feature-image img,
  .fleet-gallery img:first-child {
    min-height: 320px;
  }
}

@media (max-width: 980px) {
  .standards-section,
  .mission-section,
  .capabilities-section,
  .request-section,
  .fleet-section {
    gap: 30px;
  }

  .standards-board {
    grid-template-columns: 1fr;
  }

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

  .logo-stack span + span {
    border-top: 0;
    border-left: 1px solid rgba(12, 38, 62, 0.08);
  }

  .feature-section {
    grid-template-columns: 1fr;
  }

  .feature-image img {
    min-height: 380px;
  }
}

@media (max-width: 720px) {
  .standards-section,
  .mission-section,
  .capabilities-section,
  .request-section,
  .fleet-section {
    padding: 64px 0;
  }

  .section-copy h2,
  .request-copy h2,
  .feature-copy h2 {
    font-size: clamp(1.95rem, 10vw, 3rem);
  }

  .standard-list article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 17px;
  }

  .mission-visual,
  .mission-visual img {
    min-height: 300px;
  }

  .pathway article,
  .capability-grid article {
    min-height: 150px;
    padding: 18px;
  }

  .feature-copy {
    padding: 26px 20px;
  }

  .request-form {
    padding: 14px;
  }

  .field-wide {
    min-height: 132px;
  }

  .fleet-gallery img,
  .fleet-gallery img:first-child {
    min-height: 260px;
  }
}
