@font-face { font-family: Geist; font-style: normal; font-weight: 100 900; font-display: swap; src: url("../fonts/geist-8ac0455e797f/geist-98bbbccb.woff2") format("woff2"); }
@font-face { font-family: "Geist Mono"; font-style: normal; font-weight: 100 900; font-display: swap; src: url("../fonts/geist-mono-00e989178794/geist-mono-013b2f2f.woff2") format("woff2"); }

:root {
  --hpt-product-ink: #f5f5f7;
  --hpt-product-muted: #a1a1a6;
  --hpt-product-dim: #6e6e73;
  --hpt-product-blue: #2997ff;
  --hpt-product-blue-deep: #0071e3;
  --hpt-product-cyan: #9cecff;
  --hpt-product-violet: #8d7cff;
  --hpt-product-rose: #ff75a8;
  --hpt-product-night: #000;
  --hpt-product-panel: #07101d;
}

.hpt-product *,
.hpt-product *::before,
.hpt-product *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid;
}

.hpt-product :where(h1,h2,h3,h4,h5,h6) { font-size: inherit; font-weight: inherit; }
.hpt-product :where(ol,ul,menu) { list-style: none; }
.hpt-product :where(button,input,optgroup,select,textarea) { font: inherit; color: inherit; letter-spacing: inherit; background: transparent; }
.hpt-product :where(button,[role="button"]) { cursor: pointer; }
.hpt-product :where(img,svg,video,canvas,audio,iframe,embed,object) { display: block; vertical-align: middle; }
.hpt-product :where(img,video) { max-width: 100%; height: auto; }

html { scroll-behavior: smooth; }
body.hpt-product-template {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: #000;
  color: var(--hpt-product-ink);
  font-family: Geist, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.hpt-product-template .hpt-product {
  --hero-parallax: 0px;
  --hero-copy-shift: 0px;
  --hero-copy-opacity: 1;
  --hero-product-shift: 0px;
  --hero-product-opacity: 1;
  width: 100%;
  min-height: 100vh;
  overflow: clip;
  background: #000;
  color: var(--hpt-product-ink);
  font-size: 16px;
  line-height: 1.5;
  font-family: Geist, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

.hpt-product a { color: inherit; text-decoration: none; }
.hpt-product button { font-family: inherit; }
.hpt-product img { max-width: 100%; }
.hpt-product ul { margin: 0; padding: 0; list-style: none; }

.hpt-product .site-header {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  width: 100%;
  height: 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 max(24px, calc((100vw - 1120px) / 2));
  background: rgba(1, 5, 12, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  -webkit-backdrop-filter: saturate(125%) blur(8px);
  backdrop-filter: saturate(125%) blur(8px);
  transition: background-color .36s ease, border-color .36s ease, box-shadow .36s ease, backdrop-filter .36s ease;
}

.hpt-product .site-header.is-scrolled,
body.hpt-menu-open .hpt-product .site-header {
  background: rgba(7, 10, 16, .72);
  border-bottom-color: rgba(255, 255, 255, .12);
  box-shadow: 0 10px 32px rgba(0, 0, 0, .2);
  -webkit-backdrop-filter: saturate(160%) blur(22px);
  backdrop-filter: saturate(160%) blur(22px);
}

.hpt-product .brand {
  display: flex;
  align-items: center;
}

.hpt-product .brand-logo {
  display: block;
  width: 126px;
  height: auto;
}

.hpt-product .site-header .primary-nav { display: block; }
.hpt-product .primary-nav > ul { display: flex; align-items: center; gap: 26px; }
.hpt-product .primary-nav .menu-item { position: relative; }
.hpt-product .primary-nav .menu-item > a {
  position: relative;
  display: block;
  padding: 20px 0;
  color: #d2d2d7;
  font-size: 13px;
  font-weight: 450;
  line-height: 1;
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: color .18s ease;
}
.hpt-product .primary-nav .menu-item > a:hover,
.hpt-product .primary-nav .menu-item > a:focus-visible,
.hpt-product .primary-nav .menu-item > a.is-active { color: #fff; }
.hpt-product .primary-nav .menu-item > a.is-active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hpt-product-cyan), var(--hpt-product-violet));
  box-shadow: 0 0 12px rgba(110, 182, 255, .8);
  transform: translateX(-50%);
}

.hpt-product .primary-nav .submenu-toggle { display: none; }
.hpt-product .primary-nav .submenu {
  position: absolute;
  top: calc(100% - 5px);
  left: 50%;
  min-width: 190px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background: rgba(20, 20, 23, .92);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .45);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -6px) scale(.98);
  transform-origin: top center;
  transition: opacity .2s ease, visibility .2s ease, transform .28s cubic-bezier(.2,.8,.2,1);
  -webkit-backdrop-filter: saturate(150%) blur(22px);
  backdrop-filter: saturate(150%) blur(22px);
}
.hpt-product .primary-nav .submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #d2d2d7;
  font-size: 12px;
  line-height: 1.45;
}
.hpt-product .primary-nav .submenu a:hover,
.hpt-product .primary-nav .submenu a:focus-visible { color: #fff; background: rgba(255, 255, 255, .08); }
.hpt-product .primary-nav .menu-item:hover > .submenu,
.hpt-product .primary-nav .menu-item:focus-within > .submenu { opacity: 1; visibility: visible; transform: translate(-50%, 0) scale(1); }

.hpt-product .nav-cta {
  justify-self: end;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 980px;
  background: var(--hpt-product-blue-deep);
  color: #fff;
  font-size: 13px;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(0, 113, 227, 0);
  transition: transform .32s cubic-bezier(.2,.8,.2,1), background-color .22s ease, box-shadow .32s ease;
}
.hpt-product .nav-cta:hover,
.hpt-product .nav-cta:focus-visible { background: #087fe8; box-shadow: 0 12px 30px rgba(0, 113, 227, .26); transform: translateY(-1px); }

.hpt-product .nav-toggle {
  display: none;
  justify-self: end;
  position: relative;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
}
.hpt-product .nav-toggle span {
  position: absolute;
  left: 10px;
  width: 16px;
  height: 1px;
  border-radius: 2px;
  background: #f5f5f7;
  transition: top .28s ease, transform .28s ease;
}
.hpt-product .nav-toggle span:first-child { top: 13px; }
.hpt-product .nav-toggle span:last-child { top: 21px; }
.hpt-product .nav-toggle[aria-expanded="true"] span:first-child { top: 17px; transform: rotate(45deg); }
.hpt-product .nav-toggle[aria-expanded="true"] span:last-child { top: 17px; transform: rotate(-45deg); }
.hpt-product .nav-toggle:focus-visible,
.hpt-product .submenu-toggle:focus-visible,
.hpt-product .compare-range:focus-visible { outline: 2px solid var(--hpt-product-blue); outline-offset: 3px; }

.hpt-product .page-progress {
  position: fixed;
  z-index: 70;
  top: 55px;
  left: 0;
  right: 0;
  height: 2px;
  pointer-events: none;
  overflow: hidden;
}
.hpt-product .page-progress span {
  --page-progress: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--hpt-product-cyan), #6aa1ff 42%, var(--hpt-product-violet) 72%, var(--hpt-product-rose));
  box-shadow: 0 0 12px rgba(108, 151, 255, .62);
  transform: scaleX(var(--page-progress));
  transform-origin: left center;
}

.hpt-product .product-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(760px, 94svh, 920px);
  overflow: hidden;
  background-color: #00040b;
}

