:root {
  --navy: #06172b;
  --navy-deep: #001024;
  --blue: #2680ef;
  --blue-bright: #1296db;
  --blue-soft: #e9f2f8;
  --blue-muted: #284b77;
  --ink: #0a1f38;
  --muted: #676767;
  --muted-light: rgba(255, 255, 255, 0.58);
  --line: rgba(156, 156, 156, 0.8);
  --white: #ffffff;
  --black: #000000;
  --content-max: 1280px;
  --wide-max: 1280px;
  --radius-sm: 5px;
  --radius-md: 15px;
  --radius-lg: 20px;
  --shadow-card: 0 4px 4px rgba(0, 0, 0, 0.25);
  --shadow-blue: 0 4px 6px rgba(0, 114, 255, 0.75);
  --font-sans: "Roboto", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--navy);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(38, 128, 239, 0.55);
  outline-offset: 4px;
}

.shell {
  width: min(calc(100% - 48px), var(--content-max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--white);
  box-shadow: 0 10px 4px rgba(0, 0, 0, 0.18);
  transition: background-color 0.22s ease, box-shadow 0.22s ease, backdrop-filter 0.22s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 24px rgba(6, 23, 43, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--wide-max));
  min-height: 78px;
  margin-inline: auto;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  color: #0c2948;
}

.brand-mark {
  display: block;
  width: 70px;
  height: 48px;
  overflow: visible;
  flex: 0 0 70px;
  background: transparent;
}

.brand-mark img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}

.brand-name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: clamp(18px, 2.2vw, 42px);
}

.nav-link {
  position: relative;
  color: #111111;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-link {
  padding: 31px 0 24px;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 11px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
}

.quote-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.quote-button,
.button--primary {
  color: var(--white);
  background: var(--blue);
}

.quote-button:hover,
.button--primary:hover {
  background: #0d6bd9;
}

.quote-button--header {
  min-height: 27px;
  padding: 7px 13px;
  font-size: 12px;
}

.button--outline {
  color: var(--white);
  border: 1px solid var(--blue);
  background: transparent;
}

.button--outline:hover {
  color: var(--white);
  background: rgba(38, 128, 239, 0.18);
}

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

.hero {
  position: relative;
  min-height: clamp(560px, 38.333vw, 736px);
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(0, 10, 21, 0.72) 0%, rgba(0, 10, 21, 0.25) 62%, rgba(0, 10, 21, 0.08) 100%);
}

.hero-video-card {
  position: absolute;
  top: 50%;
  right: max(24px, calc((100vw - var(--content-max)) / 2));
  z-index: 2;
  width: min(31vw, 420px);
  padding: 10px;
  background: var(--navy-blue, #1c385c);
  box-shadow: 11px 14px 6px rgba(0, 0, 0, 0.24);
  transform: translateY(-50%);
}

.hero-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(28, 56, 92, 0.4);
  background: var(--black);
  object-fit: cover;
}

.hero-content {
  position: relative;
  left: 80px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: inherit;
  padding-block: 80px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: #1688dc;
}

