.home-page {
  --home-primary: var(--c-brand);
  --home-primary-dark: var(--c-brand-dark);
  --home-heading: #111827;
  --home-text: #344054;
  --home-muted: #667085;
  --home-border: #e3e7ec;
  --home-surface: #ffffff;
  --home-background: #f5f7f9;
  --home-container: 1720px;
  --home-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  --home-gutter: clamp(22px, 3.2vw, 72px);
  --home-section-space: clamp(64px, 5.3vw, 96px);
  overflow: clip;
  color: var(--home-text);
  background: var(--home-surface);
}

body.home {
  overflow-x: clip;
}

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

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

/* Homepage motion layer: restrained industrial polish with a reduced-motion escape hatch. */
@media (prefers-reduced-motion: no-preference) {
  .home-page.motion-ready .home-section.motion-reveal,
  .home-page.motion-ready .home-cta.motion-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 620ms ease, transform 620ms cubic-bezier(.22,.61,.36,1);
  }

  .home-page.motion-ready .motion-reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .home-page.motion-ready .home-hero__image {
    animation: home-hero-breathe 12s ease-in-out infinite alternate;
    transform-origin: 58% 52%;
  }

  .home-page.motion-ready .home-equipment-card,
  .home-page.motion-ready .home-solution-card,
  .home-page.motion-ready .home-insight-card {
    transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
    will-change: transform;
  }

  .home-page.motion-ready .home-equipment-card:hover,
  .home-page.motion-ready .home-solution-card:hover,
  .home-page.motion-ready .home-insight-card:hover {
    transform: translateY(-6px);
  }

  .home-page.motion-ready .home-equipment-card__media img,
  .home-page.motion-ready .home-solution-card__media img,
  .home-page.motion-ready .home-insight-card__media img {
    transition: transform 420ms ease;
  }

  .home-page.motion-ready .home-equipment-card:hover img,
  .home-page.motion-ready .home-solution-card:hover img,
  .home-page.motion-ready .home-insight-card:hover img {
    transform: scale(1.035);
  }

}

@keyframes home-hero-breathe {
  from { transform: scale(1); }
  to { transform: scale(1.025); }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .home-section.motion-reveal,
  .home-page .home-cta.motion-reveal {
    opacity: 1;
    transform: none;
  }
}

.home-page > section {
  content-visibility: visible;
  contain-intrinsic-block-size: none;
}

.home-page a {
  color: inherit;
  text-decoration: none;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page p {
  overflow-wrap: anywhere;
}

.home-page h1,
.home-page h2,
.home-page h3 {
  color: var(--home-heading);
  letter-spacing: 0;
}

.home-container {
  width: min(calc(100% - var(--home-gutter) * 2), var(--home-container));
  margin-inline: auto;
}

.home-section {
  padding-block: var(--home-section-space);
}

.home-eyebrow {
  margin: 0 0 13px;
  color: var(--home-primary);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 34px;
}

.home-heading-row h2,
.home-engineering__copy h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 780;
  line-height: 1.14;
}

.home-text-link {
  min-height: 44px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--home-primary);
  font-size: 13px;
  font-weight: 700;
}

.home-text-link svg {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

.home-text-link:hover svg {
  transform: translateX(3px);
}

.home-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.home-button svg {
  width: 18px;
  height: 18px;
}

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

.home-button--primary {
  color: #fff;
  background: var(--home-primary);
  border-color: var(--home-primary);
  box-shadow: 0 10px 24px rgba(237, 28, 36, 0.2);
}

.home-button--primary:hover {
  background: var(--home-primary-dark);
  border-color: var(--home-primary-dark);
}

.home-button--outline {
  color: var(--home-primary);
  background: #fff;
  border-color: var(--home-primary);
}

.home-button--outline:hover {
  color: #fff;
  background: var(--home-primary);
}

.home-page a:focus-visible,
.home-page button:focus-visible {
  outline: 3px solid #111827;
  outline-offset: 3px;
}

body.home .site-header.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #e9edf1;
  box-shadow: none;
}

body.home .site-header .menu .current-menu-item > a,
body.home .site-header .menu .current_page_item > a {
  color: var(--home-primary, var(--c-brand));
}

.home-hero {
  position: relative;
  min-height: 678px;
  overflow: hidden;
  background: #f3f6f8;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(132, 146, 166, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(132, 146, 166, 0.055) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, #000, transparent 63%);
  pointer-events: none;
}

.home-hero__inner {
  min-height: 678px;
  display: grid;
  grid-template-columns: minmax(0, 43%) minmax(0, 57%);
  align-items: stretch;
}

