:root {
  --red: #c30d23;
  --red-dark: #8a0a18;
  --red-light: #e0213a;
  --red-soft: #fff6ea;
  --ink: #1a1a1a;
  --muted: rgb(26 26 26 / 0.72);
  --subtle: #8c8c8c;
  --paper: #fff;
  --soft: #f4f4f4;
  --line: #e4e4e4;
  --page: 1240px;
  --shadow: 0 4px 16px rgb(26 26 26 / 0.12);
  --font-site: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", system-ui, sans-serif;
  --panel-border: #e4e4e4;
  --panel-shadow: 7px 7px 18px rgb(26 26 26 / 0.07), -7px -7px 18px rgb(255 255 255 / 0.92);
  --panel-hover-shadow: 0 4px 16px rgb(26 26 26 / 0.12);
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
}

@font-face {
  font-family: "Poppins";
  src: url("../home-en-exact-v80/fonts/Poppins-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
  scroll-snap-type: y proximity;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track-piece {
  border-radius: 6px;
  background-color: rgb(0 0 0 / 0.2);
}

::-webkit-scrollbar-thumb:vertical,
::-webkit-scrollbar-thumb:horizontal {
  border-radius: 6px;
  background-color: var(--red);
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-site);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  color: inherit;
}

img {
  max-width: 100%;
}

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

.page-width {
  width: min(calc(100% - 64px), var(--page));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: #000;
  transform: translateY(-150%);
}

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

.site-header-wrap {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  height: 130px;
  color: #fff;
  background: transparent;
  font-family: var(--font-site);
  transition: color 360ms ease, background 360ms ease, box-shadow 360ms ease;
}

.site-header-wrap.is-scrolled,
.site-header-wrap.has-open-menu {
  color: #595959;
  background: #fff;
  box-shadow: 0 5px 12px rgb(0 0 0 / 0.1);
}

.site-header {
  position: relative;
  width: 100%;
  max-width: 1720px;
  height: 130px;
  padding: 0 20px;
  margin: 0 auto;
}

.brand-link {
  position: absolute;
  top: 50px;
  left: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
}

.brand-logo,
.footer-logo {
  width: 126px;
  height: auto;
}

.brand-logo {
  width: auto;
  height: 30px;
  filter: contrast(0) brightness(2);
  transition: filter 360ms ease;
}

.site-header-wrap.is-scrolled .brand-logo,
.site-header-wrap.has-open-menu .brand-logo {
  filter: none;
}

.site-header-search-row {
  position: absolute;
  inset: 0;
}

.site-header-search {
  position: absolute;
  top: 16px;
  left: 50%;
  display: flex;
  width: auto;
  height: auto;
  padding: 10px 16px;
  border: 1px solid #f7f7f7;
  align-items: center;
  color: #f7f7f7;
  background: transparent;
  transform: translateX(-50%);
  transition: border-color 300ms ease, background 300ms ease;
}

.site-header-wrap.is-scrolled .site-header-search,
.site-header-wrap.has-open-menu .site-header-search {
  border-color: var(--red);
  color: #595959;
  background: #fff;
}

.site-search-label {
  flex: 0 0 auto;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid var(--red);
  color: var(--red);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.site-search-input {
  width: 33vw;
  min-width: 300px;
  max-width: 600px;
  height: 24px;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  outline: 0;
  color: inherit;
  background: transparent;
  font-family: Arial, sans-serif;
  font-size: 13.3333px;
}

.site-search-input::-webkit-search-cancel-button {
  display: none;
}

.site-search-input::placeholder {
  color: rgb(255 255 255 / 0.56);
}

.site-header-wrap.is-scrolled .site-search-input::placeholder,
.site-header-wrap.has-open-menu .site-search-input::placeholder {
  color: #a0a5af;
}

.site-search-submit {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  padding: 0;
  border: 0;
  place-items: center;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.site-search-icon {
  position: relative;
  width: 11px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.site-search-icon::after {
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 6px;
  height: 2px;
  background: currentColor;
  content: "";
  transform: rotate(45deg);
  transform-origin: left center;
}

.site-header-utilities {
  position: absolute;
  top: 42.5px;
  right: calc(20px + 1.5vw);
  display: flex;
  width: 164.5px;
  height: 45px;
  align-items: center;
  gap: 0;
}

.header-utility-link,
.header-language-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  transition: color 160ms ease;
}

.header-utility-link {
  width: 20px;
  height: 33px;
  flex: 0 0 20px;
  margin-right: 10px;
}

.header-utility-link:hover,
.header-utility-link:focus-visible,
.header-language-link:hover,
.header-language-link:focus-visible {
  color: var(--red);
}

.header-utility-tooltip {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  z-index: 50;
  min-width: max-content;
  padding: 7px 14px;
  color: #fff;
  background: var(--red);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 160ms ease, visibility 160ms ease;
}

.header-utility-link:hover .header-utility-tooltip,
.header-utility-link:focus-visible .header-utility-tooltip {
  opacity: 1;
  visibility: visible;
}

.header-utility-icon {
  width: 22px;
  height: 22px;
}

.header-inquiry-icon {
  width: 20px;
  height: 20px;
  filter: invert(1);
  transition: filter 360ms ease;
}

.site-header-wrap.is-scrolled .header-inquiry-icon,
.site-header-wrap.has-open-menu .header-inquiry-icon {
  filter: none;
}

.header-language-switcher {
  position: relative;
  z-index: 60;
  width: 74.5px;
  height: 45px;
  flex: 0 0 74.5px;
}

.header-language-link {
  width: 74.5px;
  height: 45px;
  flex: 0 0 74.5px;
  gap: 5px;
  padding: 0;
  border: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 45px;
  background: transparent;
  cursor: pointer;
}

.header-language-link > span:not(.header-language-chevron) {
  font-size: 14px;
}

.header-language-globe {
  width: 18px;
  height: 18px;
}

.header-language-chevron {
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.header-language-menu {
  position: absolute;
  top: 45px;
  right: 0;
  z-index: 61;
  min-width: 142px;
  padding: 7px 0;
  border: 1px solid #e1e1e1;
  margin: 0;
  color: #4a4a4a;
  background: #fff;
  box-shadow: 0 10px 24px rgb(0 0 0 / 0.14);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
}

.header-language-switcher.is-open .header-language-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.header-language-switcher.is-open .header-language-chevron {
  margin-top: 3px;
  transform: rotate(225deg);
}

.header-language-menu a {
  display: block;
  padding: 9px 16px;
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  white-space: nowrap;
}

.header-language-menu a:hover,
.header-language-menu a:focus-visible,
.header-language-menu .is-current a {
  color: var(--red);
  background: #f7f7f7;
}

.header-language-menu .is-current a {
  font-weight: 600;
}

.site-primary-nav {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 40px;
}

.site-nav-list {
  display: flex;
  height: 100%;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: inherit;
  font-size: 0;
  list-style: none;
  white-space: nowrap;
}

.site-nav-item {
  display: flex;
  width: 110px;
  height: auto;
  margin: 0 10px;
  align-items: stretch;
}

.site-nav-link,
.site-nav-trigger {
  position: relative;
  display: inline-flex;
  width: 100%;
  height: auto;
  padding: 0;
  border: 0;
  align-items: center;
  justify-content: center;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: color 180ms ease;
}

.site-nav-link::after,
.site-nav-trigger::after {
  display: none;
}

.site-nav-link:hover,
.site-nav-link:focus-visible,
.site-nav-trigger:hover,
.site-nav-trigger:focus-visible,
.site-nav-trigger.is-active {
  color: var(--red);
}

.nav-chevron {
  display: none;
}

.site-all-menu-item {
  width: 28px;
  flex: 0 1 auto;
  margin: 0 10px;
  justify-content: center;
  font-size: 0;
}

.site-all-menu-trigger {
  display: flex;
  width: 28px;
  height: 39px;
  padding: 0;
  border: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  color: var(--red);
  background: transparent;
  font-size: 9px;
  line-height: 1;
  cursor: pointer;
}

.all-menu-dots {
  display: flex;
  width: 28px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.all-menu-dots i {
  display: block;
  width: 6px;
  height: 6px;
  margin-bottom: 5px;
  border-radius: 1px;
  background: currentColor;
  transition: 300ms ease;
}

.all-menu-dots i:nth-child(3n + 2) {
  margin-right: 5px;
  margin-left: 5px;
}

.site-all-menu-trigger:hover .all-menu-dots i:nth-child(1),
.site-all-menu-trigger.is-active .all-menu-dots i:nth-child(1) {
  transform: translate(2px, -2px);
}

.site-all-menu-trigger:hover .all-menu-dots i:nth-child(2),
.site-all-menu-trigger.is-active .all-menu-dots i:nth-child(2) {
  transform: translateY(5px);
}

.site-all-menu-trigger:hover .all-menu-dots i:nth-child(3),
.site-all-menu-trigger.is-active .all-menu-dots i:nth-child(3) {
  transform: translate(-2px, -2px);
}

.site-all-menu-trigger:hover .all-menu-dots i:nth-child(4),
.site-all-menu-trigger.is-active .all-menu-dots i:nth-child(4) {
  transform: translate(2px, 2px);
}

.site-all-menu-trigger:hover .all-menu-dots i:nth-child(5),
.site-all-menu-trigger.is-active .all-menu-dots i:nth-child(5) {
  opacity: 0;
}

.site-all-menu-trigger:hover .all-menu-dots i:nth-child(6),
.site-all-menu-trigger.is-active .all-menu-dots i:nth-child(6) {
  transform: translate(-2px, 2px);
}

.site-mobile-menu-trigger {
  display: none;
}

.site-all-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  max-height: calc(100vh - 130px);
  overflow-y: auto;
  border-top: 1px solid #e7e9ed;
  visibility: hidden;
  opacity: 0;
  color: var(--ink);
  background: rgb(255 255 255 / 0.98);
  box-shadow: 0 20px 36px rgb(20 26 38 / 0.12);
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.site-all-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.site-all-menu-inner {
  padding: 34px 0 42px;
}

.site-all-menu-heading {
  display: flex;
  padding-bottom: 20px;
  border-bottom: 1px solid #dedfe3;
  align-items: center;
  justify-content: space-between;
}

.site-all-menu-heading h2 {
  margin: 0;
  font-size: 28px;
}

.site-all-menu-heading button {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid #d9dce1;
  color: #414752;
  background: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.site-all-menu-grid {
  display: grid;
  margin-top: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #e2e4e8;
  border-left: 1px solid #e2e4e8;
}

.site-all-menu-grid a,
.site-all-menu-grid button {
  display: flex;
  min-height: 72px;
  padding: 18px 20px;
  border: 0;
  border-right: 1px solid #e2e4e8;
  border-bottom: 1px solid #e2e4e8;
  align-items: center;
  justify-content: space-between;
  color: #252a34;
  background: #fff;
  font-size: 15px;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

.site-all-menu-grid a:hover,
.site-all-menu-grid a:focus-visible,
.site-all-menu-grid button:hover,
.site-all-menu-grid button:focus-visible {
  color: var(--red);
  background: #fafafa;
}

.site-mega-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  max-height: calc(100vh - 130px);
  overflow-x: hidden;
  overflow-y: auto;
  border-top: 1px solid #eceef2;
  visibility: hidden;
  opacity: 0;
  background: #f7f7f7;
  box-shadow: 0 20px 36px rgb(20 26 38 / 0.12);
  transform: translateY(-8px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.site-mega-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-menu-inner {
  width: min(calc(100% - 64px), 1366px);
  margin: 0 auto;
  padding: 36px 0 42px;
}

.mega-menu-heading {
  display: flex;
  margin-bottom: 20px;
  padding: 0 16px 20px;
  border-bottom: 1px solid #dedfe3;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.mega-menu-heading h2 {
  margin: 0;
  color: #151922;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
}

.mega-menu-heading > a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
}

.mega-menu-heading > a:hover,
.mega-menu-heading > a:focus-visible,
.mega-menu-links a:hover,
.mega-menu-links a:focus-visible,
.application-menu-grid a:hover,
.application-menu-grid a:focus-visible {
  color: var(--red);
}

.product-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-menu-group {
  min-width: 0;
  padding: 18px 16px 22px;
}

.mega-menu-group-title {
  display: inline-flex;
  color: var(--red);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.mega-menu-links {
  display: flex;
  margin-top: 14px;
  flex-direction: column;
  gap: 0;
}

.product-menu-category {
  min-width: 0;
  border-bottom: 1px solid rgb(216 219 225 / 0.72);
}

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

.product-menu-category-row {
  display: flex;
  min-height: 39px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-menu-category-row > a {
  min-width: 0;
  color: #616874;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  transition: color 160ms ease;
}

.product-submenu-trigger {
  position: relative;
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  padding: 0;
  border: 0;
  place-items: center;
  color: #7f8590;
  background: transparent;
  cursor: pointer;
}

.product-submenu-trigger span {
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.product-submenu-trigger:hover,
.product-submenu-trigger:focus-visible,
.product-submenu-trigger.is-active {
  color: var(--red);
}

.product-submenu-trigger.is-active span {
  margin-top: 4px;
  transform: rotate(225deg);
}

.product-subcategory-list {
  display: flex;
  padding: 1px 0 11px 12px;
  flex-direction: column;
  gap: 5px;
  animation: product-submenu-in 160ms ease both;
}

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

.product-subcategory-list a {
  position: relative;
  padding-left: 10px;
  color: #858b96;
  font-size: 13px;
  line-height: 1.5;
  transition: color 160ms ease;
}

.product-subcategory-list a::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

@keyframes product-submenu-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

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

.application-mega-menu {
  padding-bottom: 38px;
}

.application-menu-section {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 16px;
  align-items: start;
}

.application-menu-section + .application-menu-section {
  border-top: 1px solid #dedfe3;
}

.application-menu-grid {
  display: grid;
  grid-auto-rows: 48px;
  gap: 12px 16px;
}

.application-field-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solution-menu-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.application-menu-grid a {
  display: flex;
  min-height: 48px;
  padding: 9px 12px;
  border: 1px solid #e2e4e8;
  align-items: center;
  color: #5b626e;
  background: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  transition: color 160ms ease, border-color 160ms ease;
}

.application-menu-grid a:hover,
.application-menu-grid a:focus-visible {
  border-color: #e6a9b4;
}

.hero-carousel {
  position: relative;
  height: 100svh;
  overflow: hidden;
  background: #10131a;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.hero-carousel.is-dragging {
  cursor: grabbing;
}

.hero-slides,
.hero-slide,
.hero-slide-image,
.hero-slide-overlay,
.hero-slide-artwork-link {
  position: absolute;
  inset: 0;
}

.hero-slide {
  visibility: hidden;
  opacity: 0;
  filter: blur(2px);
  transform: scale(1.012);
  transition:
    opacity 950ms cubic-bezier(0.22, 0.72, 0.2, 1),
    transform 1200ms cubic-bezier(0.22, 0.72, 0.2, 1),
    filter 850ms ease,
    visibility 0s linear 950ms;
  will-change: opacity, transform, filter;
}

.hero-slide.is-active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
  transition-delay: 0s;
}

.hero-slide-image {
  object-fit: cover;
}

.hero-slide.is-active .hero-slide-image {
  animation: hero-image-drift 5s ease-out both;
}

.hero-slide-artwork-link {
  z-index: 0;
  display: block;
}

.hero-slide-overlay {
  z-index: 1;
  pointer-events: none;
}

.hero-slide-dark .hero-slide-overlay {
  background: linear-gradient(90deg, rgb(7 10 15 / 0.38) 0%, rgb(7 10 15 / 0.08) 58%, transparent 82%);
}

.hero-slide-light .hero-slide-overlay {
  background: linear-gradient(90deg, rgb(239 247 255 / 0.38) 0%, rgb(239 247 255 / 0.06) 58%, transparent 82%);
}

.hero-slide-brand .hero-slide-overlay {
  background: linear-gradient(90deg, rgb(67 3 16 / 0.4) 0%, rgb(112 2 24 / 0.08) 60%, transparent 82%);
}

.hero-slide-artwork .hero-slide-overlay {
  background: transparent;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding-bottom: 46px;
  color: #fff;
}

.hero-slide-light .hero-slide-content {
  color: var(--ink);
}

.hero-slide-copy {
  position: relative;
  width: min(690px, 62%);
  margin-right: auto;
  padding: 0;
  will-change: opacity, transform;
}

.hero-slide-light .hero-slide-copy {
  color: var(--ink);
}

.hero-slide-brand .hero-slide-copy {
  color: #fff;
}

.hero-slide-title {
  margin: 0;
  font-size: clamp(36px, 3.7vw, 52px);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.hero-slide-subtitle {
  margin: 15px 0 0;
  color: var(--red);
  font-size: clamp(19px, 1.7vw, 25px);
  font-weight: 650;
  letter-spacing: 0.01em;
  line-height: 1.45;
}

.hero-slide-light .hero-slide-subtitle {
  color: var(--red);
}

.hero-slide-description {
  max-width: 625px;
  margin: 18px 0 0;
  color: rgb(255 255 255 / 0.78);
  font-size: 14px;
  line-height: 1.78;
}

.hero-slide-light .hero-slide-description {
  color: rgb(23 27 36 / 0.7);
}

.hero-slide-description span {
  display: block;
}

.hero-slide.is-active .hero-slide-copy {
  animation: hero-copy-slide-in 920ms cubic-bezier(0.22, 0.72, 0.2, 1) both;
}

@keyframes hero-copy-slide-in {
  from {
    opacity: 0;
    transform: translateX(-82px);
  }

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

@keyframes hero-image-drift {
  from {
    transform: scale(1.035);
  }

  to {
    transform: scale(1);
  }
}

.hero-slide-actions,
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 25px;
}

.button {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 12px 26px rgb(34 18 23 / 0.16);
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--red);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
}

.hero-slide-actions .button:hover,
.hero-slide-actions .button:focus-visible {
  transform: none;
}

.button-hero-secondary {
  color: #fff;
  border-color: rgb(255 255 255 / 0.55);
  background: rgb(255 255 255 / 0.08);
  backdrop-filter: blur(8px);
}

.hero-slide-light .button-hero-secondary {
  color: var(--ink);
  border-color: rgb(23 27 36 / 0.25);
  background: rgb(255 255 255 / 0.52);
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

.button-white {
  color: var(--red);
  background: #fff;
}

.button-outline-white {
  color: #fff;
  border-color: rgb(255 255 255 / 0.58);
  background: rgb(255 255 255 / 0.06);
}

.hero-carousel-controls {
  position: absolute;
  right: 0;
  bottom: 30px;
  left: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-carousel-controls button {
  border: 0;
  cursor: pointer;
  pointer-events: auto;
}

.hero-carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.9);
  box-shadow: 0 10px 24px rgb(13 17 24 / 0.14);
  backdrop-filter: blur(8px);
}

.hero-carousel-dots button {
  position: relative;
  width: 8px;
  height: 8px;
  overflow: hidden;
  padding: 0;
  border-radius: 999px;
  background: #b7bdc8;
  transition: width 180ms ease, background 180ms ease;
}

.hero-carousel-dots button.is-active {
  width: 34px;
  background: #dfe2e7;
}

.hero-carousel-dots button.is-active::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  animation: hero-dot-progress 5s linear both;
}

@keyframes hero-dot-progress {
  to {
    transform: scaleX(1);
  }
}

.section {
  padding: 104px 0;
}

.hero-carousel,
.products-section,
.solution-section,
.application-section,
.capability-section,
.resource-section,
.site-footer {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

@media (min-width: 961px) and (pointer: fine) {
  html {
    scroll-snap-type: y mandatory;
  }
}

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

.section-heading-unified {
  position: relative;
  display: block;
  max-width: none;
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 32px;
}

.section-intro {
  width: min(100%, 1080px);
  min-height: 29px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: 74px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.eyebrow-light {
  color: #ffd2da;
}

.section-heading h1,
.section-heading h2,
.capability-title h2 {
  margin: 0;
  font-size: 45px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.section-heading-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.section-heading-copy .text-link {
  margin-top: 18px;
}

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

.products-section {
  background: #fff;
}

.products-section .section-intro {
  width: 100%;
  max-width: none;
}

.products-section .products-secondary-title {
  margin: 24px 0 0;
  font-size: 30px !important;
  font-weight: 400 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.35 !important;
}

.products-section #products-title,
.products-section .products-secondary-title {
  text-align: center;
}

.products-section[data-locale="en"] .products-secondary-title {
  font-size: clamp(26px, 2vw, 30px) !important;
}

.products-section[data-locale="en"] .section-intro {
  width: min(100%, 1120px);
  max-width: 1120px;
  margin-inline: auto;
  line-height: 1.65;
  text-align: justify;
  text-align-last: left;
}

.products-section[data-locale="en"] .product-copy p {
  line-height: 1.55;
  text-align: left;
}

@media (min-width: 1240px) {
  .products-section[data-locale="en"] #products-title,
  .products-section[data-locale="en"] .products-secondary-title {
    white-space: nowrap;
  }
}

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

.product-card {
  position: relative;
  display: flex;
  height: 390px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  border-radius: 0;
  background: #fff;
  box-shadow: var(--panel-shadow);
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.product-card-featured,
.product-card[data-layout-slot="1"] {
  grid-column: span 2;
}

.product-card:hover,
.product-card:focus-visible {
  border-color: rgb(195 13 35 / 0.42);
  box-shadow: var(--panel-hover-shadow);
  transform: translateY(-4px);
}

.product-copy {
  position: relative;
  z-index: 2;
  min-height: 136px;
  padding: 24px 26px 0;
}

.product-copy > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.product-copy h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.3;
}

.product-copy > span + h3 {
  margin-top: 10px;
}

.product-copy p {
  max-width: 470px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.product-image {
  position: relative;
  height: 226px;
  min-height: 226px;
  flex: 0 0 226px;
  margin: 8px 20px 20px;
  border-radius: 0;
  background: #fff;
}

.product-image img {
  object-fit: contain;
  transition: transform 320ms ease;
}

.product-card[data-layout-slot="1"] .product-image img {
  object-fit: contain !important;
}

.product-card:hover .product-image img {
  transform: scale(1.025);
}

.solution-section {
  border-top: 1px solid var(--line);
  background: var(--soft);
}

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

.solution-card {
  position: relative;
  display: flex;
  min-height: 160px;
  padding: 25px 24px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  border-radius: 0;
  background: #fff;
  box-shadow: var(--panel-shadow);
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.solution-card::before {
  position: absolute;
  top: 0;
  left: 24px;
  width: 42px;
  height: 3px;
  border-radius: 0;
  background: var(--red);
  content: "";
}

.solution-card:hover,
.solution-card:focus-visible {
  border-color: rgb(195 13 35 / 0.42);
  box-shadow: var(--panel-hover-shadow);
  transform: translateY(-4px);
}

.solution-card:focus-visible {
  outline: 2px solid rgb(195 13 35 / 0.2);
  outline-offset: 3px;
}

.solution-card h3 {
  margin: 12px 0 0;
  font-size: 23px;
  line-height: 1.25;
}

.solution-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.application-section {
  border-top: 1px solid var(--line);
  background: #fff;
}

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

.application-card {
  position: relative;
  min-width: 0;
  min-height: 330px;
  border-radius: 0;
  outline: none;
  perspective: 950px;
}

.application-card-surface {
  display: flex;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  border-radius: inherit;
  background: #fff;
  box-shadow: var(--panel-shadow);
  transform: translateY(0) rotateX(0) rotateY(0);
  transform-style: preserve-3d;
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 240ms ease,
    box-shadow 320ms ease;
  flex-direction: column;
  will-change: transform;
}

.application-card:hover .application-card-surface,
.application-card:focus-visible .application-card-surface {
  border-color: rgb(195 13 35 / 0.42);
  box-shadow: var(--panel-hover-shadow);
  transform: translateY(-4px) rotateX(var(--card-turn-x, 0deg)) rotateY(var(--card-turn-y, 0deg));
}

.application-card:focus-visible .application-card-surface {
  outline: 3px solid rgb(195 13 35 / 0.72);
  outline-offset: 3px;
}

.application-card-image {
  position: relative;
  display: block;
  height: 166px;
  overflow: hidden;
  background: #dde3eb;
  transform: translateZ(0);
}

.application-card-image::after {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgb(10 15 23 / 0.32));
  content: "";
}

.application-card-image img {
  object-fit: cover;
  filter: saturate(0.9);
  transform: scale(1.01);
  transition:
    filter 420ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.application-card:hover .application-card-image img,
.application-card:focus-visible .application-card-image img {
  filter: saturate(1);
  transform: scale(1.055);
}

.application-card-number {
  position: absolute;
  bottom: 13px;
  left: 15px;
  z-index: 1;
  display: grid;
  width: 30px;
  height: 30px;
  border: 1px solid rgb(255 255 255 / 0.55);
  border-radius: 0;
  color: #fff;
  background: rgb(16 21 30 / 0.24);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  backdrop-filter: blur(7px);
  place-items: center;
}

.application-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 0;
  padding: 20px 17px 18px;
  transform: translateZ(14px);
  flex: 1;
  flex-direction: column;
}

.application-card-title {
  display: block;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
}

.application-card-description {
  display: block;
  margin-top: 11px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.capability-section {
  display: flex;
  height: 100vh;
  min-height: 760px;
  padding: clamp(46px, 5.2vh, 72px) 0;
  overflow: hidden;
  align-items: center;
  color: var(--ink);
  background: #fff;
  border-top: 1px solid var(--line);
}

.capability-page {
  display: grid;
  height: min(790px, calc(100vh - 96px));
  min-height: 0;
  grid-template-rows: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.capability-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(500px, 0.75fr);
}

.capability-story {
  display: flex;
  min-width: 0;
  padding: 34px 48px 32px 0;
  flex-direction: column;
}

.capability-title {
  min-width: 0;
}

.capability-title > p {
  margin: 0 0 13px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.capability-title h2 {
  color: var(--ink);
  white-space: nowrap;
}

.capability-intro {
  margin-top: 18px;
}

.capability-intro > .section-intro {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.capability-inquiry-cta {
  position: relative;
  display: grid;
  min-height: 88px;
  overflow: hidden;
  margin-top: auto;
  padding: 18px 18px 18px 22px;
  border: 1px solid #dfe2e6;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  background: #fff;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.capability-inquiry-cta::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--red);
  content: "";
}

.capability-inquiry-cta:hover,
.capability-inquiry-cta:focus-visible {
  border-color: rgb(195 13 35 / 0.38);
  background: #fff7f8;
  transform: none;
}

.capability-inquiry-copy strong,
.capability-inquiry-copy small {
  display: block;
}

.capability-inquiry-copy strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.4;
}

.capability-inquiry-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.capability-inquiry-action {
  display: inline-flex;
  min-height: 48px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #fff;
  background: var(--red);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 180ms ease;
}

.capability-inquiry-cta:hover .capability-inquiry-action,
.capability-inquiry-cta:focus-visible .capability-inquiry-action {
  background: var(--red-dark);
}

.capability-inquiry-action b {
  font-size: 16px;
  font-weight: 400;
}

.capability-data {
  display: flex;
  min-width: 0;
  padding: 32px 0 32px 48px;
  flex-direction: column;
}

.capability-data-heading {
  margin-bottom: 18px;
}

.capability-data-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}

.metric-grid {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #dfe2e6;
  border-left: 1px solid #dfe2e6;
}

.metric-card {
  display: flex;
  min-height: 88px;
  padding: 18px 22px;
  border-right: 1px solid #dfe2e6;
  border-bottom: 1px solid #dfe2e6;
  border-radius: 0;
  background: transparent;
  text-align: left;
  justify-content: center;
  flex-direction: column;
}

.metric-card:hover {
  background: #fff6f7;
}

.metric-card strong {
  display: block;
  color: var(--red);
  font-size: 38px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.metric-card strong em {
  font-style: normal;
}

.metric-card .metric-label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.customer-section {
  background: #fff;
}

.customer-showcase {
  position: relative;
  min-height: 0;
  margin-top: 0;
  padding: 34px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.customer-showcase::before {
  display: none;
}

.customer-showcase-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 22px;
  padding: 0;
  border: 0;
}

.customer-showcase-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.customer-showcase-heading p {
  max-width: 790px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.customer-carousel-shell {
  position: relative;
  padding: 0;
}

.customer-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  gap: 7px;
}

.customer-carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #c8ccd2;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.customer-carousel-dots button.is-active {
  width: 26px;
  background: var(--red);
}

.customer-carousel-window {
  overflow: hidden;
  outline: none;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.customer-carousel-window.is-dragging {
  cursor: grabbing;
}

.customer-carousel-window:focus-visible {
  outline: 2px solid rgb(195 13 35 / 0.3);
  outline-offset: 5px;
}

.customer-carousel-track {
  display: flex;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.customer-carousel-window.is-dragging .customer-carousel-track {
  transition: none;
}

.customer-logo-grid {
  display: grid;
  min-width: 100%;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 68px;
  align-content: start;
  gap: 10px 12px;
}

.customer-logo-card {
  position: relative;
  display: flex;
  min-height: 68px;
  overflow: hidden;
  padding: 12px 10px;
  border: 1px solid #e0e3e7;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #fff;
  text-align: center;
}

.customer-logo-card::before {
  content: none;
}

.customer-logo-card strong {
  color: currentColor;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.customer-logo-card span {
  margin-top: 5px;
  color: #858b95;
  font-size: 9px;
  line-height: 1.2;
}

.customer-logo-red {
  color: #c30d23;
}

.customer-logo-blue {
  color: #1265a8;
}

.customer-logo-cyan {
  color: #0099bd;
}

.customer-logo-orange {
  color: #ef6b00;
}

.customer-logo-dark {
  color: #2b3038;
}

.customer-showcase-note {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 12px 0 0;
  color: #8b919b;
  font-size: 9px;
}

.customer-showcase-note > span {
  width: 6px;
  height: 6px;
  background: var(--red);
}

.customer-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid #cfd3d9;
  border-radius: 0;
  color: var(--red);
  background: #fff;
  font-size: 17px;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
  transform: translateY(-50%);
  place-items: center;
}

.customer-carousel-arrow.is-previous {
  left: -58px;
}

.customer-carousel-arrow.is-next {
  right: -58px;
}

.customer-carousel-arrow:hover,
.customer-carousel-arrow:focus-visible {
  border-color: var(--red);
  color: #fff;
  background: var(--red);
}

@media (max-width: 1360px) {
  .customer-carousel-shell {
    padding: 0 52px;
  }

  .customer-carousel-arrow.is-previous {
    left: 0;
  }

  .customer-carousel-arrow.is-next {
    right: 0;
  }
}

.resource-section {
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.news-heading {
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 48px;
}

.news-heading.section-heading-unified {
  display: block;
  grid-template-columns: none;
  gap: 0;
  align-items: initial;
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 32px;
}

.news-heading > div:first-child > p {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.news-heading h2 {
  margin: 0;
  font-size: 45px;
  letter-spacing: -0.045em;
  line-height: 1.2;
}

.news-heading-copy {
  max-width: 720px;
}

.news-heading-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.news-heading-copy .text-link {
  margin-top: 18px;
}

.news-layout {
  display: grid;
  padding-top: 28px;
  align-items: stretch;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 0.82fr);
  gap: 24px;
}

.news-feature-grid {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.news-feature-card {
  display: flex;
  min-width: 0;
  border: 1px solid #d8dce2;
  border-radius: 0;
  background: #fff;
  flex-direction: column;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.news-feature-card:hover {
  border-color: rgb(195 13 35 / 0.38);
  transform: translateY(-4px);
  box-shadow: var(--panel-hover-shadow);
}

.news-feature-image {
  position: relative;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #e1e4e8;
  aspect-ratio: 16 / 9;
  background: #e9edf1;
}

.news-feature-image img {
  object-fit: contain;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.news-feature-card:hover .news-feature-image img {
  transform: scale(1.018);
}

.news-feature-copy {
  display: flex;
  flex: 1;
  min-width: 0;
  padding: 24px 24px 26px;
  flex-direction: column;
}

.news-feature-meta {
  display: flex;
  align-items: center;
  color: #8b919b;
  font-size: 12px;
  line-height: 1.5;
}

.news-feature-meta span {
  color: #6f7682;
  font-weight: 600;
}

.news-feature-meta time {
  color: #8b919b;
}

.news-feature-copy h3 {
  min-height: 67px;
  margin: 12px 0 0;
  font-size: 23px;
  line-height: 1.45;
}

.news-feature-copy h3 a {
  transition: color 180ms ease;
}

.news-feature-card:hover .news-feature-copy h3 a,
.news-feature-copy h3 a:focus-visible {
  color: var(--red);
}

.news-feature-summary {
  display: -webkit-box;
  min-height: 73px;
  overflow: hidden;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-latest-panel {
  display: flex;
  min-width: 0;
  padding: 27px 26px 26px;
  border: 1px solid #d8dce2;
  border-top: 4px solid var(--ink);
  border-radius: 0;
  background: #fff;
  flex-direction: column;
}

.news-latest-heading {
  display: flex;
  padding-bottom: 20px;
  border-bottom: 1px solid #dfe2e6;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.news-latest-heading > p {
  margin: 0;
  color: var(--red);
  font-size: 18px;
  font-weight: 700;
}

.news-latest-list {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.news-latest-item {
  display: flex;
  flex: 1;
  min-height: 82px;
  padding: 17px 0;
  border-bottom: 1px solid #dfe2e6;
  border-radius: 0;
  justify-content: center;
  flex-direction: column;
  transition: color 180ms ease, background 180ms ease;
}

.news-latest-item time {
  color: #8b919b;
  font-size: 10px;
}

.news-latest-item h3 {
  margin: 8px 0 0;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.5;
  transition: color 180ms ease;
}

.news-latest-item:hover h3,
.news-latest-item:focus-visible h3 {
  color: var(--red);
}

.news-latest-item:focus-visible {
  outline: 2px solid rgb(195 13 35 / 0.28);
  outline-offset: 3px;
}

.news-center-link {
  display: flex;
  min-height: 50px;
  margin-top: 20px;
  padding: 0 17px;
  color: #fff;
  background: var(--ink);
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  transition: background 180ms ease;
}

.news-center-link:hover,
.news-center-link:focus-visible {
  background: var(--red);
}

.consult-section {
  padding: 100px 0;
  background: #fff;
}

.consult-shell {
  display: grid;
  overflow: hidden;
  border: 1px solid #202630;
  border-radius: 0;
  grid-template-columns: minmax(390px, 0.78fr) minmax(0, 1.22fr);
  background: #11161e;
}

.consult-copy {
  padding: 64px 58px;
  color: #fff;
  background:
    linear-gradient(145deg, rgb(195 13 35 / 0.22), transparent 47%),
    #11161e;
}

.consult-kicker {
  margin: 0 0 18px;
  color: #ff6d82;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.consult-copy h2 {
  margin: 0;
  font-size: 45px;
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.consult-copy > p:not(.consult-kicker) {
  margin: 20px 0 0;
  color: rgb(255 255 255 / 0.7);
  line-height: 1.85;
}

.consult-support-list {
  margin: 48px 0 0;
  padding: 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.13);
  list-style: none;
}

.consult-support-list li {
  display: grid;
  padding: 20px 0;
  border-top: 1px solid rgb(255 255 255 / 0.13);
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 17px;
}

.consult-support-list li > span {
  color: #ff536c;
  font-size: 13px;
  font-weight: 700;
}

.consult-support-list strong,
.consult-support-list small {
  display: block;
}

.consult-support-list strong {
  color: #fff;
  font-size: 15px;
}

.consult-support-list small {
  margin-top: 7px;
  color: rgb(255 255 255 / 0.54);
  font-size: 12px;
  line-height: 1.6;
}

.consult-form-panel {
  padding: 58px 60px 62px;
  background: #fff;
}

.consult-form-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid #dfe2e6;
}

.consult-form-heading h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.3;
}

.consult-form-heading p {
  margin: 0;
  color: #8b919b;
  font-size: 12px;
}

.consult-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 20px;
}

.consult-form label:not(.consult-consent) {
  display: flex;
  gap: 9px;
  flex-direction: column;
}

.consult-form label > span:first-child {
  color: #303640;
  font-size: 13px;
  font-weight: 650;
}

.consult-form input[type="text"],
.consult-form select,
.consult-form textarea {
  width: 100%;
  border: 1px solid #cfd3d8;
  border-radius: 0;
  color: var(--ink);
  background: #fafafa;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.consult-form input[type="text"],
.consult-form select {
  height: 52px;
  padding: 0 15px;
}

.consult-form textarea {
  min-height: 126px;
  padding: 14px 15px;
  resize: vertical;
}

.consult-form input[type="text"]:focus,
.consult-form select:focus,
.consult-form textarea:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 3px rgb(195 13 35 / 0.08);
}

.consult-form-full {
  grid-column: 1 / -1;
}

.consult-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #777d87;
  font-size: 12px;
  line-height: 1.6;
}

.consult-consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--red);
}

.consult-consent a {
  margin-left: 4px;
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consult-submit {
  display: flex;
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid var(--red);
  border-radius: 0;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: var(--red);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.consult-submit:hover,
.consult-submit:focus-visible {
  border-color: #11161e;
  background: #11161e;
}

.consult-preview-result {
  margin-top: 22px;
  padding: 17px 18px;
  border-left: 3px solid var(--red);
  background: #f3f4f6;
}

.consult-preview-result strong {
  font-size: 13px;
}

.consult-preview-result p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.consult-preview-result a {
  margin: 0 4px;
  color: var(--red);
  font-weight: 700;
}

/* Unified dark brand proof board */

.capability-evidence .customer-showcase {
  min-width: 0;
  margin: 0;
  padding: 28px 32px 22px 0;
  border: 0;
  border-right: 1px solid rgb(255 255 255 / 0.17);
  color: var(--ink);
  background: transparent;
}

.capability-evidence .customer-showcase::before {
  display: none;
}

.capability-evidence .customer-showcase-heading {
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
  padding: 0 0 15px;
  border-color: rgb(255 255 255 / 0.17);
}

.capability-evidence .customer-showcase-heading h3 {
  color: #fff;
  font-size: 23px;
  letter-spacing: -0.025em;
}

.capability-evidence .customer-showcase-heading p {
  max-width: 680px;
  margin-top: 5px;
  color: rgb(255 255 255 / 0.52);
  font-size: 11px;
  line-height: 1.55;
}

.capability-evidence .customer-carousel-controls {
  gap: 8px;
}

.capability-evidence .customer-carousel-controls > button {
  width: 34px;
  height: 34px;
  border-color: rgb(255 255 255 / 0.22);
  color: #fff;
  background: transparent;
  font-size: 12px;
}

.capability-evidence .customer-carousel-controls > button:hover,
.capability-evidence .customer-carousel-controls > button:focus-visible {
  border-color: var(--red);
  color: #fff;
  background: var(--red);
}

.capability-evidence .customer-carousel-dots button {
  background: rgb(255 255 255 / 0.26);
}

.capability-evidence .customer-carousel-dots button.is-active {
  background: var(--red);
}

.capability-evidence .customer-logo-grid {
  gap: 8px;
}

.capability-evidence .customer-logo-card {
  min-height: 64px;
  padding: 10px 8px;
  border-color: rgb(255 255 255 / 0.13);
  color: rgb(255 255 255 / 0.82);
  background: rgb(255 255 255 / 0.025);
  box-shadow: none;
}

.capability-evidence .customer-logo-card:hover {
  border-color: rgb(195 13 35 / 0.72);
  color: #fff;
  background: rgb(255 255 255 / 0.055);
  box-shadow: none;
  transform: translateY(-2px);
}

.capability-evidence .customer-logo-card strong {
  font-size: 15px;
}

.capability-evidence .customer-logo-card span {
  margin-top: 4px;
  color: rgb(255 255 255 / 0.42);
  font-size: 9px;
}

.capability-evidence .customer-showcase-note {
  margin-top: 12px;
  color: rgb(255 255 255 / 0.42);
  font-size: 9px;
}

.capability-evidence .compact-inquiry {
  min-width: 0;
  padding: 28px 0 22px 32px;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
}

.capability-evidence .compact-inquiry-heading h3 {
  margin: 0;
  color: #fff;
  font-size: 23px;
  line-height: 1.3;
}

.capability-evidence .compact-inquiry-heading p {
  margin: 5px 0 0;
  color: rgb(255 255 255 / 0.52);
  font-size: 11px;
  line-height: 1.55;
}

.capability-evidence .compact-inquiry-form {
  display: grid;
  margin-top: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.compact-inquiry-form label {
  display: flex;
  min-width: 0;
  gap: 6px;
  flex-direction: column;
}

.compact-inquiry-form label:last-of-type,
.compact-inquiry-form button {
  grid-column: 1 / -1;
}

.capability-evidence .compact-inquiry-form label > span {
  color: rgb(255 255 255 / 0.72);
  font-size: 11px;
  font-weight: 650;
}

.capability-evidence .compact-inquiry-form input,
.capability-evidence .compact-inquiry-form textarea {
  width: 100%;
  border: 1px solid rgb(255 255 255 / 0.17);
  border-radius: 0;
  color: #fff;
  background: #171d26;
  font: inherit;
  font-size: 12px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.capability-evidence .compact-inquiry-form input::placeholder,
.capability-evidence .compact-inquiry-form textarea::placeholder {
  color: rgb(255 255 255 / 0.34);
}

.compact-inquiry-form input {
  height: 40px;
  padding: 0 11px;
}

.compact-inquiry-form textarea {
  min-height: 62px;
  padding: 10px 11px;
  resize: vertical;
}

.capability-evidence .compact-inquiry-form input:focus,
.capability-evidence .compact-inquiry-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgb(195 13 35 / 0.12);
}

.compact-inquiry-form button {
  display: flex;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--red);
  border-radius: 0;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: var(--red);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.compact-inquiry-form button:hover,
.compact-inquiry-form button:focus-visible {
  border-color: #11161e;
  background: #11161e;
}

.capability-evidence .compact-inquiry-form button:hover,
.capability-evidence .compact-inquiry-form button:focus-visible {
  border-color: #fff;
  color: #11161e;
  background: #fff;
}

.capability-evidence .compact-inquiry-note,
.capability-evidence .compact-inquiry-result {
  margin: 11px 0 0;
  color: rgb(255 255 255 / 0.42);
  font-size: 9px;
  line-height: 1.55;
}

.compact-inquiry-result {
  padding-left: 9px;
  border-left: 2px solid var(--red);
}

.capability-evidence .compact-inquiry-result a {
  margin: 0 3px;
  color: #ff6d82;
  font-weight: 700;
}

.site-footer {
  position: relative;
  padding: 84px 0 28px;
  color: #747984;
  background: #fff;
  border-top: 1px solid #eceef1;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(380px, 1.15fr) minmax(360px, 0.95fr);
  gap: clamp(48px, 5vw, 82px);
  align-items: start;
}

.footer-brand-column,
.footer-contact,
.footer-social {
  min-width: 0;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
}

.site-footer .footer-logo {
  width: 250px;
  height: auto;
  filter: none;
}

.footer-certifications {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 58px;
}

.footer-certification-label {
  flex: 0 0 auto;
  padding-right: 20px;
  border-right: 1px solid #ccd0d5;
  color: #777c86;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.footer-certification-list {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-certification-list img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-legal {
  margin-top: 27px;
  font-size: 11px;
  line-height: 1.8;
}

.footer-legal p {
  margin: 0;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.footer-contact h2,
.footer-social h2 {
  margin: 1px 0 42px;
  color: #171b24;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.footer-contact address {
  margin: 0 0 34px;
  color: #858a94;
  font-size: 13px;
  font-style: normal;
  line-height: 1.8;
}

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

.footer-contact-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  font-size: 13px;
  line-height: 1.6;
}

.footer-contact-row strong {
  color: #c30d23;
  font-size: 12px;
}

.footer-social {
  min-height: 250px;
  padding-left: clamp(48px, 5vw, 80px);
  border-left: 1px solid #d9dce1;
}

.footer-social h2 {
  text-align: center;
}

.footer-social-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(42px, 1fr));
  gap: 12px;
  align-items: start;
}

.footer-social-list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: #4f545d;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-social-list a img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 180ms ease, opacity 180ms ease;
}

.footer-wechat-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #777c86;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.footer-social-list a:hover,
.footer-social-list a:focus-visible {
  color: var(--red);
  transform: translateY(-3px);
}

.footer-social-list a:hover img,
.footer-social-list a:focus-visible img {
  filter: none;
  opacity: 1;
}

.footer-social-list a:hover .footer-wechat-mark,
.footer-social-list a:focus-visible .footer-wechat-mark {
  background: var(--red);
}

.footer-policy-links {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

.footer-policy-links a {
  padding: 0 18px;
  color: #737882;
  font-size: 12px;
  line-height: 1;
}

.footer-policy-links a + a {
  border-left: 1px solid #d7d9de;
}

.site-footer a {
  transition: color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--red);
}

.footer-back-to-top {
  display: grid;
  width: 36px;
  height: 36px;
  margin: 74px auto 0;
  place-items: center;
  color: var(--red);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 1200px) {
  .site-nav-item:not(.site-all-menu-item) {
    width: 100px;
    margin: 0;
  }

  .site-nav-link,
  .site-nav-trigger {
    font-size: 14px;
  }

  .product-menu-category-row > a,
  .application-menu-grid a {
    font-size: 14px;
  }

  .brand-logo {
    width: 124px;
    height: auto;
  }
}

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

  .product-card-featured,
  .product-card[data-layout-slot="1"] {
    grid-column: span 2;
  }

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

  .application-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 1100px) {
  .site-search-input {
    max-width: 50%;
  }
}

@media (max-width: 990px) {
  html {
    scroll-padding-top: 80px;
  }

  .site-header-wrap,
  .site-header {
    height: 80px;
  }

  .brand-link {
    top: 25px;
  }

  .brand-logo {
    width: auto;
    height: 30px;
  }

  .site-header-search-row,
  .site-primary-nav {
    display: none;
  }

  .site-mobile-menu-trigger {
    position: absolute;
    top: 19px;
    right: 0;
    display: flex;
    width: 48px;
    height: 42px;
    padding: 5px 0 3px;
    border: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    color: inherit;
    background: transparent;
    cursor: pointer;
  }
}

@media (max-width: 990px) {
  .page-width {
    width: min(calc(100% - 40px), var(--page));
  }

  .site-mobile-menu-trigger {
    right: 20px;
  }

  .site-mobile-menu-trigger > span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-mobile-menu-trigger b {
    position: absolute;
    top: 42px;
    color: inherit;
    font-size: 9px;
    font-weight: 500;
  }

  .site-mobile-menu-trigger.is-active > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-mobile-menu-trigger.is-active > span:nth-child(2) {
    opacity: 0;
  }

  .site-mobile-menu-trigger.is-active > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-all-menu,
  .site-mega-menu {
    max-height: calc(100vh - 80px);
  }

  .site-all-menu-inner {
    padding: 28px 0 34px;
  }

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

  .mega-menu-inner {
    width: min(calc(100% - 40px), 1366px);
  }

  .application-field-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-carousel {
    height: 100svh;
  }

  .hero-slide-dark .hero-slide-overlay,
  .hero-slide-brand .hero-slide-overlay {
    background: linear-gradient(90deg, rgb(7 10 15 / 0.43) 0%, rgb(7 10 15 / 0.12) 64%, transparent 92%);
  }

  .hero-slide-light .hero-slide-overlay {
    background: linear-gradient(90deg, rgb(239 247 255 / 0.45) 0%, rgb(239 247 255 / 0.1) 64%, transparent 92%);
  }

  .hero-slide-artwork .hero-slide-overlay {
    background: transparent;
  }

  .hero-slide-copy {
    width: min(690px, 72%);
  }

  .section {
    padding: 82px 0;
  }

  .section-heading-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading-copy {
    max-width: 700px;
  }

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

  .capability-page {
    height: auto;
    grid-template-rows: auto;
  }

  .capability-overview {
    grid-template-columns: 1fr;
  }

  .capability-section {
    height: auto;
    min-height: 100vh;
    padding: 56px 0;
    overflow: visible;
  }

  .capability-title {
    padding: 0;
  }

  .capability-story {
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid #dfe2e6;
  }

  .capability-inquiry-cta {
    margin-top: 24px;
  }

  .capability-intro {
    margin-top: 20px;
    padding: 0;
    border: 0;
  }

  .capability-intro > p {
    max-width: 700px;
  }

  .capability-data {
    padding: 28px 0 32px;
  }

  .metric-grid {
    margin-top: 0;
  }

  .news-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .news-heading-copy {
    max-width: 760px;
  }

  .news-layout {
    grid-template-columns: 1fr;
  }

  .news-latest-panel {
    min-height: 360px;
  }

  .consult-shell {
    grid-template-columns: 1fr;
  }

  .consult-copy,
  .consult-form-panel {
    padding: 52px;
  }

  .footer-layout {
    grid-template-columns: minmax(260px, 0.9fr) minmax(360px, 1.1fr);
  }

  .footer-social {
    grid-column: 1 / -1;
    min-height: 0;
    padding: 42px 0 0;
    border-top: 1px solid #d9dce1;
    border-left: 0;
  }

  .footer-social-list {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .footer-policy-links {
    margin-top: 42px;
  }

  .customer-logo-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 80px;
  }

  .brand-logo {
    width: 104px;
  }

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

  .site-all-menu-grid a,
  .site-all-menu-grid button {
    min-height: 58px;
  }

  .mega-menu-inner {
    width: calc(100% - 30px);
    padding: 26px 0 30px;
  }

  .mega-menu-heading {
    padding: 0 6px 17px;
  }

  .mega-menu-heading h2 {
    font-size: 24px;
  }

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

  .product-menu-group {
    padding: 16px 6px 18px;
    border-bottom: 1px solid #e1e3e7;
  }

  .application-menu-section {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 6px;
  }

  .application-field-grid,
  .solution-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-carousel {
    height: 100svh;
  }

  .hero-slide-image {
    object-position: 66% center;
  }

  .hero-slide-artwork .hero-slide-image {
    object-position: 24% center;
  }

  .hero-slide-dark .hero-slide-overlay,
  .hero-slide-brand .hero-slide-overlay {
    background: linear-gradient(90deg, rgb(7 10 15 / 0.55) 0%, rgb(7 10 15 / 0.22) 70%, rgb(7 10 15 / 0.08) 100%);
  }

  .hero-slide-light .hero-slide-overlay {
    background: linear-gradient(90deg, rgb(239 247 255 / 0.55) 0%, rgb(239 247 255 / 0.22) 70%, rgb(239 247 255 / 0.08) 100%);
  }

  .hero-slide-artwork .hero-slide-overlay {
    background: transparent;
  }

  .hero-slide-content {
    align-items: flex-start;
    justify-content: center;
    padding-top: 28px;
    padding-bottom: 95px;
  }

  .hero-carousel-en .hero-slide-content {
    padding-top: calc(80px + 28px);
  }

  .hero-slide-copy {
    width: 100%;
    padding: 0;
  }

  .hero-slide-title {
    font-size: 38px;
    letter-spacing: -0.04em;
  }

  .hero-slide-subtitle {
    margin-top: 12px;
    font-size: 19px;
  }

  .hero-slide-description {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.68;
  }

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

  .hero-carousel-controls {
    bottom: 22px;
  }

  .section {
    padding: 68px 0;
  }

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

  .section-heading h1,
  .section-heading h2,
  .capability-title h2,
  .news-heading h2,
  .consult-copy h2 {
    font-size: 34px;
  }

  .capability-title h2 {
    white-space: normal;
  }

  .capability-section {
    padding: 44px 0;
  }

  .capability-inquiry-cta {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .capability-inquiry-action {
    width: 100%;
  }

  .capability-data-heading {
    padding: 0;
    border: 0;
  }

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

  .product-card-featured,
  .product-card[data-layout-slot="1"] {
    grid-column: span 1;
  }

  .product-card {
    height: 380px;
  }

  .product-copy {
    min-height: 130px;
    padding: 22px 22px 0;
  }

  .product-image {
    height: 222px;
    min-height: 222px;
    flex-basis: 222px;
    margin: 6px 16px 16px;
  }

  .solution-card {
    min-height: 160px;
  }

  .application-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }

  .application-card {
    min-height: 330px;
  }

  .application-card-image {
    height: 155px;
  }

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

  .metric-card {
    min-height: 96px;
    padding: 18px 14px;
  }

  .metric-card:nth-child(odd) {
    border-left: 0;
  }

  .metric-card:nth-child(n + 3) {
    border-top: 1px solid rgb(255 255 255 / 0.16);
  }

  .metric-card strong {
    font-size: 28px;
  }

  .customer-showcase {
    margin-top: 0;
    padding: 24px 0;
    border-radius: 0;
  }

  .customer-showcase-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 16px;
  }

  .customer-showcase-heading h3 {
    font-size: 24px;
  }

  .customer-carousel-controls {
    justify-content: flex-start;
  }

  .customer-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 82px;
    gap: 10px;
  }

  .customer-logo-card {
    min-height: 82px;
  }

  .customer-logo-card strong {
    font-size: 18px;
  }

  .customer-carousel-shell {
    padding: 0 44px;
  }

  .customer-carousel-arrow {
    width: 34px;
    height: 34px;
  }

  .news-heading {
    margin-bottom: 32px;
  }

  .news-heading.section-heading-unified {
    margin-bottom: 36px;
  }

  .news-layout {
    padding-top: 22px;
  }

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

  .news-feature-copy {
    padding: 22px 20px 24px;
  }

  .news-feature-copy h3 {
    min-height: 0;
    font-size: 20px;
  }

  .news-latest-item h3 {
    font-size: 15px;
  }

  .news-latest-panel {
    min-height: 0;
    padding: 24px 20px 22px;
  }

  .consult-section {
    padding: 68px 0;
  }

  .consult-copy,
  .consult-form-panel {
    padding: 38px 26px;
  }

  .consult-form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .consult-form {
    grid-template-columns: 1fr;
  }

  .consult-form-full {
    grid-column: auto;
  }

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

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-certifications {
    margin-top: 40px;
  }

  .footer-contact h2,
  .footer-social h2 {
    margin-bottom: 26px;
  }

  .footer-social {
    grid-column: auto;
    padding-top: 40px;
  }

  .footer-social-list {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 26px;
  }

  .footer-policy-links {
    flex-wrap: wrap;
    row-gap: 18px;
  }

  .footer-back-to-top {
    margin-top: 48px;
  }
}

@media (max-width: 420px) {
  .page-width {
    width: calc(100% - 30px);
  }

  .mega-menu-heading > a {
    font-size: 12px;
  }

  .mega-menu-links,
  .application-field-grid,
  .solution-menu-grid {
    grid-template-columns: 1fr;
  }

  .hero-slide-title {
    font-size: 32px;
  }

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

  .application-card {
    min-height: 320px;
  }

  .application-card-image {
    height: 170px;
  }
}

/* VOOHU VI restrained neumorphic skin: surface-only changes, layout preserved. */
.products-section,
.application-section,
.resource-section {
  background: var(--soft);
}

.solution-section,
.capability-section,
.resource-section,
.site-footer {
  border-top: 0;
}

.product-card,
.solution-card,
.application-card-surface,
.news-feature-card,
.news-latest-panel {
  border-color: var(--panel-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--panel-shadow);
}

.application-card {
  border-radius: var(--radius-sm);
}

.product-image {
  border-radius: var(--radius-xs);
  background: #fff;
}

.solution-card::before,
.application-card-number {
  border-radius: var(--radius-xs);
}

.product-card:hover,
.product-card:focus-visible,
.solution-card:hover,
.solution-card:focus-visible,
.news-feature-card:hover {
  box-shadow: var(--panel-hover-shadow);
  transform: translateY(-2px);
}

.application-card:hover .application-card-surface,
.application-card:focus-visible .application-card-surface {
  box-shadow: var(--panel-hover-shadow);
  transform: translateY(-2px) rotateX(var(--card-turn-x, 0deg)) rotateY(var(--card-turn-y, 0deg));
}

.product-copy h3,
.solution-card h3,
.application-card-title,
.news-heading h2,
.news-feature-copy h3,
.news-latest-heading > p,
.footer-contact h2,
.footer-social h2 {
  font-weight: 600;
}

.application-card-content {
  padding: 22px 20px 20px;
}

.capability-inquiry-cta {
  border-color: var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft);
  box-shadow: var(--panel-shadow);
}

.capability-inquiry-cta:hover,
.capability-inquiry-cta:focus-visible {
  background: rgb(195 13 35 / 0.06);
  transform: none;
}

.metric-grid {
  border-color: var(--line);
}

.metric-card {
  border-color: var(--line);
  background: #fff;
  box-shadow: inset 1px 1px 0 rgb(255 255 255 / 0.9), inset -1px -1px 0 rgb(26 26 26 / 0.035);
}

.metric-card:hover {
  background: rgb(195 13 35 / 0.06);
}

.customer-logo-card {
  border-color: var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft);
  box-shadow: none;
}

.customer-logo-card span,
.news-feature-meta,
.news-feature-meta time,
.news-latest-item time {
  color: var(--subtle);
}

.news-feature-meta span {
  color: var(--muted);
}

.news-heading.section-heading-unified {
  margin-bottom: 32px;
}

.news-layout {
  padding-top: 0;
}

.news-latest-panel {
  border-top-color: var(--ink);
}

.news-latest-heading,
.news-latest-item {
  border-color: var(--line);
}

.site-footer {
  box-shadow: 0 -4px 16px rgb(26 26 26 / 0.045);
}

.footer-contact h2,
.footer-social h2 {
  color: var(--ink);
}

@media (max-width: 700px) {
  .products-section .products-secondary-title {
    margin-top: 18px;
    font-size: 24px !important;
  }

  .products-section[data-locale="en"] .products-secondary-title {
    font-size: 24px !important;
    white-space: normal;
  }

  .products-section[data-locale="en"] .section-intro {
    text-align: left;
    text-align-last: auto;
  }

  .section-heading-unified,
  .news-heading.section-heading-unified {
    padding-bottom: 0;
    margin-bottom: 32px;
  }

  .news-layout {
    padding-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-snap-type: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .hero-slide {
    filter: none;
    transform: none;
    transition:
      opacity 760ms ease,
      visibility 0s linear 760ms !important;
  }

  .hero-slide.is-active {
    transition-delay: 0s !important;
  }

  .hero-slide.is-active .hero-slide-image {
    animation: none;
  }

  .application-card:hover .application-card-surface,
  .application-card:focus-visible .application-card-surface {
    transform: none;
  }

}


/* Preserve the public English site's CMS-managed social icons and hover style. */
.site-footer .footer-social {
  padding-left: 0;
}

.site-footer .in_footer_sns {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: min(100%, 560px);
  padding-top: 15px;
  margin: 0 auto 60px;
}

.site-footer .in_footer_sns a {
  display: flex;
  margin: 0;
  flex-direction: column;
  align-items: center;
  color: #333;
  text-align: center;
}

.site-footer .in_footer_sns a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(4) grayscale(1);
  transition: 300ms;
}

.site-footer .in_footer_sns a p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

.site-footer .in_footer_sns a:hover,
.site-footer .in_footer_sns a:focus-visible {
  color: #333;
  background: transparent;
}

.site-footer .in_footer_sns a img:hover,
.site-footer .in_footer_sns a:focus-visible img {
  filter: none;
}

@media (min-width: 1600px) {
  .site-footer .footer-social {
    width: 430px;
  }

  .site-footer .in_footer_sns {
    width: calc(100% - 48px);
  }
}

@media (max-width: 700px) {
  .site-footer .in_footer_sns {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    gap: 18px 0;
    margin-inline: auto;
    margin-bottom: 36px;
  }

  .site-footer .in_footer_sns a {
    margin: 0 10px;
  }
}

/* CMS-editable homepage section media. */
.solution-card-copy {
  display: block;
  min-width: 0;
}

.solution-card-has-image {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px;
  align-items: start;
  column-gap: 18px;
}

.solution-card-image {
  display: grid;
  width: 78px;
  height: 78px;
  margin-top: 12px;
  overflow: hidden;
  place-items: center;
  background: #f7f8fa;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
}

.solution-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.customer-logo-card.customer-logo-has-image {
  padding: 12px 16px;
}

.customer-logo-card.customer-logo-has-image img {
  display: block;
  width: min(82%, 150px);
  height: 56px;
  margin: auto;
  object-fit: contain;
}

.customer-carousel-arrow[hidden],
.customer-carousel-dots[hidden] {
  display: none;
}

@media (max-width: 700px) {
  .solution-card-has-image {
    grid-template-columns: minmax(0, 1fr) 68px;
    column-gap: 14px;
  }

  .solution-card-image {
    width: 68px;
    height: 68px;
  }

  .customer-logo-card.customer-logo-has-image img {
    height: 50px;
  }
}
