:root {
  --color-brand-950: #071f46;
  --color-brand-900: #0b2a59;
  --color-brand-800: #244d84;
  --color-brand-700: #205797;
  --color-accent: #05c4ef;
  --color-accent-strong: #00addd;
  --color-ink: #101820;
  --color-copy: #46505d;
  --color-muted: #7f8996;
  --color-line: #e5e9ef;
  --color-soft: #f4f7fa;
  --color-white: #fff;
  --font-sans: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1600px;
  --gutter: clamp(20px, 4vw, 72px);
  --section-space: clamp(76px, 7.3vw, 140px);
  --header-height: 84px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 20px 60px rgb(6 31 70 / 12%);
  --ease-out: cubic-bezier(.2, .75, .25, 1);
  --transition: 280ms var(--ease-out);
}

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

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

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

button,
summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}

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

.screen-reader-text:focus,
.skip-link:focus {
  z-index: 100000;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  margin: 0;
  clip: auto;
  color: var(--color-white);
  background: var(--color-brand-950);
  border-radius: 6px;
}

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

.section-pad {
  position: relative;
  padding-block: var(--section-space);
}

.section-pad--blue {
  color: var(--color-white);
  background-color: var(--color-brand-800);
}

/* Header and navigation */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: var(--color-white);
  box-shadow: 0 1px 0 rgb(9 39 79 / 8%);
}

.admin-bar .site-header {
  top: 32px;
}

.site-header.is-scrolled {
  animation: tzw-header-enter 600ms linear 300ms 1;
}

@keyframes tzw-header-enter {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.site-main {
  padding-top: var(--header-height);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 104px minmax(600px, 1fr) auto;
  align-items: center;
  height: 100%;
  padding-left: clamp(22px, 3.7vw, 72px);
}

.site-branding,
.site-branding a {
  display: flex;
  align-items: center;
}

.custom-logo-link img,
.site-branding__fallback img {
  width: auto;
  max-width: 86px;
  max-height: 68px;
}

.primary-navigation {
  align-self: stretch;
  min-width: 0;
}

.primary-menu,
.primary-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-menu {
  display: flex;
  justify-content: center;
  height: 100%;
  gap: clamp(28px, 4.2vw, 82px);
}

.primary-menu > .menu-item {
  position: relative;
  display: flex;
  align-items: center;
}

.primary-menu > .menu-item > a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  color: #121820;
  font-size: clamp(14px, .9vw, 17px);
  font-weight: 500;
  white-space: nowrap;
  transition: color var(--transition);
}

.primary-menu > .menu-item > a::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 3px;
  content: "";
  background: var(--color-accent);
  transition: inset var(--transition);
}

.primary-menu > .menu-item:hover > a,
.primary-menu > .menu-item:focus-within > a,
.primary-menu > .current-menu-item > a,
.primary-menu > .current-menu-ancestor > a {
  color: var(--color-brand-700);
}

.primary-menu > .menu-item:hover > a::after,
.primary-menu > .menu-item:focus-within > a::after,
.primary-menu > .current-menu-item > a::after,
.primary-menu > .current-menu-ancestor > a::after {
  right: 0;
  left: 0;
}

.primary-menu .sub-menu {
  position: absolute;
  z-index: 20;
  top: 100%;
  left: 50%;
  min-width: 150px;
  padding-block: 8px;
  color: var(--color-ink);
  background: var(--color-white);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 18px 40px rgb(7 31 70 / 14%);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
}

.primary-menu .menu-item:hover > .sub-menu,
.primary-menu .menu-item:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.primary-menu .sub-menu a {
  display: block;
  padding: 9px 20px;
  font-size: 14px;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}

.primary-menu .sub-menu a:hover,
.primary-menu .sub-menu a:focus-visible,
.primary-menu .sub-menu .current-menu-item > a {
  color: var(--color-white);
  background: #8a939e;
}

.site-header__tools {
  display: flex;
  align-self: stretch;
  align-items: stretch;
}