.home-hero__copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: 64px 26px 84px 0;
}

.home-hero h1 {
  margin: 0;
  font-size: clamp(56px, 4.9vw, 78px);
  font-weight: 820;
  line-height: 0.97;
}

.home-hero h1 span {
  display: block;
}

.home-hero h1 .home-hero__pre {
  display: block;
  margin-bottom: 6px;
  color: var(--home-primary);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.home-hero h1 .is-accent {
  color: var(--home-primary);
}

.home-hero__description {
  max-width: 620px;
  margin: 28px 0 0;
  color: #475467;
  font-size: 16px;
  line-height: 1.65;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.home-hero__benefits {
  max-width: 690px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.home-hero__benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #475467;
  font-size: 11px;
  font-weight: 650;
}

.home-hero__benefits svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--home-primary);
}

.home-hero__visual {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  width: 59%;
}

.home-hero__visual::before {
  content: '';
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 29%;
  background: linear-gradient(90deg, #f3f6f8 0%, rgba(243, 246, 248, 0.88) 28%, rgba(243, 246, 248, 0) 100%);
  pointer-events: none;
}

.home-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-statistics-wrap {
  position: relative;
  z-index: 5;
  margin-top: -43px;
}

.home-statistics {
  min-height: 108px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  padding: 18px 8px;
  background: #fff;
  border: 1px solid var(--home-border);
  border-radius: 5px;
  box-shadow: var(--home-shadow);
}

.home-statistic {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 22px;
  border-left: 1px solid #e9edf1;
}

.home-statistic:first-child {
  border-left: 0;
}

.home-statistic > svg {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  color: var(--home-primary);
  stroke-width: 1.6;
}

.home-statistic strong,
.home-statistic span {
  display: block;
}

.home-statistic strong {
  color: var(--home-primary);
  font-size: 23px;
  font-weight: 800;
  line-height: 1.1;
}

.home-statistic span {
  margin-top: 4px;
  color: var(--home-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-equipment {
  padding-top: calc(var(--home-section-space) + 24px);
}

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

.home-equipment-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--home-border);
  border-radius: 7px;
  box-shadow: 0 2px 8px rgba(16, 24, 40, 0.025);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.home-equipment-card:hover {
  transform: translateY(-3px);
  border-color: rgba(237, 28, 36, 0.72);
  box-shadow: 0 13px 30px rgba(16, 24, 40, 0.08);
}

.home-equipment-card > a {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.home-equipment-card__media {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: 17px 20px 4px;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfcfd, #fff);
}

.home-equipment-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-equipment-card__copy {
  min-height: 104px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px 14px;
}

.home-equipment-card__copy h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.3;
}

.home-equipment-card__copy p {
  display: block;
  margin: 5px 0 0;
  overflow: visible;
  overflow-wrap: anywhere;
  color: var(--home-muted);
  font-size: 11px;
  line-height: 1.45;
  -webkit-box-orient: initial;
  -webkit-line-clamp: unset;
}

.home-equipment-card__copy > svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--home-primary);
  transform: translateY(-6px);
  transition: transform 180ms ease;
}

.home-equipment-card:hover .home-equipment-card__copy > svg {
  transform: translate(3px, -6px);
}

.home-solutions,
.home-insights {
  background: #f7f9fb;
}

/* Reference-specific spacing for the integrated solutions band. */
.home-solutions {
  padding-top: calc(var(--home-section-space) - 12px);
  padding-bottom: calc(var(--home-section-space) - 8px);
  background: linear-gradient(180deg, #f6f8fb 0%, #f9fafc 100%);
}

.home-solutions .home-heading-row {
  margin-bottom: 38px;
}

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

.home-solution-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--home-border);
  border-radius: 7px;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.home-solution-card:hover {
  transform: translateY(-3px);
  border-color: rgba(237, 28, 36, 0.65);
  box-shadow: 0 14px 32px rgba(16, 24, 40, 0.08);
}

.home-solution-card > a {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.home-solution-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e9edf1;
}

.home-solution-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.home-solution-card:hover .home-solution-card__media img {
  transform: scale(1.018);
}

.home-solution-card__copy {
  min-height: 94px;
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
}

.home-solution-card__copy > svg:first-child {
  width: 25px;
  height: 25px;
  color: var(--home-primary);
}

.home-solution-card__copy h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.28;
}

.home-solution-card__copy p {
  margin: 5px 0 0;
  color: var(--home-muted);
  font-size: 11px;
  line-height: 1.45;
}

.home-solution-card__arrow {
  display: none;
}

