.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  isolation: isolate;
  transition:
    background-color 260ms var(--ease-out),
    border-color 260ms var(--ease-out),
    box-shadow 260ms var(--ease-out);
  animation: header-enter 260ms var(--ease-out) both;
}

.site-header::after {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 18px;
  background: linear-gradient(to bottom, rgba(7, 20, 37, 0.09), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease-out);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.5);
  background: rgba(247, 250, 253, 0.74);
  box-shadow: 0 10px 30px rgba(7, 20, 37, 0.08);
  -webkit-backdrop-filter: blur(22px) saturate(175%);
  backdrop-filter: blur(22px) saturate(175%);
}

.site-header.is-scrolled::after {
  opacity: 1;
}

.header-grid {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
}

.brand-link {
  display: inline-flex;
  width: 176px;
  height: 64px;
  align-items: center;
  justify-content: flex-start;
}

.brand-link img {
  width: 176px;
  height: 64px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.mobile-menu,
.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--ink-950);
  color: var(--surface-white);
}

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

.hero-picture img {
  object-fit: cover;
  object-position: center;
  animation: hero-media-settle 700ms var(--ease-out) 100ms both;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 17, 36, 0.8) 0%, rgba(4, 17, 36, 0.61) 42%, rgba(4, 17, 36, 0.06) 66%, rgba(4, 17, 36, 0.02) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 30%, #000);
  mask-image: linear-gradient(to bottom, transparent, #000 30%, #000);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 94px;
}

.hero-content > * {
  max-width: 650px;
}

.hero-content .eyebrow {
  margin-bottom: 24px;
  color: #a9dff7;
}

.hero-lead {
  max-width: 590px;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.125rem;
  line-height: 1.55;
}

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

.capability-line {
  max-width: 590px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.hero-content > * {
  animation: hero-content-enter 360ms var(--ease-out) both;
}

.hero-content > :nth-child(1) {
  animation-delay: 80ms;
}

.hero-content > :nth-child(2) {
  animation-delay: 130ms;
}

.hero-content > :nth-child(3) {
  animation-delay: 180ms;
}

.hero-content > :nth-child(4) {
  animation-delay: 230ms;
}

.hero-content > :nth-child(5) {
  animation-delay: 280ms;
}

@keyframes header-enter {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-content-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-media-settle {
  from {
    opacity: 0.76;
    transform: scale(1.015);
  }

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

.motion-enhanced .motion-reveal-media {
  clip-path: inset(0 0 14% 0);
  opacity: 0.01;
  transform: translateY(10px);
  transition:
    clip-path 640ms var(--ease-out),
    opacity 360ms var(--ease-out),
    transform 640ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-enhanced .motion-reveal-media.is-revealed {
  clip-path: inset(0);
  opacity: 1;
  transform: translateY(0);
}

.solutions {
  padding: 78px 0 82px;
}

.solutions-intro {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 120px;
  align-items: end;
  padding-bottom: 42px;
}

.solutions-intro .eyebrow {
  margin-bottom: 18px;
}

.application-row {
  position: relative;
  min-height: 164px;
  display: grid;
  grid-template-columns: 56px 236px 246px minmax(230px, 1fr) 225px;
  gap: 24px;
  align-items: center;
  border-top: 1px solid #cbd4df;
}

.application-row:last-child {
  border-bottom: 1px solid #cbd4df;
}

.application-number {
  align-self: start;
  padding-top: 34px;
  color: var(--brand-700);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.application-row h3 {
  max-width: 220px;
}

.application-model {
  display: grid;
  gap: 8px;
}

.application-model strong {
  color: var(--brand-700);
  font-size: 0.875rem;
}

.application-model span {
  color: #607187;
  font-size: 0.75rem;
}

.application-summary > p {
  color: var(--ink-600);
  font-size: 1rem;
  line-height: 1.58;
}

.application-summary {
  display: grid;
  gap: 14px;
}

.application-link-cue {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-700);
  font-size: 0.8125rem;
  font-weight: 600;
}

.application-link-cue .icon {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.application-media {
  height: 126px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.application-media img {
  width: 100%;
  height: 100%;
  transition: transform var(--transition-base);
}

.application-media-contain img {
  object-fit: contain;
}

.application-media-cover {
  height: 112px;
}

.application-media-cover img {
  object-fit: cover;
}

.process-ledger {
  position: relative;
  isolation: isolate;
  min-height: 900px;
  overflow: hidden;
  padding: 84px 0 80px;
  background: var(--ink-900);
  color: var(--surface-white);
}

.process-ledger::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--spectral-line);
  content: "";
  z-index: 3;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 480ms var(--ease-out);
}

.motion-enhanced .process-ledger:not(.is-motion-visible)::before {
  transform: scaleX(0);
}

.process-ledger > .container {
  position: relative;
  z-index: 2;
}

.process-pointer-glow {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(57, 174, 255, 0.3) 0%,
    rgba(20, 112, 230, 0.17) 34%,
    rgba(16, 83, 175, 0.07) 52%,
    rgba(12, 50, 108, 0) 72%
  );
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-700px, -700px, 0);
  transition: opacity 220ms var(--ease-out);
  will-change: transform, opacity;
}

.process-ledger.is-pointer-active .process-pointer-glow {
  opacity: 1;
}

.process-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 100px;
}

.process-heading h2 {
  max-width: 540px;
  margin-top: 22px;
}

.editorial-statement {
  color: #f2f3f6;
  font-family: var(--font-serif);
  font-size: 2.75rem;
  line-height: 1.13;
}

.process-lead {
  margin-top: 32px;
  color: #aebccc;
  font-size: 1.0625rem;
  line-height: 1.65;
}

.technical-data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.data-column {
  min-height: 226px;
  padding: 26px 28px 30px 0;
  border-right: 1px solid var(--line-dark);
}

.data-column:not(:first-child) {
  padding-left: 28px;
}

.data-column:last-child {
  border-right: 0;
}

.data-column .eyebrow {
  color: #8cdcf0;
}

.data-column h3 {
  margin-top: 20px;
}

.data-column > p:not(.eyebrow) {
  margin-top: 10px;
  color: #aebccc;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.data-column dl {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.data-column dd {
  font-size: 1.125rem;
  font-variant-numeric: tabular-nums;
}

.technical-evidence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 18px;
  margin-top: 42px;
}

