:root {
  --bg: #050914;
  --bg-2: #091124;
  --panel: rgba(13, 26, 52, 0.76);
  --panel-2: rgba(255, 255, 255, 0.06);
  --line: rgba(95, 219, 255, 0.22);
  --line-strong: rgba(95, 219, 255, 0.48);
  --text: #f3f7ff;
  --muted: rgba(225, 235, 255, 0.7);
  --cyan: #35d8ff;
  --blue: #2854e8;
  --violet: #7a5cff;
  --mango: #ffb02e;
  --green: #5effb1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 0%, rgba(53, 216, 255, 0.18), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(122, 92, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #050914 0%, #07142b 46%, #040711 100%);
  font-family: "Microsoft YaHei", "PingFang SC", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(95, 219, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 219, 255, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 86%);
}

#bgCanvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(310px, 1fr) auto minmax(104px, 1fr);
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 72px);
  background: rgba(5, 9, 20, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-logo-wrap {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(95, 219, 255, 0.18);
  border-radius: 10px;
  box-shadow: 0 0 22px rgba(53, 216, 255, 0.18);
}

.brand-logo-wrap img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: clamp(16px, 2.4vw, 34px);
  color: var(--muted);
  font-size: 14px;
}

.main-nav a:hover {
  color: var(--cyan);
}

.main-nav a.active {
  color: var(--cyan);
}

.main-nav a.active::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 6px;
  background: linear-gradient(90deg, var(--cyan), var(--mango));
  border-radius: 999px;
}

.nav-action,
.primary-button,
.ghost-button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  font-weight: 800;
  border-radius: 8px;
}

.nav-action {
  justify-self: end;
  color: #04101b;
  background: linear-gradient(135deg, var(--mango), #ffe09a);
}

.section-shell {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: 92px clamp(18px, 4vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(520px, 1.18fr);
  grid-template-areas:
    "heading heading"
    "copy stage";
  align-items: center;
  column-gap: clamp(28px, 5vw, 76px);
  row-gap: clamp(20px, 3vw, 38px);
  min-height: calc(100vh - 76px);
  padding-top: 104px;
  padding-bottom: 54px;
}

.hero-heading {
  grid-area: heading;
  max-width: 1280px;
  position: relative;
  padding-bottom: 18px;
}

.hero-copy {
  grid-area: copy;
  position: relative;
  padding-left: 22px;
  border-left: 1px solid rgba(95, 219, 255, 0.32);
  margin-top: -52px;
}

.hero-signal-panel {
  position: relative;
  margin-bottom: 22px;
  padding: 0 0 0 20px;
  border-left: 1px solid rgba(95, 219, 255, 0.28);
}

.hero-signal-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 1px;
  height: calc(100% - 20px);
  background: linear-gradient(180deg, rgba(95, 219, 255, 0.95), rgba(95, 219, 255, 0));
  pointer-events: none;
}

.hero-signal-panel > span {
  display: block;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 6px;
}

.hero-signal-panel strong {
  display: block;
  color: rgba(235, 247, 255, 0.92);
  font-size: 20px;
  line-height: 1.25;
  text-wrap: balance;
}

.hero-heading::after {
  content: "";
  display: block;
  width: min(620px, 58vw);
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--cyan), rgba(255, 183, 61, 0.82), transparent);
  box-shadow: 0 0 22px rgba(53, 216, 255, 0.28);
}

.page-hero {
  min-height: 420px;
  display: grid;
  align-content: center;
  padding-top: 110px;
  padding-bottom: 70px;
}

.about-hero {
  min-height: 72px;
  align-content: start;
  padding-top: 68px;
  padding-bottom: 26px;
}

.about-hero h1 {
  margin-bottom: 2px;
  font-size: clamp(30px, 3.9vw, 54px);
  line-height: 1.05;
}

.about-hero .eyebrow {
  margin-bottom: 6px;
}

.about-hero p:not(.eyebrow) {
  margin: 0;
  max-width: 760px;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.35;
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 18px;
}

.page-hero p:not(.eyebrow) {
  max-width: 880px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
}