.hpt-product .product-hero::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: -3% -2% -7%;
  background-image: url("../media/product-earth-atmosphere.jpg");
  background-size: cover;
  background-position: 52% center;
  box-shadow: inset 0 -180px 150px -90px #01050b;
  transform: translate3d(0, var(--hero-parallax), 0) scale(1.025);
  transform-origin: center center;
  will-change: transform;
  pointer-events: none;
}

.hpt-product .hero-scrim {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(61vw, 900px);
  background: rgba(0, 2, 8, .62);
  box-shadow: 130px 0 180px rgba(0, 2, 8, .52);
  pointer-events: none;
}

.hpt-product .hero-stars {
  position: absolute;
  z-index: 1;
  top: 90px;
  right: 12%;
  width: 220px;
  height: 110px;
  border-radius: 50%;
  background: rgba(80, 143, 232, .04);
  box-shadow: 0 0 120px 52px rgba(41, 106, 191, .08);
  pointer-events: none;
}

.hpt-product .product-hero-copy {
  position: relative;
  z-index: 4;
  width: min(470px, calc(100% - 48px));
  padding-top: clamp(180px, 21vh, 228px);
  margin-left: max(24px, calc((100vw - 1120px) / 2));
  opacity: var(--hero-copy-opacity);
  transform: translate3d(0, var(--hero-copy-shift), 0);
  will-change: transform, opacity;
}
.hpt-product.is-past-hero .product-hero::before,
.hpt-product.is-past-hero .product-hero-copy,
.hpt-product.is-past-hero .hero-product { will-change: auto; }

.motion-ui-ready .hpt-product .product-hero-copy h1,
.motion-ui-ready .hpt-product .product-hero-copy .eyebrow,
.motion-ui-ready .hpt-product .product-hero-copy > p,
.motion-ui-ready .hpt-product .product-hero-copy > .button {
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(0, 22px, 0);
  transition: opacity .72s ease, filter .72s ease, transform .86s cubic-bezier(.16,.84,.24,1);
}
.motion-ui-ready .hpt-product.is-hero-ready .product-hero-copy h1,
.motion-ui-ready .hpt-product.is-hero-ready .product-hero-copy .eyebrow,
.motion-ui-ready .hpt-product.is-hero-ready .product-hero-copy > p,
.motion-ui-ready .hpt-product.is-hero-ready .product-hero-copy > .button { opacity: 1; filter: none; transform: translate3d(0, 0, 0); }
.motion-ui-ready .hpt-product.is-hero-ready .product-hero-copy h1 { transition-delay: 70ms; }
.motion-ui-ready .hpt-product.is-hero-ready .product-hero-copy > p:not(.eyebrow) { transition-delay: 150ms; }
.motion-ui-ready .hpt-product.is-hero-ready .product-hero-copy > .button { transition-delay: 230ms; }

