:root {
  --navy: #003f7d;
  --navy-deep: #002f5f;
  --blue-soft: #eaf2f9;
  --green: #17815b;
  --orange: #c86d21;
  --ink: #17212a;
  --muted: #5d6872;
  --line: #d7dde2;
  --line-dark: #bac4cc;
  --surface: #f5f7f8;
  --white: #ffffff;
  --footer: #243039;
  --header-height: 72px;
  --shell: 1180px;
  --shadow: 0 12px 32px rgba(26, 42, 54, 0.1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Helvetica Neue", "Hiragino Sans", "Yu Gothic", Meiryo, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid #ec9c3b;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-deep);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.section {
  padding: 88px 24px;
}

.section-shell {
  width: min(100%, var(--shell));
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading--inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.section-kicker,
.eyebrow {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.text-link i {
  transition: transform 180ms ease;
}

.text-link:hover i,
.case-card:hover span i,
.use-case__content a:hover i,
.news-list a:hover i {
  transform: translateX(5px);
}

.text-link--orange {
  color: var(--orange);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(23, 33, 42, 0.12);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 5px 18px rgba(21, 34, 44, 0.09);
}

.site-header__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: min(100%, 1380px);
  height: 100%;
  margin: 0 auto;
  padding: 0 28px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  color: #111820;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  background: var(--navy);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button i {
  font-size: 30px;
  line-height: 1;
}

.mobile-nav {
  position: fixed;
  z-index: 99;
  inset: var(--header-height) 0 0;
  padding: 18px 24px 40px;
  background: var(--white);
  overflow-y: auto;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 8px 4px;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

.hero {
  position: relative;
  height: min(620px, 41.7vw, calc(100svh - 120px));
  min-height: 360px;
  overflow: hidden;
  background: #eef3f6;
}

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

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: min(100%, 1380px);
  height: 100%;
  margin: 0 auto;
  padding: 36px 48px 58px;
}

.hero__copy {
  width: min(54%, 700px);
}

.hero .eyebrow {
  margin-bottom: 18px;
  font-size: 13px;
}

.hero h1 {
  margin: 0;
  color: #111820;
  font-size: clamp(30px, 3.7vw, 56px);
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero__lead {
  margin: 22px 0 0;
  color: #27333d;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 185px;
  min-height: 54px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--navy);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

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

.button--primary {
  color: var(--white);
  background: var(--navy);
}

.button--primary:hover {
  background: var(--navy-deep);
}

.button--secondary {
  color: var(--navy-deep);
  background: rgba(255, 255, 255, 0.9);
}

.button--secondary:hover {
  color: var(--white);
  background: var(--navy);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 13px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #2d3942;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  transform: translateX(-50%);
}

.scroll-cue i {
  font-size: 18px;
  animation: scrollCue 1.6s ease-in-out infinite;
}

@keyframes scrollCue {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.products {
  padding-top: 34px;
  padding-bottom: 96px;
  padding-right: 48px;
  padding-left: 48px;
}

.products .section-heading {
  display: none;
}

.product-selector {
  border: 1px solid var(--line);
  background: var(--white);
}

.product-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line-dark);
}

.product-tab {
  min-height: 58px;
  padding: 12px 18px;
  color: #303a42;
  background: var(--white);
  border: 0;
  border-right: 1px solid var(--line);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: color 160ms ease, background 160ms ease;
}

.product-tab:last-child {
  border-right: 0;
}

.product-tab:hover {
  background: var(--surface);
}

.product-tab.is-active {
  color: var(--white);
  background: var(--navy);
}

.product-panel {
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(340px, 42%);
  grid-template-rows: auto auto;
}

.product-panel[hidden] {
  display: none;
}

.product-panel__media {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 540px;
  padding: 34px 32px 22px;
  border-right: 1px solid var(--line);
}

.product-main-image {
  width: 100%;
  height: 420px;
  margin: auto;
  object-fit: contain;
  object-position: center;
}

.product-gallery {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.gallery-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--navy);
  background: var(--white);
  border: 0;
  cursor: pointer;
}

.gallery-arrow:hover {
  background: var(--blue-soft);
}

.product-thumbnails {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
}

.product-thumb {
  width: 84px;
  height: 60px;
  padding: 3px;
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease;
}

.product-thumb:hover {
  transform: translateY(-2px);
  border-color: var(--navy);
}

.product-thumb.is-active {
  border: 2px solid var(--navy);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-panel__details {
  min-width: 0;
  padding: 48px 38px 32px;
}

.product-category {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.product-panel__details h2 {
  margin: 0;
  color: #14232d;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.35;
}

.product-summary {
  margin: 12px 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.spec-list {
  margin: 0 0 22px;
  border-top: 1px solid var(--line);
}

.spec-list div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  min-height: 34px;
  border-bottom: 1px solid var(--line);
}

.spec-list dt,
.spec-list dd {
  margin: 0;
  padding: 7px 8px;
  font-size: 12px;
  line-height: 1.55;
}

.spec-list dt {
  color: #2e3942;
  font-weight: 700;
  background: var(--surface);
}

.spec-list dd {
  color: var(--muted);
}

.application-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 130px repeat(4, 1fr);
  min-height: 66px;
  border-top: 1px solid var(--line);
  background: #fbfcfc;
}

.application-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 14px;
  color: #48545d;
  font-size: 12px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.application-strip span:last-child {
  border-right: 0;
}

.application-strip i {
  color: var(--navy);
  font-size: 21px;
}

.application-strip__label {
  color: #27333d !important;
  font-weight: 700;
}

.use-cases {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.use-case {
  display: grid;
  grid-template-columns: minmax(0, 52.5%) minmax(0, 47.5%);
  min-height: 350px;
  border-bottom: 1px solid var(--line);
}

.use-case:last-child {
  border-bottom: 0;
}

.use-case--reverse .use-case__image {
  order: 2;
}

.use-case__image {
  min-width: 0;
  overflow: hidden;
}

.use-case__image img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.use-case:hover .use-case__image img {
  transform: scale(1.025);
}

.use-case__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px clamp(38px, 6vw, 92px);
  background: var(--white);
}

.use-case__content::after {
  position: absolute;
  top: 54px;
  right: 22px;
  bottom: 54px;
  width: 3px;
  background: var(--navy);
  content: "";
}

.use-case__content--green::after {
  background: var(--green);
}

.use-case__content--orange::after {
  background: var(--orange);
}

.use-case__number {
  margin: 0 0 12px;
  color: #6d7780;
  font-size: 12px;
}

.use-case__number span {
  margin-left: 7px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
}

.use-case__content--green .use-case__number span,
.use-case__content--green a {
  color: var(--green);
}

.use-case__content--orange .use-case__number span,
.use-case__content--orange a {
  color: var(--orange);
}

.use-case__content h3 {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 35px);
  font-weight: 600;
  line-height: 1.45;
}

.use-case__content > p:not(.use-case__number) {
  max-width: 550px;
  margin: 18px 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.use-case__content a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.use-case__content a i {
  transition: transform 180ms ease;
}

.strengths {
  padding-top: 72px;
  padding-bottom: 78px;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strength-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  min-width: 0;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  transition: background 180ms ease;
}

.strength-item:last-child {
  border-right: 0;
}

.strength-item:hover {
  background: var(--surface);
}

.strength-item > i {
  color: #3f4b54;
  font-size: 46px;
  line-height: 1;
}

.strength-item h3 {
  margin: 1px 0 8px;
  font-size: 17px;
  line-height: 1.45;
}

.strength-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.case-studies {
  padding-top: 74px;
  padding-bottom: 78px;
  background: var(--surface);
}

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

.case-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.case-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.case-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.case-card h3 {
  margin: 18px 18px 8px;
  font-size: 16px;
  line-height: 1.5;
}

.case-card p {
  flex: 1 1 auto;
  margin: 0 18px 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.case-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 18px 18px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.case-card span i {
  transition: transform 180ms ease;
}

.news {
  padding-top: 62px;
  padding-bottom: 78px;
}

.news-title-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.news-title-wrap span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.news-list {
  border-top: 1px solid var(--line);
}

.news-list a {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 30px;
  align-items: center;
  min-height: 54px;
  border-bottom: 1px solid var(--line);
  transition: background 160ms ease;
}

.news-list a:hover {
  background: var(--surface);
}

.news-list time {
  padding: 10px 16px;
  color: var(--muted);
  font-size: 12px;
}

.news-list span {
  min-width: 0;
  padding: 10px 14px;
  font-size: 13px;
}

.news-list i {
  color: var(--navy);
  transition: transform 180ms ease;
}

.site-footer {
  color: #dce3e7;
  background: var(--footer);
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.15fr 2.1fr 1fr;
  gap: 58px;
  width: min(calc(100% - 48px), var(--shell));
  margin: 0 auto;
  padding: 54px 0 48px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
}

.footer-company p,
.footer-company > a:not(.footer-brand) {
  display: block;
  margin: 8px 0;
  color: #c2cdd3;
  font-size: 12px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-nav h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.footer-nav a {
  display: block;
  margin: 7px 0;
  color: #c2cdd3;
  font-size: 11px;
}

.footer-nav a:hover,
.site-footer__bottom a:hover {
  color: var(--white);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 20px;
  border: 1px solid #64717a;
}

.footer-contact p,
.footer-contact span {
  margin: 0 0 10px;
  font-size: 11px;
}

.footer-contact__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 46px;
  margin-bottom: 15px;
  padding: 9px 14px;
  color: var(--footer);
  background: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.footer-contact__phone {
  color: var(--white);
  font-size: 19px;
  font-weight: 700;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 48px), var(--shell));
  margin: 0 auto;
  min-height: 62px;
  color: #aebac1;
  border-top: 1px solid #4b5962;
  font-size: 10px;
}

.site-footer__bottom div {
  display: flex;
  gap: 26px;
}

.js .reveal {
  opacity: 1;
  transform: none;
}

.js .reveal.is-visible {
  animation: revealUp 650ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@media (max-width: 1080px) {
  .site-header__inner {
    padding-inline: 22px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .hero__inner {
    padding-inline: 32px;
  }

  .hero__copy {
    width: 51%;
  }

  .product-panel {
    grid-template-columns: minmax(0, 56%) minmax(320px, 44%);
  }

  .product-panel__media {
    min-height: 410px;
    padding-inline: 22px;
  }

  .product-main-image {
    height: 300px;
  }

  .product-panel__details {
    padding: 28px 24px 24px;
  }

  .product-panel__details h2 {
    font-size: 25px;
  }

  .use-case {
    min-height: 280px;
  }

  .use-case__image img {
    min-height: 280px;
  }

  .use-case__content {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .application-strip span {
    padding-inline: 8px;
  }

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

  .strength-item:nth-child(2) {
    border-right: 0;
  }

  .strength-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .products {
    padding-bottom: 40px;
  }

  .product-tab {
    min-height: 44px;
    font-size: 13px;
  }

  .product-panel__media {
    min-height: 300px;
    padding: 16px 16px 12px;
  }

  .product-main-image {
    height: 205px;
  }

  .product-gallery {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 5px;
    margin-top: 8px;
  }

  .gallery-arrow {
    width: 34px;
    height: 34px;
  }

  .product-thumbnails {
    gap: 6px;
  }

  .product-thumb {
    width: 64px;
    height: 45px;
  }

  .product-panel__details {
    padding: 18px 18px 14px;
  }

  .product-category {
    font-size: 10px;
  }

  .product-panel__details h2 {
    font-size: 22px;
  }

  .product-summary {
    margin: 6px 0 10px;
    font-size: 10px;
    line-height: 1.65;
  }

  .spec-list {
    margin-bottom: 12px;
  }

  .spec-list div {
    grid-template-columns: 88px minmax(0, 1fr);
    min-height: 25px;
  }

  .spec-list dt,
  .spec-list dd {
    padding: 3px 5px;
    font-size: 9px;
    line-height: 1.45;
  }

  .product-panel__details .text-link {
    font-size: 11px;
  }

  .application-strip {
    grid-template-columns: 100px repeat(4, 1fr);
    min-height: 44px;
  }

  .application-strip span {
    gap: 5px;
    padding: 7px 5px;
    font-size: 9px;
  }

  .application-strip i {
    font-size: 16px;
  }

  .use-case,
  .use-case__image img {
    min-height: 200px;
  }

  .use-case__content {
    padding: 26px 44px 26px 34px;
  }

  .use-case__content::after {
    top: 28px;
    bottom: 28px;
  }

  .use-case__number {
    margin-bottom: 6px;
    font-size: 9px;
  }

  .use-case__content h3 {
    font-size: 23px;
  }

  .use-case__content > p:not(.use-case__number) {
    margin: 9px 0 11px;
    font-size: 10px;
    line-height: 1.65;
  }

  .use-case__content a {
    font-size: 10px;
  }

  .strengths,
  .case-studies,
  .news {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .strength-grid,
  .case-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .strength-item,
  .strength-item:nth-child(2) {
    grid-template-columns: 38px 1fr;
    gap: 10px;
    padding: 16px 12px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .strength-item:last-child {
    border-right: 0;
  }

  .strength-item > i {
    font-size: 34px;
  }

  .strength-item h3 {
    margin-bottom: 4px;
    font-size: 13px;
  }

  .strength-item p {
    font-size: 9px;
    line-height: 1.6;
  }

  .case-grid {
    gap: 14px;
  }

  .case-card h3 {
    margin: 12px 12px 6px;
    font-size: 12px;
  }

  .case-card p {
    margin: 0 12px 10px;
    font-size: 9px;
  }

  .case-card span {
    margin: 0 12px 12px;
    font-size: 9px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .section {
    padding: 64px 20px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .brand {
    font-size: 21px;
  }

  .hero {
    height: min(620px, calc(100svh - 112px));
    min-height: 540px;
  }

  .hero__image {
    object-position: 58% center;
    opacity: 0.65;
  }

  .hero__inner {
    align-items: flex-start;
    padding: 58px 24px 70px;
  }

  .hero__copy {
    width: min(100%, 560px);
  }

  .hero h1 {
    max-width: 520px;
    font-size: 42px;
  }

  .hero__lead {
    max-width: 520px;
  }

  .products {
    padding-top: 48px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .product-panel {
    grid-template-columns: 1fr;
  }

  .product-panel__media {
    min-height: 0;
    padding: 24px 20px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-main-image {
    height: min(50vw, 390px);
    min-height: 280px;
  }

  .product-panel__details {
    padding: 30px 24px;
  }

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

  .application-strip__label {
    grid-column: 1 / -1;
  }

  .application-strip span:nth-child(3),
  .application-strip span:nth-child(5) {
    border-right: 0;
  }

  .application-strip span {
    border-bottom: 1px solid var(--line);
  }

  .application-strip span:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .use-case,
  .use-case--reverse {
    grid-template-columns: 1fr;
  }

  .use-case--reverse .use-case__image {
    order: 0;
  }

  .use-case__image img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .use-case__content {
    min-height: 310px;
    padding: 44px 42px 46px 24px;
  }

  .use-case__content::after {
    top: 40px;
    right: 18px;
    bottom: 40px;
  }

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

  .footer-company {
    grid-column: 1;
  }

  .footer-nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-contact {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 580px) {
  body {
    font-size: 15px;
  }

  .section {
    padding: 54px 18px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading--inline {
    align-items: flex-start;
  }

  .section-heading h2 {
    font-size: 27px;
  }

  .site-header__inner {
    padding-inline: 18px;
  }

  .hero {
    min-height: 540px;
  }

  .hero__image {
    object-position: 61% center;
    opacity: 0.48;
  }

  .hero__inner {
    padding: 48px 20px 72px;
  }

  .hero .eyebrow {
    font-size: 10px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.42;
  }

  .hero__lead {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.85;
  }

  .hero__actions {
    flex-direction: column;
    gap: 10px;
    width: min(100%, 300px);
    margin-top: 24px;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .product-tabs {
    grid-template-columns: 1fr;
  }

  .product-tab {
    min-height: 48px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-tab:last-child {
    border-bottom: 0;
  }

  .product-panel__media {
    padding-inline: 12px;
  }

  .product-main-image {
    height: 260px;
    min-height: 0;
  }

  .product-gallery {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 5px;
  }

  .gallery-arrow {
    width: 34px;
    height: 38px;
  }

  .product-thumbnails {
    gap: 6px;
  }

  .product-thumb {
    width: 67px;
    height: 49px;
  }

  .product-panel__details {
    padding-inline: 18px;
  }

  .product-panel__details h2 {
    font-size: 25px;
  }

  .spec-list div {
    grid-template-columns: 94px minmax(0, 1fr);
  }

  .application-strip {
    grid-template-columns: 1fr;
  }

  .application-strip span,
  .application-strip span:nth-child(3),
  .application-strip span:nth-child(5) {
    min-height: 48px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .application-strip span:last-child {
    border-bottom: 0;
  }

  .use-case__content h3 {
    font-size: 25px;
  }

  .strength-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .strength-item,
  .strength-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .strength-item:last-child {
    border-bottom: 0;
  }

  .case-grid {
    gap: 18px;
  }

  .news-list a {
    grid-template-columns: 90px minmax(0, 1fr) 24px;
    min-height: 70px;
  }

  .news-list time {
    padding-inline: 8px;
  }

  .news-list span {
    padding-inline: 8px;
    font-size: 12px;
    line-height: 1.6;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 36px;
    width: min(calc(100% - 36px), var(--shell));
  }

  .footer-company,
  .footer-contact,
  .footer-nav {
    grid-column: 1;
  }

  .footer-company {
    grid-row: 1;
  }

  .footer-contact {
    grid-row: 2;
  }

  .footer-nav {
    grid-row: 3;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: min(calc(100% - 36px), var(--shell));
    padding: 18px 0;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