.eyebrow,
.label {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6.6vw, 86px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-title {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(50px, 5.2vw, 78px);
  line-height: 1;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(17px, 1.9vw, 22px);
  margin-top: 0;
  line-height: 1.58;
}

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

.primary-button {
  color: #03101b;
  background: linear-gradient(135deg, var(--cyan), #dffaff);
  box-shadow: 0 0 34px rgba(53, 216, 255, 0.28);
}

.ghost-button {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.hero-metrics div {
  padding: 16px;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.home-apps {
  padding-top: 84px;
}

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

.app-panorama article {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease;
}

.app-panorama article:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.app-panorama img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(5, 9, 20, 0.7), rgba(13, 26, 52, 0.92)),
    radial-gradient(circle at 50% 50%, rgba(95, 219, 255, 0.18), transparent 60%);
  transition: transform 220ms ease, filter 220ms ease;
}

.app-panorama article:hover img {
  transform: scale(1.035);
  filter: saturate(1.12) brightness(1.08);
}

.app-panorama h3,
.app-panorama p {
  padding: 0 20px;
}

.app-panorama h3 {
  margin-top: 18px;
}

.app-panorama p {
  color: var(--muted);
  padding-bottom: 22px;
}

.hero-metrics strong {
  color: var(--mango);
  font-size: 28px;
  line-height: 1;
}

.hero-metrics span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.hero-stage {
  grid-area: stage;
  position: relative;
  min-height: 540px;
  margin-top: -44px;
  animation: floatStage 6.8s ease-in-out infinite;
}

.hero-image {
  position: absolute;
  inset: auto;
  top: 34px;
  left: 50%;
  width: min(98%, 720px);
  aspect-ratio: 761 / 441;
  margin: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 26px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.36);
  transform: translateX(-50%);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: -35% -20%;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 34%, rgba(95, 219, 255, 0.18) 48%, transparent 62%);
  transform: translateX(-70%);
  animation: sweepLight 4.8s ease-in-out infinite;
}

.hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(95, 219, 255, 0.35);
  border-radius: 8px;
}

.hero-stage::before {
  inset: 70px 18px 82px 64px;
}

.hero-stage::after {
  inset: 40px 92px 146px 128px;
}

.hud-panel {
  position: absolute;
  z-index: 2;
  width: min(260px, 42vw);
  padding: 16px;
  background: rgba(7, 18, 39, 0.86);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.hud-panel.top {
  top: 58px;
  right: 10px;
}

.hud-panel.bottom {
  right: 0;
  bottom: 44px;
}

.hud-panel span {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.hud-panel strong {
  display: block;
  margin: 6px 0 4px;
}

.hud-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.section-title {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  max-width: 900px;
  margin-bottom: 38px;
}

.section-title span {
  color: var(--cyan);
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 900;
  line-height: 0.86;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.1;
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, 0.9fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
  margin-bottom: 18px;
}

.about-copy,
.about-visual {
  position: relative;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.about-copy {
  padding: 30px;
}

.about-copy::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 220px;
  aspect-ratio: 1;
  border: 1px solid rgba(95, 219, 255, 0.22);
  border-radius: 50%;
}

.about-copy p {
  color: var(--muted);
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.about-tags span {
  padding: 7px 10px;
  color: #dffaff;
  background: rgba(53, 216, 255, 0.08);
  border: 1px solid rgba(95, 219, 255, 0.24);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.about-page {
  padding-top: 0;
  margin-top: 0;
}

.about-overview-shell {
  display: grid;
  grid-template-columns: minmax(620px, 1.14fr) minmax(360px, 0.86fr);
  gap: 12px;
  align-items: stretch;
  min-height: min(520px, calc(100vh - 132px));
}

.about-overview-main,
.partners-panel,
.partners-copy {
  position: relative;
}

.about-overview-main {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 520px;
  padding: 18px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.about-overview-main h2 {
  margin: 0;
  font-size: clamp(24px, 2.45vw, 34px);
  line-height: 1.12;
}

.about-overview-main p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.about-overview-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 2px 0 0;
}

.about-overview-points article {
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(95, 219, 255, 0.14);
  border-radius: 8px;
  min-height: 154px;
}

.about-overview-points span {
  display: block;
  margin-bottom: 6px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-overview-points strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.22;
}

.about-overview-points p {
  margin: 0;
  font-size: 12px;
  line-height: 1.56;
}

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: min(100%, 470px);
  height: 100%;
  min-height: 520px;
  padding: 0;
  align-self: stretch;
  justify-self: start;
}

.about-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
}

.about-visual figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 8px 10px;
  color: var(--text);
  background: rgba(5, 9, 20, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  line-height: 1.5;
}

.intro-grid,
.case-cards,
.police-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.intro-grid article,
.tech-list article,
.case-cards article,
.police-grid article,
.product-card,
.honor-panel,
.case-highlight,
.lab-grid,
.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.intro-grid article,
.tech-list article,
.case-cards article {
  padding: 24px;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.25;
}

.intro-grid p,
.tech-list p,
.product-card p,
.feature-copy p,
.police-grid p,
.case-highlight p,
.case-cards span,
.honor-panel p,
.lab-grid p,
.contact-copy p {
  color: var(--muted);
}

.product-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(95, 219, 255, 0.18), transparent 34%, rgba(255, 176, 46, 0.12));
  opacity: 0;
  transition: opacity 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.product-card:hover::after {
  opacity: 1;
}

.product-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-card.featured img {
  height: 430px;
}

.product-card img.contain-media {
  object-fit: contain;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(5, 9, 20, 0.76), rgba(13, 26, 52, 0.94)),
    radial-gradient(circle at 50% 50%, rgba(95, 219, 255, 0.14), transparent 60%);
}