.hpt-product .hero-product {
  position: absolute;
  z-index: 3;
  right: max(18px, calc((100vw - 1180px) / 2));
  bottom: -118px;
  width: clamp(430px, 43vw, 610px);
  height: clamp(650px, 78vh, 820px);
  margin: 0;
  opacity: var(--hero-product-opacity);
  perspective: 1500px;
  transform: translate3d(0, var(--hero-product-shift), 0) rotateZ(8deg);
  transform-origin: 70% 76%;
  will-change: transform, opacity;
  pointer-events: none;
}

.hpt-product .hero-product-aura {
  position: absolute;
  left: 4%;
  bottom: 18%;
  width: 86%;
  height: 55%;
  border-radius: 50%;
  background: rgba(45, 112, 205, .12);
  box-shadow: 0 0 100px 54px rgba(34, 104, 210, .13);
  filter: blur(10px);
}

.hpt-product .hero-product img {
  position: absolute;
  bottom: 0;
  width: 47%;
  height: auto;
  max-height: 94%;
  object-fit: cover;
  border: 1px solid rgba(180, 221, 255, .22);
  box-shadow: 0 36px 84px rgba(0, 0, 0, .62), 0 0 30px rgba(75, 151, 255, .18);
}

.hpt-product .hero-product-front {
  z-index: 2;
  left: 8%;
  filter: brightness(1.14) contrast(.94);
  transform: perspective(1300px) rotateY(5deg) translate3d(0, 0, 30px);
}

.hpt-product .hero-product-back {
  z-index: 1;
  right: 6%;
  transform: perspective(1300px) rotateY(-5deg) translate3d(0, 34px, 0);
}

.motion-ui-ready .hpt-product .hero-product {
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(34px, 46px, 0) rotateZ(10deg) scale(.97);
  transition: opacity .48s .12s ease, filter .68s .12s ease, transform .9s .12s cubic-bezier(.16,.84,.24,1);
}

.motion-ui-ready .hpt-product.is-hero-ready .hero-product {
  opacity: var(--hero-product-opacity);
  filter: none;
  transform: translate3d(0, var(--hero-product-shift), 0) rotateZ(8deg) scale(1);
}

.hpt-product .eyebrow,
.hpt-product .section-kicker {
  color: #9edfff;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 13px;
  font-weight: 560;
  letter-spacing: .13em;
}

.hpt-product .product-hero h1 {
  margin-top: 18px;
  font-size: clamp(64px, 6.2vw, 88px);
  line-height: .98;
  letter-spacing: -.06em;
  font-weight: 630;
}