.language-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.language-switcher summary {
  display: flex;
  align-items: center;
  height: 100%;
  padding-inline: clamp(18px, 2vw, 38px);
  gap: 8px;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary svg {
  width: 22px;
  fill: none;
  stroke: currentcolor;
  stroke-width: 1.7;
}

.language-switcher ul {
  position: absolute;
  z-index: 30;
  top: 100%;
  right: 0;
  min-width: 148px;
  padding: 8px;
  margin: 0;
  list-style: none;
  background: var(--color-white);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 18px 40px rgb(7 31 70 / 14%);
}

.language-switcher ul a {
  display: block;
  padding: 7px 12px;
  border-radius: 4px;
}

.language-switcher ul a:hover {
  color: var(--color-white);
  background: var(--color-brand-800);
}

.header-email {
  display: flex;
  align-items: center;
  min-width: clamp(220px, 16.5vw, 318px);
  padding-inline: clamp(22px, 2.2vw, 42px);
  color: var(--color-white);
  background: var(--color-brand-800);
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: background var(--transition);
}

.header-email:hover {
  background: var(--color-brand-700);
}

.header-email svg {
  width: 21px;
  fill: none;
  stroke: currentcolor;
  stroke-width: 1.7;
}

.menu-toggle {
  display: none;
}

/* Hero */
.home-hero {
  position: relative;
  height: clamp(520px, 44.8vw, 860px);
  overflow: hidden;
  background: var(--color-brand-950);
}

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

.home-hero__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgb(7 31 70 / 2%), rgb(7 31 70 / 10%));
}

.home-hero__scroll {
  display: none;
}

/* Shared section headings and buttons */
.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(46px, 4vw, 72px);
  gap: 30px;
}

.section-title__eyebrow {
  margin: 0 0 4px;
  color: #474f5a;
  font-size: clamp(20px, 1.6vw, 30px);
  font-weight: 400;
  line-height: 1.35;
}

.section-title__heading {
  margin: 0;
  font-size: clamp(34px, 2.6vw, 50px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.035em;
}

.section-title--light .section-title__eyebrow {
  color: rgb(255 255 255 / 72%);
}

.section-title--light .section-title__heading {
  color: var(--color-white);
}

.button-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--color-white);
  isolation: isolate;
}

.button-link > span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 7px 25px;
  background: var(--color-brand-800);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.button-link__arrow,
.round-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  color: var(--color-white);
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

.button-link__arrow svg,
.round-arrow svg {
  width: 18px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.button-link:hover > span:first-child,
.button-link:focus-visible > span:first-child {
  background: var(--color-brand-700);
  transform: translateY(-2px);
}

.button-link:hover .button-link__arrow,
.button-link:focus-visible .button-link__arrow {
  color: var(--color-brand-800);
  background: var(--color-white);
  transform: translate(2px, -2px);
}

.button-link--light {
  color: var(--color-accent);
}

.button-link--light > span:first-child {
  color: var(--color-accent);
  background: var(--color-white);
}

.button-link--light .button-link__arrow {
  color: var(--color-accent);
  background: transparent;
  border-color: rgb(255 255 255 / 58%);
}

.button-link--soft > span:first-child {
  color: var(--color-brand-800);
  background: var(--color-soft);
}

.button-link--pulse {
  --button-pulse: 36 77 132;
}

.button-link--pulse.button-link--light {
  --button-pulse: 255 255 255;
}

.button-link--pulse::before,
.button-link--pulse::after {
  position: absolute;
  z-index: -1;
  content: "";
  background: rgb(var(--button-pulse) / 36%);
  border-radius: 999px;
  inset: -6px 45px -6px -6px;
  transform-origin: center;
  animation: tzw-button-pulse 2.4s ease-out infinite;
}

.button-link--pulse::after {
  animation-delay: -800ms;
}

.video-play::before,
.video-play::after {
  position: absolute;
  z-index: -1;
  content: "";
  border: 2px solid rgb(255 255 255 / 50%);
  border-radius: 999px;
  inset: -7px 34px -7px -7px;
  animation: tzw-pulse 2.2s ease-out infinite;
}

@keyframes tzw-button-pulse {
  0% { opacity: .9; transform: scale(1); }
  70% { opacity: .36; transform: scale(1.16, 1.24); }
  100% { opacity: 0; transform: scale(1.22, 1.34); }
}

@keyframes tzw-pulse {
  0% { opacity: .85; transform: scale(.94); }
  75%, 100% { opacity: 0; transform: scale(1.16); }
}

/* Products */
.product-section {
  overflow: hidden;
  background-image: url("../images/category-bg.jpg");
  background-position: center;
  background-size: cover;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 3vw, 58px) clamp(22px, 2vw, 36px);
}