.hero h1 {
  max-width: 520px;
  margin: 0;
  color: var(--white);
  font-size: clamp(46px, 4.15vw, 64px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-shadow: 4px 2px 0 rgba(255, 255, 255, 0.16);
}

.hero h1 span {
  color: var(--blue);
}

.hero-copy {
  max-width: 500px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
  min-height: 100%;
}

.hero-slide {
  z-index: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 720ms ease, visibility 720ms ease;
}

.hero-slide.is-active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.hero-slide .hero-content {
  z-index: 2;
  min-height: 100%;
}

.hero-slide h2 {
  max-width: 560px;
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 3.8vw, 60px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-shadow: 4px 2px 0 rgba(255, 255, 255, 0.16);
}

.hero-slide h2 span {
  color: var(--blue);
}

.hero-slide--product .hero-media {
  background: linear-gradient(135deg, #071a2d 0%, #123b61 58%, #1e5a86 100%);
}

.hero-slide--product .hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide--office .hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide--product .hero-overlay,
.hero-slide--office .hero-overlay {
  background: transparent;
}

.hero-slide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-slide-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.hero-slide-tags b {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.hero-controls {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 18px;
  transform: translateX(-50%);
}

.hero-slide-count {
  display: flex;
  align-items: baseline;
  min-width: 43px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-slide-count [data-hero-current] {
  color: var(--blue);
  font-size: 20px;
}

.hero-slide-divider {
  margin: 0 5px;
  color: rgba(255, 255, 255, 0.42);
}

.hero-progress {
  width: 160px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.hero-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left center;
}

.hero-progress.is-running span {
  animation: hero-progress-fill var(--hero-progress-duration, 3s) linear forwards;
}

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

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 32px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background-color 180ms ease, width 180ms ease;
}

.hero-dot.is-active {
  width: 46px;
  background: var(--blue);
}

.hero-pause {
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.hero-pause:hover,
.hero-pause:focus-visible {
  border-color: var(--blue);
  color: var(--white);
}

.capabilities {
  padding: 34px 0;
  background: var(--navy);
}

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

.capability-card {
  display: flex;
  align-items: center;
  min-height: 104px;
  padding: 18px 20px;
  border-radius: 10px;
  background: rgba(40, 75, 119, 0.64);
  box-shadow: var(--shadow-blue);
  color: var(--white);
}

.capability-card img {
  width: 56px;
  height: 56px;
  margin-right: 16px;
  flex: 0 0 56px;
  object-fit: contain;
}

.capability-card h2 {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.1;
}

.section {
  padding: 104px 0;
}

.section-light {
  color: var(--navy-deep);
  background: var(--blue-soft);
}

.section-dark {
  color: var(--white);
  background: var(--navy);
}

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

.section-heading h2 {
  max-width: 880px;
  margin: 0;
  color: inherit;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

#applications-title {
  font-size: clamp(calc(30px - 4px), calc(3vw - 4px), calc(42px - 4px));
}

.section-heading > p:last-child {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.section-heading--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-heading--center h2 {
  max-width: 920px;
}

.section-heading--center > p:last-child {
  max-width: 550px;
}

.section-heading--light > p:last-child {
  color: var(--muted-light);
}

.section-heading > .eyebrow {
  color: var(--blue);
}

.section-heading > .eyebrow.eyebrow--dark {
  color: #1688dc;
}

.products-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.product-grid {
  position: relative;
  padding-bottom: 0;
}

/* Swiper product carousel */
.product-swiper.swiper {
  overflow: hidden;
  padding-top: 16px;
}

.product-swiper .swiper-wrapper {
  box-sizing: border-box;
}

.product-swiper .swiper-slide {
  height: auto;
}

.product-swiper .product-card {
  height: 100%;
}

/* Navigation arrows */
.product-nav.swiper-button-prev,
.product-nav.swiper-button-next {
  top: calc(50% - 32px);
  width: 46px;
  height: 46px;
  margin: 0;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(15, 30, 60, 0.18);
  color: var(--navy-deep);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.product-nav.swiper-button-prev {
  left: 4px;
}

.product-nav.swiper-button-next {
  right: 4px;
}

.product-nav.swiper-button-prev::after,
.product-nav.swiper-button-next::after {
  font-size: 17px;
  font-weight: 700;
}

.product-nav.swiper-button-prev:hover,
.product-nav.swiper-button-next:hover {
  background: var(--blue);
  color: var(--white);
  transform: scale(1.06);
}

.product-nav.swiper-button-disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

.product-card {
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 780ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 760ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 620ms ease;
}

.product-swiper .product-card.is-hovered,
.product-swiper .product-card:focus-within {
  z-index: 4;
  transform: translate3d(0, -8px, 0) scale(1.015);
  background: rgba(38, 128, 239, 0.82);
  box-shadow: 0 24px 46px rgba(38, 128, 239, 0.34);
}

.product-card.is-hovered .product-image,
.product-card:focus-within .product-image {
  width: min(174px, calc(100% - 32px));
  height: auto;
  aspect-ratio: 1;
  margin: 16px auto 0;
  border-radius: 50%;
  background: var(--white);
}

.product-image {
  transition: width 780ms cubic-bezier(0.22, 1, 0.36, 1),
    height 780ms cubic-bezier(0.22, 1, 0.36, 1),
    margin 780ms cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 780ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 620ms ease;
}

.product-body h3,
.product-body > p:not(.card-kicker),
.card-kicker,
.card-note {
  transition: color 620ms ease, border-color 620ms ease;
}

.product-card.is-hovered .product-body h3,
.product-card:focus-within .product-body h3 {
  color: var(--white);
}

.product-card.is-hovered .card-kicker,
.product-card:focus-within .card-kicker {
  color: #8fc5ff;
}

.product-card.is-hovered .product-body > p:not(.card-kicker),
.product-card:focus-within .product-body > p:not(.card-kicker) {
  color: rgba(255, 255, 255, 0.82);
}

.product-card.is-hovered .card-note,
.product-card:focus-within .card-note {
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.78);
}

.product-card-link {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: inherit;
}

.product-image {
  height: 174px;
  overflow: hidden;
  background: #f7f7f7;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-body {
  min-height: 194px;
  padding: 16px 17px 18px;
}

.card-kicker {
  margin: 0 0 5px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.product-body h3 {
  margin: 0;
  color: var(--navy-deep);
  font-size: calc(18px - 2px);
  font-weight: 800;
  line-height: 1.18;
  min-height: calc(2 * 1.18em);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.news-body h3 {
  margin: 0;
  color: var(--navy-deep);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.18;
}

.product-body > p:not(.card-kicker) {
  min-height: 54px;
  margin: 12px 0 16px;
  color: #545e69;
  font-size: 11px;
  line-height: 1.55;
}

.card-note {
  display: block;
  padding-top: 13px;
  border-top: 1px solid #d9d9d9;
  color: #46505b;
  font-size: 10px;
  line-height: 1.35;
}

.about-section {
  padding-top: 82px;
  padding-bottom: 94px;
}

.about-section .section-heading {
  margin-bottom: 56px;
}

.about-section .section-heading h2 {
  max-width: 730px;
  font-size: clamp(26px, 2.5vw, 36px);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 48px;
}

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

.media-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  content: "";
  pointer-events: none;
}

.media-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-media {
  min-height: 380px;
  box-shadow: 11px 7px 10px rgba(0, 0, 0, 0.25);
}

.about-media > img,
.about-carousel-slide > img {
  min-height: 380px;
}

.about-carousel {
  isolation: isolate;
}

.about-carousel-track,
.about-carousel-slide {
  position: absolute;
  inset: 0;
}

.about-carousel-track {
  overflow: hidden;
}

.about-carousel-slide {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  transition: opacity 520ms ease, transform 900ms ease, visibility 520ms ease;
}

.about-carousel-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.about-carousel-slide > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-carousel-caption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 46px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--white);
}

.about-carousel-caption strong {
  font-size: 16px;
  line-height: 1.2;
}

.about-carousel-caption span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.3;
}

.about-carousel-dots {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 18px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.about-carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: width 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.about-carousel-dot.is-active {
  width: 8px;
  border-color: var(--blue);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 2px rgba(38, 128, 239, 0.22);
}

.about-carousel-dot:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.media-card figcaption,
.tile-caption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--white);
}

.media-card figcaption strong,
.tile-caption strong {
  font-size: 16px;
  line-height: 1.2;
}

.media-card figcaption span,
.tile-caption span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.3;
}

.application-tile.media-card .tile-caption {
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 78px;
  padding: 20px 24px 22px;
  overflow: hidden;
}

.application-tile.media-card .tile-caption::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--white);
  content: "";
  pointer-events: none;
  transform: translateY(101%);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.application-tile.media-card .tile-caption > * {
  position: relative;
  z-index: 1;
  transition: color 260ms ease;
}