.home-engineering__layout {
  display: grid;
  grid-template-columns: minmax(0, 55%) minmax(0, 45%);
  align-items: center;
}

.home-engineering__media {
  position: relative;
  z-index: 1;
  aspect-ratio: 1.92 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: var(--home-background);
}

.home-engineering__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-engineering__copy {
  position: relative;
  z-index: 2;
  padding: 18px 0 18px 6%;
}

.home-engineering__description {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.7;
}

.home-engineering__copy ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}

.home-engineering__copy li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #475467;
  font-size: 13px;
  line-height: 1.45;
}

.home-engineering__copy li svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--home-primary);
  stroke-width: 2.5;
}

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

.home-insight-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--home-border);
  border-radius: 7px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.home-insight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(16, 24, 40, 0.08);
}

.home-insight-card > a {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.home-insight-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e9edf1;
}

.home-insight-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-insight-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(17, 24, 39, 0.72);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.home-insight-card__play svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.home-insight-card__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px 18px 20px;
}

.home-insight-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.home-insight-card__meta span {
  padding: 4px 7px;
  color: var(--home-primary);
  background: rgba(237, 28, 36, 0.06);
  border: 1px solid rgba(237, 28, 36, 0.28);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.home-insight-card__meta time {
  color: var(--home-muted);
  font-size: 11px;
}

.home-insight-card h3 {
  margin: 14px 0 0;
  font-size: 20px;
  font-weight: 760;
  line-height: 1.28;
}

.home-insight-card p {
  display: block;
  margin: 10px 0 18px;
  overflow: visible;
  overflow-wrap: anywhere;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.55;
  -webkit-box-orient: initial;
  -webkit-line-clamp: unset;
}

.home-insight-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--home-primary);
  font-size: 13px;
}

.home-insight-card strong svg {
  width: 16px;
  height: 16px;
}

.home-cta {
  padding: 28px 0;
  background: var(--home-background);
}

body.home .site-footer.site-footer {
  margin-top: 0;
}

@media (max-width: 1440px) {
  .home-page {
    --home-gutter: 48px;
  }

  .home-hero,
  .home-hero__inner {
    min-height: 620px;
  }

  .home-hero h1 {
    font-size: 52px;
  }

  .home-statistic {
    gap: 10px;
    padding-inline: 15px;
  }

  .home-statistic > svg {
    width: 30px;
    height: 30px;
  }

  .home-statistic strong {
    font-size: 20px;
  }
}

@media (max-width: 1366px) {
  .home-page {
    --home-gutter: 40px;
  }

  .home-hero,
  .home-hero__inner {
    min-height: 600px;
  }

  .home-hero__inner {
    grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  }

  .home-hero__copy {
    padding-right: 12px;
  }

  .home-hero h1 {
    font-size: 42px;
    line-height: 0.99;
  }

  .home-hero__description {
    max-width: 520px;
    font-size: 15px;
  }

  .home-hero__visual {
    width: 56%;
  }

  .home-statistics-wrap {
    margin-top: -36px;
  }

  .home-equipment__grid {
    gap: 14px;
  }

  .home-equipment-card__media {
    padding: 16px 18px 2px;
  }

  .home-equipment-card__copy {
    min-height: 100px;
    padding: 10px 12px 12px;
  }

  .home-equipment-card__copy h3 {
    font-size: 15px;
  }

  .home-equipment-card__copy p {
    font-size: 10px;
  }
}

@media (max-width: 1281px) {
  .home-equipment__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1200px) {
  .home-page {
    --home-section-space: 86px;
  }

  .home-hero h1 {
    font-size: 46px;
  }

  .home-hero__copy {
    padding-right: 10px;
  }

  .home-hero__description {
    max-width: 490px;
    font-size: 15px;
  }

  .home-statistics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-block: 12px;
  }

  .home-statistic {
    min-height: 72px;
    border-left: 1px solid #e9edf1;
    border-top: 1px solid #e9edf1;
  }

  .home-statistic:nth-child(-n + 3) {
    border-top: 0;
  }

  .home-statistic:nth-child(3n + 1) {
    border-left: 0;
  }

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

  .home-heading-row h2,
  .home-engineering__copy h2 {
    font-size: 32px;
  }
}

@media (max-width: 1025px) {
  .home-page {
    --home-gutter: 32px;
  }

  .home-hero,
  .home-hero__inner {
    min-height: 570px;
  }

  .home-hero__inner {
    grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  }

  .home-hero__visual {
    width: 54%;
  }

  .home-hero h1 {
    font-size: 42px;
  }

  .home-hero__benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

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

  .home-engineering__layout {
    grid-template-columns: minmax(0, 50%) minmax(0, 50%);
  }

  .home-engineering__copy {
    padding-left: 7%;
  }
}