.product-card__link {
  display: block;
}

.product-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1.63 / 1;
  padding: clamp(18px, 2vw, 34px);
  overflow: hidden;
  background: var(--color-white);
  border-radius: var(--radius-md);
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 550ms var(--ease-out);
}

.product-card__title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 17px;
  gap: 8px;
  color: var(--color-white);
  font-size: clamp(19px, 1.55vw, 29px);
  line-height: 1.3;
  text-align: center;
}

.product-card .round-arrow {
  width: 28px;
  height: 28px;
  color: rgb(255 255 255 / 85%);
  background: transparent;
  border-color: rgb(255 255 255 / 55%);
}

.product-card .round-arrow svg {
  width: 14px;
}

.product-card__link:hover .product-card__image,
.product-card__link:focus-visible .product-card__image {
  transform: scale(1.055);
}

.product-card__link:hover .round-arrow,
.product-card__link:focus-visible .round-arrow {
  color: var(--color-brand-700);
  background: var(--color-white);
  border-color: var(--color-white);
  transform: translate(2px, -2px);
}

/* About */
.about-section {
  overflow: hidden;
  background: var(--color-white);
}

.about-section__texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("../images/about-bg.png") center / cover no-repeat;
  opacity: .035;
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  align-items: center;
  gap: clamp(44px, 5vw, 92px);
}

.about-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.about-media__image {
  width: 100%;
  aspect-ratio: 1.34 / 1;
  object-fit: cover;
}

.video-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  padding: 0;
  cursor: pointer;
  background: var(--color-white);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 32px rgb(7 31 70 / 18%);
  transform: translate(-50%, -50%);
}

.video-play::before,
.video-play::after {
  z-index: -1;
  border-color: rgb(255 255 255 / 75%);
  border-radius: 50%;
  inset: -10px;
}

.video-play::after {
  animation-delay: 800ms;
}

.video-play > span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  margin: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--color-accent);
  transform: translate(-36%, -50%);
}

.about-copy > p {
  max-width: 770px;
  margin: 30px 0 34px;
  color: var(--color-copy);
  font-size: clamp(14px, .95vw, 18px);
  line-height: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 30px;
  gap: 16px 20px;
}

.stat-card {
  padding: 17px 24px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: 0 3px 12px rgb(9 39 79 / 4%);
}

.stat-card strong,
.stat-card span {
  display: block;
}

.stat-card strong {
  font-size: clamp(25px, 2vw, 38px);
  line-height: 1.15;
}

.stat-card span {
  margin-top: 5px;
  color: var(--color-muted);
  font-size: 14px;
}

.partner-marquee {
  position: relative;
  width: 100%;
  margin-top: clamp(64px, 7vw, 118px);
  overflow: hidden;
}

.partner-marquee::before,
.partner-marquee::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 9vw;
  pointer-events: none;
  content: "";
}

.partner-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}

.partner-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, #fff, transparent);
}

.partner-marquee__track {
  display: flex;
  width: max-content;
  animation: partner-scroll 25s linear infinite;
}

.partner-marquee:hover .partner-marquee__track {
  animation-play-state: paused;
}

.partner-marquee__group {
  --partner-gap: clamp(10px, .9vw, 18px);

  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: var(--partner-gap);
  padding-right: var(--partner-gap);
}

.partner-marquee__group img {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  height: clamp(62px, 7vw, 112px);
  object-fit: contain;
}

@keyframes partner-scroll {
  to { transform: translateX(-50%); }
}

.video-dialog[hidden] {
  display: none;
}

.video-dialog {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
}

.video-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(4 18 42 / 84%);
  backdrop-filter: blur(8px);
}

.video-dialog__panel {
  position: relative;
  z-index: 2;
  width: min(1100px, 92vw);
}

.video-dialog video {
  width: 100%;
  max-height: 82vh;
  background: #000;
  border-radius: var(--radius-sm);
}