.technical-evidence {
  min-width: 0;
  display: grid;
  gap: 26px;
  align-items: center;
  padding: 24px 26px 24px 30px;
  background: var(--surface-white);
  color: var(--ink-950);
}

.technical-evidence-primary {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) 420px;
}

.technical-evidence h3 {
  margin-top: 12px;
}

.technical-evidence figcaption > p:last-child {
  margin-top: 10px;
  color: var(--ink-600);
}

.technical-evidence img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.technical-evidence-primary img {
  height: 156px;
}

.technical-record-card {
  grid-column: 1 / -1;
  min-height: 100%;
  padding: 26px 30px;
  background:
    linear-gradient(145deg, rgba(69, 201, 242, 0.12), transparent 46%),
    #10264a;
  color: var(--surface-white);
}

.technical-record-card .eyebrow {
  color: #8edff5;
}

.technical-record-card h3 {
  max-width: 430px;
  margin-top: 12px;
}

.technical-record-card ol {
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.technical-record-card li {
  min-height: 58px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.technical-record-card li span {
  color: #8edff5;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.technical-record-card li strong {
  font-size: 0.9375rem;
  font-weight: 500;
}

.technical-footnote {
  margin-top: 20px;
  color: #8495a8;
  font-size: 0.75rem;
}

.factory-visual {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.factory-visual picture,
.factory-visual picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.factory-visual img {
  object-fit: cover;
}

.factory-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 16, 31, 0.68), rgba(5, 16, 31, 0.1) 62%);
}

.factory-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 56px;
  left: 0;
  color: var(--surface-white);
}

.factory-copy h2 {
  max-width: 660px;
  margin-top: 18px;
  font-size: 3.25rem;
}

.factory-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.0625rem;
  line-height: 1.6;
}

.factory-video-link {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 0 18px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--surface-white);
  font-size: 0.875rem;
  font-weight: 600;
  -webkit-backdrop-filter: blur(10px) saturate(135%);
  backdrop-filter: blur(10px) saturate(135%);
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
}

.factory-video-link .icon {
  width: 21px;
  height: 21px;
}

.factory-video-link:hover {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink-950);
}

.factory-video-link:active {
  transform: scale(0.98);
}

@media (hover: hover) and (pointer: fine) {
  .application-row:hover .application-media img {
    transform: scale(1.02);
  }

  .factory-video-link:hover {
    transform: translateY(-2px);
  }

  .factory-video-link:active {
    transform: scale(0.98);
  }
}

