@font-face {
  font-family: "Tomato Grotesk";
  src:
    local("Tomato Grotesk"),
    local("TomatoGrotesk-Regular"),
    url("../assets/fonts/TomatoGrotesk-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Tomato Grotesk";
  src:
    local("Tomato Grotesk Medium"),
    local("TomatoGrotesk-Medium"),
    url("../assets/fonts/TomatoGrotesk-Medium.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Tomato Grotesk";
  src:
    local("Tomato Grotesk SemiBold"),
    local("TomatoGrotesk-SemiBold"),
    url("../assets/fonts/TomatoGrotesk-SemiBold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Tomato Grotesk";
  src:
    local("Tomato Grotesk Bold"),
    local("TomatoGrotesk-Bold"),
    url("../assets/fonts/TomatoGrotesk-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Tomato Grotesk";
  src:
    local("Tomato Grotesk ExtraBold"),
    local("TomatoGrotesk-ExtraBold"),
    url("../assets/fonts/TomatoGrotesk-ExtraBold.otf") format("opentype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Tomato Grotesk";
  src:
    local("Tomato Grotesk Black"),
    local("TomatoGrotesk-Black"),
    url("../assets/fonts/TomatoGrotesk-Black.otf") format("opentype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "Switzer";
  src:
    local("Switzer"),
    local("Switzer Variable"),
    url("../assets/fonts/Switzer-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Switzer";
  src:
    local("Switzer Italic"),
    local("Switzer Variable Italic"),
    url("../assets/fonts/Switzer-VariableItalic.woff2") format("woff2");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --blue: #2570c8;
  --blue-deep: #165da9;
  --ink: #111315;
  --muted: #59616a;
  --ice: #eaf4fb;
  --line: rgba(17, 19, 21, .1);
  --page: min(88vw, 1240px);
  --shadow: 0 24px 70px rgba(31, 62, 91, .14);
  --font-heading: "Tomato Grotesk", "Helvetica Neue", Arial, ui-sans-serif, system-ui, sans-serif;
  --font-body: "Switzer", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --text-size: 19.3px;
  --heading-size: clamp(38px, 4.2vw, 53.85px);
  --section-y: clamp(5.5rem, 8vw, 8.5rem);
  --section-x: max(1.25rem, 5vw, calc((100vw - 1240px) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scrollbar-gutter: stable;
  overflow-x: clip;
}

html.lenis.lenis-stopped {
  overflow-y: scroll !important;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-body);
  font-size: var(--text-size);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-heading,
.section-heading {
  font-family: var(--font-heading);
  font-weight: 800;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
input {
  font: inherit;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: .75rem 1rem;
  background: #fff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.scroll-progress {
  position: fixed;
  z-index: 90;
  top: 50%;
  right: 1.4rem;
  display: grid;
  justify-items: center;
  gap: .65rem;
  color: rgba(17, 19, 21, .58);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  transform: translateY(-50%);
  transition: color .35s ease;
}

.scroll-progress__track {
  position: relative;
  display: block;
  width: 1px;
  height: 94px;
  overflow: hidden;
  background: rgba(17, 19, 21, .16);
}

.scroll-progress__track i {
  position: absolute;
  inset: 0;
  display: block;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: top;
}

.section-pad {
  position: relative;
  padding: var(--section-y) var(--section-x);
}

.center {
  text-align: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.lede {
  max-width: 850px;
  margin: 1.5rem auto 0;
  font-size: clamp(.95rem, 1.25vw, 1.08rem);
}

.section-heading,
.display-heading {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.04;
  text-wrap: balance;
  overflow-wrap: normal;
}

.display-heading {
  font-size: var(--heading-size);
}

.section-heading {
  font-size: var(--heading-size);
}

.section-heading span,
.display-heading span,
.hero h1 span {
  color: var(--blue);
}

.section-heading .text-black,
.section-heading .text-black *,
.display-heading .text-black,
.display-heading .text-black *,
.hero h1 .text-black,
.hero h1 .text-black *,
.section-heading .\!text-black,
.section-heading .\!text-black *,
.display-heading .\!text-black,
.display-heading .\!text-black *,
.hero h1 .\!text-black,
.hero h1 .\!text-black * {
  color: #000 !important;
}

.center .section-heading,
.center .display-heading {
  width: min(100%, 1080px);
  margin-inline: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* min-height: 48px; */
  /* margin-top: 1.25rem; */
  padding: .6rem 1rem;
  border: 0;
  border-radius: 3px;
  color: #fff;
  background: var(--blue);
  font-weight: 750;
  font-size: 14px;
  transition: transform .3s ease, background .3s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--blue-deep);
  transform: translateY(-2px);
}

.button--dark {
  margin: 0;
  background: #111315;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 76px;
  padding: 0 max(6vw, calc((100vw - 1240px) / 2));
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(8px);
  transition: min-height .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(20, 38, 55, .06);
}

.brand {
  font-size: 1.6rem;
  font-weight: 1000;
  letter-spacing: -.12em;
  transform: skew(-13deg);
}


.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.2rem, 3vw, 3rem);
}

.site-nav a {
  color: #4f5660;
  font-size: .87rem;
}

.site-nav a::after {
  content: "";
  display: block;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.hero {
  position: relative;
  min-height: min(100vh, 940px);
  overflow: hidden;
  background: #dfe9f0;
}

.hero__media {
  position: absolute;
  inset: 76px 0 0;
  background: url("../assets/images/hero-1.jpg") center / cover no-repeat;
  transform: scale(1.03);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(12, 27, 40, .28), rgba(12, 27, 40, .16));
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 76px auto 0 0;
  width: clamp(52%, 54vw, 1040px);
  pointer-events: none;
  background: linear-gradient(90deg, rgba(244, 249, 252, .96) 0%, rgba(235, 245, 250, .8) 45%, rgba(235, 245, 250, 0) 100%);
  opacity: 0;
  transform: translateX(-7%);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2, .7, .2, 1);
}

.hero:hover::after,
.hero:focus-within::after {
  opacity: .92;
  transform: translateX(0);
}

.hero__content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(6vw, calc((100vw - 1240px) / 2));
  width: min(43vw, 620px);
  transform: translateY(-43%);
}

.hero__content h1 {
  margin: 0;
  color: #fff;
  font-size: var(--heading-size);
  letter-spacing: 0;
  line-height: 1;
  text-shadow: 0 3px 28px rgba(0, 0, 0, .2);
  transition: color .55s ease, text-shadow .55s ease;
}

.hero__content .eyebrow {
  color: #79b9ff;
  transition: color .55s ease;
}

.hero__content p:not(.eyebrow) {
  max-width: 570px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(.95rem, 1.2vw, 1.08rem);
  text-shadow: 0 2px 16px rgba(0, 0, 0, .25);
  transition: color .55s ease, text-shadow .55s ease;
}

.hero:hover .hero__content h1,
.hero:focus-within .hero__content h1 {
  color: var(--ink);
  text-shadow: none;
}

.hero:hover .hero__content .eyebrow,
.hero:focus-within .hero__content .eyebrow {
  color: var(--blue);
}

.hero:hover .hero__content p:not(.eyebrow),
.hero:focus-within .hero__content p:not(.eyebrow) {
  color: #31383e;
  text-shadow: none;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 3rem;
  bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(17, 19, 21, .6);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 42px;
  background: currentColor;
  transform-origin: top;
  animation: cue 1.8s ease-in-out infinite;
}

@keyframes cue {

  0%,
  100% {
    transform: scaleY(.35);
    opacity: .3;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.intro {
  background: #fff;
  padding: clamp(5.5rem, 7vw, 8.5rem);
}

.cinema {
  --media-brightness: 1;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.cinema::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  /* background: linear-gradient(180deg, rgba(10, 32, 50, .12), transparent 30%, transparent 70%, rgba(10, 32, 50, .1)); */
  opacity: var(--scene-opacity, 0);
}

.cinema__image {
  position: relative;
  height: clamp(520px, 70vw, 900px);
  overflow: hidden;
}

.cinema__image img {
  transform: scale(1.04);
}

.cinema.is-pinned .parallax-media img,
.cinema.is-mobile-pinned .parallax-media img {
  filter: brightness(var(--media-brightness, 1));
}

html.is-anchor-scrolling .cinema.is-pinned,
html.is-anchor-scrolling .cinema.is-mobile-pinned {
  opacity: 0;
  pointer-events: none;
}

.cinema--ecosystem .cinema__image {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 2800 / 1685;
}

.cinema--ecosystem .cinema__image img {
  object-fit: fill;
  object-position: center;
  transform: none;
}

.cinema.is-pinned .cinema__image {
  height: 100vh;
  min-height: 720px;
}

.performance__stage.is-pinned .cinema__image {
  height: 100vh;
  min-height: 0;
}

.cinema--ecosystem.is-pinned .cinema__image {
  height: auto;
  min-height: 0;
}

.cinema.is-pinned .cinema__image img {
  height: 120%;
}

.cinema--ecosystem.is-pinned .cinema__image img {
  height: 100%;
}

@media (min-width: 1201px) {
  .cinema--ecosystem.is-pinned {
    display: grid;
    align-items: center;
    min-height: 100vh;
  }

  .cinema--ecosystem.is-pinned .cinema__image {
    width: 100%;
    margin-inline: auto;
  }
}

.cinema--ecosystem::after,
.comfort__media::before {
  content: "";
  position: absolute;
  z-index: 2;
  right: -3%;
  bottom: -3px;
  left: -3%;
  height: calc(clamp(35px, 6vw, 85px) + 4px);
  background: #fff;
  transform: translateZ(0);
}

.performance__stage::after {
  content: none;
}

.cinema--ecosystem::after {
  clip-path: polygon(0 55%, 57% 53%, 56% 96%, 100% 67%, 100% 100%, 0 100%);
}

.cinema__label {
  position: absolute;
  z-index: 3;
  right: 6vw;
  bottom: 6vw;
  display: flex;
  gap: .5rem;
}

.cinema__label span {
  padding: .6rem .9rem;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .9);
  font-size: .72rem;
}

.ecosystem-pan-hint {
  display: none;
}

.product-hotspots {
  position: absolute;
  z-index: 6;
  inset: 0;
  opacity: 1;
  pointer-events: none;
  transition: opacity .35s ease;
}

.cinema--ecosystem.is-pinned .product-hotspots {
  opacity: 0;
  visibility: hidden;
}

.cinema--ecosystem.is-pinned.hotspots-visible .product-hotspots {
  opacity: 1;
  visibility: visible;
}

.product-hotspot {
  position: absolute;
  top: var(--y);
  left: var(--x);
  display: block;
  width: 12px;
  height: 12px;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.product-hotspot__dot {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  background: #2467B7;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 0;
  box-shadow:
    0 10px 22px rgba(16, 57, 94, .24),
    0 3px 8px rgba(16, 57, 94, .16),
    inset 0 1px 0 rgba(255, 255, 255, .38);
  font-size: .5rem;
  font-weight: 900;
  transition: transform .3s ease, background .3s ease;
}

.product-hotspot__dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 0;
  animation: hotspot-pulse 2s ease-out infinite paused;
}

.product-hotspot__popover {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  width: max-content;
  max-width: 210px;
  padding: .85rem 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 4px;
  box-shadow: 0 15px 40px rgba(21, 50, 73, .22);
  font-size: .78rem;
  font-weight: 750;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition:
    opacity .25s ease 2.5s,
    transform .25s ease 2.5s,
    visibility 0s linear 2.75s;
  pointer-events: auto;
}

.product-hotspot__popover b {
  display: block;
  margin-top: .25rem;
  color: var(--blue);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.product-hotspot__popover--left {
  right: 0;
  left: auto;
  transform: translate(0, 8px);
}

.product-hotspot:hover .product-hotspot__dot,
.product-hotspot:focus-visible .product-hotspot__dot {
  background: var(--blue-deep);
  transform: scale(1.1);
}

.product-hotspot:hover .product-hotspot__popover,
.product-hotspot:focus-visible .product-hotspot__popover {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

.product-hotspot:hover .product-hotspot__popover--left,
.product-hotspot:focus-visible .product-hotspot__popover--left {
  transform: translate(0, 0);
}

@keyframes hotspot-pulse {
  0% {
    opacity: .8;
    transform: scale(.85);
  }

  80%,
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

.philosophy {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.philosophy__copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
}

@media (min-width: 901px) {
  .philosophy__copy {
    min-width: 550px;
  }
}

.philosophy__copy .section-heading,
.engineering__copy .section-heading {
  font-size: var(--heading-size);
}

.philosophy__copy p:not(.eyebrow),
.engineering__copy p {
  font-size: 1rem;
}

.offset-image {
  height: clamp(430px, 34vw, 540px);
  margin: 0;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%, 9% 10%);
  box-shadow: var(--shadow);
}

.offset-image--high {
  transform: translateY(-80px);
}

.offset-image img,
.parallax-card img {
  transform: scale(1.04);
}

.brand-mark {
  position: absolute;
  z-index: 1;
  left: max(-2vw, -1.5rem);
  bottom: clamp(1rem, 3vw, 3rem);
  width: clamp(280px, 32vw, 520px);
  aspect-ratio: 1.85;
  background: url("../assets/images/hhi-bg.svg") center / contain no-repeat;
  opacity: .12;
  pointer-events: none;
}

.performance__intro {
  padding-bottom: clamp(4.5rem, 7vw, 7rem);
  border-bottom: 2px solid #FFF;
}

.performance__stage {
  --performance-card-edge: clamp(72px, 10vh, 96px);
  z-index: 8;
}

.performance__stage.is-pinned {
  height: 100vh;
  height: 100svh;
  min-height: 0;
}

.performance__stage .cinema__image {
  height: 100vh;
  height: 100svh;
  min-height: 0;
}

.performance__stage.cinema {
  overflow: visible;
  margin-bottom: 0;
}

.performance__stage .cinema__image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  object-fit: cover;
  object-position: center center !important;
}

.performance__stage.is-pinned .cinema__image img,
.performance__stage.is-mobile-pinned .cinema__image img {
  height: 100%;
}

.performance__stage .cinema__image::before {
  content: "";
  position: absolute;
  z-index: 6;
  top: -1px;
  right: 0;
  left: 0;
  height: clamp(35px, 6vw, 85px);
  background: #fff;
  clip-path: polygon(0 0, 0 25%, 59% 50%, 58% 0, 100% 0);
  pointer-events: none;
}

.feature-cards {
  position: absolute;
  z-index: 30;
  right: auto;
  bottom: -10%;
  left: 50%;
  width: min(85%, 1180px);
  gap: clamp(1rem, 4.2vw, 60px) !important;
  transform: translate(-50%, 0);
  transition: none;
}

.performance__stage.is-pinned .feature-cards,
.performance__stage.is-mobile-pinned .feature-cards {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 24px);
}

.performance__stage.features-visible .feature-cards,
.performance__stage.is-mobile-pinned.features-visible .feature-cards {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.feature-card {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 145px;
  padding: 1.5rem 1rem;
  overflow: hidden;
  text-align: center;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .48),
    0 20px 45px rgba(28, 65, 94, .1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    transform .32s ease,
    box-shadow .32s ease,
    border-color .32s ease,
    background .32s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, .42), rgba(255, 255, 255, 0) 42%);
  opacity: 0;
  transform: translateX(-18%);
  transition: opacity .32s ease, transform .32s ease;
  pointer-events: none;
}

.feature-card:hover,
.feature-card:focus-within {
  background: rgba(255, 255, 255, .26);
  border-color: rgba(255, 255, 255, .68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .62),
    0 30px 65px rgba(28, 65, 94, .16);
  transform: translateY(-8px) scale(1.015);
}

.feature-card:hover::before,
.feature-card:focus-within::before {
  opacity: 1;
  transform: translateX(0);
}

.feature-card__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--blue);
  background: rgba(255, 255, 255, .4);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  transition: transform .32s ease, background-color .32s ease, box-shadow .32s ease;
}

.feature-card:hover .feature-card__icon,
.feature-card:focus-within .feature-card__icon {
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 12px 28px rgba(28, 65, 94, .12);
  transform: translateY(-3px);
}

.feature-card svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  align-self: end;
  margin: 1rem 0 0;
  font-size: clamp(.84rem, 1.2vw, 1rem);
}

.comfort__copy {
  padding-top: 16rem;
  padding-bottom: 4rem;
}

.comfort {
  position: relative;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, .92) 0 18%, rgba(232, 247, 253, .84) 38%, rgba(255, 255, 255, 0) 68%),
    linear-gradient(180deg, #fff 0%, #fff 48%, #eef8fd 100%);
}

.comfort__media::before {
  top: -1px;
  bottom: auto;
  clip-path: polygon(0 0, 42% 0, 41% 54%, 100% 25%, 100% 0);
  opacity: 1;
}

.comfort__media .cinema__image {
  height: clamp(560px, 75vw, 900px);
}

.comfort__media .cinema__image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  /* background:
    linear-gradient(90deg, rgba(7, 18, 32, .46), rgba(7, 18, 32, .12) 48%, rgba(7, 18, 32, .32)),
    radial-gradient(circle at 28% 42%, rgba(7, 18, 32, .2), rgba(7, 18, 32, 0) 42%); */
  opacity: 0;
  transition: opacity .25s ease;
}

.comfort__media.is-pinned .cinema__image::after,
.comfort__media.is-mobile-pinned .cinema__image::after {
  opacity: .72;
}

.stats {
  position: relative;
  z-index: 4;
  width: min(88vw, 1000px);
  margin: -65px auto 0;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
}

.stat {
  padding: 2rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border: 0;
}

.stat strong {
  display: block;
  color: var(--blue);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.products {
  position: relative;
  overflow: hidden;
  padding-top: clamp(6rem, 9vw, 8.5rem);
  padding-bottom: clamp(4.5rem, 7vw, 7rem);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .95) 0 18%, rgba(37, 112, 200, .12) 36%, rgba(255, 255, 255, 0) 60%),
    radial-gradient(circle at 50% 26%, rgba(255, 255, 255, .84) 0 18%, rgba(37, 112, 200, .08) 42%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(180deg, #fff 0%, rgba(37, 112, 200, .1) 62%, #fff 75%, #fff 100%);
}

.products::before {
  content: "";
  position: absolute;
  inset: auto -8vw 0;
  height: 25%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 24%, #fff 100%);
}

.products .center {
  position: relative;
  z-index: 3;
}

.products .section-heading {
  max-width: 980px;
  margin-inline: auto;
  color: var(--ink);
  font-size: var(--heading-size);
  line-height: .98;
  letter-spacing: -.025em;
}

.products .section-heading .word,
.products .section-heading .word__inner {
  color: inherit;
}

.products .lede {
  max-width: 720px;
  margin-top: 1.1rem;
  font-size: clamp(.82rem, 1.1vw, 1rem);
  line-height: 1.65;
}

.product-showcase {
  position: relative;
  z-index: 2;
  width: min(100%, 1320px);
  height: clamp(285px, 36vw, 455px);
  margin: clamp(2.1rem, 3.6vw, 3.4rem) auto 1.25rem;
  overflow: hidden;
  padding: 1rem 0 2rem;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y pinch-zoom;
  user-select: none;
  transition: height .65s cubic-bezier(.2, .7, .2, 1);
}

.product-showcase.is-detailing {
  height: clamp(285px, 36vw, 455px);
  overflow: hidden;
  cursor: default;
}

.product-showcase.is-detailing .product-controls,
.products:has(.product-showcase.is-detailing) .product-dots,
body:has(.product-showcase.is-detailing) .scroll-progress {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.product-controls {
  position: absolute;
  z-index: 6;
  top: 50%;
  right: clamp(.75rem, 2.4vw, 2rem);
  left: clamp(.75rem, 2.4vw, 2rem);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.product-control {
  display: grid;
  place-items: center;
  width: clamp(42px, 4.2vw, 54px);
  aspect-ratio: 1;
  color: var(--ink);
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 999px;
  box-shadow:
    0 18px 42px rgba(19, 47, 72, .18),
    inset 0 1px 0 rgba(255, 255, 255, .8);
  cursor: pointer;
  pointer-events: auto;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.product-control:hover,
.product-control:focus-visible {
  background: rgba(255, 255, 255, .96);
  box-shadow:
    0 22px 52px rgba(19, 47, 72, .22),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  transform: translateY(-2px);
}

.product-control span {
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1;
}

.product-showcase.is-dragging {
  cursor: grabbing;
}

.product-showcase.is-dragging,
.product-showcase.is-dragging * {
  user-select: none;
}

.product-showcase::-webkit-scrollbar {
  display: none;
}

.product-track {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2vw, 2rem);
  height: 100%;
  padding-inline: max(6vw, calc((100% - 1180px) / 2));
  transition: transform .9s cubic-bezier(.2, .7, .2, 1);
  will-change: transform;
}

.product-track.is-switching .product-slide {
  transition-duration: 1.05s;
}

.product-track.is-detail-opening,
.product-track.is-detail-opening .product-slide,
.product-track.is-detail-opening .product-slide img {
  transition-duration: 0ms !important;
}

.product-track.is-resetting,
.product-track.is-resetting .product-slide,
.product-track.is-resetting .product-slide img {
  transition-duration: 0ms !important;
}

.product-slide {
  position: relative;
  flex: 0 0 clamp(230px, 30vw, 360px);
  height: clamp(170px, 20vw, 270px);
  overflow: hidden;
  background: linear-gradient(180deg, #d9eefb 0%, #edf8fd 57%, #f7f7f7 100%);
  box-shadow: 0 16px 26px rgba(17, 44, 69, .12);
  opacity: .62;
  transform: scale(.86) translateZ(0);
  transform-origin: center center;
  transition:
    flex-basis .78s cubic-bezier(.2, .7, .2, 1),
    height .78s cubic-bezier(.2, .7, .2, 1),
    margin .78s cubic-bezier(.2, .7, .2, 1),
    transform .9s cubic-bezier(.2, .7, .2, 1),
    opacity .9s cubic-bezier(.2, .7, .2, 1),
    box-shadow .9s cubic-bezier(.2, .7, .2, 1);
  cursor: pointer;
}

.product-slide img {
  width: 100%;
  height: 100%;
  padding: clamp(1.2rem, 2.4vw, 2.2rem);
  object-fit: contain;
  object-position: center;
  transition: transform 1s cubic-bezier(.2, .7, .2, 1);
}

.product-slide:focus-visible {
  outline: 3px solid rgba(37, 115, 213, .65);
  outline-offset: 5px;
}

.product-slide.is-active {
  z-index: 3;
  flex-basis: clamp(280px, 31vw, 385px);
  height: clamp(245px, 33vw, 280px);
  overflow: visible;
  opacity: 1;
  box-shadow: 0 18px 34px rgba(17, 44, 69, .13);
  transform: scale(1.025) translateZ(0);
}

.product-slide.is-active::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 4%;
  height: 18px;
  border-radius: 50%;
  background: rgba(24, 47, 66, .16);
  filter: blur(12px);
}

.product-slide.is-active img {
  position: absolute;
  z-index: 2;
  inset: -25%;
  width: 150%;
  height: 150%;
  padding: 0;
  object-fit: contain;
  filter: drop-shadow(0 20px 22px rgba(18, 42, 60, .18));
  transform: scale(1.04);
}

.product-showcase.is-detailing .product-slide:not(.is-active) {
  flex-basis: 0;
  height: clamp(245px, 33vw, 280px);
  margin-inline: calc(clamp(1.1rem, 2vw, 2rem) * -.5);
  opacity: 0;
  pointer-events: none;
  transform: scale(.72) translateZ(0);
}

.product-showcase.is-detailing .product-slide.is-active {
  flex-basis: clamp(430px, 45vw, 600px);
  height: clamp(245px, 33vw, 330px);
  /* overflow: hidden; */
  padding: 0;
  background: linear-gradient(180deg, #d9eefb 0%, #edf8fd 57%, #f7f7f7 100%);
  border: 1px solid rgba(36, 103, 183, .12);
  border-radius: 0;
  box-shadow: 0 18px 34px rgba(17, 44, 69, .13);
  cursor: default;
  transform: scale(1) translateZ(0);
}

.product-showcase.is-detailing .product-slide.is-active::before {
  content: none;
}

.product-showcase.is-detailing .product-slide.is-active::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 8%;
  right: auto;
  bottom: 5%;
  width: 34%;
  height: 16px;
  border-radius: 50%;
  background: rgba(24, 47, 66, .16);
  filter: blur(12px);
  clip-path: none;
  pointer-events: none;
}

.product-showcase.is-detailing .product-slide.is-active img {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: -20%;
  width: 43%;
  height: 82%;
  padding: 0;
  object-fit: contain;
  filter: drop-shadow(0 20px 22px rgba(18, 42, 60, .18));
  transform: scale(1);
  translate: 0 -50%;
}

.product-slide:hover,
.product-slide:focus-visible {
  opacity: 1;
}

.product-slide:hover img,
.product-slide:focus-visible img {
  transform: scale(1);
}

.product-slide.is-active:hover img,
.product-slide.is-active:focus-visible img {
  transform: scale(1.06);
}

.product-info-card {
  position: absolute;
  z-index: 6;
  right: clamp(.6rem, 1.4vw, 1rem);
  bottom: clamp(.6rem, 1.4vw, 1rem);
  width: min(78%, 230px);
  min-height: 92px;
  padding: .85rem .85rem .85rem 3.4rem;
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 5px;
  box-shadow: 0 18px 42px rgba(21, 50, 73, .2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(.96);
  transition:
    opacity .24s ease,
    transform .24s ease,
    visibility 0s linear .24s;
  pointer-events: none;
}

.product-info-card__eyebrow {
  display: none;
}

.product-info-card__shop {
  position: absolute;
  top: .85rem;
  left: .85rem;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: #2467B7;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 10px;
  box-shadow:
    0 14px 30px rgba(16, 57, 94, .28),
    0 4px 10px rgba(16, 57, 94, .18),
    inset 0 1px 0 rgba(255, 255, 255, .38);
  font-size: 1rem;
  pointer-events: auto;
  transition: transform .3s ease, background .3s ease;
}

.product-info-card__shop:hover,
.product-info-card__shop:focus-visible {
  background: var(--blue-deep);
  transform: translateY(-2px);
}

.product-info-card h3 {
  margin: 0;
  font-size: .9rem;
  line-height: 1.05;
}

.product-info-card p {
  margin: .35rem 0 0;
  color: #59616a;
  font-size: .74rem;
  line-height: 1.35;
  display: none;
}

.product-info-card__specs,
.product-info-card__actions {
  display: none;
}

.product-showcase.is-detailing .product-info-card {
  position: absolute;
  z-index: 4;
  top: clamp(1.25rem, 3vw, 2rem);
  right: clamp(1rem, 2.5vw, 1.75rem);
  bottom: auto;
  left: 42%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: auto;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition-delay: .18s;
  pointer-events: auto;
}

.product-detail-card {
  display: none;
}

.product-detail-card[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(.985);
  pointer-events: none;
}

.product-showcase.is-detailing .product-slide.is-active .product-detail-card {
  position: absolute;
  z-index: 4;
  top: clamp(1.25rem, 3vw, 2rem);
  right: clamp(1rem, 2.5vw, 1.75rem);
  bottom: auto;
  left: 26%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: auto;
  min-height: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition:
    opacity .34s ease,
    transform .34s cubic-bezier(.2, .7, .2, 1),
    visibility 0s linear 0s;
  transition-delay: .04s;
  pointer-events: auto;
}

.product-showcase.is-detailing .product-info-card__shop {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  display: inline-flex;
  align-items: center;
  gap: 1.35rem;
  width: auto;
  height: auto;
  margin: 0;
  color: #05090c;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size:14px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}

.product-info-card__shop-label {
  display: none;
}

.product-showcase.is-detailing .product-info-card__shop-label {
  display: inline;
  white-space: nowrap;
}

.product-showcase.is-detailing .product-info-card__shop span[aria-hidden="true"] {
  color: #347ed5;
  font-size: clamp(1.15rem, 1.65vw, 1.45rem);
}

.product-showcase.is-detailing .product-info-card__eyebrow {
  display: block;
  max-width: calc(100% - 175px);
  margin: 0 0 clamp(.75rem, 1.5vw, 1.05rem);
  padding-left: .75rem;
  color: #05090c;
  border-left: 3px solid #05090c;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.product-showcase.is-detailing .product-info-card h3 {
  font-family: var(--font-heading);
  margin: 0 0 clamp(1.2rem, 2.8vw, 2rem);
  color: rgba(65, 128, 213, .9);
  font-size: clamp(1.85rem, 4vw, 3.15rem);
  font-weight: 900;
  line-height: .9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-showcase.is-detailing .product-detail-card h3 {
  margin: 0 0 clamp(1.2rem, 2.8vw, 2rem);
  color: rgba(65, 128, 213, .9);
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 500;
  line-height: .9;
  letter-spacing: 0;
  /* text-transform: uppercase; */
}

.product-showcase.is-detailing .product-info-card p {
  display: block;
  max-width: min(40vw, 430px);
  margin: 0;
  color: #05090c;
  font-family: var(--font-heading);
  font-size: clamp(.78rem, 1.18vw, 1rem);
  font-weight: 700;
  line-height: 1.38;
}

.product-showcase.is-detailing .product-detail-card p {
  display: block;
  max-width: min(40vw, 430px);
  margin: 0;
  color: #05090c;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.38;
}

.product-showcase.is-detailing .product-info-card__specs {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin: clamp(1.3rem, 2.2vw, 1.8rem) 0 0;
  padding: 0;
  list-style: none;
}

.product-showcase.is-detailing .product-info-card__specs li {
  min-height: 94px;
  padding: .85rem;
  background: rgba(234, 244, 251, .72);
  border: 1px solid rgba(36, 103, 183, .12);
}

.product-showcase.is-detailing .product-info-card__specs strong,
.product-showcase.is-detailing .product-info-card__specs span {
  display: block;
}

.product-showcase.is-detailing .product-info-card__specs strong {
  color: var(--ink);
  font-size: .78rem;
  line-height: 1.15;
}

.product-showcase.is-detailing .product-info-card__specs span {
  margin-top: .38rem;
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.3;
}

.product-showcase.is-detailing .product-info-card__actions {
  display: none;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(1.25rem, 2.2vw, 1.85rem);
}

.product-showcase.is-detailing .product-info-card__actions .button {
  background: #2467B7;
}

.product-showcase.is-detailing .product-info-card__actions span {
  color: #68717a;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.product-slide:hover .product-info-card,
.product-slide:focus-within .product-info-card {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}

.product-card-hotspot {
  position: absolute;
  z-index: 5;
  top: var(--y);
  left: var(--x);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .42rem .58rem;
  color: var(--ink);
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(20, 48, 70, .16);
  font-size: .68rem;
  font-weight: 800;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.92);
  transition: opacity .25s ease, transform .25s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.product-card-hotspot span {
  display: grid;
  place-items: center;
  width: 1.35rem;
  aspect-ratio: 1;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: .72rem;
}

.product-card-hotspot b {
  white-space: nowrap;
}

.product-slide.is-active .product-card-hotspot,
.product-slide:hover .product-card-hotspot,
.product-slide:focus-within .product-card-hotspot {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.product-dots {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: .55rem;
  margin: .35rem 0 2.2rem;
}

.product-dots span {
  width: 12px;
  height: 12px;
  border-radius: 0;
  background: #2467B7;
  opacity: .32;
  transition: opacity .35s ease, transform .35s ease;
}

.product-dots .is-active {
  width: 12px;
  background: #2467B7;
  opacity: 1;
  transform: scale(1.05);
}

.engineering {
  position: relative;
  min-height: 0;
  column-gap: 0 !important;
  row-gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.engineering__copy {
  position: relative;
  z-index: 2;
  justify-self: end;
  max-width: 760px;
  margin-right: clamp(-4.5rem, -4vw, -2rem);
}

.engineering__copy .section-heading {
  max-width: 760px;
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1.02;
  text-wrap: normal;
}

.engineering__copy p {
  max-width: 620px;
}

.engineering__copy p::before {
  content: "";
  float: right;
  width: clamp(72px, 10vw, 160px);
  height: clamp(150px, 20vw, 280px);
  shape-outside: polygon(34% 0, 100% 0, 100% 100%, 0 100%, 38% 48%);
}

.engineering__image {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  position: relative;
  z-index: 2;
  min-height: 0;
  overflow: visible;
}

.engineering__image img {
  height: auto;
  max-height: clamp(320px, 42vw, 500px);
  object-fit: contain;
  transform: rotate(1deg) !important;
}

.engineering__brand-mark {
  left: max(-2vw, -1.5rem);
  bottom: clamp(1rem, 3vw, 3rem);
  width: clamp(220px, 27vw, 430px);
  opacity: .1;
}

.reviews {
  position: relative;
  overflow: hidden;
  background: #cbdde7;
  isolation: isolate;
}

.reviews__backdrop {
  position: absolute;
  z-index: -1;
  inset: -3%;
  background:
    linear-gradient(90deg, rgba(219, 233, 240, .82), rgba(203, 220, 230, .42)),
    url("../assets/images/review-bg.jpg") center / cover no-repeat;
  transform: scale(1.04);
}

.reviews__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .16), transparent 42%, rgba(42, 72, 91, .08));
}

.reviews__content {
  position: relative;
  z-index: 2;
}

.reviews .section-heading,
.reviews .section-heading * {
  color: #000 !important;
}

.review-carousel {
  width: 100vw;
  margin-top: 5rem;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding-block: 3rem 2rem;
}

.review-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: review-marquee 32s linear infinite paused;
}

.review-carousel:hover .review-track,
.review-carousel:focus-within .review-track {
  animation-play-state: paused;
}

.review-card {
  position: relative;
  min-height: 230px;
  margin: 0;
  padding: 4rem 1.8rem 1.8rem;
  background: rgba(214, 229, 237, .94);
  border: 1px solid rgba(255, 255, 255, .55);
  box-shadow: 0 14px 34px rgba(30, 60, 80, .12);
}

.review-card {
  flex: 0 0 min(31vw, 430px);
}

.avatar {
  position: absolute;
  top: -38px;
  left: 1.5rem;
  display: grid;
  place-items: center;
  width: 92px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, .16); */
}

/* .avatar--one {
  background: linear-gradient(135deg, #d74425, #1f386f);
}

.avatar--two {
  background: linear-gradient(135deg, #9bc5d0, #59656e);
}

.avatar--three {
  background: linear-gradient(135deg, #f1b44d, #b42f4e);
} */

.review-card__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.review-card cite {
  font-style: normal;
  font-weight: 800;
}

.review-card cite small {
  display: block;
  font-weight: 400;
}

.review-card time {
  font-size: .75rem;
}

.review-card p {
  color: var(--ink);
  font-style: italic;
}

.stars {
  margin-top: 1rem;
  color: #fff;
  font-size: 1.35rem;
  letter-spacing: .12em;
}

@keyframes review-marquee {
  to {
    transform: translateX(calc(-50% - .75rem));
  }
}

.site-footer {
  padding: 5rem max(6vw, calc((100vw - 1240px) / 2)) 2rem;
  color: #d5d7d8;
  background: #17191b;
}

.brand--light {
  display: inline-block;
  color: #fff;
  font-size: 2.4rem;
}

.footer-grid p {
  max-width: 240px;
  color: #8d9297;
  font-size: .88rem;
}

.footer-grid h2 {
  margin: .4rem 0 1.3rem;
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
}

.footer-grid a:not(.brand) {
  display: block;
  margin: .75rem 0;
  color: #92969a;
  font-size: .82rem;
}

.newsletter {
  display: flex;
  align-items: center;
  background: #2a2d30;
  border-radius: 5px;
  height: 50px;
}

.newsletter input {
  min-width: 0;
  width: 100%;
  padding: .9rem;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  height: 100%;
}

.newsletter input::placeholder {
  font-size: .82rem;
}

.newsletter button {
  margin: .35rem;
  border: 0;
  border-radius: 5px;
  color: #fff;
  background: var(--blue);
  padding: 0px 4px;
  padding-bottom: 2px;
  height: 46%;
  display: flex;
  align-items: center;
  font-size: 14px;
  justify-content: center;
}

.socials {
  display: flex;
  gap: .7rem;
  margin-top: 1rem;
}

.socials a {
  display: grid !important;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 !important;
  border-radius: 50%;
  background: #2a2d30;
  padding: 10px;
}

.socials a > img {
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .07);
  color: #73777b;
  font-size: .72rem;
}

.footer-bottom a {
  margin-left: 2rem;
}

.word {
  display: inline-block;
  overflow: clip;
  padding-block: .12em .16em;
  margin-block: -.12em -.16em;
  vertical-align: bottom;
}

.word__inner {
  display: inline-block;
}

.depth-copy {}

.pin-caption {
  position: absolute;
  z-index: 5;
  top: clamp(5.5rem, 10vh, 8rem);
  left: max(6vw, calc((100vw - 1240px) / 2));
  bottom: auto;
  max-width: 500px;
  color: #fff;
  pointer-events: none;
}

.pin-caption__index {
  display: block;
  margin-bottom: 1rem;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.pin-caption strong {
  display: block;
  font-size: var(--heading-size);
  letter-spacing: -.055em;
  line-height: .94;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .22);
}

.performance__stage .pin-caption {
  z-index: 8;
  max-width: 460px;
  color: var(--ink);
}

.performance__stage .pin-caption__index {
  color: var(--blue);
}

.performance__stage .pin-caption strong {
  text-shadow: 0 2px 18px rgba(255, 255, 255, .85);
}

.cinema--ecosystem .pin-caption {
  max-width: 440px;
}

@media (min-width: 901px) {
  /* .engineering {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr) !important;
  } */

  .engineering__copy {
    max-width: 780px;
  }

  .engineering__copy .section-heading {
    max-width: 780px;
    width: 562px;
  }

  .philosophy__gallery {
    margin-top: 30%;
  }

  .products .section-heading {
    width: max-content;
    max-width: min(100%, 1240px);
    white-space: nowrap;
    font-size: clamp(32px, 3.2vw, 48px);
  }
}

@media (max-width: 900px) {
  .scroll-progress {
    display: none;
  }

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

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    gap: 6px;
    justify-self: end;
    width: 42px;
    height: 42px;
    place-content: center;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--ink);
    transition: transform .3s ease;
  }

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

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

  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    gap: 0;
    padding: 1rem 6vw 2rem;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 20px 40px rgba(20, 40, 60, .1);
    transform: translateY(-130%);
    transition: transform .45s cubic-bezier(.2, .7, .2, 1);
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero__media {
    background-position: 57% center;
  }

  .hero::after {
    width: 72%;
    opacity: .75;
  }

  .hero__content {
    width: min(74vw, 520px);
    left: 6vw;
  }

  .hero__content h1 {
    font-size: var(--heading-size);
  }

  .hero__content h1 {
    color: var(--ink);
    text-shadow: none;
  }

  .hero__content .eyebrow {
    color: var(--blue);
  }

  .hero__content p:not(.eyebrow) {
    color: #31383e;
    text-shadow: none;
  }

  .product-hotspot {
    width: 12px;
    height: 12px;
  }

  .feature-cards {
    right: auto;
    bottom: -10%;
    left: 50%;
    z-index: 30;
    width: min(88%, 900px);
    gap: clamp(.75rem, 2.6vw, 24px) !important;
    transform: translateX(-50%);
  }

  .feature-card {
    min-height: 120px;
    padding: 1rem .5rem;
  }

  .feature-card__icon {
    width: 42px;
    height: 42px;
  }

  .philosophy__copy,
  .engineering__copy,
  .philosophy__gallery,
  .engineering__image {
    transform: translate(0px, 0px) !important;
  }

  .philosophy {
    gap: 5rem;
  }

  .philosophy__copy,
  .engineering__copy {
    max-width: 680px;
  }

  .engineering__copy {
    max-width: 560px;
  }

  .engineering__copy p {
    max-width: 520px;
  }

  .offset-image {
    height: 500px;
  }

  .engineering__image {
    width: 100%;
    margin-left: 0;
    height: clamp(300px, 48vw, 430px);
    min-height: 0;
  }

  .engineering__image img {
    width: 112%;
    transform: translateX(-4%) scale(1.02);
  }

  .reviews__backdrop {
    inset: 0;
    transform: none;
  }

  .review-card {
    flex-basis: min(76vw, 430px);
  }

  .footer-grid> :last-child {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  :root {
    --page: 88vw;
  }

  .section-pad {
    padding: clamp(4.25rem, 14vw, 6rem) clamp(1.25rem, 6vw, 4rem);
  }

  .hero {
    min-height: 700px;
  }

  .hero__media {
    inset: 64px 0 0;
    background-position: 58% center;
  }

  .hero::after {
    inset: 64px auto 0 0;
    width: 100%;
    background: linear-gradient(90deg, rgba(238, 247, 251, .94), rgba(238, 247, 251, .72) 68%, rgba(238, 247, 251, .08));
  }

  .hero__content {
    top: 53%;
    width: 88vw;
  }

  .display-heading {
    font-size: var(--heading-size);
  }

  .section-heading,
  .philosophy__copy .section-heading,
  .engineering__copy .section-heading {
    font-size: clamp(32px, 3vw, 42px);
    text-wrap: normal;
    width: 300px;
  }

  .engineering__copy .section-heading {
    max-width: none;
  }

  .engineering__copy .section-heading {
    max-width: 21rem;
    font-size: var(--heading-size);
  }

  .engineering__copy,
  .engineering__copy p {
    max-width: 100%;
  }

  .hero__content h1 {
    max-width: 86vw;
    font-size: var(--heading-size);
    line-height: 1;
  }

  .scroll-cue {
    display: none;
  }

  .cinema__image {
    height: 480px;
  }

  .cinema--ecosystem {
    overflow: hidden;
  }

  .cinema--ecosystem .cinema__image {
    width: 100%;
    height: auto;
    aspect-ratio: 2800 / 1685;
  }

  .cinema--ecosystem .cinema__image img {
    object-fit: fill;
    object-position: center;
    transform: none !important;
  }

  .cinema__label {
    display: none;
  }

  .cinema--ecosystem::after {
    display: none;
  }

  .product-hotspots {
    display: block;
  }

  .product-hotspot {
    width: 11px;
    height: 11px;
  }

  .product-hotspot__dot {
    font-size: .45rem;
  }

  .product-hotspot__dot::after {
    inset: -3px;
  }

  .product-hotspot__popover {
    max-width: 150px;
    padding: .6rem .7rem;
    font-size: .68rem;
  }

  .ecosystem-pan-hint {
    position: absolute;
    z-index: 8;
    bottom: .65rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    width: max-content;
    margin: 0;
    padding: .55rem .75rem;
    color: var(--ink);
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(24, 57, 83, .16);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
  }

  .philosophy {
    min-height: auto;
  }

  .philosophy__gallery {
    gap: .8rem;
  }

  .offset-image {
    height: 390px;
  }

  .offset-image--high {
    transform: translateY(-35px);
  }

  .brand-mark {
    width: clamp(210px, 58vw, 320px);
    bottom: 1rem;
  }

  .performance__stage .cinema__image {
    height: 100svh;
    min-height: 0;
  }

  .performance__stage.is-mobile-pinned,
  .comfort__media.is-mobile-pinned {
    height: 100svh;
    min-height: 620px;
    overflow: visible;
  }

  .performance__stage.is-mobile-pinned .cinema__image,
  .comfort__media.is-mobile-pinned .cinema__image {
    height: 100%;
    min-height: 0;
  }

  .performance__stage.is-mobile-pinned .cinema__image {
    height: 100svh;
  }

  .performance__stage.is-mobile-pinned .cinema__image img,
  .comfort__media.is-mobile-pinned .cinema__image img {
    height: 112%;
  }

  .performance__stage.is-mobile-pinned .cinema__image img {
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0;
    object-fit: cover;
  }

  .performance__stage.is-mobile-pinned .pin-caption,
  .comfort__media.is-mobile-pinned .pin-caption {
    z-index: 12;
    top: clamp(5rem, 12svh, 7rem);
    left: clamp(1.25rem, 6vw, 2rem);
    max-width: min(78vw, 360px);
  }

  .performance__stage.is-mobile-pinned .pin-caption strong,
  .comfort__media.is-mobile-pinned .pin-caption strong {
    font-size: clamp(2.15rem, 12vw, 4.25rem);
    line-height: .94;
  }

  .comfort__media.is-mobile-pinned .pin-caption {
    color: #fff;
  }

  .performance__stage img {
    object-position: 50% center;
  }

  .performance__intro .section-heading,
  .performance__intro .lede {
    max-width: min(100%, 19rem);
    margin-inline: auto;
  }

  .performance__intro .section-heading {
    max-width: min(100%, 18rem);
    text-wrap: normal;
    overflow-wrap: anywhere;
  }

  .feature-cards {
    position: absolute;
    right: auto;
    bottom: -10%;
    left: 0;
    gap: .75rem !important;
    padding: 0 6vw;
    background: transparent;
    width: auto;
    transform: none;
  }

  .performance__stage.is-mobile-pinned .feature-cards {
    position: absolute;
    z-index: 30;
    right: 0;
    bottom: -10%;
    left: 0;
    width: auto;
    padding: 0 6vw;
    background: transparent;
    transform: translateY(24px);
  }

  .performance__stage.is-mobile-pinned.features-visible .feature-cards {
    transform: translateY(0);
  }

  .feature-card {
    min-height: 100px;
    padding: .85rem .45rem;
  }

  .comfort__media .cinema__image {
    height: 560px;
  }

  .comfort__media img {
    object-position: 47% center;
  }

  .stats {
    margin-top: -35px;
  }

  .stat {
    padding: 1.5rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .products .section-heading {
    max-width: 720px;
  }

  .product-showcase {
    height: clamp(260px, 72vw, 330px);
    margin-top: 2.5rem;
  }

  .product-showcase.is-detailing {
    height: clamp(260px, 72vw, 330px);
  }

  .product-track {
    gap: .9rem;
    padding-inline: 6vw;
  }

  .product-slide {
    flex-basis: min(58vw, 235px);
    height: min(38vw, 155px);
  }

  .product-slide.is-active {
    flex-basis: min(68vw, 270px);
    height: min(63vw, 245px);
    transform: scale(1) translateZ(0);
  }

  .product-slide.is-active img {
    inset: 8%;
    width: 90%;
    height: 90%;
  }

  .product-showcase.is-detailing .product-slide.is-active {
    flex-basis: min(88vw, 345px);
    /* height: min(63vw, 255px); */
    height: min(68vw, 300px);
    padding: 0;
    background: linear-gradient(180deg, #d9eefb 0%, #edf8fd 57%, #f7f7f7 100%);
    box-shadow: 0 18px 34px rgba(17, 44, 69, .13);
  }

  .product-showcase.is-detailing .product-slide.is-active img {
    top: 50%;
    left: 0;
    width: 42%;
    height: 78%;
    padding: 0;
    translate: 0 -50%;
  }

  .product-showcase.is-detailing .product-slide.is-active::after {
    right: 0;
    bottom: -1px;
    left: 0;
    top: auto;
    width: auto;
    height: 16%;
  }

  .product-info-card {
    right: .5rem;
    bottom: .5rem;
    width: min(88%, 190px);
    min-height: 76px;
    padding: .65rem .65rem .65rem 2.9rem;
  }

  .product-info-card__shop {
    top: .65rem;
    left: .65rem;
    width: 32px;
    height: 32px;
  }

  .product-info-card h3 {
    font-size: .78rem;
  }

  .product-info-card p {
    font-size: .66rem;
  }

  .product-showcase.is-detailing .product-info-card {
    top: .85rem;
    right: .85rem;
    bottom: auto;
    left: 41%;
    padding: 0;
  }

  .product-showcase.is-detailing .product-slide.is-active .product-detail-card {
    top: .85rem;
    right: auto;
    bottom: auto;
    left: 66%;
    width: min(54vw, 190px);
    padding: 0;
    padding: 0 1rem;
    /* padding-bottom: .5rem; */
    transform: translateX(-50%);
    margin-top: .8rem;
  }

  .product-showcase.is-detailing .product-slide.is-active .product-detail-card[aria-hidden="true"] {
    transform: translate(-50%, 8px) scale(.985);
  }

  .product-showcase.is-detailing .product-info-card__shop {
    top: 0;
    right: 0;
    bottom: auto;
    width: auto;
    height: auto;
    margin: 0;
    gap: .7rem;
    font-size: .7rem;
  }

  .product-showcase.is-detailing .product-info-card__shop span[aria-hidden="true"] {
    font-size: .95rem;
  }

  .product-showcase.is-detailing .product-info-card__eyebrow {
    max-width: 100%;
    margin-bottom: .65rem;
    padding-left: .45rem;
    border-left-width: 2px;
    font-size: clamp(.68rem, 3.2vw, .9rem);
    margin-top: 2rem;
  }

  .product-showcase.is-detailing .product-info-card h3 {
    margin-bottom: clamp(.75rem, 4vw, 1.2rem);
    font-size: clamp(1.3rem, 6vw, 2rem);
  }

  .product-showcase.is-detailing .product-detail-card h3 {
    margin-bottom: clamp(.75rem, 4vw, 1.2rem);
    font-size: clamp(1.3rem, 6vw, 2rem);
  }

  .product-showcase.is-detailing .product-info-card p {
    max-width: none;
    font-size: clamp(.58rem, 2.8vw, .76rem);
    line-height: 1.45;
  }

  .product-showcase.is-detailing .product-detail-card p {
    max-width: none;
    font-size: clamp(.58rem, 2.8vw, .76rem);
    line-height: 1.45;
  }

  .product-dots {
    margin-bottom: 1.75rem;
  }

  .engineering__image {
    height: clamp(220px, 70vw, 330px);
    min-height: 0;
  }

  .engineering__image img {
    width: 100%;
    transform: translateX(-9%) scale(1.02);
  }

  .reviews__content {
    padding-top: 6rem;
  }

  .review-carousel {
    margin-top: 3rem;
    padding-top: 3rem;
  }

  .review-card {
    min-height: 260px;
  }

  .footer-grid> :first-child,
  .footer-grid> :last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 1rem;
  }

  .footer-bottom a {
    margin: 0 1rem 0 0;
  }

  .comfort__copy{
    padding-top: 12rem;
    border-bottom: 2px solid #FFF;
  }

  .performance__stage .cinema__image::before {
    clip-path: polygon(0 0, 0 25%, 59% 90%, 58% 0, 100% 0);
  }

  .comfort__media::before {
    clip-path: polygon(0 0, 42% 0, 41% 90%, 100% 25%, 100% 0);
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .site-nav {
    gap: 1.15rem;
  }

  .site-nav a {
    font-size: .78rem;
  }

  .philosophy__copy .section-heading,
  .engineering__copy .section-heading {
    font-size: clamp(32px, 3vw, 42px);
    text-wrap: normal;
  }

  .engineering__copy .section-heading {
    max-width: none;
  }

  .review-track {
    gap: 1rem;
  }

  .review-card {
    padding-inline: 1.35rem;
  }
}

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

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

  .cinema__image img,
  .offset-image img,
  .parallax-card img,
  .hero__media {
    transform: none !important;
  }

  .review-track {
    animation: none;
  }
}

.cinema--ecosystem.is-animation-active .product-hotspot__dot::after {
  animation-play-state: running;
}