.video-dialog__close {
  position: absolute;
  z-index: 3;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--color-white);
  cursor: pointer;
  background: transparent;
  border: 1px solid rgb(255 255 255 / 45%);
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
}

/* Advantages */
.advantages-section {
  overflow: hidden;
  background-image: url("../images/category-bg.jpg");
  background-position: center;
  background-size: cover;
}

.advantages-section .section-title {
  margin-bottom: clamp(46px, 4vw, 70px);
}

.advantage-accordion {
  display: flex;
  min-height: 510px;
  gap: clamp(14px, 1.45vw, 24px);
}

.advantage-card {
  position: relative;
  flex: 0 0 clamp(108px, 9.9vw, 152px);
  min-width: 0;
  height: 510px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: var(--radius-md);
  transition: flex-basis 550ms var(--ease-out), flex-grow 550ms var(--ease-out), border-color var(--transition);
}

.advantage-card.is-active {
  flex: 1 1 0;
  border-color: transparent;
}

.advantage-card__trigger {
  position: absolute;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  color: var(--color-white);
  cursor: pointer;
  background: var(--color-brand-950);
  border: 0;
  opacity: 1;
  inset: 0;
  transition: opacity 180ms ease 180ms, visibility 0s linear 0s;
}

.advantage-card__trigger::after {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, rgb(7 31 70 / 12%), rgb(7 31 70 / 55%));
  inset: 0;
}

.advantage-card__trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease-out);
}

.advantage-card__trigger span {
  position: absolute;
  z-index: 2;
  top: 38px;
  left: 50%;
  font-size: clamp(20px, 1.45vw, 28px);
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.35;
  text-shadow: 0 2px 12px rgb(7 31 70 / 35%);
  transform: translateX(-50%);
  writing-mode: vertical-rl;
}

.advantage-card:not(.is-active):hover .advantage-card__trigger img {
  transform: scale(1.045);
}

.advantage-card.is-active .advantage-card__trigger {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 120ms ease, visibility 0s linear 120ms;
}

.advantage-panel {
  position: absolute;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: var(--color-ink);
  background: var(--color-white);
  opacity: 0;
  visibility: hidden;
  inset: 0;
  transition: opacity 240ms ease, visibility 0s linear 240ms;
}

.advantage-card.is-active .advantage-panel {
  visibility: visible;
  opacity: 1;
  transition-delay: 180ms, 0s;
}

.advantage-panel__main-image {
  min-height: 510px;
  overflow: hidden;
}

.advantage-panel__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advantage-panel__copy {
  align-self: center;
  padding: clamp(28px, 2.5vw, 44px);
}

.advantage-panel__kicker {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 700;
}

.advantage-panel__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 28px;
  gap: 12px;
}

.advantage-panel__gallery img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.advantage-panel__copy h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 1.6vw, 30px);
}

.advantage-panel__copy > p:last-child {
  margin: 0;
  color: var(--color-copy);
  line-height: 1.85;
}

.advantage-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
  overflow: hidden;
  color: var(--color-ink);
  background: var(--color-white);
  border-radius: 14px;
}

.advantage-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 14px 22px;
  cursor: pointer;
  background: transparent;
  border: 0;
  gap: 14px;
  font-weight: 700;
}

.advantage-tab:not(:last-child)::after {
  position: absolute;
  top: 20px;
  right: 0;
  bottom: 20px;
  width: 1px;
  content: "";
  background: #cbd1d9;
}

.advantage-tab__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--color-white);
  background: var(--color-accent);
  border-radius: 8px;
  font-size: 13px;
}

.advantage-tab.is-active {
  color: var(--color-brand-700);
}

.advantage-tab.is-active .advantage-tab__icon {
  box-shadow: 0 0 0 5px rgb(5 196 239 / 18%);
}

/* News */
.news-grid,
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2.1vw, 40px);
}

.news-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--color-white);
  border-radius: var(--radius-md);
  transition: color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.news-card__media {
  display: block;
  aspect-ratio: 1.62 / 1;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.news-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease-out);
}

.news-card__body {
  padding: 22px 4px 8px;
  transition: padding var(--transition);
}