.manufacturing-body {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--surface-cool);
}

.manufacturing-body-background,
.manufacturing-body-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.manufacturing-body-background {
  object-fit: cover;
  object-position: center 47%;
}

.manufacturing-body-shade {
  background:
    linear-gradient(105deg, rgba(248, 250, 253, 0.96) 0%, rgba(244, 248, 252, 0.93) 48%, rgba(238, 244, 250, 0.86) 100%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.26), rgba(18, 53, 128, 0.04));
}

.manufacturing-body-content {
  position: relative;
  z-index: 2;
  padding-top: 70px;
  padding-bottom: 76px;
}

.manufacturing-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(72px, 8vw, 132px);
  align-items: end;
}

.manufacturing-overview h3 {
  max-width: 570px;
  margin-top: 18px;
  color: var(--ink-950);
  font-size: clamp(2.75rem, 3.6vw, 3.35rem);
  line-height: 1.04;
}

.manufacturing-overview .section-lead {
  max-width: 520px;
  padding-bottom: 4px;
  color: #334c69;
  font-size: 1.0625rem;
}

.manufacturing-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
  border-top: 1px solid rgba(18, 53, 128, 0.22);
  background: rgba(236, 244, 252, 0.24);
}

.manufacturing-steps li {
  min-height: 138px;
  padding: 22px 24px;
  border-right: 1px solid rgba(18, 53, 128, 0.2);
  border-bottom: 1px solid rgba(18, 53, 128, 0.2);
}

.manufacturing-steps li:nth-child(3n + 1) {
  padding-left: 0;
}

.manufacturing-steps li:nth-child(3n) {
  border-right: 0;
}

.manufacturing-steps span {
  color: var(--brand-700);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.manufacturing-steps p {
  margin-top: 18px;
  color: var(--ink-900);
  font-weight: 500;
  line-height: 1.5;
}

.project-path {
  padding: 76px 0 80px;
}

.path-heading {
  max-width: 860px;
}

.path-heading h2 {
  margin-top: 20px;
}

.path-heading > p:last-child {
  margin-top: 22px;
  color: #40516a;
  font-family: var(--font-serif);
  font-size: 1.8125rem;
  line-height: 1.4;
}

.path-list {
  --path-media-height: clamp(104px, 9vw, 124px);
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 54px;
  overflow: hidden;
}

.path-list::before {
  position: absolute;
  top: calc(var(--path-media-height) + 30px);
  right: 20px;
  left: 20px;
  height: 2px;
  background: var(--spectral-line);
  content: "";
}

.path-list::after {
  position: absolute;
  z-index: 1;
  top: calc(var(--path-media-height) + 29px);
  left: 0;
  width: 22%;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(69, 201, 242, 0.9) 30%, rgba(91, 101, 238, 0.95) 68%, transparent);
  box-shadow: 0 0 12px rgba(69, 201, 242, 0.34);
  content: "";
  pointer-events: none;
  transform: translate3d(-105%, 0, 0);
  animation: path-flow-horizontal 4.8s linear infinite;
  will-change: transform;
}

.path-list li {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: 302px;
  padding: 0 26px 0 0;
}

.path-media {
  width: calc(100% - 24px);
  height: var(--path-media-height);
  margin: 0 0 64px;
  overflow: hidden;
  border: 1px solid rgba(18, 53, 128, 0.14);
  background: #f6f9fd;
}

.path-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.path-dot {
  position: absolute;
  z-index: 2;
  top: calc(var(--path-media-height) + 21px);
  left: 0;
  width: 20px;
  height: 20px;
  border: 5px solid var(--brand-700);
  border-radius: 50%;
  background: var(--surface-warm);
}

.path-list h3 {
  font-size: 1.3125rem;
}

.path-list p {
  margin-top: 12px;
  color: var(--ink-600);
  font-size: 0.875rem;
  line-height: 1.55;
}

@keyframes path-flow-horizontal {
  to {
    transform: translate3d(460%, 0, 0);
  }
}

@keyframes path-flow-vertical {
  to {
    transform: translate3d(0, 405%, 0);
  }
}

.documents {
  padding: 64px 0 68px;
  background: var(--surface-cool);
}

.documents-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 88px;
  align-items: center;
}

.documents h2 {
  max-width: 650px;
  margin-top: 20px;
}