.application-tile.media-card:focus-within .tile-caption::before {
  transform: translateY(0);
}

.application-tile.media-card:focus-within .tile-caption strong {
  color: var(--navy);
}

.application-tile.media-card:focus-within .tile-caption span {
  color: var(--muted);
}

@media (hover: hover) and (pointer: fine) {
  .application-tile.media-card:hover .tile-caption::before {
    transform: translateY(0);
  }

  .application-tile.media-card:hover .tile-caption strong {
    color: var(--navy);
  }

  .application-tile.media-card:hover .tile-caption span {
    color: var(--muted);
  }
}

.about-copy h3 {
  max-width: 440px;
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15;
}

.about-copy p {
  max-width: 460px;
  margin: 0;
  color: var(--muted-light);
  font-size: 14px;
  line-height: 1.6;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.tag-list span {
  padding: 5px 8px;
  border: 1px solid rgba(38, 128, 239, 0.82);
  border-radius: 4px;
  color: var(--white);
  font-size: 10px;
}

.applications-section {
  padding-top: 88px;
  padding-bottom: 96px;
}

.video-showcase-section {
  padding-top: 78px;
  padding-bottom: 64px;
  color: var(--navy-deep);
  background: var(--blue-soft);
}

.video-showcase-section > .shell > h2 {
  margin: 0 0 28px 45px;
  color: var(--navy-deep);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.video-showcase-panel {
  display: grid;
  grid-template-columns: minmax(0, 556px) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 111px);
  min-height: 530px;
  padding: 33px 55px 24px;
  background: #f7f7f7;
}

.video-showcase-media {
  display: flex;
  align-items: center;
}

.video-showcase-frame {
  position: relative;
  width: 100%;
  padding: 10px;
  background: var(--navy-blue, #1c385c);
  box-shadow: 11px 14px 6px rgba(0, 0, 0, 0.24);
}

.video-showcase-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(28, 56, 92, 0.4);
  background: var(--black);
  object-fit: cover;
}

.video-showcase-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  border: 0;
  background: url("assets/figma/video-play.svg") center / contain no-repeat;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.video-showcase-play.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.video-showcase-play:focus-visible {
  outline-offset: 5px;
}

.video-showcase-list {
  align-self: center;
  min-width: 0;
}

.video-showcase-item {
  border-bottom: 1px solid #d9d9d9;
}

.video-showcase-item h3 {
  margin: 0;
}

.video-showcase-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 73px;
  padding: 0 4px 0 0;
  border: 0;
  color: var(--navy-deep);
  background: transparent;
  font: inherit;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.video-showcase-trigger:hover,
.video-showcase-trigger:focus-visible {
  color: var(--blue-bright);
}

.video-showcase-chevron {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  margin-left: 18px;
  background: url("assets/figma/video-chevron.svg") center / 7px 13px no-repeat;
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.video-showcase-item.is-active .video-showcase-chevron {
  transform: rotate(-90deg);
}

.video-showcase-item.is-active .video-showcase-trigger::after {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 107px;
  height: 2px;
  border-radius: 6px;
  background: var(--blue-bright);
  content: "";
}

.video-showcase-copy {
  padding: 0 34px 25px 0;
}

.video-showcase-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--navy-deep);
  font-size: 16px;
  line-height: 1.5;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 40px;
}