.product-card div {
  padding: 22px;
}

.technology {
  background:
    linear-gradient(90deg, rgba(5, 9, 20, 0.92), rgba(5, 9, 20, 0.58)),
    url("./assets/products/digital-grid.jpeg") center / cover;
}

.tech-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.tech-orbit {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.tech-orbit::before,
.tech-orbit::after {
  content: "";
  position: absolute;
  width: min(70vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(95, 219, 255, 0.28);
  border-radius: 50%;
}

.tech-orbit::after {
  width: min(58vw, 320px);
  border-color: rgba(255, 176, 46, 0.28);
  animation: rotateRing 12s linear infinite;
}

.core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 138px;
  height: 138px;
  color: #03101b;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), #ffffff);
  border-radius: 50%;
  box-shadow: 0 0 48px rgba(53, 216, 255, 0.38);
  animation: corePulse 2.8s ease-in-out infinite;
}

.tech-orbit span {
  position: absolute;
  z-index: 2;
  padding: 9px 12px;
  color: var(--text);
  background: rgba(7, 18, 39, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
}

.tech-orbit span:nth-of-type(1) {
  top: 72px;
  left: 48%;
}

.tech-orbit span:nth-of-type(2) {
  top: 148px;
  right: 18px;
}

.tech-orbit span:nth-of-type(3) {
  right: 56px;
  bottom: 120px;
}

.tech-orbit span:nth-of-type(4) {
  bottom: 74px;
  left: 32%;
}

.tech-orbit span:nth-of-type(5) {
  top: 158px;
  left: 22px;
}

.tech-orbit span:nth-of-type(6) {
  left: 54px;
  bottom: 156px;
}

.tech-list {
  display: grid;
  gap: 16px;
}

.solution-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.solution-menu a {
  padding: 11px 14px;
  color: #dffaff;
  background: rgba(53, 216, 255, 0.08);
  border: 1px solid rgba(95, 219, 255, 0.25);
  border-radius: 8px;
  font-weight: 800;
}

.solution-menu a:hover,
.solution-menu a:focus {
  color: #06101c;
  background: linear-gradient(135deg, var(--cyan), #dffaff);
}

.solution-section {
  scroll-margin-top: 86px;
}

.solution-feature {
  display: grid;
  grid-template-columns: minmax(380px, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  margin-bottom: 24px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.solution-feature.reverse {
  grid-template-columns: minmax(420px, 1.06fr) minmax(380px, 0.94fr);
}

.solution-feature.reverse > div {
  order: 2;
}

.solution-feature.reverse > img {
  order: 1;
}

.solution-feature.reverse > figure {
  order: 1;
}

.aviation-mro-feature,
.aviation-service-feature {
  grid-template-columns: minmax(520px, 0.94fr) minmax(500px, 1.06fr);
  gap: 24px;
  align-items: stretch;
}

.aviation-visual-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-height: 0;
  padding: 4px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(5, 9, 20, 0.72), rgba(13, 26, 52, 0.92)),
    radial-gradient(circle at 50% 50%, rgba(95, 219, 255, 0.08), transparent 64%);
}

.aviation-mro-feature .aviation-visual-shell {
  padding: 0;
  border: 0;
  background: none;
}

.aviation-mro-content,
.aviation-service-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.aviation-mro-content > .label,
.aviation-mro-content > h3,
.aviation-mro-content > p,
.aviation-service-content > .label,
.aviation-service-content > h3,
.aviation-service-content > p {
  grid-column: 1 / -1;
}

.aviation-mro-content > p,
.aviation-service-content > p {
  max-width: 640px;
  margin-bottom: 0;
}

.aviation-mro-content .solution-list,
.aviation-service-content .solution-list {
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.aviation-mro-content .solution-list > li,
.aviation-service-content .solution-list > li {
  height: 100%;
}

.aviation-mro-content .solution-list > li:last-child,
.aviation-service-content .solution-list > li:last-child {
  grid-column: 1 / -1;
}

.solution-story {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 26px;
  padding: clamp(22px, 3vw, 34px);
}

.solution-story > div,
.solution-story > figure {
  order: initial;
}

.solution-story > div {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: start;
  max-width: none;
}

.solution-story > div > .label,
.solution-story > div > h3,
.solution-story > div > p:not(.label) {
  grid-column: 1;
}

.solution-story > div > .solution-list {
  grid-column: 2;
  grid-row: 1 / span 4;
  margin: 0;
}

.solution-story h3 {
  margin-bottom: 0;
}

.solution-story > div > p:not(.label) {
  max-width: 620px;
}

.solution-feature img {
  width: 100%;
  height: auto;
  object-fit: contain;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(5, 9, 20, 0.72), rgba(13, 26, 52, 0.92)),
    radial-gradient(circle at 50% 50%, rgba(95, 219, 255, 0.14), transparent 64%);
}

.solution-media.contain {
  max-height: 500px;
  padding: 10px;
}

#public .solution-feature > img.solution-media.contain {
  align-self: center;
}

#auto .solution-feature.reverse > img {
  align-self: center;
}

.aviation-mro-feature .aviation-mro-visual,
.aviation-service-feature .aviation-service-visual {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 460px;
  object-fit: contain;
  object-position: center;
  align-self: center;
  justify-self: center;
  border: 0;
  border-radius: 6px;
  padding: 0;
  background: none;
}

.aviation-mro-feature .aviation-mro-visual {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.solution-feature img.solution-square-media {
  justify-self: center;
  width: min(100%, 640px);
}

.solution-visual-duo,
.solution-visual-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  margin: 0;
}

.solution-visual-duo img,
.solution-visual-stack img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
}