.hpt-product .product-hero h1 span { color: #c9efff; }
.hpt-product .product-hero-copy > p:not(.eyebrow) {
  max-width: 440px;
  margin-top: 26px;
  color: #d2d2d7;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.62;
  letter-spacing: -.02em;
}

body.hpt-product-template .hpt-product a.button.button-primary,
body.hpt-product-template .hpt-product a.button.button-primary:hover,
body.hpt-product-template .hpt-product a.button.button-primary:focus,
body.hpt-product-template .hpt-product a.button.button-primary:active {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 0 24px;
  border: 0;
  border-radius: 980px;
  background: var(--hpt-product-blue-deep);
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 113, 227, .18);
  font-size: 16px;
  line-height: 1;
  text-transform: none;
  text-decoration: none;
  transition: transform .34s cubic-bezier(.2,.8,.2,1), background-color .2s ease, box-shadow .34s ease;
}
body.hpt-product-template .hpt-product a.button.button-primary:hover { background: #087fe8; box-shadow: 0 18px 42px rgba(0, 113, 227, .3); transform: translateY(-2px) scale(1.01); }

.hpt-product .hero-scroll {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 30px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  transform: translateX(-50%);
  animation: hpt-product-scroll 2.1s ease-in-out infinite;
}
.hpt-product .hero-scroll img { width: 14px; height: 14px; filter: brightness(0) invert(1); }

.hpt-product .advantages-section {
  position: relative;
  min-height: 1110px;
  padding: 104px max(24px, calc((100vw - 1120px) / 2)) 96px;
  overflow: hidden;
  background: #020812;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.hpt-product .advantages-section::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 315px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(22, 82, 148, .08);
  box-shadow: 0 0 180px 70px rgba(40, 95, 170, .08);
  transform: translateX(-50%);
  pointer-events: none;
  animation: hpt-product-glow-breathe 6.5s ease-in-out infinite;
}

.hpt-product .advantages-heading {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hpt-product .advantages-heading h2 {
  margin-top: 0;
  color: #f5f5f7;
  font-size: clamp(48px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -.055em;
  font-weight: 620;
}
.hpt-product .advantages-heading h2::after {
  content: '';
  display: block;
  width: 92px;
  height: 2px;
  margin: 20px auto 18px;
  background: #2d85e8;
  box-shadow: 0 0 18px rgba(41, 151, 255, .65);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .8s .18s cubic-bezier(.16,.84,.24,1);
}
.hpt-product .advantages-heading.is-in-view h2::after { transform: scaleX(1); }
.hpt-product .advantages-heading > p:last-child { color: var(--hpt-product-muted); font-size: 16px; letter-spacing: .08em; }

.hpt-product .advantages-stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1120px;
  margin: 70px auto 0;
}

.hpt-product .benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  margin-top: 64px;
}

.hpt-product .benefit-card {
  position: relative;
  isolation: isolate;
  min-height: 224px;
  overflow: hidden;
  border: 1px solid rgba(142, 169, 208, .18);
  border-radius: 16px;
  background: #08111f;
  box-shadow: inset 0 1px rgba(255, 255, 255, .025), 0 20px 54px rgba(0, 0, 0, .18);
  transition: border-color .42s ease, box-shadow .5s ease, transform .58s cubic-bezier(.16,.84,.24,1);
}
.hpt-product .benefit-card::before {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 15, 28, .99) 0%, rgba(7, 15, 28, .94) 43%, rgba(7, 15, 28, .58) 67%, rgba(7, 15, 28, .08) 100%);
  pointer-events: none;
}
.hpt-product .benefit-art {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 56%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: .72;
  filter: saturate(.86) brightness(.72) contrast(1.05);
  transform: scale(1.02);
  transform-origin: center;
  transition: opacity .5s ease, filter .5s ease, transform .8s cubic-bezier(.16,.84,.24,1);
}
.hpt-product .benefit-tools .benefit-art { width: 44%; height: 138%; top: -18%; object-position: 40% center; transform: scale(1.03); }
.hpt-product .benefit-performance .benefit-art { width: 56%; object-position: 54% center; opacity: .66; }
.hpt-product .benefit-size .benefit-art { top: -13%; right: -7%; width: 58%; height: 126%; object-position: 45% center; transform: rotate(-17deg) scale(1.14); }
.hpt-product .benefit-electrical .benefit-art { width: 55%; object-position: 68% center; opacity: .8; filter: saturate(.72) brightness(.78) contrast(.98); }