.section-heading--split > p:last-child {
  margin: 0 0 4px;
}

.application-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  min-height: 470px;
}

.application-tile {
  min-height: 220px;
  overflow: hidden;
  border-radius: 0;
}

.application-tile--large {
  grid-row: 1 / span 2;
}

.application-tile img {
  min-height: 100%;
}

.application-tile--accent {
  padding: 26px;
  color: var(--white);
  background: var(--blue);
}

.application-tile--accent .eyebrow {
  max-width: 220px;
  color: var(--white);
  font-size: 13px;
  line-height: 1.3;
}

.application-tile--accent p:last-child {
  margin: 44px 0 0;
  font-size: 12px;
  line-height: 1.55;
}

.quality-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.quality-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: 54px;
}

.quality-media {
  padding: 0 10px;
}

.certificate-stack {
  position: relative;
  display: block;
  min-height: 420px;
  overflow: hidden;
  padding: 14px;
  border-radius: 6px;
  background: #ececec;
  box-shadow: var(--shadow-card);
  isolation: isolate;
}

.certificate-empty {
  display: grid;
  min-height: 420px;
  place-items: center;
  margin: 0;
  padding: 40px;
  color: var(--muted);
  text-align: center;
}

.certificate-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42%;
  margin: 0;
  opacity: 0.56;
  transform: translate(-50%, -50%) scale(0.72);
  transition: transform 620ms ease, opacity 620ms ease, filter 620ms ease;
  filter: saturate(0.78);
}