@media (max-width: 768px) {
  .home-solutions {
    padding-block: var(--home-section-space);
  }

  .home-solutions .home-heading-row {
    margin-bottom: 28px;
  }

  .home-page {
    --home-gutter: 24px;
    --home-section-space: 72px;
  }

  .home-hero,
  .home-hero__inner {
    min-height: 0;
  }

  .home-hero__inner {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .home-hero__copy {
    width: min(calc(100% - var(--home-gutter) * 2), var(--home-container));
    align-self: auto;
    margin-inline: auto;
    padding: 64px 0 35px;
  }

  .home-hero h1 {
    font-size: 42px;
    line-height: 1.04;
  }

  .home-hero__description {
    margin-top: 22px;
    font-size: 15px;
  }

  .home-hero__benefits {
    margin-top: 28px;
  }

  .home-hero__visual {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .home-hero__visual::before {
    inset: 0 0 auto;
    width: 100%;
    height: 20%;
    background: linear-gradient(180deg, #f3f6f8 0%, rgba(243, 246, 248, 0) 100%);
  }

  .home-hero__image {
    object-fit: cover;
  }

  .home-statistics-wrap {
    margin-top: 0;
    padding-top: 24px;
    background: #fff;
  }

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

  .home-statistic,
  .home-statistic:nth-child(3n + 1) {
    border-left: 1px solid #e9edf1;
  }

  .home-statistic:nth-child(-n + 3) {
    border-top: 1px solid #e9edf1;
  }

  .home-statistic:nth-child(-n + 2) {
    border-top: 0;
  }

  .home-statistic:nth-child(2n + 1) {
    border-left: 0;
  }

  .home-equipment {
    padding-top: var(--home-section-space);
  }

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

  .home-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
  }

  .home-heading-row .home-text-link {
    min-height: 40px;
  }

  .home-engineering__layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .home-engineering__copy {
    padding: 0;
  }

}

@media (max-width: 640px) {
  .home-solutions__grid,
  .home-insights__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .home-page {
    --home-gutter: 18px;
    --home-section-space: 60px;
  }

  .home-eyebrow {
    font-size: 11px;
  }

  .home-hero__copy {
    padding-top: 50px;
  }

  .home-hero h1 {
    font-size: 32px;
  }

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

  .home-button {
    width: 100%;
  }

  .home-hero__benefits {
    grid-template-columns: 1fr;
  }

  .home-hero__visual {
    aspect-ratio: 4 / 3;
  }

  .home-statistics {
    padding-inline: 0;
  }

  .home-statistic {
    min-height: 82px;
    gap: 8px;
    padding-inline: 11px;
  }

  .home-statistic > svg {
    width: 25px;
    height: 25px;
  }

  .home-statistic strong {
    font-size: 18px;
  }

  .home-statistic span {
    font-size: 9px;
  }

  .home-heading-row h2,
  .home-engineering__copy h2 {
    font-size: 28px;
  }

  .home-equipment__grid {
    grid-template-columns: 1fr;
  }

  .home-equipment-card__copy h3,
  .home-solution-card__copy h3 {
    font-size: 16px;
  }

  .home-engineering__media {
    aspect-ratio: 4 / 3;
  }

  .home-insight-card h3 {
    font-size: 18px;
  }

  .home-cta {
    padding-block: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .home-page *,
  .home-page *::before,
  .home-page *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }

  .home-page .home-equipment-card:hover,
  .home-page .home-solution-card:hover,
  .home-page .home-insight-card:hover,
  .home-page .home-button:hover {
    transform: none;
  }
}

@media (min-width: 1025px) and (max-width: 1366px) {
  .home-hero,
  .home-hero__inner {
    min-height: 600px !important;
  }

  .home-hero__inner {
    display: grid !important;
    grid-template-columns: minmax(0, 40%) minmax(0, 60%) !important;
    gap: 28px !important;
    align-items: center !important;
  }

  .home-hero__copy {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: auto !important;
    max-width: none !important;
    padding: 54px 0 74px !important;
  }

  .home-hero__visual {
    position: relative !important;
    inset: auto !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    align-self: center !important;
    overflow: hidden !important;
    border-radius: 6px !important;
  }

  .home-hero__description {
    max-width: 100% !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .home-hero,
  .home-hero__inner {
    min-height: 0 !important;
  }

  .home-hero__inner {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 28px !important;
    padding: 48px 0 0 !important;
  }

  .home-hero__copy {
    width: min(calc(100% - var(--home-gutter) * 2), var(--home-container)) !important;
    margin-inline: auto !important;
    padding: 0 !important;
  }

  .home-hero__visual {
    position: relative !important;
    inset: auto !important;
    width: min(calc(100% - var(--home-gutter) * 2), var(--home-container)) !important;
    height: auto !important;
    margin-inline: auto !important;
    aspect-ratio: 16 / 8 !important;
    overflow: hidden !important;
    border-radius: 6px !important;
  }

  .home-statistics-wrap {
    margin-top: 0 !important;
    padding-top: 24px !important;
    background: #fff !important;
  }
}

/* Homepage chrome alignment for the supplied Home reference. */
@media (min-width: 1025px) {
  body.home .site-header .header-search {
    display: none;
  }

  body.home .site-header .language-switcher summary > svg:first-child {
    display: none;
  }

  body.home .site-header .language-switcher summary {
    min-width: 67px;
    justify-content: center;
    border: 1px solid #e6e9ee;
    border-radius: 3px;
  }
}

.home-page .home-button:focus-visible,
.home-page .home-text-link:focus-visible,
.home-page .site-header a:focus-visible,
.home-page .site-header button:focus-visible {
  outline: 3px solid rgba(17, 24, 39, 0.95);
  outline-offset: 3px;
}

.home-page .home-equipment-card a,
.home-page .home-solution-card a,
.home-page .home-insight-card a {
  display: block;
}

.home-page .home-hero h1 .home-hero__pre {
  margin-bottom: 6px;
  color: var(--home-primary);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Supplied homepage banner calibration: keep the desktop hero compact and preserve the intended one-line title treatment. */
@media (min-width: 1441px) {
  .home-hero,
  .home-hero__inner {
    min-height: 650px;
  }

  .home-hero__inner {
    grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  }

  .home-hero__copy {
    padding: 48px 24px 48px 0;
  }

  .home-hero h1 {
    font-size: clamp(58px, 3.45vw, 66px);
    line-height: 0.98;
  }

  .home-hero__description {
    max-width: 650px;
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.55;
  }

  .home-hero__actions {
    margin-top: 20px;
  }

  .home-hero__actions .home-button {
    min-height: 46px;
    padding: 11px 20px;
  }

  .home-hero__benefits {
    margin-top: 24px;
    gap: 10px 22px;
  }

  .home-hero__benefits li {
    font-size: 10px;
  }

  .home-hero__visual {
    width: 54%;
  }
}

/* Keep the complete mobile proposition in view while exposing the product
 * visual on common 844px-tall phone and compact-tablet screens. */
@media (max-width: 640px) {
  html body.home[class] main#main-content.home-page .home-hero__inner {
    width: calc(100% - 32px) !important;
    gap: 0 !important;
    padding: 22px 0 20px !important;
  }

  html body.home[class] main#main-content.home-page .home-hero__copy {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  html body.home[class] main#main-content.home-page .home-eyebrow {
    margin-bottom: 12px !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    letter-spacing: 0 !important;
  }

  html body.home[class] main#main-content.home-page .home-hero h1 {
    font-size: 32px !important;
    line-height: 1.04 !important;
  }

  html body.home[class] main#main-content.home-page .home-hero__description {
    margin-top: 16px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  html body.home[class] main#main-content.home-page .home-hero__actions {
    display: grid !important;
    gap: 10px !important;
    margin-top: 18px !important;
  }

  html body.home[class] main#main-content.home-page .home-hero__actions .home-button {
    min-height: 48px !important;
    height: 48px !important;
    padding-block: 10px !important;
  }

  html body.home[class] main#main-content.home-page .home-hero__benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px 12px !important;
    margin-top: 18px !important;
  }

  html body.home[class] main#main-content.home-page .home-hero__benefits li {
    min-width: 0;
    align-items: flex-start;
    font-size: 13px !important;
    line-height: 1.4 !important;
  }

  html body.home[class] main#main-content.home-page .home-hero__benefits li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  html body.home[class] main#main-content.home-page .home-hero__visual {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 9 !important;
    margin: 18px 0 0 !important;
  }
}

@media (min-width: 481px) and (max-width: 640px) {
  html body.home[class] main#main-content.home-page .home-hero__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  html body.home[class] main#main-content.home-page .home-hero__benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  html body.home[class] main#main-content.home-page .home-hero__benefits li:last-child:nth-child(odd) {
    grid-column: auto !important;
  }
}