.documents-lead {
  margin-top: 22px;
  color: var(--ink-600);
  font-size: 1.125rem;
  line-height: 1.65;
}

.documents-checklist {
  border-top: 1px solid #bdc9d8;
}

.documents-checklist li {
  min-height: 80px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid #bdc9d8;
}

.documents-checklist .icon {
  color: var(--brand-700);
}

.documents-checklist strong,
.documents-checklist span {
  display: block;
}

.documents-checklist strong {
  font-size: 1.0625rem;
}

.documents-checklist span {
  margin-top: 4px;
  color: var(--ink-600);
  font-size: 0.875rem;
}

.contact {
  position: relative;
  overflow: hidden;
  background: var(--ink-950);
  color: var(--surface-white);
}

.contact-background {
  position: absolute;
  inset: 0 48% 0 0;
  opacity: 0.32;
  background:
    linear-gradient(90deg, rgba(7, 20, 37, 0.22), rgba(7, 20, 37, 0.6)),
    url("../assets/processed/IMGGEN-BG-001-thin-film-hero.png") center / cover no-repeat;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-copy {
  padding: 58px 88px 54px 0;
}

.contact-copy h2 {
  margin-top: 18px;
  font-size: clamp(3rem, 4vw, 3.375rem);
}

.contact-copy > p:not(.eyebrow):not(.contact-note) {
  max-width: 500px;
  margin-top: 22px;
  color: #aebccc;
  font-size: 1.125rem;
  line-height: 1.62;
}

.contact-note {
  max-width: 500px;
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--line-dark);
  color: #8fa2b7;
  font-size: 0.8125rem;
}

.site-footer {
  padding: 32px 0 22px;
  background: #050f1f;
  color: var(--surface-white);
}

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

.footer-brand {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  max-width: 760px;
}

.footer-brand img {
  width: 168px;
  height: 90px;
  object-fit: contain;
}

.footer-legal {
  font-size: 1.0625rem;
}

.footer-brand-copy > p:last-child {
  max-width: 520px;
  margin-top: 8px;
  color: #8294a9;
  font-size: 0.875rem;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #708399;
  font-size: 0.75rem;
}

@media (min-width: 1685px) {
  .hero-picture img {
    object-position: center 52%;
  }
}