.certificate-slide[data-position="previous"] {
  transform: translate(-120%, -50%) scale(0.72);
}

.certificate-slide[data-position="next"] {
  transform: translate(20%, -50%) scale(0.72);
}

.certificate-slide[data-position="hidden"] {
  display: none;
  visibility: hidden;
  pointer-events: none;
}

.certificate-slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  filter: none;
}

.certificate-slide img {
  width: 100%;
  aspect-ratio: 0.71;
  object-fit: contain;
  background: var(--white);
  border-radius: 2px;
}

.quality-copy h2 {
  max-width: 440px;
  margin: 0 0 20px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
}

.quality-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 0;
  color: var(--muted-light);
  font-size: 14px;
  line-height: 1.6;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 0;
  color: var(--white);
  font-size: 11px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 16px;
}

.check-list li::before {
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.news-section {
  padding-top: 92px;
  padding-bottom: 94px;
}

.news-carousel-shell {
  position: relative;
  padding-inline: 58px;
}

.news-carousel-shell .news-nav {
  top: calc(50% - 32px);
  z-index: 3;
}

.news-carousel-shell .news-nav.swiper-button-prev {
  left: 0;
}

.news-carousel-shell .news-nav.swiper-button-next {
  right: 0;
}

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

.news-swiper {
  display: block;
  overflow: hidden;
  padding-bottom: 64px;
}

.news-swiper .swiper-wrapper {
  align-items: stretch;
}

.news-swiper .swiper-slide {
  height: auto;
}

.news-swiper .news-card {
  height: 100%;
}

.news-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 34px;
}

.news-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(480px, 60%);
  height: 6px;
  overflow: visible;
}

.news-progress-segment {
  --news-progress: 0%;
  position: relative;
  display: block;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(20, 40, 80, 0.16);
}

.news-progress-segment.is-active {
  background: rgba(38, 128, 239, 0.18);
}

.news-progress-segment::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--news-progress);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--navy-deep));
  content: "";
  transition: width 160ms linear;
}

.news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
  color: inherit;
  text-decoration: none;
}

.news-card-link:hover {
  color: inherit;
}

.news-card-link .news-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--blue-bright);
  font-size: 11px;
  font-weight: 700;
}

.news-card-link:hover .news-card-cta,
.news-card-link:focus-visible .news-card-cta {
  color: var(--blue);
}

.news-image {
  height: 240px;
  overflow: hidden;
  background: #f7f7f7;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.news-body {
  display: flex;
  min-height: 250px;
  padding: 18px 20px 20px;
  flex-direction: column;
}

.news-body h3 {
  margin-top: 6px;
  font-size: 17px;
}

.news-body p:not(.card-kicker) {
  margin: 14px 0 20px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.button--more {
  min-width: 106px;
  margin: 0 0 0 auto;
}

.site-footer {
  padding: 78px 0 26px;
  color: var(--white);
  background: var(--black);
}

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

.brand--footer {
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  padding: 8px 14px 8px 10px;
  color: #0c2948;
  background: var(--white);
  border-radius: 10px;
}

.brand-mark--footer {
  width: 70px;
  height: 48px;
  overflow: visible;
  flex-basis: 70px;
  background: transparent;
}

.brand-mark--footer img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}

.brand--footer .brand-name {
  display: block;
  margin-top: 0;
  color: #0c2948;
  font-size: 20px;
}