.news-card h3 {
  min-height: 3em;
  margin: 0 0 18px;
  color: var(--color-brand-900);
  font-size: clamp(16px, 1.15vw, 21px);
  line-height: 1.45;
  transition: color var(--transition);
}

.news-card time {
  display: block;
  margin-bottom: 6px;
  color: var(--color-muted);
  font-size: 14px;
}

.news-card p {
  display: -webkit-box;
  min-height: 3.4em;
  margin: 0 0 19px;
  overflow: hidden;
  color: var(--color-copy);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color var(--transition);
}

.news-card:hover,
.news-card:focus-within {
  color: var(--color-white);
  background: var(--color-brand-900);
  box-shadow: var(--shadow-soft);
  transform: translateY(-6px);
}

.news-card:hover .news-card__image,
.news-card:focus-within .news-card__image {
  transform: scale(1.045);
}

.news-card:hover .news-card__body,
.news-card:focus-within .news-card__body {
  padding: 22px 22px 24px;
}

.news-card:hover h3,
.news-card:focus-within h3,
.news-card:hover time,
.news-card:focus-within time,
.news-card:hover p,
.news-card:focus-within p {
  color: var(--color-white);
}

.news-card:hover .button-link--soft > span:first-child,
.news-card:focus-within .button-link--soft > span:first-child {
  color: var(--color-brand-900);
  background: var(--color-white);
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  color: rgb(255 255 255 / 82%);
  background: var(--color-brand-800);
}

.site-footer::before {
  position: absolute;
  content: "";
  background: url("../images/about-bg.png") center bottom / cover no-repeat;
  opacity: .07;
  inset: 0;
}

.site-footer__main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  padding-block: clamp(70px, 6vw, 110px);
  gap: 60px;
}

.site-footer__identity > a {
  display: inline-block;
  margin-bottom: 30px;
}

.site-footer__identity > a img {
  width: min(448px, 42vw);
}

.site-footer__contact {
  display: grid;
  margin: 0;
  gap: 5px;
  font-size: 15px;
  font-style: normal;
}

.site-footer__contact p {
  margin: 0;
}

.site-footer__contact strong {
  color: var(--color-white);
}

.site-footer__contact a:hover {
  color: var(--color-accent);
}

.site-footer__right {
  display: grid;
  justify-items: center;
  gap: 18px;
}

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

.site-footer__qr figure {
  width: 116px;
  margin: 0;
  text-align: center;
}

.site-footer__qr img {
  width: 116px;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--color-white);
  border: 5px solid var(--color-white);
}

.site-footer__qr figcaption {
  margin-top: 6px;
  font-size: 12px;
}

.application-links {
  display: flex;
  gap: 12px;
}

.application-links a {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transition: opacity var(--transition), transform var(--transition);
}

.application-links img {
  display: block;
  width: 100%;
  height: 100%;
}

.application-links a:hover,
.application-links a:focus-visible {
  opacity: .78;
  transform: translateY(-2px);
}

.site-footer__bottom {
  position: relative;
  border-top: 1px solid rgb(255 255 255 / 15%);
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  gap: 28px;
  font-size: 12px;
}

.site-footer__bottom p {
  margin: 0;
}