.solution-visual-duo img.contain,
.solution-visual-stack img.contain {
  object-fit: contain;
}

.aviation-mro-duo,
.aviation-service-duo,
.defense-duo,
.education-pair {
  width: 100%;
  max-width: 980px;
  justify-self: center;
}

.solution-visual-stack img:first-child {
  width: min(100%, 980px);
  justify-self: center;
}

.solution-visual-stack img:nth-child(2) {
  width: min(88%, 860px);
  justify-self: center;
}

.solution-story .solution-media.contain {
  padding: 0;
}

.defense-duo img:last-child {
  width: min(64%, 560px);
  justify-self: center;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.03);
}

.solution-image-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
  margin: 0;
}

.solution-image-pair img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  padding: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.solution-image-pair img.solution-media.contain {
  padding: 0;
}

.solution-feature.education-feature {
  grid-template-columns: minmax(560px, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 32px;
}

.solution-feature.defense-feature {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.education-pair,
.defense-pair {
  grid-template-columns: 1fr;
  align-content: center;
  justify-self: center;
  width: 100%;
  gap: 14px;
}

.defense-pair {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-self: stretch;
  align-items: end;
  max-width: none;
  gap: 14px;
  margin-top: 8px;
}

.education-pair {
  justify-self: center;
  align-self: center;
  max-width: 430px;
  gap: 12px;
}

.education-pair img,
.defense-pair img {
  background: transparent;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.education-pair img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  object-position: center;
}

.defense-pair img {
  align-self: end;
  aspect-ratio: 1.245 / 1;
  height: auto;
  object-fit: cover;
}

.education-pair img:nth-child(2) {
  width: 100%;
}

.defense-pair img:last-child {
  width: 100%;
  justify-self: stretch;
  background: transparent;
}

.solution-feature.discipline-feature {
  grid-template-columns: minmax(560px, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 32px;
}

.discipline-pair {
  grid-template-columns: 1fr;
  justify-self: center;
  align-self: center;
  width: 100%;
  max-width: 410px;
  gap: 12px;
}

.discipline-pair img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  object-position: center;
  background: transparent;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.solution-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

#auto .solution-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

#auto .solution-list > li:last-child {
  grid-column: 1 / -1;
}

.solution-list li {
  padding: 10px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(95, 219, 255, 0.14);
  border-radius: 8px;
}

.solution-list strong {
  color: var(--text);
}

.solution-numbered {
  margin: 8px 0 0 18px;
  padding: 0;
  display: grid;
  gap: 6px;
}

.solution-numbered li {
  padding: 0;
  color: var(--muted);
  background: none;
  border: 0;
  border-radius: 0;
}

.solution-subtitle {
  margin: 8px 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.solution-triple article {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.solution-triple img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.solution-triple h3,
.solution-triple p {
  padding: 0 20px;
}

.solution-triple h3 {
  margin-top: 18px;
}

.solution-triple p {
  color: var(--muted);
  padding-bottom: 22px;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.feature-copy {
  padding: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.capability-grid span {
  padding: 12px;
  color: #dffaff;
  background: rgba(53, 216, 255, 0.08);
  border: 1px solid rgba(95, 219, 255, 0.2);
  border-radius: 8px;
}

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

.media-stack img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.media-stack img:nth-child(2) {
  height: 320px;
  align-self: end;
}

.police-grid article {
  overflow: hidden;
}

.police-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.police-grid h3,
.police-grid p {
  padding: 0 22px;
}

.police-grid h3 {
  margin-top: 20px;
}

.police-grid p {
  padding-bottom: 24px;
}

.case-highlight,
.honor-panel,
.lab-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(420px, 1.3fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
}

.case-highlight img,
.lab-grid img {
  width: 100%;
  border-radius: 8px;
}

.case-highlight img {
  background: #fff;
}

.honor-panel {
  grid-template-columns: minmax(250px, 0.36fr) minmax(560px, 0.64fr);
}

.honor-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.honor-badges span {
  padding: 8px 10px;
  color: #06101c;
  background: linear-gradient(135deg, var(--mango), #ffe09a);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.honor-showcase {
  display: grid;
  grid-template-columns: minmax(190px, 0.78fr) minmax(320px, 1.22fr);
  gap: 14px;
  align-items: stretch;
}

.honor-feature {
  display: grid;
  align-content: center;
  gap: 10px;
  margin: 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(95, 219, 255, 0.18);
  border-radius: 8px;
}

.honor-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.honor-feature figcaption {
  color: #10264a;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.honor-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.honor-gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(95, 219, 255, 0.16);
  border-radius: 6px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.honor-gallery img:hover {
  transform: scale(1.06);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.case-cards {
  margin: 18px 0;
}

.case-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.case-page-grid article {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease;
}

.case-page-grid article:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.case-page-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.case-page-grid div {
  padding: 20px;
}

.case-page-grid span {
  color: var(--mango);
  font-size: 12px;
  font-weight: 900;
}

.case-page-grid p {
  color: var(--muted);
}

.reveal-ready .section-shell > .section-title,
.reveal-ready .product-card,
.reveal-ready .tech-list article,
.reveal-ready .app-panorama article,
.reveal-ready .solution-feature,
.reveal-ready .solution-triple article,
.reveal-ready .case-page-grid article,
.reveal-ready .about-values article,
.reveal-ready .honor-panel {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.reveal-ready .section-shell > .section-title.is-visible,
.reveal-ready .product-card.is-visible,
.reveal-ready .tech-list article.is-visible,
.reveal-ready .app-panorama article.is-visible,
.reveal-ready .solution-feature.is-visible,
.reveal-ready .solution-triple article.is-visible,
.reveal-ready .case-page-grid article.is-visible,
.reveal-ready .about-values article.is-visible,
.reveal-ready .honor-panel.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.news-blank {
  min-height: 62vh;
  display: grid;
  align-content: center;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.about-values article {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.about-values p {
  color: var(--muted);
}

.partners-page {
  padding-top: 24px;
}

.partners-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(640px, 0.66fr);
  gap: 28px;
  align-items: stretch;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(18px);
}

.partners-copy p {
  color: var(--muted);
}

.partners-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.partners-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.14;
}

.partners-focus {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.partners-focus article {
  position: relative;
  padding: 13px 14px 13px 48px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(95, 219, 255, 0.16);
  border-radius: 8px;
}

.partners-focus article span {
  position: absolute;
  left: 14px;
  top: 14px;
  color: var(--mango);
  font-size: 15px;
  font-weight: 900;
}

.partners-focus article strong {
  display: block;
  margin-bottom: 5px;
  color: #dffaff;
  font-size: 15px;
  line-height: 1.25;
}

.partners-focus article p {
  margin: 0;
  font-size: 13px;
  line-height: 1.58;
}

.partners-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.partners-stats span {
  min-height: 64px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 10px;
  color: var(--muted);
  background: rgba(53, 216, 255, 0.07);
  border: 1px solid rgba(95, 219, 255, 0.18);
  border-radius: 8px;
  font-size: 12px;
  text-align: center;
}

.partners-stats strong {
  color: var(--mango);
  font-size: 24px;
  line-height: 1;
}

.partners-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.partners-tags span {
  padding: 8px 11px;
  color: #dffaff;
  background: rgba(53, 216, 255, 0.08);
  border: 1px solid rgba(95, 219, 255, 0.24);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.partner-card {
  grid-column: span 2;
  height: 188px;
  min-height: 188px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 18px 14px 14px;
  color: #102434;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(226, 242, 255, 0.9)),
    radial-gradient(circle at 50% 0%, rgba(53, 216, 255, 0.18), transparent 58%);
  border: 1px solid rgba(95, 219, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.partner-card:last-child {
  grid-column: span 2;
}

.partner-card img {
  display: block;
  width: 100%;
  max-width: 222px;
  height: 92px;
  object-fit: contain;
}

.partner-card figcaption {
  min-height: 34px;
  display: grid;
  place-items: center;
  color: #183146;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.32;
  text-align: center;
}

.partner-card.logo-square img {
  width: 112px;
  height: 112px;
}

.partner-card.logo-wide img {
  width: 100%;
  max-width: 226px;
  height: 96px;
}

.partner-card.logo-compact img {
  width: 100%;
  max-width: 198px;
  height: 92px;
}

.partner-card.logo-lingyun img {
  width: 100%;
  max-width: 190px;
  height: 108px;
}

.partner-card.logo-airforce img {
  width: 106px;
  height: 116px;
}

.partner-card.logo-mtu img {
  width: 100%;
  max-width: 210px;
  height: 92px;
}

.case-cards strong,
.case-cards span {
  display: block;
}

.case-cards strong {
  margin-bottom: 8px;
  color: #dffaff;
}

.lab-grid {
  grid-template-columns: 0.95fr 0.95fr 1.1fr;
}

.lab-grid img {
  height: 260px;
  object-fit: cover;
}

.contact {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(330px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  padding: 96px clamp(18px, 4vw, 72px);
  background: linear-gradient(135deg, rgba(40, 84, 232, 0.28), rgba(255, 176, 46, 0.08));
  border-top: 1px solid var(--line);
}

.contact h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.1;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 12px;
  color: var(--text);
  font: inherit;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(53, 216, 255, 0.12);
}

.contact-form button {
  color: #04101b;
  background: linear-gradient(135deg, var(--mango), #ffe09a);
  border: 0;
  cursor: pointer;
}

.site-footer {
  padding: 58px clamp(18px, 4vw, 72px) 24px;
  color: var(--muted);
  background: #03060d;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(140px, 0.62fr) minmax(260px, 1fr) minmax(260px, 0.98fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  max-width: 1380px;
  margin: 0 auto;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 14px;
}

.footer-brand h3,
.footer-grid h4 {
  margin: 0 0 14px;
  color: var(--text);
}

.footer-brand p {
  max-width: 360px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
}

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

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact p {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  fill: var(--cyan);
}

.footer-follow img {
  width: min(100%, 330px);
  background: #fff;
  border-radius: 8px;
}

.footer-follow span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: 1380px;
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(95, 219, 255, 0.12);
}

@keyframes rotateRing {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatStage {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes sweepLight {
  0%,
  45% {
    transform: translateX(-72%);
  }

  100% {
    transform: translateX(72%);
  }
}

@keyframes corePulse {
  0%,
  100% {
    box-shadow: 0 0 42px rgba(53, 216, 255, 0.34);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 68px rgba(53, 216, 255, 0.55);
    transform: scale(1.035);
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .about-panel,
  .tech-layout,
  .split-feature,
  .contact,
  .case-highlight,
  .honor-panel,
  .about-overview-shell,
  .partners-panel,
  .solution-feature,
  .solution-feature.reverse,
  .solution-feature.defense-feature,
  .solution-feature.education-feature,
  .solution-feature.discipline-feature {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-areas:
      "heading"
      "stage"
      "copy";
  }

  .hero-copy,
  .hero-stage {
    margin-top: 0;
  }

  .hero-title {
    display: grid;
    max-width: 100%;
    font-size: clamp(28px, 8.6vw, 38px);
  }

  .hero-title span {
    white-space: normal;
  }

  .hero-signal-panel strong {
    font-size: 18px;
  }

  .hero-lead br {
    display: none;
  }

  .solution-story > div {
    grid-template-columns: 1fr;
  }

  .about-overview-points,
  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-card,
  .partner-card:last-child {
    grid-column: auto;
  }

  .about-overview-main {
    min-height: auto;
  }

  .about-visual {
    width: min(100%, 520px);
    height: auto;
    min-height: auto;
    aspect-ratio: 1101 / 1233;
    justify-self: center;
  }

  .solution-story > div > .label,
  .solution-story > div > h3,
  .solution-story > div > p:not(.label),
  .solution-story > div > .solution-list {
    grid-column: 1;
    grid-row: auto;
  }

  .solution-feature.reverse > div,
  .solution-feature.reverse > img,
  .solution-feature.reverse > figure {
    order: initial;
  }

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

  .product-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-panorama,
  .solution-triple,
  .case-page-grid,
  .about-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #aviation .solution-list,
  #auto .solution-list {
    grid-template-columns: 1fr;
  }

  .aviation-mro-feature,
  .aviation-service-feature {
    grid-template-columns: 1fr;
  }

  .aviation-visual-shell {
    min-height: 0;
    padding: 4px;
  }

  .aviation-mro-content,
  .aviation-service-content {
    grid-template-columns: 1fr;
  }

  .aviation-mro-content .solution-list,
  .aviation-service-content .solution-list {
    grid-template-columns: 1fr;
  }

  .product-card.featured {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand small,
  .nav-action {
    display: none;
  }

  .brand-logo-wrap {
    width: 38px;
    height: 38px;
  }

  .brand-logo-wrap img {
    width: 26px;
    height: 26px;
  }

  .section-shell,
  .contact {
    padding: 62px 18px;
  }

  h1 {
    font-size: 42px;
  }

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

  .hero-stage {
    min-height: 430px;
  }

  .hero-image {
    inset: auto;
    top: 44px;
    left: 50%;
    width: min(100%, 420px);
    transform: translateX(-50%);
  }

  .hud-panel {
    width: min(250px, 74vw);
  }

  .hero-metrics,
  .about-panel,
  .intro-grid,
  .product-showcase,
  .police-grid,
  .case-cards,
  .app-panorama,
  .solution-triple,
  .solution-visual-duo,
  .solution-visual-stack,
  .solution-image-pair,
  .case-page-grid,
  .about-values,
  .capability-grid,
  .media-stack,
  .lab-grid,
  .honor-showcase,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-overview-points,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .partners-stats {
    grid-template-columns: 1fr;
  }

  .partners-focus article {
    padding-left: 42px;
  }

  .hero-signal-panel strong {
    font-size: 18px;
  }

  .aviation-mro-feature .aviation-mro-visual,
  .aviation-service-feature .aviation-service-visual {
    max-height: none;
  }

  .honor-gallery {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 112px;
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-color: rgba(95, 219, 255, 0.45) rgba(255, 255, 255, 0.08);
  }

  .honor-feature img {
    max-height: 150px;
  }

  .product-card.featured {
    grid-column: span 1;
  }

  .product-card img,
  .product-card.featured img,
  .media-stack img,
  .media-stack img:nth-child(2),
  .police-grid img,
  .lab-grid img,
  .solution-feature img,
  .solution-triple img,
  .case-page-grid img,
  .app-panorama img {
    height: auto;
  }

  .solution-image-pair img {
    height: auto;
  }

  .solution-visual-duo img {
    min-height: 0;
    height: auto;
  }

  .solution-visual-stack img,
  .solution-visual-stack img:nth-child(2),
  .defense-duo img:last-child,
  .defense-pair img:last-child,
  .education-pair img:nth-child(2) {
    width: 100%;
  }

  .education-pair img:nth-child(2) {
    width: 100%;
  }

  .tech-orbit {
    min-height: 420px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: clamp(27px, 8.3vw, 34px);
  }
}