.brand-footer-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.brand--footer small {
  display: block;
  color: #5e6b79;
  font-size: 10px;
  line-height: 1.45;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  color: #9c9c9c;
  font-size: 11px;
}

.footer-column.footer-explore {
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  column-gap: 18px;
}

.footer-column.footer-explore h2 {
  flex: 0 0 100%;
}

.footer-column.footer-explore a {
  margin-bottom: 0;
}

.footer-column h2 {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.footer-column p {
  margin: 0;
  line-height: 1.4;
}

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

.footer-contact a:not(.social-links a) {
  color: #4e8cdc;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
}

.social-links a {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  overflow: hidden;
  color: var(--blue);
  border-radius: 50%;
  background: rgb(255 255 255 / .92);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease;
}

.social-links a:hover {
  transform: scale(1.15);
}

.social-links img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-tools {
  position: fixed;
  z-index: 40;
  right: clamp(12px, 2vw, 28px);
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateY(-50%);
}

.site-tools-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  border: 1px solid #d8e4f0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(6, 23, 43, 0.2);
}

.site-tool-social {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  overflow: visible;
  place-items: center;
  color: var(--blue);
  border-radius: 10px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease;
}

.site-tool-social:hover {
  transform: scale(1.15);
}

.site-tool-social-icon {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border-radius: inherit;
  background: #eef7ff;
}