.hpt-product .benefit-card-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 16px 20px;
  width: 67%;
  min-height: 224px;
  align-content: center;
  padding: 30px;
}
.hpt-product .benefit-icon {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 13px;
  background: rgba(30, 40, 56, .88);
  color: #f5f5f7;
  font-size: 22px;
  box-shadow: inset 0 1px rgba(255, 255, 255, .06), 0 12px 24px rgba(0, 0, 0, .22);
  transition: transform .5s cubic-bezier(.2,.8,.2,1), background-color .4s ease, filter .4s ease;
}
.hpt-product .benefit-icon img { width: 27px; height: 27px; object-fit: contain; filter: brightness(0) invert(1); }
.hpt-product .benefit-card-content > div { grid-column: 2; grid-row: 1 / 3; align-self: center; }
.hpt-product .benefit-card h3 { color: #fff; font-size: clamp(22px, 1.75vw, 26px); line-height: 1.18; letter-spacing: -.035em; font-weight: 600; transition: color .35s ease, transform .45s cubic-bezier(.2,.8,.2,1); }
.hpt-product .benefit-card p { max-width: 275px; margin-top: 12px; color: #b3bac5; font-size: 14px; line-height: 1.72; transition: color .35s ease; }
.hpt-product .benefit-arrow { grid-column: 1; grid-row: 2; align-self: end; color: #2997ff; font-size: 18px; transition: color .32s ease, transform .5s cubic-bezier(.2,.8,.2,1); }
.hpt-product .benefit-arrow img { width: 20px; height: 20px; filter: brightness(0) saturate(100%) invert(49%) sepia(99%) saturate(2958%) hue-rotate(192deg) brightness(104%) contrast(101%); }

.hpt-product .module-comparison { --module-tilt-x: 0deg; --module-tilt-y: 0deg; --spot-x: 50%; --spot-y: 50%; position: relative; width: min(390px, 100%); margin: 0; perspective: 1200px; }
.hpt-product .module-glow {
  position: absolute;
  inset: 18% -14% -4%;
  border-radius: 50%;
  background: rgba(44, 115, 205, .12);
  box-shadow: 0 0 90px 46px rgba(36, 105, 204, .14);
  pointer-events: none;
  animation: hpt-product-module-glow 5.8s ease-in-out infinite;
}
.hpt-product .module-media {
  position: relative;
  width: 100%;
  aspect-ratio: 438 / 854;
  overflow: hidden;
  background: #0a0d12;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .62), 0 0 42px rgba(49, 123, 226, .22);
  transform: perspective(1200px) rotateX(var(--module-tilt-x)) rotateY(var(--module-tilt-y)) translate3d(0, 0, 0);
  transform-origin: center center;
  transition: transform .62s cubic-bezier(.16,.84,.24,1), box-shadow .5s ease;
  touch-action: pan-y;
  user-select: none;
}
.hpt-product .module-media::before {
  content: '';
  position: absolute;
  z-index: 3;
  inset: -1px;
  pointer-events: none;
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(188,238,255,.2), rgba(106,161,255,.08) 22%, rgba(214,123,255,.045) 39%, transparent 60%);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity .35s ease;
}
.hpt-product .module-comparison.is-pointer-active .module-media::before { opacity: 1; }
.hpt-product .module-comparison.is-pointer-active .module-media { box-shadow: 0 46px 102px rgba(0, 0, 0, .68), 0 0 56px rgba(49, 123, 226, .3); }
.hpt-product .module-comparison.is-comparing .module-media { transform: perspective(1200px) rotateX(var(--module-tilt-x)) rotateY(var(--module-tilt-y)) translate3d(0, -2px, 0) scale(1.008); transition-duration: .18s; }
.hpt-product .module-media::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(170, 216, 255, .24);
  pointer-events: none;
}
.hpt-product .module-back,
.hpt-product .module-front {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hpt-product .module-back { position: absolute; inset: 0; }
.hpt-product .module-front-clip {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--compare-position)) 0 0);
  transition: clip-path .38s cubic-bezier(.2,.8,.2,1);
}
.hpt-product .module-front { width: 100%; max-width: none; }
.hpt-product .compare-divider {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--compare-position);
  width: 2px;
  background: #fff;
  box-shadow: 0 0 18px rgba(255, 255, 255, .6);
  transform: translateX(-1px);
  transition: left .38s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.hpt-product .compare-divider span {
  position: absolute;
  top: 52%;
  left: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: #f5f5f7;
  color: #121216;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
  font-size: 15px;
  transform: translate(-50%, -50%);
  transition: transform .42s cubic-bezier(.2,.8,.2,1), box-shadow .42s ease;
}
.hpt-product .module-comparison.is-focused .compare-divider span,
.hpt-product .module-comparison.is-previewing .compare-divider span { box-shadow: 0 8px 30px rgba(0, 0, 0, .4), 0 0 24px rgba(109, 184, 255, .42); transform: translate(-50%, -50%) scale(1.07); }
.hpt-product .module-comparison.is-comparing .module-front-clip,
.hpt-product .module-comparison.is-comparing .compare-divider,
.hpt-product .module-comparison.is-previewing .module-front-clip,
.hpt-product .module-comparison.is-previewing .compare-divider { transition: none; }
.hpt-product .compare-divider span img { width: 17px; height: 17px; object-fit: contain; }
.hpt-product .compare-range {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}
.hpt-product .module-comparison figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  color: #86868b;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .12em;
}
.hpt-product .module-comparison figcaption span:first-child,
.hpt-product .module-comparison figcaption span:last-child { color: #d2d2d7; }

.hpt-product .spec-button {
  position: relative;
  z-index: 2;
  display: flex;
  width: fit-content;
  min-height: 52px;
  align-items: center;
  gap: 18px;
  margin: 62px auto 0;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 12px;
  color: #f5f5f7;
  font-size: 16px;
  text-transform: none;
  transition: background-color .2s ease, border-color .2s ease, transform .25s ease;
}
.hpt-product .spec-button:hover,
.hpt-product .spec-button:focus-visible { background: rgba(255, 255, 255, .08); border-color: #fff; box-shadow: 0 16px 38px rgba(0, 85, 190, .16); transform: translateY(-3px); }
.hpt-product .spec-button img { width: 16px; height: 16px; object-fit: contain; filter: brightness(0) invert(1); transition: transform .42s cubic-bezier(.2,.8,.2,1); }
.hpt-product .spec-button:hover img,
.hpt-product .spec-button:focus-visible img { transform: translateY(3px); }

.hpt-product .product-contact {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
  padding: 96px 24px;
  overflow: hidden;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.hpt-product .product-contact::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 300px;
  border-radius: 50%;
  background: rgba(52, 108, 180, .09);
  box-shadow: 0 0 130px 70px rgba(57, 116, 196, .08);
  animation: hpt-product-contact-glow 7s ease-in-out infinite;
}
.hpt-product .product-contact-copy { position: relative; z-index: 2; max-width: 820px; text-align: center; }
.hpt-product .product-contact h2 { margin-top: 16px; font-size: clamp(48px, 5.7vw, 80px); line-height: 1.03; letter-spacing: -.06em; font-weight: 620; }
.hpt-product .product-contact h2 span { color: #bcecff; }
.hpt-product .product-contact-copy > p:not(.section-kicker) { margin-top: 24px; color: var(--hpt-product-muted); font-size: 20px; }

.hpt-product .site-footer {
  display: grid;
  grid-template-columns: minmax(150px, .7fr) minmax(340px, 1.2fr) auto;
  gap: 28px 52px;
  align-items: start;
  padding: 54px max(24px, calc((100vw - 1120px) / 2)) 34px;
  border-top: 1px solid #1d1d1f;
  background: #000;
  color: #86868b;
  font-size: 13px;
}
.hpt-product .footer-company { display: grid; gap: 6px; line-height: 1.55; }
.hpt-product .footer-company strong { color: #d2d2d7; font-size: 13px; font-weight: 600; }
.hpt-product .footer-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 18px; color: #a1a1a6; }
.hpt-product .footer-nav a { min-height: 32px; display: inline-flex; align-items: center; transition: color .18s ease; }
.hpt-product .footer-nav a:hover { color: #f5f5f7; }
.hpt-product .footer-legal { grid-column: 1 / -1; margin-top: 10px; padding-top: 20px; border-top: 1px solid #1d1d1f; }
.hpt-product .footer-legal a:hover { color: #a1a1a6; }

.motion-ui-ready .hpt-product [data-motion-item] {
  opacity: 0;
  filter: blur(2px);
  transform: translate3d(var(--motion-x, 0px), 12px, 0) scale(.994);
  transition: opacity .52s ease var(--motion-delay, 0ms), filter .52s ease var(--motion-delay, 0ms), transform .68s cubic-bezier(.16,.84,.24,1) var(--motion-delay, 0ms);
}
.motion-ui-ready .hpt-product [data-motion-item].is-in-view { opacity: 1; filter: none; transform: translate3d(0, 0, 0) scale(1); }
.motion-ui-ready .hpt-product [data-motion-group] [data-motion-item]:nth-child(2) { transition-delay: .08s; }
.motion-ui-ready .hpt-product [data-motion-group] [data-motion-item]:nth-child(3) { transition-delay: .16s; }

.hpt-product .reveal { animation: hpt-product-reveal .8s cubic-bezier(.2,.8,.2,1) both; }

.admin-bar .hpt-product .site-header { top: 32px; }
.admin-bar .hpt-product .page-progress { top: 87px; }

@keyframes hpt-product-reveal {
  from { opacity: 0; filter: blur(6px); transform: translateY(20px); }
  to { opacity: 1; filter: none; transform: translateY(0); }
}

@keyframes hpt-product-scroll {
  0%, 100% { transform: translate(-50%, 0); opacity: .6; }
  50% { transform: translate(-50%, 7px); opacity: 1; }
}

@keyframes hpt-product-glow-breathe {
  0%, 100% { opacity: .72; transform: translateX(-50%) scale(.94); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.04); }
}

@keyframes hpt-product-module-glow {
  0%, 100% { opacity: .72; transform: scale(.96); }
  50% { opacity: 1; transform: scale(1.035); }
}

@keyframes hpt-product-contact-glow {
  0%, 100% { opacity: .72; transform: scale(.92); }
  50% { opacity: 1; transform: scale(1.06); }
}

@media (hover: hover) and (pointer: fine) {
  .hpt-product .benefit-card:hover { border-color: rgba(103, 171, 255, .36); box-shadow: inset 0 1px rgba(255, 255, 255, .045), 0 28px 70px rgba(0, 0, 0, .3), 0 0 42px rgba(27, 104, 205, .08); transform: translateY(-4px); }
  .hpt-product .benefit-card:hover .benefit-art { opacity: .86; filter: saturate(.98) brightness(.82) contrast(1.06); transform: scale(1.075); }
  .hpt-product .benefit-card.benefit-size:hover .benefit-art { transform: rotate(-17deg) scale(1.2); }
  .hpt-product .benefit-card:hover .benefit-icon { background: rgba(38, 52, 73, .94); filter: drop-shadow(0 0 14px rgba(102, 191, 255, .34)); transform: translateY(-2px) scale(1.04); }
  .hpt-product .benefit-card:hover h3 { color: #d3f2ff; transform: translateY(-1px); }
  .hpt-product .benefit-card:hover p { color: #d0d4da; }
  .hpt-product .benefit-card:hover .benefit-arrow { color: #7bc8ff; transform: translateX(4px); }
}

@media (max-width: 1100px) {
  .hpt-product .product-hero-copy { width: min(420px, calc(100% - 48px)); }
  .hpt-product .product-hero h1 { font-size: clamp(62px, 7.2vw, 78px); }
  .hpt-product .hero-product { right: 8px; width: clamp(400px, 45vw, 500px); }
  .hpt-product .benefit-card-content { width: 72%; padding: 26px; }
  .hpt-product .benefit-card p { max-width: 245px; }
}

@media (max-width: 960px) and (min-width: 821px) {
  .hpt-product .site-header { padding-left: 24px; padding-right: 24px; }
  .hpt-product .primary-nav > ul { gap: 18px; }
  .hpt-product .product-hero-copy { width: 385px; }
  .hpt-product .product-hero h1 { font-size: 68px; }
  .hpt-product .product-hero-copy > p:not(.eyebrow) { font-size: 17px; }
  .hpt-product .hero-product { right: -42px; width: 420px; }
}

@media (max-width: 820px) {
  body.hpt-menu-open { overflow: hidden; }
  .hpt-product .site-header { grid-template-columns: 1fr auto auto; gap: 10px; padding-left: 18px; padding-right: 18px; }
  .hpt-product .site-header .primary-nav {
    display: block;
    position: fixed;
    z-index: -1;
    top: 55px;
    left: 0;
    right: 0;
    height: calc(100dvh - 55px);
    overflow: auto;
    padding: 30px 24px 70px;
    background: rgba(0, 0, 0, .96);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .25s ease, visibility .25s ease, transform .35s cubic-bezier(.2,.8,.2,1);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
  }
  .hpt-product .site-header .primary-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .hpt-product .primary-nav > ul { display: block; }
  .hpt-product .primary-nav .menu-item { border-bottom: 1px solid rgba(255, 255, 255, .12); }
  .hpt-product .primary-nav .menu-item > a { padding: 18px 38px 18px 0; color: #f5f5f7; font-size: 28px; letter-spacing: -.04em; }
  .hpt-product .primary-nav .menu-item > a.is-active::after { display: none; }
  .hpt-product .primary-nav .submenu-toggle {
    display: block;
    position: absolute;
    top: 13px;
    right: 0;
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
  }
  .hpt-product .primary-nav .submenu-toggle::before,
  .hpt-product .primary-nav .submenu-toggle::after { content: ''; position: absolute; left: 11px; top: 17px; width: 14px; height: 1px; background: #d2d2d7; transition: transform .25s ease; }
  .hpt-product .primary-nav .submenu-toggle::after { transform: rotate(90deg); }
  .hpt-product .primary-nav .submenu-toggle[aria-expanded="true"]::after { transform: rotate(0); }
  .hpt-product .primary-nav .submenu { position: static; min-width: 0; max-height: 0; overflow: hidden; padding: 0 0 0 18px; border: 0; background: transparent; box-shadow: none; opacity: 1; visibility: visible; transform: none; transition: max-height .36s cubic-bezier(.2,.8,.2,1), padding .36s ease; backdrop-filter: none; }
  .hpt-product .primary-nav .menu-item:hover > .submenu,
  .hpt-product .primary-nav .menu-item:focus-within > .submenu { transform: none; }
  .hpt-product .primary-nav .menu-item.is-submenu-open > .submenu { max-height: 160px; padding-bottom: 16px; }
  .hpt-product .primary-nav .submenu a { padding: 9px 0; font-size: 16px; }
  .hpt-product .nav-toggle { display: block; }
  .hpt-product .nav-cta { min-height: 36px; padding: 0 12px; font-size: 12px; }

  .hpt-product .product-hero { min-height: max(820px, 100svh); }
  .hpt-product .product-hero::before { background-position: 59% center; }
  .hpt-product .hero-scrim { width: 92vw; background: rgba(0, 2, 8, .58); box-shadow: 60px 0 90px rgba(0, 2, 8, .38); }
  .hpt-product .product-hero-copy { width: min(470px, calc(100% - 48px)); padding-top: 132px; }
  .hpt-product .product-hero h1 { font-size: clamp(58px, 12vw, 78px); }
  .hpt-product .product-hero-copy > p:not(.eyebrow) { max-width: 420px; font-size: 18px; }
  .hpt-product .hero-product { right: -30px; bottom: -250px; width: min(520px, 76vw); height: 690px; transform: translate3d(0, var(--hero-product-shift), 0) rotateZ(8deg); }
  .motion-ui-ready .hpt-product.is-hero-ready .hero-product { transform: translate3d(0, var(--hero-product-shift), 0) rotateZ(8deg) scale(1); }

  .hpt-product .advantages-section { min-height: 0; padding: 94px 24px 90px; }
  .hpt-product .advantages-stage { max-width: 660px; margin-top: 62px; }
  .hpt-product .module-comparison { width: min(100%, 350px); margin: 0 auto; }
  .hpt-product .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 52px; }
  .hpt-product .benefit-card { min-height: 250px; }
  .hpt-product .benefit-card-content { width: 88%; min-height: 250px; grid-template-columns: 46px minmax(0, 1fr); gap: 14px 16px; padding: 22px; }
  .hpt-product .benefit-icon { width: 46px; height: 46px; border-radius: 12px; font-size: 19px; }
  .hpt-product .benefit-icon img { width: 24px; height: 24px; }
  .hpt-product .benefit-card h3 { font-size: 22px; }
  .hpt-product .benefit-card p { max-width: 230px; font-size: 14px; line-height: 1.65; }
  .hpt-product .benefit-art { opacity: .48; }
  .hpt-product .spec-button { margin-top: 56px; }
  .hpt-product .site-footer { grid-template-columns: 1fr; gap: 20px; }
  .hpt-product .footer-nav { justify-content: flex-start; }
  .hpt-product .footer-legal { grid-column: 1; }
  .admin-bar .hpt-product .site-header { top: 46px; }
  .admin-bar .hpt-product .site-header .primary-nav { top: 101px; height: calc(100dvh - 101px); }
  .admin-bar .hpt-product .page-progress { top: 101px; }
}

@media (max-width: 720px) {
  .hpt-product .benefits-grid { grid-template-columns: 1fr; gap: 14px; }
  .hpt-product .benefit-card { min-height: 220px; }
  .hpt-product .benefit-card-content { width: 76%; min-height: 220px; padding: 24px; }
  .hpt-product .benefit-card h3 { font-size: 23px; }
  .hpt-product .benefit-card p { font-size: 14px; }
  .hpt-product .benefit-art { opacity: .6; }
}

@media (max-width: 520px) {
  .hpt-product .site-header { padding-left: 16px; padding-right: 16px; }
  .hpt-product .site-header .brand-logo { width: 102px; }
  .hpt-product .nav-cta { padding: 0 10px; }
  .hpt-product .product-hero { min-height: max(780px, 100svh); }
  .hpt-product .product-hero::before { background-position: 61% center; }
  .hpt-product .hero-scrim { width: 100%; background: rgba(0, 2, 8, .56); box-shadow: none; }
  .hpt-product .product-hero-copy { width: calc(100% - 36px); margin-left: 18px; padding-top: 118px; }
  .hpt-product .eyebrow { font-size: 11px; }
  .hpt-product .product-hero h1 { margin-top: 13px; font-size: clamp(50px, 15.5vw, 66px); }
  .hpt-product .product-hero-copy > p:not(.eyebrow) { max-width: 350px; margin-top: 20px; font-size: 16px; line-height: 1.58; }
  body.hpt-product-template .hpt-product a.button.button-primary,
  body.hpt-product-template .hpt-product a.button.button-primary:hover,
  body.hpt-product-template .hpt-product a.button.button-primary:focus,
  body.hpt-product-template .hpt-product a.button.button-primary:active { min-height: 44px; margin-top: 24px; padding: 0 20px; font-size: 15px; }
  .hpt-product .hero-product { right: -48px; bottom: -208px; width: 390px; height: 560px; }
  .hpt-product .hero-scroll { bottom: 22px; }
  .hpt-product .advantages-section { padding-left: 18px; padding-right: 18px; }
  .hpt-product .advantages-heading h2 { font-size: 46px; }
  .hpt-product .advantages-heading > p:last-child { font-size: 14px; }
  .hpt-product .benefits-grid { grid-template-columns: 1fr; gap: 14px; }
  .hpt-product .benefit-card { min-height: 220px; }
  .hpt-product .benefit-card-content { width: 82%; min-height: 220px; padding: 24px; }
  .hpt-product .benefit-card h3 { font-size: 23px; }
  .hpt-product .benefit-card p { font-size: 14px; }
  .hpt-product .benefit-art { opacity: .6; }
  .hpt-product .module-comparison { width: min(82vw, 320px); }
  .hpt-product .spec-button { min-height: 52px; padding: 0 22px; font-size: 16px; }
  .hpt-product .product-contact { min-height: 520px; padding-left: 18px; padding-right: 18px; }
  .hpt-product .product-contact h2 { font-size: 48px; }
  .hpt-product .product-contact-copy > p:not(.section-kicker) { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hpt-product *,
  .hpt-product *::before,
  .hpt-product *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .motion-ui-ready .hpt-product [data-motion-item] { opacity: 1; filter: none; transform: none; }
  .motion-ui-ready .hpt-product .product-hero-copy h1,
  .motion-ui-ready .hpt-product .product-hero-copy .eyebrow,
  .motion-ui-ready .hpt-product .product-hero-copy > p,
  .motion-ui-ready .hpt-product .product-hero-copy > .button { opacity: 1; filter: none; transform: none; }
  .hpt-product .product-hero::before,
  .hpt-product .product-hero-copy,
  .hpt-product .hero-product { will-change: auto; transform: none; opacity: 1; filter: none; }
}