@media (max-width: 1180px) {
  .header-grid {
    grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
  }

  .desktop-nav {
    gap: 24px;
  }

  .application-row {
    grid-template-columns: 48px 190px 205px minmax(190px, 1fr) 180px;
    gap: 18px;
  }

  .documents-grid {
    gap: 72px;
  }
}

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

  .brand-link,
  .brand-link img {
    width: 132px;
    height: 56px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: block;
    height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    background: linear-gradient(155deg, #071425 0%, #0c2350 100%);
    color: var(--surface-white);
  }

  .mobile-menu-inner {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 36px;
    padding-bottom: 32px;
  }

  .mobile-menu-intro {
    max-width: 430px;
    margin-bottom: 28px;
    color: #cdd9e6;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    line-height: 1.25;
  }

  .mobile-menu nav a {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line-dark);
    font-size: 1.375rem;
    font-weight: 500;
  }

  .mobile-menu nav a:last-child {
    border-bottom: 1px solid var(--line-dark);
  }

  .mobile-menu nav .icon {
    color: #8bdcf1;
  }

  .mobile-menu-cta {
    width: 100%;
    margin-top: auto;
  }

  .hero {
    min-height: 740px;
  }

  .hero-picture img {
    object-position: 58% center;
  }

  .hero-content {
    padding-top: 86px;
  }

  .hero-content > * {
    max-width: 56%;
  }

  .hero-lead,
  .capability-line {
    max-width: 52%;
  }

  .hero-actions {
    max-width: 55%;
    flex-direction: column;
    align-items: stretch;
  }

  .solutions {
    padding: 72px 0 76px;
  }

  .solutions-intro {
    grid-template-columns: 1fr 0.7fr;
    gap: 56px;
  }

  .application-row {
    grid-template-columns: 42px 1fr 180px 190px;
    gap: 16px;
    padding: 18px 0;
  }

  .application-summary {
    grid-column: 2 / 4;
    grid-row: 2;
    padding-bottom: 14px;
  }

  .application-media {
    grid-column: 4;
    grid-row: 1 / 3;
  }

  .process-ledger {
    padding: 72px 0 74px;
  }

  .process-heading {
    gap: 64px;
  }

  .editorial-statement {
    font-size: 2.25rem;
  }

  .technical-data {
    grid-template-columns: 1fr;
  }

  .data-column,
  .data-column:not(:first-child) {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .data-column:last-child {
    border-bottom: 0;
  }

  .technical-evidence-primary {
    grid-template-columns: 1fr 38%;
    gap: 32px;
  }

  .manufacturing-overview {
    grid-template-columns: 1fr 0.8fr;
    gap: 56px;
  }

  .manufacturing-overview h3 {
    font-size: 2.75rem;
  }

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

  .manufacturing-steps li:nth-child(3n + 1) {
    padding-left: 24px;
  }

  .manufacturing-steps li:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .manufacturing-steps li:nth-child(2n + 1) {
    padding-left: 0;
  }

  .manufacturing-steps li:nth-child(2n) {
    border-right: 0;
  }

  .project-path {
    padding: 70px 0 74px;
  }

  .path-list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 42px;
    padding-left: 38px;
    overflow: hidden;
  }

  .path-list::before {
    top: 10px;
    right: auto;
    bottom: 10px;
    left: 9px;
    width: 2px;
    height: auto;
  }

  .path-list::after {
    top: 0;
    bottom: auto;
    left: 8px;
    width: 4px;
    height: 25%;
    background: linear-gradient(180deg, transparent, rgba(69, 201, 242, 0.9) 30%, rgba(91, 101, 238, 0.95) 68%, transparent);
    transform: translate3d(0, -105%, 0);
    animation-name: path-flow-vertical;
  }

  .path-list li {
    display: grid;
    grid-template-columns: minmax(140px, 180px) minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 24px;
    align-items: start;
    min-height: 0;
    padding: 0 0 28px 28px;
  }

  .path-list li:last-child {
    padding-bottom: 0;
  }

  .path-dot {
    top: 2px;
    left: -38px;
  }

  .path-media {
    width: 100%;
    height: 112px;
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 0;
  }

  .path-list h3,
  .path-list p {
    grid-column: 2;
  }

  .path-list h3 {
    margin-top: 6px;
  }

  .documents {
    padding: 60px 0 64px;
  }

  .documents-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 40px;
  }

  .contact-copy {
    padding-right: 48px;
    padding-top: 52px;
    padding-bottom: 48px;
  }

}