.site-tool-social-icon svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-tool-social-icon-image {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.site-tool-social--whatsapp .site-tool-social-icon {
  border: 1px solid #d7eee2;
  background: var(--white);
}

.site-tool-social--email .site-tool-social-icon {
  color: var(--white);
  background: var(--blue);
}

.site-tool-social--mobile .site-tool-social-icon {
  color: var(--white);
  background: #eab308;
}

.site-tool-social-info {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  z-index: 2;
  min-width: 0;
  width: max-content;
  max-width: min(250px, calc(100vw - 88px));
  padding: 8px 10px;
  border: 1px solid #d8e4f0;
  border-radius: 9px;
  background: rgb(255 255 255 / .98);
  box-shadow: 0 10px 24px rgb(6 23 43 / .18);
  text-align: left;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(6px, -50%);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.site-tool-social-info--whatsapp {
  width: 116px;
  padding: 8px;
  text-align: center;
}

.site-tool-social-info--whatsapp .site-tool-social-qr {
  display: block;
  width: 96px;
  height: 96px;
  margin: 7px auto 0;
  object-fit: contain;
  border: 1px solid var(--line);
  background: var(--white);
}

.site-tool-social:hover .site-tool-social-info,
.site-tool-social:focus-visible .site-tool-social-info,
.site-tool-social:focus-within .site-tool-social-info {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
}

.site-tool-social-label,
.site-tool-social-value {
  display: block;
}

.site-tool-social-label {
  color: var(--ink-950);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-tool-social-value {
  margin-top: 3px;
  color: var(--slate-600);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
}

.site-tool-top {
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(38, 128, 239, 0.35);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.site-tool-top:hover {
  background: #0d6bd9;
}

.site-tools.is-scrolled .site-tool-top {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

@media (max-width: 480px) {
  .site-tools {
    right: 12px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .site-tools-social {
    gap: 8px;
    padding: 9px 7px;
  }

  .site-tool-social-info {
    min-width: 0;
    max-width: min(230px, calc(100vw - 78px));
  }

  .site-tool-top {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-tool-social,
  .site-tool-top {
    transition: none;
  }
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: #9c9c9c;
  font-size: 10px;
}

.footer-support {
  margin-left: auto;
  color: #9c9c9c;
  font-size: 10px;
}

@media (max-width: 1200px) {
  .header-inner {
    gap: 20px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .header-actions {
    gap: 7px;
  }

  .capability-card {
    padding-inline: 14px;
  }

  .capability-card img {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    margin-right: 10px;
  }

  .capability-card h2 {
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 1px solid #d9e4ef;
    border-radius: 6px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: var(--white);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 99px;
    background: var(--navy);
    transition: transform 180ms ease, opacity 180ms ease;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .mobile-menu {
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: max-height 180ms ease, opacity 180ms ease, padding 180ms ease;
  }

  .mobile-menu.is-open {
    max-height: 600px;
    padding: 8px 24px 22px;
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu > a:not(.quote-button) {
    padding: 11px 0;
    border-bottom: 1px solid #e7eef5;
    font-size: 14px;
    font-weight: 600;
  }

  .mobile-menu .quote-button {
    margin-top: 16px;
  }

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

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

  .about-copy,
  .quality-copy {
    max-width: 720px;
    margin-inline: auto;
  }

  .application-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(220px, auto));
    min-height: 0;
  }

  .application-tile--large {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 320px;
  }

  .application-tile--accent {
    grid-column: 1 / -1;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .shell,
  .header-inner {
    width: min(calc(100% - 36px), var(--content-max));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-mark {
    width: 58px;
    height: 40px;
    flex-basis: 58px;
  }

  .brand-mark img {
    width: 100%;
    height: 100%;
    transform: none;
  }

  .brand-name {
    font-size: 20px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-media img {
    object-position: 63% center;
  }

  .hero-content {
    left: 0;
    justify-content: flex-end;
    padding-bottom: 115px;
  }

  .hero-video-card {
    top: 28px;
    right: 18px;
    width: 210px;
    transform: none;
  }

  .hero-copy {
    max-width: 390px;
    font-size: 14px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-slide--product .hero-media img {
    object-position: 70% center;
  }

  .hero-slide--office .hero-media img {
    object-position: 62% center;
  }

  .hero-controls {
    right: 18px;
    bottom: 20px;
    left: 18px;
    gap: 10px;
    transform: none;
  }

  .hero-progress {
    flex: 1;
    width: auto;
  }

  .hero-slide-tags {
    gap: 6px;
  }

  .hero-slide-tags span {
    min-height: 28px;
    padding: 6px 9px;
  }

  .button {
    min-height: 42px;
    padding-inline: 16px;
  }

  .capabilities {
    padding: 24px 0;
  }

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

  .capability-card {
    min-height: 88px;
  }

  .capability-card img {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .section,
  .products-section,
  .about-section,
  .applications-section,
  .video-showcase-section,
  .quality-section,
  .news-section {
    padding: 70px 0;
  }

  .section-heading,
  .section-heading--split {
    display: block;
    margin-bottom: 36px;
  }

  .section-heading--split > p:last-child {
    margin-top: 22px;
  }

  .product-image {
    height: 210px;
  }

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

  .about-media,
  .about-media > img,
  .about-carousel-slide > img {
    min-height: 280px;
  }

  .about-carousel-caption {
    right: 18px;
    bottom: 42px;
    left: 18px;
  }

  .about-carousel-dots {
    bottom: 15px;
  }

  .about-copy h3 {
    font-size: 26px;
  }

  .video-showcase-section > .shell > h2 {
    margin-left: 0;
  }

  .video-showcase-panel {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: 0;
    padding: 24px;
  }

  .video-showcase-list {
    align-self: stretch;
  }

  .application-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, minmax(180px, auto));
    min-height: 0;
  }

  .video-showcase-panel {
    padding: 16px;
  }

  .video-showcase-trigger {
    min-height: 64px;
    font-size: 18px;
  }

  .video-showcase-copy {
    padding-right: 26px;
  }

  .application-tile--large {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 270px;
  }

  .application-tile--accent {
    grid-column: auto;
  }

  .quality-media {
    padding: 0;
  }

  .certificate-stack {
    min-height: 320px;
    padding: 8px;
  }

  .certificate-slide {
    width: 48%;
  }

  .certificate-slide[data-position="previous"] {
    transform: translate(-116%, -50%) scale(0.7);
  }

  .certificate-slide[data-position="next"] {
    transform: translate(16%, -50%) scale(0.7);
  }

  .news-image {
    height: 285px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

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

@media (max-width: 480px) {
  .hero-slide--product .hero-media img {
    object-position: 72% center;
  }

  .hero-slide-tags {
    display: none;
  }

  .hero-video-card {
    top: 22px;
    width: 170px;
    padding: 7px;
  }

  .hero-controls {
    bottom: 16px;
  }

  .hero-slide-count {
    min-width: 36px;
    font-size: 10px;
  }

  .hero-slide-count [data-hero-current] {
    font-size: 16px;
  }

  .news-controls {
    gap: 16px;
  }

  .news-carousel-shell {
    padding-inline: 46px;
  }

  .news-carousel-shell .news-nav {
    width: 40px;
    height: 40px;
  }

  .news-progress {
    width: auto;
    flex: 1;
  }

  .news-controls .button--more {
    min-width: 96px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-support {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 43px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

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

  .application-tile--accent {
    grid-column: auto;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

html.js [data-quality-reveal] [data-quality-media] {
  opacity: 0;
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.js [data-quality-reveal] [data-quality-media] {
  transform: translate3d(-36px, 0, 0);
}

html.js [data-quality-reveal] [data-quality-copy] {
  transform: translate3d(36px, 0, 0);
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 1000ms;
}

html.js [data-quality-reveal] [data-quality-copy] [data-quality-item] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 500ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.js [data-quality-reveal].is-visible [data-quality-media] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

html.js [data-quality-reveal].is-visible [data-quality-copy] {
  transform: translate3d(0, 0, 0);
}

html.js [data-quality-reveal].is-visible [data-quality-copy] [data-quality-item] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: calc(1000ms + var(--quality-item-delay, 0ms));
}

html.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[data-float] {
  transform: perspective(900px)
    rotateX(var(--float-rotate-x, 0deg))
    rotateY(var(--float-rotate-y, 0deg))
    translate3d(0, var(--float-lift, 0px), 0);
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

html.js [data-reveal].is-visible[data-float] {
  transform: perspective(900px)
    rotateX(var(--float-rotate-x, 0deg))
    rotateY(var(--float-rotate-y, 0deg))
    translate3d(0, var(--float-lift, 0px), 0);
}

[data-float]:hover {
  box-shadow: 0 12px 24px rgba(0, 32, 80, 0.25);
}

.product-card[data-float] img,
.capability-card[data-float] img,
.application-tile[data-float] img,
.news-card[data-float] img {
  transform: translate3d(
      var(--float-image-x, 0px),
      var(--float-image-y, 0px),
      0
    )
    scale(var(--float-image-scale, 1));
  transition: transform 220ms ease;
  will-change: transform;
}

.hero-media img[data-hero-parallax] {
  transform: translate3d(
      var(--hero-parallax-x, 0px),
      var(--hero-parallax-y, 0px),
      0
    )
    scale(1.03);
  transition: transform 350ms ease-out;
  will-change: transform;
}

@media (pointer: coarse) {
  [data-float],
  html.js [data-reveal][data-float],
  html.js [data-reveal].is-visible[data-float],
  .hero-media img[data-hero-parallax] {
    transform: none;
    transition: none;
    will-change: auto;
  }
}

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

  html.js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
    transition-delay: 0ms;
  }

  html.js [data-quality-reveal] [data-quality-media],
  html.js [data-quality-reveal] [data-quality-copy],
  html.js [data-quality-reveal] [data-quality-copy] [data-quality-item] {
    opacity: 1;
    transform: none;
    transition: none;
    transition-delay: 0ms;
  }

  [data-float],
  html.js [data-reveal][data-float],
  html.js [data-reveal].is-visible[data-float],
  .hero-media img[data-hero-parallax] {
    transform: none;
    transition: none;
    will-change: auto;
  }

  .hero-slide {
    transition: none;
  }

  .hero-progress.is-running span {
    animation: none;
    transform: scaleX(1);
  }

  .product-card,
  .product-image,
  .product-body h3,
  .product-body > p:not(.card-kicker),
  .card-kicker,
  .card-note {
    transition: none;
  }

  .application-tile.media-card .tile-caption::before,
  .application-tile.media-card .tile-caption > * {
    transition: none;
  }

  .news-progress-segment,
  .news-progress-segment::after {
    transition: none;
  }
}