.footer-menu {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-menu li {
  display: inline-flex;
  align-items: center;
}

.footer-menu li:not(:last-child)::after {
  margin-inline: 8px;
  color: rgb(255 255 255 / 44%);
  content: "|";
}

.footer-menu a:hover {
  color: var(--color-white);
}

/* Inner templates */
.inner-hero {
  display: flex;
  align-items: center;
  min-height: 360px;
  color: var(--color-white);
  background: linear-gradient(90deg, rgb(7 31 70 / 92%), rgb(7 31 70 / 48%)), url("../images/header-product-nav.jpg") center / cover;
}

.inner-hero--compact {
  min-height: 300px;
}

.inner-hero p {
  margin: 0 0 4px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.inner-hero h1 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(38px, 4vw, 70px);
  line-height: 1.2;
}

.entry-content {
  max-width: 1180px;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content__featured {
  margin: 0 0 44px;
}

.entry-content__featured img {
  width: 100%;
  max-height: 680px;
  object-fit: contain;
}

.entry-cta-wrap {
  margin-bottom: var(--section-space);
}

.page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(30px, 4vw, 62px);
  color: var(--color-white);
  background: var(--color-brand-800);
  border-radius: var(--radius-lg);
  gap: 30px;
}

.page-cta h2,
.page-cta p {
  margin: 0;
}

.page-cta h2 {
  font-size: clamp(26px, 2.4vw, 44px);
}

.page-cta p {
  margin-top: 6px;
  color: rgb(255 255 255 / 72%);
}

.navigation.pagination {
  margin-top: 52px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 4px 10px;
  background: var(--color-soft);
  border-radius: 7px;
}

.page-numbers.current {
  color: var(--color-white);
  background: var(--color-brand-800);
}

.pagination-on-dark .page-numbers {
  color: var(--color-brand-900);
  background: var(--color-white);
}

.not-found {
  min-height: 65vh;
  text-align: center;
}

.not-found__code {
  margin: 0;
  color: var(--color-brand-800);
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 800;
  line-height: 1;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
}

/* Reveal motion is only hidden after JavaScript confirms it can reveal. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 720ms var(--ease-out), transform 720ms var(--ease-out);
}

.js [data-reveal].reveal-left {
  transform: translateX(-46px);
}

.js [data-reveal].reveal-right {
  transform: translateX(46px);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.js [data-reveal].reveal-order-1 { transition-delay: 80ms; }
.js [data-reveal].reveal-order-2 { transition-delay: 160ms; }
.js [data-reveal].reveal-order-3 { transition-delay: 240ms; }
.js [data-reveal].reveal-order-4 { transition-delay: 320ms; }
.js [data-reveal].reveal-order-5 { transition-delay: 400ms; }

/* Large tablet */
@media (max-width: 1280px) {
  :root {
    --header-height: 76px;
  }

  .site-header__inner {
    grid-template-columns: 88px minmax(520px, 1fr) auto;
    padding-left: 22px;
  }

  .primary-menu {
    gap: 26px;
  }

  .header-email {
    min-width: 76px;
    padding-inline: 24px;
  }

  .header-email span {
    display: none;
  }

  .home-hero {
    height: clamp(500px, 44.8vw, 620px);
  }

}

/* Navigation switches to a drawer before labels become cramped. */
@media (max-width: 1023px) {
  :root {
    --header-height: 68px;
  }

  .admin-bar .site-header {
    top: 32px;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto auto;
    padding-inline: 20px 0;
  }

  .custom-logo-link img,
  .site-branding__fallback img {
    max-height: 54px;
  }

  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    padding: 11px;
    cursor: pointer;
    background: transparent;
    border: 0;
    place-content: center;
    gap: 5px;
  }

  .menu-toggle > span:not(.screen-reader-text) {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-brand-900);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-navigation {
    position: fixed;
    z-index: 90;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    padding: 22px var(--gutter) 44px;
    overflow-y: auto;
    background: var(--color-white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  }

  .admin-bar .primary-navigation {
    top: calc(var(--header-height) + 32px);
  }

  .primary-navigation.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .primary-menu {
    display: block;
    height: auto;
  }

  .primary-menu > .menu-item {
    display: block;
    border-bottom: 1px solid var(--color-line);
  }

  .primary-menu > .menu-item > a {
    height: auto;
    padding: 14px 4px;
    font-size: 17px;
  }

  .primary-menu > .menu-item > a::after {
    display: none;
  }

  .primary-menu .sub-menu {
    position: static;
    min-width: 0;
    padding: 0 0 10px 16px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .primary-menu .sub-menu a {
    padding: 7px 10px;
  }

  .language-switcher summary {
    padding-inline: 14px;
  }

  .language-switcher summary span {
    display: none;
  }

  .header-email {
    min-width: 68px;
    padding-inline: 22px;
  }

  .home-hero {
    height: clamp(470px, 60vw, 620px);
  }

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

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

  .about-media {
    width: min(760px, 100%);
  }

  .advantage-accordion {
    display: block;
    min-height: 0;
  }

  .advantage-card {
    display: none;
    height: auto;
    border: 0;
  }

  .advantage-card.is-active {
    display: block;
  }

  .advantage-card__trigger {
    display: none;
  }

  .advantage-panel {
    position: relative;
    opacity: 1;
    visibility: visible;
  }

  .advantage-panel__main-image {
    min-height: 440px;
  }

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

  .advantage-tab:nth-child(2)::after {
    display: none;
  }

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

  .news-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 12px);
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .admin-bar .primary-navigation {
    top: calc(var(--header-height) + 46px);
  }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --gutter: 20px;
    --section-space: 72px;
  }

  .site-header__inner {
    display: flex;
    padding-inline: 14px;
  }

  .site-branding {
    margin-right: auto;
  }

  .menu-toggle {
    flex: 0 0 46px;
  }

  .site-header__tools {
    display: none;
  }

  .home-hero {
    width: 100%;
    height: min(65svh, 620px);
    min-height: 420px;
  }

  .home-hero__video {
    object-position: 56% center;
  }

  .section-heading-row {
    align-items: flex-start;
    margin-bottom: 40px;
  }

  .section-heading-row > .button-link {
    margin-top: 14px;
  }

  .section-title__eyebrow {
    font-size: 18px;
  }

  .section-title__heading {
    font-size: 34px;
  }

  .button-link > span:first-child {
    min-height: 34px;
    padding-inline: 18px;
    font-size: 13px;
  }

  .button-link__arrow {
    width: 34px;
    height: 34px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .product-card__media {
    aspect-ratio: 1.55 / 1;
  }

  .product-card__title {
    margin-top: 13px;
    font-size: 21px;
  }

  .about-grid {
    gap: 38px;
  }

  .video-play {
    width: 68px;
    height: 68px;
  }

  .video-play > span {
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 14px;
  }

  .about-copy > p {
    margin-block: 22px 28px;
    line-height: 1.8;
  }

  .stat-card {
    padding: 14px 16px;
  }

  .partner-marquee__group {
    --partner-gap: 9px;
  }

  .partner-marquee__group img {
    height: 72px;
  }

  .advantages-section .section-title {
    margin-bottom: 38px;
  }

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

  .advantage-panel__main-image {
    min-height: 0;
    aspect-ratio: 1.35 / 1;
  }

  .advantage-panel__copy {
    padding: 24px 20px 30px;
  }

  .advantage-panel__gallery {
    gap: 8px;
  }

  .advantage-tabs {
    margin-top: 18px;
  }

  .advantage-tab {
    justify-content: flex-start;
    min-height: 62px;
    padding: 10px 14px;
    gap: 10px;
    font-size: 13px;
  }

  .advantage-tab:nth-child(1),
  .advantage-tab:nth-child(2) {
    border-bottom: 1px solid var(--color-line);
  }

  .advantage-tab__icon {
    width: 30px;
    height: 30px;
  }

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

  .news-card:last-child {
    grid-column: auto;
    width: auto;
  }

  .news-card__body {
    padding: 18px 4px 8px;
  }

  .news-card:hover .news-card__body,
  .news-card:focus-within .news-card__body {
    padding: 18px 18px 22px;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 44px;
  }

  .site-footer__identity > a img {
    width: min(448px, 90vw);
  }

  .site-footer__right {
    justify-items: start;
  }

  .site-footer__qr figure,
  .site-footer__qr img {
    width: 104px;
  }

  .site-footer__bottom-inner {
    display: block;
    padding-block: 18px;
  }

  .footer-menu {
    flex-wrap: wrap;
    margin-top: 8px;
  }

  .inner-hero {
    min-height: 260px;
  }

  .page-cta {
    display: block;
  }

  .page-cta .button-link {
    margin-top: 24px;
  }
}

@media (max-width: 599px) {
  .section-heading-row {
    display: block;
  }

  .section-heading-row > .button-link {
    margin-top: 26px;
  }

  .stats-grid {
    gap: 10px;
  }

  .stat-card strong {
    font-size: 24px;
  }

  .stat-card span {
    font-size: 12px;
  }
}

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

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

  .partner-marquee__track {
    width: 100%;
    transform: none;
  }

  .partner-marquee__group {
    justify-content: center;
    width: 100%;
    padding-inline: 20px;
    flex-wrap: wrap;
  }

  .partner-marquee__group[aria-hidden="true"] {
    display: none;
  }
}