@media (max-width: 767px) {
  .language-toggle {
    width: auto;
    padding-inline: 10px;
  }

  .language-toggle .icon {
    display: none;
  }

  .hero {
    min-height: 700px;
  }

  .hero-picture img {
    object-position: center;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(5, 16, 31, 0.72), rgba(5, 16, 31, 0.32) 48%, rgba(5, 16, 31, 0.72));
  }

  .hero-grid {
    opacity: 0.08;
    background-size: 56px 56px;
  }

  .hero-content {
    padding-top: 38px;
  }

  .hero-content > *,
  .hero-lead,
  .capability-line,
  .hero-actions {
    max-width: 100%;
  }

  .hero-content .eyebrow {
    margin-bottom: 17px;
    font-size: 0.625rem;
  }

  .hero-lead {
    max-width: 345px;
    margin-top: 16px;
    font-size: 0.9375rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .button-ghost {
    display: none;
  }

  .capability-line {
    position: absolute;
    top: 618px;
    right: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding-top: 13px;
    font-size: 0.5625rem;
  }

  .solutions {
    padding: 52px 0 56px;
  }

  .solutions-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 30px;
  }

  .application-row {
    min-height: 0;
    grid-template-columns: 38px 1fr;
    gap: 14px;
    padding: 24px 0;
  }

  .application-number {
    grid-column: 1;
    grid-row: 1;
    padding-top: 3px;
  }

  .application-row h3 {
    grid-column: 2;
    grid-row: 1;
    max-width: none;
  }

  .application-summary {
    grid-column: 2;
    grid-row: 3;
    padding-bottom: 0;
  }

  .application-model {
    grid-column: 2;
    grid-row: 2;
  }

  .application-media,
  .application-media-cover {
    grid-column: 2;
    grid-row: 4;
    width: 100%;
    height: 190px;
    justify-content: center;
    margin-top: 4px;
    background: rgba(255, 255, 255, 0.7);
  }

  .application-media img {
    object-fit: contain;
  }

  .application-media-cover img {
    object-fit: cover;
  }

  .process-ledger {
    min-height: 0;
    padding: 54px 0 58px;
  }

  .process-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-heading h2 {
    margin-top: 18px;
  }

  .editorial-statement {
    font-size: 1.75rem;
  }

  .process-lead {
    margin-top: 20px;
    font-size: 1rem;
  }

  .technical-data {
    margin-top: 36px;
  }

  .technical-evidence-grid,
  .technical-evidence-primary {
    grid-template-columns: 1fr;
  }

  .technical-evidence-grid {
    gap: 14px;
    margin-top: 34px;
  }

  .technical-evidence {
    gap: 22px;
    padding: 22px 20px;
  }

  .technical-evidence img {
    height: auto;
    max-height: 260px;
  }

  .technical-record-card {
    padding: 26px 22px;
  }

  .factory-visual {
    height: 440px;
  }

  .factory-shade {
    background: linear-gradient(180deg, rgba(5, 16, 31, 0.18), rgba(5, 16, 31, 0.76));
  }

  .factory-copy {
    bottom: 34px;
  }

  .factory-copy h2 {
    max-width: 360px;
    font-size: 2.35rem;
  }

  .factory-video-link {
    margin-top: 20px;
  }

  .factory-copy > p:not(.eyebrow) {
    max-width: 340px;
    font-size: 1rem;
  }

  .manufacturing-body {
    min-height: 0;
  }

  .manufacturing-body-background {
    object-position: 38% center;
  }

  .manufacturing-body-shade {
    background: rgba(246, 249, 253, 0.94);
  }

  .manufacturing-body-content {
    padding-top: 52px;
    padding-bottom: 56px;
  }

  .manufacturing-overview {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .manufacturing-overview h3 {
    font-size: 2rem;
  }

  .manufacturing-overview .section-lead {
    padding-bottom: 0;
  }

  .manufacturing-steps {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .manufacturing-steps li,
  .manufacturing-steps li:nth-child(3n + 1),
  .manufacturing-steps li:nth-child(2n + 1) {
    min-height: 0;
    padding: 18px 0;
    border-right: 0;
  }

  .project-path {
    padding: 52px 0 56px;
  }

  .path-heading > p:last-child {
    margin-top: 22px;
    font-size: 1.35rem;
  }

  .path-list li {
    grid-template-columns: 108px minmax(0, 1fr);
    column-gap: 16px;
    padding-bottom: 22px;
  }

  .path-media {
    height: 82px;
  }

  .path-list h3 {
    margin-top: 0;
    font-size: 1.0625rem;
  }

  .path-list p {
    margin-top: 8px;
    font-size: 0.8125rem;
  }

  .documents {
    padding: 48px 0 52px;
  }

  .documents-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .documents-lead {
    font-size: 1rem;
  }

  .contact {
    min-height: 0;
  }

  .contact-background {
    inset: 0 0 auto 0;
    height: 430px;
  }

  .contact-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .contact-copy {
    width: min(100% - 40px, var(--container));
    min-height: 360px;
    margin-inline: auto;
    padding: 46px 0 36px;
  }

  .contact-copy h2 {
    max-width: 360px;
    font-size: 2.45rem;
  }

  .contact-copy > p:not(.eyebrow):not(.contact-note) {
    max-width: 350px;
    font-size: 1rem;
  }

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

  .footer-brand {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-brand img {
    width: 156px;
    height: 84px;
  }

  .footer-bottom {
    gap: 12px;
    flex-direction: column;
    margin-top: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .hero-picture img,
  .hero-content > *,
  .motion-enhanced .motion-reveal-media,
  .motion-enhanced .motion-reveal-media.is-revealed,
  .application-media img,
  .factory-video-link {
    clip-path: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .motion-enhanced .process-ledger::before {
    transform: scaleX(1);
    transition: none;
  }

  .path-list::after {
    display: none;
  }
}

@media (max-width: 399px) {
  .header-actions {
    gap: 4px;
  }

  .language-toggle {
    padding-inline: 6px;
    font-size: 0.75rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero-content h1 {
    max-width: 335px;
  }

  .hero-lead {
    max-width: 320px;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .site-header.is-scrolled {
    border-bottom-color: var(--line);
    background: #f9fbfd;
    box-shadow: 0 8px 24px rgba(7, 20, 37, 0.08);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
