@font-face {
  font-family: "OPPO Sans 4.0";
  src: url("../assets/fonts/OPPO%20Sans%204.0.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "OPPO Sans";
  src: url("../assets/fonts/OPPO%20Sans%204.0.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "OPPOSans";
  src: url("../assets/fonts/OPPO%20Sans%204.0.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  --design-width: 1280;
  --design-height: 3605;
  --scale: 1;
  --inverse-scale: 1;
  --home-screen-count: 5;
  --screen-height-design: 720px;
  --home-canvas-height-design: 3600px;
  --home-screen-1-top: 720px;
  --home-screen-2-top: 1438px;
  --home-screen-3-top: 2160px;
  --home-screen-4-top: 2880px;
  --home-section-1-overlap-design: 0px;
  --home-section-overlap-design: 2px;
  --home-section-1-render-overlap: calc(1px * var(--inverse-scale));
  --home-edge-inset: 30px;
  --home-edge-inset-layout: var(--home-edge-inset);
  --company-first-screen-height-design: 720px;
  --company-bottom-planet-edge-offset-design: 210px;
  --company-bottom-mars-edge-offset-design: 204px;
  --company-bottom-jupiter-edge-offset-design: 161.3px;
  --company-controls-planet-top-offset-design: 125px;
  --company-bottom-planet-top-design: calc(
    var(--company-first-screen-height-design, 720px) - var(--company-bottom-planet-edge-offset-design)
  );
  --company-bottom-mars-top-design: calc(
    var(--company-first-screen-height-design, 720px) - var(--company-bottom-mars-edge-offset-design)
  );
  --company-bottom-jupiter-top-design: calc(
    var(--company-first-screen-height-design, 720px) - var(--company-bottom-jupiter-edge-offset-design)
  );
  --company-about-copy-top-design: 239.922px;
  --page-bg: #ecedf1;
  --black: #000;
  --white: #fff;
  --muted-black: rgba(0, 0, 0, 0.3);
  --footer-muted: #adadae;
  --canvas-width: calc(1280px * var(--scale));
  --canvas-height: 3600px;
  --viewport-height-design: 720px;
  --font-sans: "OPPO Sans 4.0", "OPPO Sans", "OPPOSans", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-family: var(--font-sans);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page-bg);
  scroll-behavior: smooth;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

html.slice-html {
  background: #000;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page-bg);
  color: var(--black);
  overflow-x: hidden;
  font-family: var(--font-sans);
}

body.is-locked {
  overflow: hidden;
}

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

button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font-family: var(--font-sans);
}

img,
video {
  display: block;
}

.page-shell {
  width: 100vw;
  max-width: 100vw;
  height: var(--canvas-height);
  margin: 0 auto;
  overflow: hidden;
}

.figma-canvas,
.header-canvas,
.menu-canvas {
  position: relative;
  width: 1280px;
  transform: scale(var(--scale));
  transform-origin: 0 0;
}

.figma-canvas {
  height: var(--home-canvas-height-design);
  overflow: hidden;
  background: var(--page-bg);
}

.screen {
  position: absolute;
  left: 0;
  width: 1280px;
  height: var(--screen-height-design);
  overflow: hidden;
  background: var(--page-bg);
}

.image-screen {
  height: var(--screen-height-design);
}

.screen-product {
  top: 0;
  z-index: 1;
  height: calc(var(--screen-height-design) + var(--home-section-1-render-overlap));
}

.screen-video {
  top: var(--home-screen-1-top);
  z-index: 2;
  height: var(--screen-height-design);
}

.screen-tech {
  top: var(--home-screen-2-top);
  z-index: 3;
  height: calc(var(--screen-height-design) + var(--home-section-overlap-design));
}

.screen-team {
  top: var(--home-screen-3-top);
  z-index: 4;
  background: #ecedf1;
}

.screen-team::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 22.6844%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.48) 100%
  );
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  pointer-events: none;
}

.screen-contact {
  top: var(--home-screen-4-top);
  z-index: 5;
  height: calc(var(--screen-height-design) + var(--home-section-overlap-design));
  background: var(--page-bg);
  --contact-content-top: max(258px, calc(var(--viewport-height-design, 720px) - 304px));
  --contact-preview-top: max(294px, calc(var(--viewport-height-design, 720px) - 268px));
}

.screen-bg {
  position: absolute;
  inset: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.screen-team-bg {
  position: absolute;
  inset: 0;
  background: #ecedf1;
}

.screen-team-robot {
  position: absolute;
  left: -1px;
  top: -1px;
  z-index: 1;
  display: block;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  object-fit: cover;
  object-position: center center;
  transform: none;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.bottom-fade {
  position: absolute;
  left: -12px;
  right: -12px;
  bottom: -14px;
  width: auto;
  height: 178px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.44) 0%,
    rgba(42, 42, 42, 0.31) 46%,
    rgba(0, 0, 0, 0) 100%
  );
  filter: blur(4px);
  pointer-events: none;
}

.screen-product .bottom-fade {
  left: -32px;
  right: -32px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.54) 0%,
    rgba(0, 0, 0, 0.49) 14%,
    rgba(42, 42, 42, 0.35) 46%,
    rgba(0, 0, 0, 0) 100%
  );
}

.screen-copy {
  position: absolute;
  left: 25px;
  top: max(96px, calc(var(--viewport-height-design, 720px) - 132px));
  z-index: 2;
  display: flex;
  width: 520px;
  flex-direction: column;
  gap: 16px;
  color: var(--white);
  word-break: break-word;
}

.copy-wide {
  top: max(96px, calc(var(--viewport-height-design, 720px) - 132px));
}

.copy-tech {
  top: max(96px, calc(var(--viewport-height-design, 720px) - 132px));
}

.copy-team {
  left: 40px;
  top: max(96px, calc(var(--viewport-height-design, 720px) - 128px));
  z-index: 3;
  width: 366px;
}

.copy-team h2 {
  width: 414.452px;
}

.copy-team p {
  width: 510px;
  max-width: 510px;
}

.screen-team .figma-pill {
  z-index: 3;
  gap: 2px;
}

html[lang="en"] .copy-team {
  width: 900px;
}

html[lang="en"] .copy-team p {
  width: 900px;
  max-width: 900px;
}

.screen-copy h1,
.screen-copy h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.55px;
}

.screen-copy p {
  margin: 0;
  width: 514px;
  max-width: 514px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.07px;
}

.copy-product {
  width: 520px;
}

.copy-product p {
  width: 510px;
  max-width: 510px;
}

.copy-tech p {
  width: 508px;
}

.dark-copy {
  color: var(--white);
}

.dark-copy p {
  color: var(--white);
}

.figma-pill {
  position: absolute;
  right: var(--home-edge-inset);
  top: max(112px, calc(var(--viewport-height-design, 720px) - 82px));
  bottom: auto;
  z-index: 3;
  display: inline-flex;
  min-width: 118px;
  height: 32px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 20px;
  border: 1px solid currentColor;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.07px;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.pill-light {
  color: var(--white);
}

.pill-dark {
  color: var(--black);
}

.screen-video .figma-pill {
  top: max(112px, calc(var(--viewport-height-design, 720px) - 82px));
}

.screen-tech .figma-pill {
  top: max(112px, calc(var(--viewport-height-design, 720px) - 82px));
}

.screen-team .figma-pill {
  top: max(112px, calc(var(--viewport-height-design, 720px) - 82px));
  right: var(--home-edge-inset);
}

.pill-light:hover,
.pill-light:focus-visible {
  border-color: var(--white);
  background-color: var(--white);
  color: var(--black);
}

.pill-dark:hover,
.pill-dark:focus-visible {
  border-color: var(--black);
  background-color: var(--black);
  color: var(--white);
}

.pill-arrow {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.pill-arrow::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-radius: 1px;
  transform: rotate(-45deg);
  transform-origin: center;
}

.pill-play::before {
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 0;
  background: currentColor;
  clip-path: polygon(24% 10%, 24% 90%, 88% 50%);
  transform: translate(-50%, -50%);
}

.figma-header {
  position: fixed;
  left: 50%;
  top: 0;
  z-index: 40;
  width: 100vw;
  height: 60px;
  transform: translateX(-50%);
  pointer-events: none;
}

.header-canvas {
  height: 60px;
  pointer-events: auto;
}

.figma-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 1;
  transition: background 180ms ease, opacity 180ms ease;
}

.figma-header[data-theme="dark"]::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 1;
}

.brand-mark {
  position: absolute;
  left: 30px;
  top: 22px;
  width: 114.286px;
  height: 15px;
  background: url("../assets/images/figma/shared/logo.svg") center / contain no-repeat;
}

.brand-mark img,
.menu-logo img,
.icon-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 180ms ease, opacity 180ms ease;
}

.brand-mark img {
  display: none;
}

.figma-header[data-theme="dark"] .brand-mark img,
.figma-header[data-theme="dark"] .header-actions > .icon-button,
.figma-header[data-theme="dark"] .header-actions .language-switcher > .icon-button {
  filter: none;
}

.header-actions {
  position: absolute;
  right: 25px;
  top: 17.5px;
  display: flex;
  width: 90px;
  height: 35px;
  align-items: center;
  justify-content: space-between;
}

.home-nav-links {
  position: absolute;
  left: 853px;
  top: 21.5px;
  display: flex;
  width: 360px;
  height: 17px;
  align-items: flex-start;
  gap: 15px;
  pointer-events: auto;
}

.home-nav-links a {
  display: block;
  width: 60px;
  flex: 0 0 60px;
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0;
  text-align: left;
  white-space: nowrap;
  transition: opacity 160ms ease;
}

.home-nav-links a:first-child {
  text-align: center;
}

.home-nav-links a:hover,
.home-nav-links a:focus-visible {
  opacity: 0.72;
}

.home-nav-links a[aria-current="page"] {
  font-weight: 900;
}

html[lang="en"] .home-nav-links {
  left: auto;
  right: 67px;
  width: auto;
  gap: 36px;
}

html[lang="en"] .home-nav-links a {
  width: auto;
  flex: 0 0 auto;
  text-align: left;
}

html[lang="en"] .home-nav-links a:first-child {
  text-align: left;
}

.home-header-actions {
  right: var(--home-edge-inset);
  top: 19px;
  width: 22px;
  height: 22px;
}

.icon-button {
  position: relative;
  width: 35px;
  height: 35px;
  transition: filter 180ms ease, opacity 180ms ease;
}

.icon-button:hover {
  opacity: 0.78;
}

.header-actions .language-switcher > .icon-button {
  background: url("../assets/images/figma/shared/language-icon-white.svg") 0 0 / 35px 35px no-repeat;
}

.home-header-actions .language-switcher,
.home-header-actions .language-switcher > .icon-button {
  width: 22px;
  height: 22px;
}

.home-header-actions .language-switcher > .icon-button {
  background-size: 22px 22px;
}

.header-actions .language-switcher > .icon-button img {
  display: none;
}

.header-actions > .icon-button[data-menu-open] {
  background-image: url("../assets/images/figma/tech-new/tech-nav-menu-lines.svg"), url("../assets/images/figma/tech-new/tech-nav-menu-bg.svg");
  background-position: 10.11px 12px, 0 0;
  background-size: 14.771px 11px, 35px 35px;
  background-repeat: no-repeat;
}

.header-actions > .icon-button[data-menu-open] img {
  display: none;
}

.header-actions > .icon-button[data-menu-open]:hover {
  opacity: 0.78;
}

.language-switcher {
  position: relative;
  width: 35px;
  height: 35px;
}

.home-header-actions .language-popover {
  left: -92px;
  top: 35px;
}

.language-popover {
  position: absolute;
  left: -79px;
  top: 55px;
  display: grid;
  width: 114px;
  min-width: 114px;
  max-width: 114px;
  height: 90px;
  min-height: 90px;
  max-height: 90px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 48px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

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

.language-popover a {
  display: flex;
  width: 114px;
  height: 45px;
  flex: 0 0 45px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0;
  text-align: center;
  word-break: normal;
  white-space: nowrap;
}

.language-popover a + a {
  border-top: 0.5px solid rgba(255, 255, 255, 0.3);
}

.language-popover a[aria-current="page"] {
  background: transparent;
  font-weight: 400;
}

.language-popover a:hover,
.language-popover a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.contact-slogan {
  position: absolute;
  left: 25px;
  top: 335.5px;
  width: 366px;
  margin: 0;
  color: #4a4a4a;
  opacity: 0.3;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.75px;
}

.footer-column {
  position: absolute;
  color: var(--black);
}

.footer-column h2 {
  margin: 0 0 39px;
  font-size: 25px;
  font-weight: 500;
  line-height: normal;
}

.footer-column a,
.footer-column button,
.footer-column p {
  display: block;
  margin: 0 0 10px;
  color: var(--black);
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}

.footer-column a,
.footer-column button {
  color: rgba(0, 0, 0, 0.82);
  transition: color 120ms ease, font-weight 120ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-column button:hover,
.footer-column button:focus-visible {
  color: #000;
  font-weight: 900;
}

.footer-menu {
  left: 643px;
  top: var(--contact-content-top, 416px);
}

.footer-social {
  left: 763px;
  top: var(--contact-content-top, 416px);
}

.footer-contact {
  left: 923px;
  top: var(--contact-content-top, 416px);
  width: 317px;
}

.footer-contact h2 {
  margin-bottom: 38px;
}

.footer-contact p {
  margin-bottom: 10px;
}

html[lang="en"] .footer-social {
  left: 738px;
  width: 180px;
}

html[lang="en"] .footer-menu {
  left: 610px;
}

html[lang="en"] .footer-social button {
  width: 180px;
  white-space: nowrap;
}

html[lang="en"] .footer-column h2 {
  white-space: nowrap;
}

html[lang="en"] .footer-contact {
  left: 960px;
  width: 280px;
}

.screen-contact .contact-slogan {
  top: var(--contact-content-top, 416px);
  color: #4a4a4a;
  opacity: 0.3;
}

.social-preview {
  position: absolute;
  left: 572px;
  top: var(--contact-preview-top, 452px);
  display: grid;
  width: 160px;
  height: 160px;
  place-items: center;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.social-preview.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.social-preview img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.copyright {
  position: absolute;
  left: 25px;
  bottom: 30px;
  margin: 0;
  color: var(--footer-muted);
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
}

.copyright a {
  color: inherit;
}

.menu-overlay,
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.menu-overlay.is-open,
.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.menu-overlay {
  background: transparent;
}

.menu-canvas {
  position: absolute;
  left: calc(50% - (640px * var(--scale)) + (1141px * var(--scale)));
  top: 70px;
  width: 114px;
  height: 264px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  transform-origin: 0 0;
  transform: none;
}

.slice-body .menu-canvas {
  background: rgba(255, 255, 255, 0.3);
}

.product-body .menu-canvas {
  background: rgba(0, 0, 0, 0.3);
}

.menu-overlay.is-open .menu-canvas {
  transform: none;
}

.menu-logo,
.menu-close {
  display: none;
}

.menu-links {
  position: absolute;
  inset: 0;
  display: flex;
  width: 114px;
  height: 264px;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  transform: none;
}

.menu-links a {
  position: relative;
  display: flex;
  width: 114px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
  white-space: nowrap;
  transition: background 160ms ease, opacity 160ms ease, font-weight 160ms ease;
}

.menu-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5px;
  width: 114px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.menu-links a[aria-current="page"] {
  font-weight: 700;
}

.video-modal {
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.86);
}

.video-panel {
  position: relative;
  width: min(1080px, calc(100vw - 56px));
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-panel video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-close {
  position: absolute;
  right: -18px;
  top: -48px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 30px;
  line-height: 38px;
  z-index: 2;
}

.tech-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 76;
  display: grid;
  place-items: start center;
  overflow: hidden;
  background: #000;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.tech-detail-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.tech-detail-canvas {
  position: relative;
  width: 1280px;
  height: 720px;
  transform: scale(var(--scale));
  transform-origin: top center;
}

.tech-detail-canvas img {
  width: 1280px;
  height: 720px;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.tech-detail-close {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

@media (max-width: 560px) {
  .modal-close {
    right: 0;
  }
}

.slice-body {
  background: #000;
}

.tech-fixed-nav {
  position: fixed;
  left: 50%;
  top: 0;
  z-index: 60;
  width: 100vw;
  height: 60px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.tech-fixed-nav-canvas {
  position: relative;
  width: 1280px;
  height: 60px;
  transform: scale(var(--scale));
  transform-origin: 0 0;
}

.tech-fixed-logo,
.tech-fixed-nav-cluster,
.tech-fixed-nav-links,
.tech-fixed-language,
.tech-fixed-icon {
  position: absolute;
  pointer-events: auto;
}

.tech-fixed-logo {
  left: 30px;
  top: 22px;
  width: 114.286px;
  height: 15px;
  background: url("../assets/images/figma/shared/logo.svg") center / contain no-repeat;
}

.tech-fixed-nav-cluster {
  left: 853px;
  top: 19px;
  width: 397px;
  height: 22px;
}

.tech-fixed-nav-links {
  left: 0;
  top: 2.5px;
  display: flex;
  align-items: flex-start;
  width: 360px;
  height: 17px;
  gap: 15px;
}

.tech-fixed-nav-links a {
  flex: 0 0 60px;
  width: 60px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 180ms ease;
}

.tech-fixed-nav-links a:first-child {
  text-align: center;
}

.tech-fixed-nav-links a:hover {
  opacity: 0.72;
}

.tech-fixed-nav-links a[aria-current="page"] {
  font-weight: 900;
}

html[lang="en"] .tech-fixed-nav-links {
  left: auto;
  right: 37px;
  width: auto;
  gap: 36px;
}

html[lang="en"] .tech-fixed-nav-links a {
  width: auto;
  flex: 0 0 auto;
  text-align: left;
}

html[lang="en"] .tech-fixed-nav-links a:first-child {
  text-align: left;
}

.tech-fixed-language {
  left: 375px;
  top: 0;
  width: 22px;
  height: 22px;
}

.tech-fixed-icon {
  display: block;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: transparent;
  appearance: none;
  cursor: pointer;
  transition: opacity 180ms ease;
}

.tech-fixed-icon:hover {
  opacity: 0.78;
}

.tech-fixed-language-button {
  position: absolute;
  inset: 0;
  background: url("../assets/images/figma/shared/language-icon-white.svg") 0 0 / 22px 22px no-repeat;
}

.tech-fixed-menu-button {
  left: 1220px;
  top: 17.5px;
  background-image: url("../assets/images/figma/tech-new/tech-nav-menu-lines.svg"), url("../assets/images/figma/tech-new/tech-nav-menu-bg.svg");
  background-position: 10.11px 12px, 0 0;
  background-size: 14.771px 11px, 35px 35px;
  background-repeat: no-repeat;
}

.tech-fixed-language .language-popover {
  left: -92px;
  top: 35px;
}

.company-fixed-nav {
  position: fixed !important;
  left: 50%;
  top: 0 !important;
  z-index: 60;
  width: 100vw;
  height: 60px;
  transform: translateX(-50%);
  transform-origin: top center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.company-fixed-nav-canvas {
  position: relative;
  width: 1280px;
  height: 60px;
  transform: scale(var(--scale));
  transform-origin: 0 0;
}

.company-fixed-logo,
.company-fixed-nav-cluster,
.company-fixed-nav-links,
.company-fixed-language,
.company-fixed-icon {
  position: absolute;
  pointer-events: auto;
}

.company-fixed-logo {
  left: 30px;
  top: 22px;
  width: 114.286px;
  height: 15px;
  background: url("../assets/images/figma/shared/logo.svg") center / contain no-repeat;
}

.company-fixed-nav-cluster {
  left: 853px;
  top: 19px;
  width: 397px;
  height: 22px;
}

.company-fixed-nav-links {
  left: 0;
  top: 2.5px;
  display: flex;
  align-items: flex-start;
  width: 360px;
  height: 17px;
  gap: 15px;
}

.company-fixed-nav-links a {
  flex: 0 0 60px;
  width: 60px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 180ms ease;
}

.company-fixed-nav-links a:first-child {
  text-align: center;
}

.company-fixed-nav-links a:hover {
  opacity: 0.72;
}

.company-fixed-nav-links a[aria-current="page"] {
  font-weight: 900;
}

html[lang="en"] .company-fixed-nav-links {
  left: auto;
  right: 37px;
  width: auto;
  gap: 36px;
}

html[lang="en"] .company-fixed-nav-links a {
  width: auto;
  flex: 0 0 auto;
  text-align: left;
}

html[lang="en"] .company-fixed-nav-links a:first-child {
  text-align: left;
}

.company-fixed-language {
  left: 375px;
  top: 0;
  width: 22px;
  height: 22px;
}

.company-fixed-icon {
  display: block;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: transparent;
  appearance: none;
  cursor: pointer;
  transition: opacity 180ms ease;
}

.company-fixed-icon:hover {
  opacity: 0.78;
}

.company-fixed-language-button {
  position: absolute;
  inset: 0;
  background: url("../assets/images/figma/shared/language-icon-white.svg") 0 0 / 22px 22px no-repeat;
}

.company-fixed-menu-button {
  left: 1220px;
  top: 17.5px;
  background-image: url("../assets/images/figma/tech-new/tech-nav-menu-lines.svg"), url("../assets/images/figma/tech-new/tech-nav-menu-bg.svg");
  background-position: 10.11px 12px, 0 0;
  background-size: 14.771px 11px, 35px 35px;
  background-repeat: no-repeat;
}

.company-fixed-language .language-popover {
  left: -92px;
  top: 35px;
}

.slice-shell {
  position: relative;
  width: var(--canvas-width);
  height: calc(var(--slice-total-height, calc(720px * var(--slice-count))) * var(--scale));
  overflow: hidden;
  margin: 0 auto;
  background: #000;
}

.slice-canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 1280px;
  height: var(--slice-total-height, calc(720px * var(--slice-count)));
  transform: scale(var(--scale));
  transform-origin: 0 0;
  overflow: hidden;
  background: #000;
}

.careers-shell,
.careers-canvas {
  background: transparent;
}

.slice {
  position: relative;
  width: 1280px;
  height: var(--slice-height, 720px);
  overflow: hidden;
  background: #000;
}

.slice > img,
.scenario-slice > img {
  position: absolute;
  inset: 0;
  width: 1280px;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.slice-hotspot,
.slice-logo-hotspot,
.slice-menu-hotspot,
.slice-language,
.slice-language-hotspot {
  position: absolute;
  z-index: 6;
}

.slice-logo-hotspot {
  left: 25px;
  top: 24.5px;
  width: 160px;
  height: 21px;
}

.slice-menu-hotspot {
  left: 1220px;
  top: 17.5px;
  width: 35px;
  height: 35px;
}

.slice-language {
  left: 1165px;
  top: 17.5px;
  width: 35px;
  height: 35px;
}

.slice-language-hotspot {
  inset: 0;
  width: 35px;
  height: 35px;
}

.slice-language .language-popover {
  top: 55px;
}

.slice-hotspot {
  display: block;
  background: rgba(255, 255, 255, 0);
}

.tech-glow-slice {
  background: #000;
  color: #fff;
}

.tech-glow-route-frame {
  position: absolute;
  left: 93px;
  top: 108px;
  z-index: 1;
  width: 1094px;
  height: 444px;
  overflow: hidden;
  border: 0;
  background: #000;
}

.tech-glow-route-mobile {
  display: none;
}

.tech-glow-intro {
  position: absolute;
  left: 246px;
  top: 584px;
  z-index: 2;
  width: 787.018px;
  height: 40px;
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.07px;
  text-align: center;
  word-break: break-word;
}

.tech-glow-architecture {
  position: absolute;
  left: 90px;
  top: 165.1px;
  width: 1100px;
  height: 283.8px;
  overflow: hidden;
}

.tech-glow-architecture img {
  position: absolute;
  display: block;
  max-width: none;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.tech-glow-architecture-base {
  inset: 0;
  width: 1100px;
  height: 283.8px;
}

.tech-glow-architecture-overlay {
  left: 251.34px;
  top: 158.58px;
  width: 705.9px;
  height: 37.26px;
}

.tech-glow-copy {
  position: absolute;
  left: 50%;
  top: 533.61px;
  z-index: 2;
  display: flex;
  width: 894px;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: #fff;
  text-align: center;
  word-break: break-word;
}

.tech-glow-copy h1,
.tech-glow-copy p {
  margin: 0;
}

.tech-glow-copy h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  white-space: nowrap;
}

.tech-glow-copy p {
  width: 787.018px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}

.tech-glow-slice .slice-logo-hotspot {
  background: url("../assets/images/figma/shared/logo.svg") center / contain no-repeat;
}

.tech-glow-slice .slice-menu-hotspot {
  background: url("../assets/images/figma/shared/menu-trigger.svg") center / contain no-repeat;
}

.tech-glow-slice .slice-language-hotspot {
  background: url("../assets/images/figma/shared/language-icon-white.svg") center / contain no-repeat;
}

.tech-carousel-slice {
  --tech-offset: 0px;
  --tech-progress-index: 0;
  --tech-card-left: 295px;
  --tech-card-width: 690px;
  --tech-card-height: 388px;
  --tech-card-gap: 20px;
  --tech-side-video-opacity: 1;
  --tech-side-video-filter: grayscale(1);
  --tech-active-video-opacity: 1;
  --tech-active-video-filter: none;
  outline: none;
}

.tech-slider-viewport {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.tech-carousel-slice.is-dragging .tech-slider-viewport {
  cursor: grabbing;
}

.tech-slider-track {
  position: relative;
  display: flex;
  left: var(--tech-card-left);
  gap: var(--tech-card-gap);
  width: max-content;
  height: 720px;
  transform: translate3d(var(--tech-offset), 0, 0);
  transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.tech-carousel-slice.is-dragging .tech-slider-track {
  transition: none;
}

.tech-slide {
  position: relative;
  width: var(--tech-card-width);
  height: 720px;
  flex: 0 0 var(--tech-card-width);
  overflow: visible;
  background: transparent;
  color: #fff;
}

.tech-slide > img:not(.tech-module-visual) {
  width: 1280px;
  height: 720px;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.tech-module-slide {
  background: transparent;
}

.tech-module-slide::before {
  content: none;
}

.tech-module-visual {
  position: absolute;
  left: 0;
  top: 100px;
  z-index: 0;
  width: var(--tech-card-width);
  height: var(--tech-card-height);
  overflow: hidden;
  border-radius: 8px;
  object-fit: cover;
  object-position: center center;
  opacity: var(--tech-side-video-opacity);
  filter: var(--tech-side-video-filter);
  transform: none;
  transform-origin: center center;
  transition:
    opacity 320ms ease,
    filter 320ms ease;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.tech-slide.is-active .tech-module-visual {
  opacity: var(--tech-active-video-opacity);
  filter: var(--tech-active-video-filter);
  transform: none;
}

.tech-module-copy {
  position: absolute;
  left: 50%;
  top: 513.61px;
  z-index: 2;
  display: flex;
  width: 1120px;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: #fff;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  word-break: break-word;
  transition: opacity 260ms ease;
}

.tech-slide.is-active .tech-module-copy {
  opacity: 1;
}

.tech-module-copy h2,
.tech-module-copy p {
  margin: 0;
}

.tech-module-copy h2 {
  width: 1120px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.75px;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .tech-module-title-break {
    display: none;
  }
}

.tech-module-copy p {
  width: 787.018px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}

.tech-scroll-line {
  position: absolute;
  left: 565px;
  top: 688.4108px;
  z-index: 8;
  width: 150px;
  height: 1px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.42) 50%, rgba(255, 255, 255, 0.12));
}

.tech-scroll-line-thumb {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 1px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.36);
  transform: translate3d(calc(var(--tech-progress-index, 0) * 30px), 0, 0);
  transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.tech-carousel-slice.is-dragging .tech-scroll-line-thumb {
  transition: none;
}

.tech-prev {
  z-index: 9;
  left: 0;
  top: 100px;
  width: 290px;
  height: 388px;
}

.tech-next {
  z-index: 9;
  left: 990px;
  top: 100px;
  width: 290px;
  height: 388px;
}

.tech-prev:disabled,
.tech-next:disabled {
  pointer-events: none;
}

.scenario-slice .scenario-hover {
  opacity: 0;
  transition: opacity 220ms ease;
}

.scenario-slice:has(.scenario-detail-zone:hover) .scenario-hover,
.scenario-slice.is-previewing .scenario-hover {
  opacity: 1;
}

.scenario-slice {
  background: #000;
  background-color: #000;
  color: #fff;
}

.scenario-slice .slice-logo-hotspot {
  background: url("../assets/images/figma/shared/logo.svg") center / contain no-repeat;
}

.scenario-slice .slice-menu-hotspot {
  background: url("../assets/images/figma/shared/menu-trigger.svg") center / contain no-repeat;
}

.scenario-slice .slice-language-hotspot {
  background: url("../assets/images/figma/shared/language-icon-white.svg") center / contain no-repeat;
}

.scenario-card-grid {
  position: absolute;
  left: 85px;
  top: 88px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 1160px;
  height: 440px;
  overflow: visible;
}

.scenario-card {
  position: relative;
  width: 150px;
  height: 440px;
  flex: 0 0 150px;
  outline: 0;
  transition:
    width 260ms cubic-bezier(0.22, 1, 0.36, 1),
    flex-basis 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.scenario-card:hover,
.scenario-card:focus-within,
.scenario-card.is-active {
  z-index: 2;
  width: 200px;
  flex-basis: 200px;
}

.scenario-card:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.68);
  outline-offset: 6px;
  border-radius: 12px;
}

.scenario-card-media {
  position: absolute;
  left: 0;
  top: 55px;
  width: 150px;
  height: 330px;
  overflow: hidden;
  border-radius: 10px;
  transition:
    top 260ms cubic-bezier(0.22, 1, 0.36, 1),
    width 260ms cubic-bezier(0.22, 1, 0.36, 1),
    height 260ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 260ms ease;
}

.scenario-card-media::before,
.scenario-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: opacity 220ms ease;
}

.scenario-card-media::before {
  background-image: var(--scenario-default-image);
  opacity: 1;
}

.scenario-card-media::after {
  background-image: var(--scenario-active-image);
  opacity: 0;
}

.scenario-card:hover .scenario-card-media,
.scenario-card:focus-within .scenario-card-media,
.scenario-card.is-active .scenario-card-media {
  top: 0;
  width: 200px;
  height: 440px;
  filter: brightness(1.05) contrast(1.04);
}

.scenario-card:hover .scenario-card-media::before,
.scenario-card:focus-within .scenario-card-media::before,
.scenario-card.is-active .scenario-card-media::before {
  opacity: 0;
}

.scenario-card:hover .scenario-card-media::after,
.scenario-card:focus-within .scenario-card-media::after,
.scenario-card.is-active .scenario-card-media::after {
  opacity: 1;
}

.scenario-card-storage {
  --scenario-default-image: url("../assets/images/figma/tech-scenarios/scenario-01-default.png");
  --scenario-active-image: url("../assets/images/figma/tech-scenarios/scenario-01-active.png");
}

.scenario-card-folding {
  --scenario-default-image: url("../assets/images/figma/tech-scenarios/scenario-02-default.png");
  --scenario-active-image: url("../assets/images/figma/tech-scenarios/scenario-02-active.png");
}

.scenario-card-obstacle {
  --scenario-default-image: url("../assets/images/figma/tech-scenarios/scenario-03-default.png");
  --scenario-active-image: url("../assets/images/figma/tech-scenarios/scenario-03-active.png");
}

.scenario-card-grasp {
  --scenario-default-image: url("../assets/images/figma/tech-scenarios/scenario-04-default.png");
  --scenario-active-image: url("../assets/images/figma/tech-scenarios/scenario-04-active.png");
}

.scenario-card-block {
  --scenario-default-image: url("../assets/images/figma/tech-scenarios/scenario-05-default.png");
  --scenario-active-image: url("../assets/images/figma/tech-scenarios/scenario-05-active.png");
}

.scenario-card-folding-two {
  --scenario-default-image: url("../assets/images/figma/tech-scenarios/scenario-06-default.png");
  --scenario-active-image: url("../assets/images/figma/tech-scenarios/scenario-06-active.png");
}

.scenario-card-laundry {
  --scenario-default-image: url("../assets/images/figma/tech-scenarios/scenario-07-default.png");
  --scenario-active-image: url("../assets/images/figma/tech-scenarios/scenario-07-active.png");
}

.scenario-card h2 {
  position: absolute;
  left: 50%;
  top: 395px;
  z-index: 2;
  margin: 0;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  transition:
    top 260ms cubic-bezier(0.22, 1, 0.36, 1),
    font-weight 180ms ease;
}

.scenario-card:hover h2,
.scenario-card:focus-within h2,
.scenario-card.is-active h2 {
  top: 455px;
  font-weight: 500;
}

.scenario-video-pill {
  position: absolute;
  left: 50%;
  top: 385px;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: auto;
  min-width: 96px;
  height: 25px;
  padding: 4px 16px;
  border: 1px solid #fff;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.06px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    top 260ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease;
}

.scenario-video-pill img {
  display: block;
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
}

.scenario-card:hover .scenario-video-pill,
.scenario-card:focus-within .scenario-video-pill,
.scenario-card.is-active .scenario-video-pill {
  opacity: 1;
  pointer-events: auto;
}

.scenario-title {
  position: absolute;
  left: 50%;
  top: 581px;
  width: 1120px;
  margin: 0;
  transform: translateX(-50%);
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.75px;
  text-align: center;
}

.footer-product,
.footer-tech,
.footer-company,
.footer-careers {
  left: 643px;
  width: 68px;
  height: 24px;
}

.footer-product {
  top: 468px;
}

.footer-tech {
  top: 508px;
}

.footer-company {
  top: 548px;
}

.footer-careers {
  top: 588px;
}

.company-prev,
.company-next {
  top: calc(var(--company-bottom-planet-top-design) + var(--company-controls-planet-top-offset-design));
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.company-carousel-slice {
  --company-motion-duration: 300ms;
  --company-motion-ease: ease-out;
  --company-enter-x: 0px;
  --company-leave-x: 0px;
  height: var(--company-first-screen-height-design, 720px);
  outline: none;
}

.company-carousel-slice[data-company-direction="next"] {
  --company-enter-x: 28px;
  --company-leave-x: -28px;
}

.company-carousel-slice[data-company-direction="prev"] {
  --company-enter-x: -28px;
  --company-leave-x: 28px;
}

.company-slider-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.company-carousel-slice.is-dragging .company-slider-viewport {
  cursor: grabbing;
}

.company-slider-track {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 1280px;
  height: var(--company-first-screen-height-design, 720px);
  pointer-events: none;
}

.company-slide {
  position: absolute;
  inset: 0;
  width: 1280px;
  height: var(--company-first-screen-height-design, 720px);
  overflow: hidden;
  background: transparent;
  opacity: 0;
  transform: translate3d(var(--company-enter-x), 0, 0) scale(0.988);
  pointer-events: none;
  transition:
    opacity var(--company-motion-duration) var(--company-motion-ease),
    transform var(--company-motion-duration) var(--company-motion-ease);
  will-change: opacity, transform;
}

.company-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

.company-slide.is-entering {
  z-index: 3;
}

.company-slide.is-leaving {
  z-index: 2;
  opacity: 0;
  transform: translate3d(var(--company-leave-x), 0, 0) scale(0.988);
}

.company-slide.is-active a,
.company-slide.is-active .brand-gene-card {
  pointer-events: auto;
}

.company-slide > img {
  width: 1280px;
  height: 720px;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.company-bg-layer,
.company-orbit-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.company-bg-layer {
  z-index: 0;
  background: #000;
}

.company-orbit-layer {
  z-index: 2;
}

.company-carousel-slice.is-transitioning .company-orbit-layer {
  z-index: 5;
}

.company-carousel-slice.is-transitioning .company-slide {
  transition-duration: 300ms;
}

.company-bg-layer .company-native-bg {
  position: absolute;
  width: 1280px;
  height: var(--company-first-screen-height-design, 720px);
  object-fit: cover;
  opacity: 0;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  transition:
    opacity var(--company-motion-duration) var(--company-motion-ease),
    filter var(--company-motion-duration) var(--company-motion-ease);
}

.company-bg-layer .company-bg-rotated {
  left: calc((1280px - var(--company-first-screen-height-design, 720px)) / 2);
  top: calc((var(--company-first-screen-height-design, 720px) - 1280px) / 2);
  width: var(--company-first-screen-height-design, 720px);
  height: 1280px;
  transform: rotate(90deg);
  transform-origin: center;
}

.company-bg-layer .company-bg-brand {
  inset: 0;
}

.company-carousel-slice:not([data-active-slide]) .company-bg-about,
.company-carousel-slice[data-active-slide="about-knowin"] .company-bg-about,
.company-carousel-slice[data-active-slide="team"] .company-bg-team,
.company-carousel-slice[data-active-slide="tech-endorsement"] .company-bg-tech,
.company-carousel-slice[data-active-slide="brand-genes"] .company-bg-brand {
  opacity: 1;
  filter: none;
}

.orbit-planet {
  position: absolute;
  z-index: 1;
  width: 250px;
  height: 250px;
  object-fit: contain;
  opacity: 0;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  transform-origin: center;
  transition:
    left var(--company-motion-duration) var(--company-motion-ease),
    top var(--company-motion-duration) var(--company-motion-ease),
    width var(--company-motion-duration) var(--company-motion-ease),
    height var(--company-motion-duration) var(--company-motion-ease),
    opacity var(--company-motion-duration) var(--company-motion-ease),
    transform var(--company-motion-duration) var(--company-motion-ease),
    filter var(--company-motion-duration) var(--company-motion-ease);
  will-change: left, top, width, height, opacity, transform;
}

.orbit-jupiter-crop {
  object-fit: cover;
}

.orbit-jupiter {
  border-radius: 50%;
  object-fit: cover;
  object-position: center bottom;
}

.company-carousel-slice:not([data-active-slide]) .orbit-earth,
.company-carousel-slice[data-active-slide="about-knowin"] .orbit-earth {
  left: 270px;
  top: var(--company-bottom-planet-top-design);
  width: 740px;
  height: 740px;
  opacity: 1;
  transform: rotate(0deg) scaleX(1) scaleY(1);
  filter: none;
}

.company-carousel-slice:not([data-active-slide]) .orbit-mars,
.company-carousel-slice[data-active-slide="about-knowin"] .orbit-mars {
  left: 1190.5px;
  top: 158.572px;
  width: 300px;
  height: 300px;
  opacity: 0.42;
  transform: rotate(0deg) scaleX(1) scaleY(-1);
  filter: brightness(0.95) saturate(1.05);
}

.company-carousel-slice:not([data-active-slide]) .orbit-moon,
.company-carousel-slice[data-active-slide="about-knowin"] .orbit-moon {
  left: 514px;
  top: -253px;
  width: 252px;
  height: 252px;
  opacity: 0.3;
  transform: rotate(0deg) scaleX(-1) scaleY(1);
  filter: brightness(0.72);
}

.company-carousel-slice:not([data-active-slide]) .orbit-jupiter,
.company-carousel-slice[data-active-slide="about-knowin"] .orbit-jupiter {
  left: -149.875px;
  top: 187.459px;
  width: 250px;
  height: 250px;
  opacity: 0.3;
  transform: rotate(0deg) scaleX(1) scaleY(1);
  filter: saturate(0.85) brightness(0.62);
}

.company-carousel-slice:not([data-active-slide]) .orbit-jupiter-crop,
.company-carousel-slice[data-active-slide="about-knowin"] .orbit-jupiter-crop {
  left: 290px;
  top: 745px;
  width: 700px;
  height: 170px;
  opacity: 0;
}

.company-carousel-slice[data-active-slide="team"] .orbit-earth {
  left: -150px;
  top: 158px;
  width: 200px;
  height: 200px;
  opacity: 0.2;
  transform: rotate(0deg) scaleX(1) scaleY(1);
  filter: brightness(0.7);
}

.company-carousel-slice[data-active-slide="team"] .orbit-mars {
  left: 253px;
  top: var(--company-bottom-mars-top-design);
  width: 800px;
  height: 800px;
  opacity: 1;
  transform: rotate(-90deg) scaleX(1) scaleY(-1);
  filter: none;
}

.company-carousel-slice[data-active-slide="team"] .orbit-moon {
  left: 1181.324px;
  top: 160.39px;
  width: 250px;
  height: 250px;
  opacity: 0.2;
  transform: rotate(180deg) scaleX(-1) scaleY(1);
  filter: none;
}

.company-carousel-slice[data-active-slide="team"] .orbit-jupiter {
  left: 515px;
  top: -255px;
  width: 250px;
  height: 250px;
  opacity: 0.3;
  transform: rotate(0deg) scaleX(1) scaleY(1);
  filter: saturate(0.85) brightness(0.62);
}

.company-carousel-slice[data-active-slide="team"] .orbit-jupiter-crop {
  left: 290px;
  top: 745px;
  width: 700px;
  height: 170px;
  opacity: 0;
}

.company-carousel-slice[data-active-slide="tech-endorsement"] .orbit-earth {
  left: 515px;
  top: -252px;
  width: 250px;
  height: 250px;
  opacity: 0.2;
  transform: rotate(90deg) scaleX(1) scaleY(1);
  filter: brightness(0.62);
}

.company-carousel-slice[data-active-slide="tech-endorsement"] .orbit-mars {
  left: -156.735px;
  top: 158.576px;
  width: 250px;
  height: 250px;
  opacity: 0.3;
  transform: rotate(-43.94deg) scaleX(1) scaleY(-1);
  filter: brightness(0.65);
}

.company-carousel-slice[data-active-slide="tech-endorsement"] .orbit-moon {
  left: 240px;
  top: var(--company-bottom-planet-top-design);
  width: 800px;
  height: 800px;
  opacity: 1;
  transform: rotate(0deg) scaleX(-1) scaleY(1);
  filter: none;
}

.company-carousel-slice[data-active-slide="tech-endorsement"] .orbit-jupiter {
  left: 1183px;
  top: 158.572px;
  width: 250px;
  height: 250px;
  opacity: 0.3;
  transform: rotate(0deg) scaleX(1) scaleY(1);
  filter: saturate(0.65) brightness(0.52);
}

.company-carousel-slice[data-active-slide="tech-endorsement"] .orbit-jupiter-crop {
  left: 290px;
  top: 745px;
  width: 700px;
  height: 170px;
  opacity: 0;
}

.company-carousel-slice[data-active-slide="brand-genes"] .orbit-earth {
  left: 1181.24px;
  top: 158.57px;
  width: 250px;
  height: 250px;
  opacity: 0.3;
  transform: rotate(180deg) scaleX(1) scaleY(1);
  filter: brightness(0.58);
}

.company-carousel-slice[data-active-slide="brand-genes"] .orbit-mars {
  left: 515px;
  top: -271px;
  width: 250px;
  height: 250px;
  opacity: 0.3;
  transform: rotate(0deg) scaleX(1) scaleY(-1);
  filter: brightness(0.62);
}

.company-carousel-slice[data-active-slide="brand-genes"] .orbit-moon {
  left: -110px;
  top: 158.57px;
  width: 200px;
  height: 200px;
  opacity: 0.3;
  transform: rotate(90deg) scaleX(-1) scaleY(1);
  filter: brightness(0.72);
}

.company-carousel-slice[data-active-slide="brand-genes"] .orbit-jupiter {
  left: 295px;
  top: var(--company-bottom-jupiter-top-design);
  width: 700px;
  height: 700px;
  opacity: 1;
  transform: rotate(-18deg) scaleX(1) scaleY(1);
  filter: none;
}

.company-carousel-slice[data-active-slide="brand-genes"] .orbit-jupiter-crop {
  left: 290px;
  top: 550px;
  width: 700px;
  height: 170px;
  opacity: 0;
  transform: rotate(0deg) scaleX(1) scaleY(1);
  filter: none;
}

.company-native-slide {
  color: #fff;
}

.company-slide .company-native-bg {
  position: absolute;
  z-index: 0;
  width: 1280px;
  height: var(--company-first-screen-height-design, 720px);
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.company-slide .company-bg-rotated {
  left: calc((1280px - var(--company-first-screen-height-design, 720px)) / 2);
  top: calc((var(--company-first-screen-height-design, 720px) - 1280px) / 2);
  width: var(--company-first-screen-height-design, 720px);
  height: 1280px;
  transform: rotate(90deg);
  transform-origin: center;
}

.company-slide .company-planet {
  position: absolute;
  z-index: 1;
  width: auto;
  height: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.planet-about-earth {
  left: 270px;
  top: 510px;
  width: 740px;
  height: 740px;
}

.planet-about-mars {
  left: 1190px;
  top: 159px;
  width: 300px;
  height: 300px;
  opacity: 0.2;
}

.planet-about-moon {
  left: 514px;
  top: -253px;
  width: 252px;
  height: 252px;
  opacity: 0.3;
  transform: scaleX(-1);
}

.planet-about-side {
  left: -150px;
  top: 187px;
  width: 250px;
  height: 250px;
  opacity: 0.28;
  filter: saturate(0.85) brightness(0.8);
}

.planet-team-earth {
  left: -150px;
  top: 159px;
  width: 200px;
  height: 200px;
  opacity: 0.2;
}

.planet-team-mars {
  left: 253px;
  top: 516px;
  width: 800px;
  height: 800px;
  transform: rotate(-90deg) scaleY(-1);
}

.planet-team-moon {
  left: 1306px;
  top: 160px;
  width: 250px;
  height: 250px;
  opacity: 0.24;
  transform: rotate(180deg) scaleX(-1);
}

.planet-team-jupiter {
  left: 515px;
  top: -255px;
  width: 250px;
  height: 250px;
  opacity: 0.14;
}

.planet-tech-earth {
  left: 515px;
  top: -252px;
  width: 250px;
  height: 250px;
  opacity: 0.2;
  transform: rotate(90deg);
}

.planet-tech-mars {
  left: -208px;
  top: 107px;
  width: 250px;
  height: 250px;
  opacity: 0.3;
  transform: rotate(-44deg) scaleY(-1);
}

.planet-tech-moon {
  left: 240px;
  top: 510px;
  width: 800px;
  height: 800px;
  transform: scaleX(-1);
}

.planet-tech-jupiter {
  left: 1183px;
  top: 284px;
  width: 250px;
  height: 250px;
  opacity: 0.18;
  filter: grayscale(1) brightness(0.55);
}

.planet-brand-earth {
  left: 1431px;
  top: 409px;
  width: 250px;
  height: 250px;
  opacity: 0.3;
  transform: rotate(180deg);
}

.planet-brand-mars {
  left: 515px;
  top: -271px;
  width: 250px;
  height: 250px;
  opacity: 0.3;
  transform: scaleY(-1);
}

.planet-brand-moon {
  left: -10px;
  top: 159px;
  width: 200px;
  height: 200px;
  opacity: 0.3;
  transform: rotate(90deg) scaleX(-1);
}

.planet-brand-jupiter {
  left: 290px;
  top: 550px;
  width: 700px;
  height: 170px;
}

.company-copy {
  position: absolute;
  z-index: 3;
  width: 788px;
  color: #fff;
  text-align: center;
  word-break: break-word;
}

.company-copy-centered {
  left: 246px;
  top: 250px;
}

.company-about-slide .company-copy-centered {
  left: 246.241px;
  top: var(--company-about-copy-top-design, 239.922px);
  width: 787.518px;
}

.company-copy h1,
.company-tech-copy h1 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.75px;
}

.brand-genes-panel h1 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.75px;
}

.company-copy p {
  margin: 16px 0 0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.07px;
  text-align: left;
}

.company-copy h1 + p {
  margin-top: 16px;
}

.company-copy p + p {
  margin-top: 20px;
}

.company-copy-team p {
  margin-top: 14px;
}

.company-tech-copy {
  position: absolute;
  z-index: 3;
  left: 246px;
  top: 170px;
  width: 787px;
  color: #fff;
}

.company-tech-copy h1 {
  text-align: center;
}

.company-proof {
  position: relative;
  width: 787px;
}

.company-proof-one {
  margin-top: 16px;
}

.company-proof-two {
  margin-top: 36px;
}

.company-proof h2 {
  margin: 0;
  width: 787px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.1px;
}

.company-tech-title-mobile-break,
.company-tech-body-mobile-break,
.company-tech-body-figma-break {
  display: none;
}

.company-proof p {
  margin: 9px 0 0;
  width: 787px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}

.company-more {
  position: absolute;
  right: 0;
  top: 2px;
  display: inline-flex;
  box-sizing: border-box;
  width: 94px;
  height: 25px;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  padding: 4px 16px;
  border: 1px solid #fff;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.06px;
  text-decoration: none;
  white-space: nowrap;
  word-break: keep-all;
  transition: background-color 180ms ease-out, color 180ms ease-out, border-color 180ms ease-out;
}

.company-proof-two .company-more {
  top: 29px;
}

.company-more-label {
  display: block;
  flex: 0 0 auto;
  margin-right: -3px;
  color: currentColor;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.06px;
  white-space: nowrap;
  word-break: keep-all;
}

.company-more-icon {
  position: relative;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: currentColor;
  mask: url("../assets/images/figma/shared/more-arrow.svg") center / contain no-repeat;
  -webkit-mask: url("../assets/images/figma/shared/more-arrow.svg") center / contain no-repeat;
}

.company-more-icon::before {
  content: none;
}

.company-more:hover,
.company-more:focus-visible {
  border-color: #fff;
  background-color: #fff;
  color: #000;
}

.company-more:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.company-more:active {
  background-color: rgba(255, 255, 255, 0.82);
}

html[lang="en"] .company-proof {
  display: grid;
  grid-template-columns: minmax(0, 610px) 132px;
  column-gap: 45px;
  align-items: center;
  min-height: 88px;
}

html[lang="en"] .company-proof h2,
html[lang="en"] .company-proof p {
  width: auto;
  max-width: 610px;
  grid-column: 1;
}

html[lang="en"] .company-more {
  position: static;
  right: auto;
  top: auto;
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  align-self: center;
  width: 132px;
  height: 29px;
  justify-content: center;
  gap: 5px;
  padding: 4px 15px;
}

html[lang="en"] .company-proof-two .company-more {
  top: auto;
}

html[lang="en"] .company-more-label {
  margin-right: 0;
  line-height: 1;
}

html[lang="en"] .company-more-icon {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
}

.brand-genes-panel {
  position: absolute;
  z-index: 3;
  left: 99px;
  top: 132px;
  width: 1083px;
  color: #fff;
  text-align: center;
}

.brand-gene-grid {
  position: relative;
  margin-top: 49px;
  width: 1082.5px;
  height: 263px;
}

.brand-gene-card {
  position: absolute;
  width: 257.5px;
  height: 76px;
  padding: 8px 45px 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  color: #fff;
  text-align: left;
  overflow: hidden;
  transition: background 300ms ease-out, border-color 300ms ease-out, color 300ms ease-out, box-shadow 300ms ease-out;
}

.brand-gene-card h2 {
  margin: 0;
  color: currentColor;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-gene-card p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 9.5px;
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: 0;
}

.brand-gene-ring {
  position: absolute;
  right: 11px;
  top: 17px;
  width: 21px;
  height: 21px;
  border: 2px solid #fff;
  border-radius: 50%;
  pointer-events: none;
  transition: border-width 300ms ease-out, border-color 300ms ease-out, background 300ms ease-out;
}

.brand-gene-card:hover {
  color: #000;
  border-color: #fff;
  background: #fff;
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.2);
}

.brand-gene-card:hover p {
  color: rgba(0, 0, 0, 0.58);
}

.brand-gene-card:hover .brand-gene-ring {
  border-width: 7px;
  border-color: #000;
  background: #fff;
}

html[lang="en"] .brand-gene-card {
  height: 76px;
  padding: 8px 38px 6px 10px;
}

html[lang="en"] .brand-gene-card h2 {
  font-size: 18px;
  line-height: 1.08;
}

html[lang="en"] .brand-gene-card p {
  margin-top: 6px;
  font-size: 9.5px;
  line-height: 1.22;
}

html[lang="en"] .brand-gene-ring {
  right: 12px;
  top: 16px;
  width: 18px;
  height: 18px;
}

.gene-wisdom {
  left: 0;
  top: 46px;
  width: 257.5px;
  height: 76px;
}

.gene-growth {
  left: 0;
  top: 139px;
  width: 257.5px;
  height: 76px;
}

.gene-change,
.gene-family,
.gene-freedom,
.gene-warm-tech,
.gene-grounded,
.gene-restraint,
.gene-robot,
.gene-inclusive {
  width: 257.5px;
  height: 76px;
}

.gene-change {
  left: 275px;
  top: 0;
}

.gene-family {
  left: 275px;
  top: 93.5px;
}

.gene-freedom {
  left: 275px;
  top: 187px;
}

.gene-warm-tech {
  left: 550px;
  top: 0;
}

.gene-grounded {
  left: 550px;
  top: 93.5px;
}

.gene-restraint {
  left: 550px;
  top: 187px;
}

.gene-robot {
  left: 825px;
  top: 46px;
}

.gene-inclusive {
  left: 825px;
  top: 139px;
}

.brand-gene-slogan {
  position: absolute;
  z-index: 3;
  left: 366.5px;
  top: var(--brand-gene-slogan-top, 474px);
  width: 547px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-align: center;
  white-space: nowrap;
}

html[lang="en"] .brand-gene-slogan {
  left: 270px;
  width: 740px;
  font-size: 18px;
  white-space: normal;
}

.company-prev {
  left: 555px;
  background-image: url("../assets/images/figma/company-native/company-nav-prev.svg");
}

.company-next {
  left: 690px;
  background-image: url("../assets/images/figma/company-native/company-nav-next.svg");
}

.company-prev,
.company-next {
  z-index: 8;
  border: 0;
  background-color: transparent;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.company-prev::before,
.company-next::before {
  content: none;
}

.company-prev:hover,
.company-next:hover {
  opacity: 0.78;
}

.company-prev:active,
.company-next:active {
  transform: scale(0.92);
}

/* Product detail page: Figma layers rebuilt from background assets and live text. */
.product-body {
  background: #fff;
}

.product-fixed-nav {
  position: fixed;
  left: 50%;
  top: 0;
  z-index: 60;
  width: var(--canvas-width);
  height: calc(70px * var(--scale));
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.product-fixed-nav-canvas {
  position: relative;
  width: 1280px;
  height: 70px;
  transform: scale(var(--scale));
  transform-origin: 0 0;
}

.product-fixed-logo,
.product-fixed-language,
.product-fixed-menu-button {
  position: absolute;
  pointer-events: auto;
}

.product-fixed-logo {
  left: 25px;
  top: 24.5px;
  width: 160px;
  height: 21px;
  background: url("../assets/images/figma/shared/logo.svg") center / contain no-repeat;
}

.product-fixed-language {
  left: 1165px;
  top: 17.5px;
  width: 35px;
  height: 35px;
}

.product-fixed-icon {
  display: block;
  width: 35px;
  height: 35px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: transparent;
  appearance: none;
  cursor: pointer;
  transition: opacity 180ms ease;
}

.product-fixed-icon:hover {
  opacity: 0.78;
}

.product-fixed-language-button {
  position: absolute;
  inset: 0;
  background: url("../assets/images/figma/shared/language-icon-white.svg") 0 0 / 35px 35px no-repeat;
}

.product-fixed-menu-button {
  left: 1220px;
  top: 17.5px;
  background-image: url("../assets/images/figma/tech-new/tech-nav-menu-lines.svg"), url("../assets/images/figma/tech-new/tech-nav-menu-bg.svg");
  background-position: 10.11px 12px, 0 0;
  background-size: 14.771px 11px, 35px 35px;
  background-repeat: no-repeat;
}

.product-fixed-language .language-popover {
  top: 55px;
}

.product-body .slice-logo-hotspot,
.product-body .slice-language,
.product-body .slice-menu-hotspot {
  display: none;
}

.product-hero-slice {
  background: #fff;
  color: #000;
}

.product-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 1280px;
  height: 720px;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.product-hero-slice .slice-logo-hotspot,
.product-specs-slice .slice-logo-hotspot,
.product-contact-slice .slice-logo-hotspot {
  background: url("../assets/images/figma/shared/logo.svg") center / contain no-repeat;
}

.product-hero-slice .slice-language-hotspot,
.product-specs-slice .slice-language-hotspot,
.product-contact-slice .slice-language-hotspot {
  background: url("../assets/images/figma/shared/language-icon-white.svg") 0 0 / 35px 35px no-repeat;
}

.product-hero-slice .slice-menu-hotspot,
.product-specs-slice .slice-menu-hotspot,
.product-contact-slice .slice-menu-hotspot {
  background-image: url("../assets/images/figma/tech-new/tech-nav-menu-lines.svg"), url("../assets/images/figma/tech-new/tech-nav-menu-bg.svg");
  background-position: 10.11px 12px, 0 0;
  background-size: 14.771px 11px, 35px 35px;
  background-repeat: no-repeat;
}

.product-overview-copy {
  position: absolute;
  left: 700px;
  top: 486px;
  z-index: 2;
  display: flex;
  width: 505px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  word-break: break-word;
}

.product-overview-copy h1,
.product-overview-copy p,
.product-feature-copy h2,
.product-feature-copy p {
  margin: 0;
}

.product-overview-copy h1 {
  color: #000;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.6px;
}

.product-overview-copy p {
  width: 505px;
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.07px;
}

.product-feature-copy {
  position: absolute;
  left: 763px;
  top: 529.28px;
  z-index: 2;
  display: flex;
  width: 420px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 16px;
  word-break: break-word;
}

.product-feature-copy h2 {
  width: 420.328px;
  color: #000;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.55px;
}

.product-feature-copy p {
  width: 412px;
  color: #4a4a4a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.08px;
}

.product-side-line {
  position: absolute;
  left: 1239px;
  top: 450px;
  z-index: 2;
  width: 1px;
  height: 165px;
  background: #9ca1a4;
}

.product-hero-overview .product-side-line {
  top: 446.67px;
}

.product-specs-slice {
  background: #f2f3f2;
  color: #606060;
}

.product-spec-robot {
  position: absolute;
  left: 37.33px;
  top: 53.5px;
  z-index: 1;
  width: 720.98px;
  height: 1649.98px;
  object-fit: cover;
  object-position: center center;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.product-spec {
  position: absolute;
  z-index: 2;
  display: flex;
  width: 260px;
  flex-direction: column;
  align-items: flex-end;
  color: #606060;
  text-align: right;
  word-break: break-word;
}

.product-spec span {
  margin: 0 0 9px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.4px;
}

.product-spec strong {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  white-space: nowrap;
}

.product-spec-line {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: #9ca1a4;
}

.product-spec-weight {
  left: 960px;
  top: 330.63px;
}

.product-spec-line-weight {
  left: 662.56px;
  top: 410.72px;
  width: 557.443px;
}

.product-spec-arm {
  left: 960px;
  top: 568.78px;
}

.product-spec-line-arm {
  left: 662.56px;
  top: 649.87px;
  width: 557.443px;
}

.product-spec-posture {
  left: 960px;
  top: 897.38px;
}

.product-spec-line-posture {
  left: 552.67px;
  top: 977.5px;
  width: 667.329px;
}

.product-spec-move {
  left: 960px;
  top: 1552.87px;
}

.product-spec-line-move {
  left: 662.56px;
  top: 1632.96px;
  width: 557.443px;
}

.product-contact-slice {
  background: #ecedf1;
  color: #000;
}

.product-contact-slice .contact-slogan {
  top: 416px;
  color: #4a4a4a;
  opacity: 0.3;
  letter-spacing: -0.75px;
}

body.product-x1-body {
  width: 100%;
  height: 100svh;
  height: 100vh;
  height: 100dvh;
  min-height: 100svh;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  overscroll-behavior: none;
  background: #f4f4f3;
  color: #050505;
  user-select: none;
}

body.product-x1-body.is-dragging {
  cursor: grabbing;
}

.product-x1-app {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: #f4f4f3;
  touch-action: none;
}

.product-x1-mobile-page {
  display: none;
}

.product-x1-stage {
  position: fixed;
  inset: 0;
  display: block;
  width: 100vw;
  height: 100svh;
  height: 100vh;
  height: 100dvh;
  background: #f4f4f3;
}

.product-x1-stage.is-video-scrubbed {
  display: none;
}

.product-x1-video-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100vw;
  height: 100svh;
  height: 100vh;
  height: 100dvh;
  object-fit: cover;
  background: #f4f4f3;
  pointer-events: none;
}

.product-x1-topbar {
  position: fixed !important;
  z-index: 60;
  top: 0;
  left: 50%;
  right: auto;
  width: 100vw;
  height: 60px;
  padding: 0;
  display: block;
  box-sizing: border-box;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transform: translateX(-50%);
  transform-origin: top center;
  pointer-events: none;
}

.product-x1-brand,
.product-x1-nav-cluster,
.product-x1-nav-links,
.product-x1-icon,
.product-x1-language {
  pointer-events: auto;
}

.product-x1-brand {
  position: absolute;
  left: calc(50% - (640px * var(--scale)) + (30px * var(--scale)));
  top: 22px;
  display: block;
  width: 114.286px;
  height: 15px;
  background: transparent;
}

.product-x1-brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) opacity(0.82);
}

.product-x1-nav-cluster {
  position: absolute;
  left: calc(50% - (640px * var(--scale)) + (853px * var(--scale)));
  top: 19px;
  width: 397px;
  height: 22px;
}

.product-x1-nav-links {
  position: absolute;
  left: 0;
  top: 2.5px;
  display: flex;
  align-items: flex-start;
  width: 360px;
  height: 17px;
  gap: 15px;
}

.product-x1-nav-links a {
  flex: 0 0 60px;
  width: 60px;
  color: #2c2c2c;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  text-align: left;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 180ms ease;
}

.product-x1-nav-links a:first-child {
  text-align: center;
}

.product-x1-nav-links a:hover {
  opacity: 0.62;
}

.product-x1-nav-links a[aria-current="page"] {
  font-weight: 900;
}

html[lang="en"] .product-x1-nav-links {
  left: auto;
  right: 37px;
  width: auto;
  gap: 36px;
}

html[lang="en"] .product-x1-nav-links a {
  width: auto;
  flex: 0 0 auto;
  text-align: left;
}

html[lang="en"] .product-x1-nav-links a:first-child {
  text-align: left;
}

.product-x1-language {
  position: absolute;
  left: 375px;
  top: 0;
  width: 22px;
  height: 22px;
}

.product-x1-icon {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-x1-icon:hover {
  opacity: 0.78;
  transform: translateY(-1px);
}

.product-x1-language-button {
  background: url("../assets/images/figma/shared/language-icon-black.svg") 0 0 / 22px 22px no-repeat;
}

.product-x1-menu-button {
  background-image: url("../assets/images/figma/tech-new/tech-nav-menu-lines.svg"), url("../assets/images/figma/tech-new/tech-nav-menu-bg.svg");
  background-position: 10.11px 12px, 0 0;
  background-size: 14.771px 11px, 35px 35px;
  background-repeat: no-repeat;
}

.product-x1-language .language-popover {
  left: -92px;
  top: 35px;
}

.product-x1-copy-layer {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

.product-x1-story {
  position: absolute;
  right: 72px;
  bottom: calc(clamp(34px, 8.5vh, 92px) + env(safe-area-inset-bottom, 0px));
  width: min(505px, calc(100vw - 560px));
  max-width: calc(100vw - 560px);
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  will-change: opacity, transform;
}

.product-x1-story.is-hero {
  left: auto;
  right: 75px;
  top: auto;
  bottom: calc(108px + env(safe-area-inset-bottom, 0px));
  display: flex;
  width: fit-content;
  min-width: min(505px, calc(100vw - 150px));
  max-width: min(640px, calc(100vw - 150px));
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.product-x1-story-title {
  margin: 0;
  color: #2c2c2c;
  font-size: clamp(22px, min(2.15vw, 3.9vh), 27.5px);
  line-height: 1.34;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.product-x1-story.is-hero .product-x1-story-title {
  min-width: 100%;
  font-size: 64px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -1.6px;
  white-space: nowrap;
}

.product-x1-story-desc {
  width: 100%;
  max-width: 100%;
  margin: 14px 0 0;
  color: rgba(0, 0, 0, 0.3);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: 0;
  word-spacing: normal;
  text-align: left;
  white-space: normal;
  overflow-wrap: break-word;
}

.product-x1-story.is-hero .product-x1-story-desc {
  width: min(505px, calc(100vw - 150px));
  max-width: 100%;
  margin-top: 0;
}

html[lang="en"] .product-x1-story.is-hero {
  max-width: min(720px, calc(100vw - 150px));
}

html[lang="en"] .product-x1-story.is-hero .product-x1-story-desc {
  width: min(680px, calc(100vw - 150px));
}

html[lang="en"] .product-x1-story:not(.is-hero) {
  right: 72px;
  width: min(505px, calc(100vw - 430px));
}

html[lang="en"] .product-x1-story:not(.is-hero) .product-x1-story-title {
  max-width: 100%;
  font-size: clamp(20px, min(2vw, 3.6vh), 27.5px);
  line-height: 1.16;
  white-space: normal;
  overflow-wrap: break-word;
  text-wrap: balance;
}

html[lang="en"] .product-x1-story:not(.is-hero) .product-x1-story-desc {
  width: 100%;
  max-width: 100%;
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: break-word;
}

@media (min-width: 768px) and (max-width: 1020px) {
  html[lang="en"] .product-x1-story:not(.is-hero) {
    right: 64px;
    width: min(460px, calc(100vw - 128px));
  }
}

.product-x1-scroll-marker {
  position: fixed;
  z-index: 12;
  right: 40px;
  top: 73.4vh;
  width: 2px;
  height: 166px;
  background: rgba(44, 44, 44, 0.24);
  opacity: 1;
  transform: translateY(-50%);
  transition: opacity 280ms cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}

.product-x1-scroll-marker::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 50px;
  background: #2c2c2c;
  transform: translateY(var(--marker-y, 0px));
  transition: transform 180ms cubic-bezier(0.19, 1, 0.22, 1);
}

.product-x1-scroll-marker.is-hidden {
  opacity: 0;
}

.product-x1-spec-layer {
  --spec-offset-y: -45px;
  position: fixed;
  inset: 0;
  z-index: 11;
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 200ms linear, transform 200ms linear;
  pointer-events: none;
}

.product-x1-spec-layer.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.product-x1-spec-item {
  --item-progress: 0;
  --line-start: 0px;
  position: absolute;
  right: clamp(60px, 4.7vw, 72px);
  width: min(48vw, 610px);
  height: 78px;
  color: #636363;
  transform: translate3d(calc((1 - var(--item-progress)) * 22px), var(--spec-offset-y), 0);
  opacity: var(--item-progress);
}

.product-x1-spec-item::before {
  content: "";
  position: absolute;
  left: var(--line-start);
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.22);
  transform: scaleX(var(--item-progress));
  transform-origin: left center;
}

.product-x1-spec-item[data-index="0"] {
  top: 20.3vh;
  --line-start: 84px;
  height: 74.1px;
}

.product-x1-spec-item[data-index="1"] {
  top: 32.95vh;
  --line-start: 84px;
  display: none;
}

.product-x1-spec-item[data-index="2"] {
  top: calc(20.3vh + 140px);
  --line-start: 84px;
}

.product-x1-spec-item[data-index="3"] {
  top: calc(20.3vh + 280px);
  --line-start: 84px;
}

.product-x1-spec-item[data-index="4"] {
  top: calc(20.3vh + 420px);
  --line-start: 84px;
}

.product-x1-spec-copy {
  position: absolute;
  right: 0;
  bottom: 11px;
  text-align: right;
}

.product-x1-spec-label {
  display: block;
  margin-bottom: 4px;
  color: #686868;
  font-size: clamp(10.4px, 0.832vw, 12.8px);
  line-height: 1;
  font-weight: 700;
}

.product-x1-spec-value {
  display: block;
  min-width: 160px;
  color: #646464;
  font-size: clamp(24px, 1.936vw, 32px);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.product-x1-spec-item[data-index="0"] .product-x1-spec-label {
  margin-bottom: 3px;
}

.product-x1-spec-item[data-index="0"] .product-x1-spec-value {
  font-size: clamp(21.6px, 1.742vw, 28.8px);
  line-height: 0.855;
}

.product-x1-setup-panel {
  position: fixed;
  z-index: 40;
  left: 50%;
  bottom: calc(30px + env(safe-area-inset-bottom, 0px));
  width: min(720px, calc(100vw - 32px));
  padding: 16px 18px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(244, 244, 243, 0.9);
  backdrop-filter: blur(16px);
  color: #111;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(18px);
  transition: opacity 320ms cubic-bezier(0.19, 1, 0.22, 1), transform 320ms cubic-bezier(0.19, 1, 0.22, 1);
}

.product-x1-setup-panel.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.product-x1-setup-panel strong,
.product-x1-setup-panel code {
  display: block;
  font-size: 13px;
  line-height: 1.6;
}

.product-x1-setup-panel code {
  margin-top: 8px;
  padding: 10px 12px;
  overflow-x: auto;
  color: #333;
  background: rgba(255, 255, 255, 0.66);
  white-space: nowrap;
}

.product-x1-body .menu-canvas {
  left: auto;
  right: 25px;
  top: 70px;
  width: 114px;
  height: 264px;
  background: rgba(0, 0, 0, 0.3);
  transform: none;
}

.product-x1-body .menu-overlay.is-open .menu-canvas {
  transform: none;
}

@media (max-width: 767px) and (orientation: portrait) {
  .product-x1-topbar {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 60px;
    transform: none;
  }

  .product-x1-nav-cluster {
    left: auto;
    right: 18px;
    top: 19px;
    width: 22px;
    height: 22px;
  }

  .product-x1-nav-links {
    display: none;
  }

  .product-x1-language {
    left: 0;
    top: 0;
  }

  .product-x1-menu-button {
    background-position: 10.11px 12px, 0 0;
    background-size: 14.771px 11px, 35px 35px;
  }

  .product-x1-story,
  .product-x1-story.is-hero {
    left: 50%;
    right: auto;
    bottom: calc(62px + env(safe-area-inset-bottom, 0px));
    width: min(74vw, 300px);
    max-width: min(74vw, 300px);
    text-align: center;
    transform: translate3d(-50%, 24px, 0);
  }

  .product-x1-story-title,
  .product-x1-story.is-hero .product-x1-story-title {
    font-size: clamp(24px, 7.6vw, 34px);
    line-height: 1.14;
    white-space: normal;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .product-x1-story-desc,
  .product-x1-story.is-hero .product-x1-story-desc {
    width: min(60vw, 240px);
    max-width: none;
    margin: 12px auto 0;
    font-size: clamp(13px, 3.5vw, 16px);
    line-height: 1.45;
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .product-x1-scroll-marker {
    display: none;
  }

  .product-x1-spec-layer {
    --spec-offset-y: 0px;
  }

  .product-x1-spec-item {
    right: 22px;
    width: calc(100vw - 56px);
    height: 72px;
  }

  .product-x1-spec-item[data-index="0"] {
    top: 24vh;
    --line-start: 0px;
  }

  .product-x1-spec-item[data-index="1"] {
    top: 32vh;
    --line-start: 0px;
  }

  .product-x1-spec-item[data-index="2"] {
    top: 40vh;
    --line-start: 0px;
  }

  .product-x1-spec-item[data-index="3"] {
    top: 60vh;
    --line-start: 0px;
  }

  .product-x1-spec-item[data-index="4"] {
    top: 84vh;
    --line-start: 0px;
  }

  .product-x1-spec-label {
    font-size: 12px;
  }

  .product-x1-spec-value {
    font-size: clamp(27px, 8vw, 38px);
  }

  .product-x1-body .menu-canvas {
    right: 18px;
    top: 70px;
  }
}

@media (max-width: 767px) {
  img,
  video {
    max-width: 100%;
    height: auto;
  }

  .screen-bg,
  .careers-hero-video,
  .slice > img,
  .scenario-slice > img,
  .company-slide > img,
  .company-bg-layer .company-native-bg,
  .tech-slide > img:not(.tech-module-visual),
  .tech-module-visual,
  .tech-detail-canvas img {
    object-fit: cover;
  }

  .screen-team-robot {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center center;
  }

  .brand-mark img,
  .menu-logo img,
  .icon-button img,
  .product-x1-brand img,
  .careers-brand img,
  .orbit-planet {
    object-fit: contain;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-x1-icon,
  .product-x1-scroll-marker,
  .product-x1-setup-panel {
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .company-slide,
  .company-bg-layer .company-native-bg,
  .orbit-planet,
  .company-prev,
  .company-next {
    transition-duration: 1ms;
  }
}

.company-contact-slice {
  background: #000;
  color: #fff;
}

.tech-contact-slice {
  --slice-height: 421px;
}

.tech-contact-slice .contact-slogan {
  top: 117px;
  color: #4d4d4d;
  opacity: 1;
}

.tech-contact-slice .contact-directory,
.tech-contact-slice .contact-social,
.tech-contact-slice .contact-details {
  top: 117px;
}

.tech-contact-slice .contact-directory {
  left: 644px;
}

.tech-contact-slice .contact-social {
  left: 764px;
}

.tech-contact-slice .contact-details {
  left: 924px;
}

.tech-contact-slice .contact-copyright {
  top: 379px;
}

.tech-contact-slice .contact-directory h2,
.tech-contact-slice .contact-social h2,
.tech-contact-slice .contact-details h2 {
  margin: 0 0 21px;
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  line-height: 33px;
}

.tech-contact-slice .contact-directory a,
.tech-contact-slice .careers-social-item,
.tech-contact-slice .contact-social-item,
.tech-contact-slice .contact-details p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

.contact-slogan {
  position: absolute;
  left: 25px;
  top: 416px;
  width: 366px;
  margin: 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.contact-directory,
.contact-social,
.contact-details {
  position: absolute;
  top: 416px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  font-style: normal;
}

.contact-directory {
  left: 643px;
  width: 60px;
}

.contact-social {
  left: 763px;
  width: 100px;
}

.contact-details {
  left: 923px;
  width: 317px;
}

.contact-directory h2,
.contact-social h2,
.contact-details h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  line-height: 33px;
}

.contact-directory a,
.contact-social p,
.contact-social-item,
.contact-details p {
  margin: 0 0 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

.contact-directory a {
  transition: opacity 160ms ease;
}

.contact-directory a:hover {
  opacity: 0.62;
}

.tech-contact-slice .contact-directory a,
.tech-contact-slice .contact-social-item,
.tech-contact-slice .contact-details p {
  color: rgba(255, 255, 255, 0.62);
}

.tech-contact-slice .contact-directory a,
.tech-contact-slice .contact-social-item {
  transition: color 120ms ease, font-weight 120ms ease;
}

.tech-contact-slice .contact-directory a:hover,
.tech-contact-slice .contact-directory a:focus-visible,
.tech-contact-slice .contact-social-item:hover,
.tech-contact-slice .contact-social-item:focus-visible {
  color: #fff;
  font-weight: 900;
  opacity: 1;
}

.contact-social-item {
  position: relative;
  display: block;
  width: 75px;
  text-align: left;
}

.contact-social-item:nth-of-type(3) {
  width: 45px;
}

html[lang="en"] .contact-social {
  left: 738px;
  width: 180px;
}

html[lang="en"] .contact-directory {
  left: 610px;
}

html[lang="en"] .contact-social .careers-social-item,
html[lang="en"] .contact-social .contact-social-item {
  width: 180px;
  white-space: nowrap;
}

html[lang="en"] .contact-details {
  left: 960px;
  width: 280px;
}

html[lang="en"] .contact-directory h2,
html[lang="en"] .contact-social h2,
html[lang="en"] .contact-details h2 {
  margin-bottom: 39px;
  white-space: nowrap;
}

.contact-social-qr {
  position: absolute;
  left: -192px;
  top: 36px;
  z-index: 2;
  display: grid;
  width: 160px;
  height: 160px;
  place-items: center;
  border-radius: 13px;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms ease;
}

.contact-social-qr img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.contact-social-item:hover .contact-social-qr,
.contact-social-item:focus-visible .contact-social-qr {
  opacity: 1;
}

.contact-copyright {
  position: absolute;
  left: 25px;
  top: 676px;
  width: 482px;
  margin: 0;
  color: #adadae;
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
}

.careers-jobs-zone {
  left: 218px;
  top: 1480px;
  width: 845px;
  height: 480px;
}

.careers-application-zone {
  left: 218px;
  top: 2108px;
  width: 540px;
  height: 52px;
}

.careers-body {
  background: #000;
}

.careers-shell,
.careers-canvas {
  background: transparent;
}

.careers-shell {
  z-index: 1;
}

.careers-canvas {
  height: 2713px;
}

.careers-main {
  position: relative;
  width: 1280px;
  height: 2713px;
  overflow: hidden;
  background: transparent;
  color: #fff;
  isolation: isolate;
}

.careers-hero-bg {
  position: fixed;
  left: 50%;
  top: 0;
  z-index: 0;
  width: 1280px;
  height: 720px;
  overflow: hidden;
  background: #000;
  pointer-events: none;
  transform: translateX(-50%) scale(var(--scale));
  transform-origin: top center;
}

.careers-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.careers-hero-bg::after {
  content: "";
  position: absolute;
  inset: -23px;
  z-index: 1;
  background: linear-gradient(180deg, #010206 0%, #000000 100%);
  opacity: 0.6;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  filter: blur(23px);
  pointer-events: none;
}

.careers-particle-canvas {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 1280px;
  height: 720px;
  opacity: 0.94;
  mix-blend-mode: screen;
  pointer-events: none;
}

.careers-topbar {
  position: fixed;
  left: 50%;
  top: 0;
  z-index: 60;
  width: 100vw;
  height: 60px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  pointer-events: none;
  transform: translateX(-50%);
  transform-origin: top center;
}

.careers-brand {
  position: absolute;
  left: calc(50% - (640px * var(--scale)) + (30px * var(--scale)));
  top: 22px;
  width: 114.286px;
  height: 15px;
  background: url("../assets/images/figma/shared/logo.svg") center / contain no-repeat;
  pointer-events: auto;
}

.careers-brand img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.careers-header-actions {
  position: absolute;
  inset: 0;
  width: 1280px;
  height: 60px;
  pointer-events: none;
}

.careers-nav-cluster {
  position: absolute;
  left: calc(50% - (640px * var(--scale)) + (853px * var(--scale)));
  top: 19px;
  width: 397px;
  height: 22px;
  pointer-events: auto;
}

.careers-nav-links {
  position: absolute;
  left: 0;
  top: 2.5px;
  display: flex;
  align-items: flex-start;
  width: 360px;
  height: 17px;
  gap: 15px;
  pointer-events: auto;
}

.careers-nav-links a {
  flex: 0 0 60px;
  width: 60px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 180ms ease;
}

.careers-nav-links a:first-child {
  text-align: center;
}

.careers-nav-links a:hover {
  opacity: 0.72;
}

.careers-nav-links a[aria-current="page"] {
  font-weight: 900;
}

html[lang="en"] .careers-nav-links {
  left: auto;
  right: 37px;
  width: auto;
  gap: 36px;
}

html[lang="en"] .careers-nav-links a {
  width: auto;
  flex: 0 0 auto;
  text-align: left;
}

html[lang="en"] .careers-nav-links a:first-child {
  text-align: left;
}

.careers-icon-button,
.careers-language {
  width: 22px;
  height: 22px;
}

.careers-icon-button {
  position: absolute;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: transparent;
  appearance: none;
  cursor: pointer;
  pointer-events: auto;
  transition: opacity 180ms ease;
}

.careers-icon-button:hover {
  opacity: 0.78;
}

.careers-language-button {
  position: absolute;
  inset: 0;
  background: url("../assets/images/figma/shared/language-icon-white.svg") 0 0 / 22px 22px no-repeat;
}

.careers-menu-button {
  left: 1220px;
  top: 17.5px;
  background-image: url("../assets/images/figma/tech-new/tech-nav-menu-lines.svg"), url("../assets/images/figma/tech-new/tech-nav-menu-bg.svg");
  background-position: 10.11px 12px, 0 0;
  background-size: 14.771px 11px, 35px 35px;
  background-repeat: no-repeat;
}

.careers-language {
  position: absolute;
  left: 375px;
  top: 0;
  pointer-events: auto;
}

.careers-language .language-popover {
  left: -92px;
  top: 35px;
}

.careers-hero-title,
.careers-intro,
.careers-plan,
.careers-talent,
.careers-openings {
  position: absolute;
  z-index: 3;
}

.careers-hero-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  left: 246.741px;
  top: 150.621px;
  width: 787.518px;
  height: 66px;
  margin: 0;
  line-height: 0;
}

.careers-hero-title-art {
  display: block;
  width: 787.518px;
  height: 66px;
  opacity: 0.63;
  mix-blend-mode: color-dodge;
  overflow: visible;
}

.careers-hero-title-label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.careers-intro {
  left: 246.741px;
  top: 451.621px;
  width: 787.518px;
  height: 200px;
}

.careers-intro h2,
.careers-plan h2,
.careers-openings > h2 {
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.75px;
}

.careers-copy {
  position: absolute;
  left: 0;
  top: 60px;
  width: 787.018px;
}

.careers-copy p,
.careers-talent p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}

.careers-copy p {
  letter-spacing: -0.07px;
}

.careers-copy p + p {
  margin-top: 20.3px;
}

.careers-plan {
  left: 246.741px;
  top: 718.621px;
  width: 787.518px;
  height: 269.826px;
}

.careers-process {
  position: absolute;
  left: 0;
  top: 0;
  width: 787.518px;
  height: 269.826px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.careers-process::before {
  content: "";
  position: absolute;
  top: 176.434px;
  width: 57.987px;
  height: 2px;
  background: rgba(255, 255, 255, 0.82);
}

.careers-process::before {
  left: 134.892px;
  box-shadow:
    187.806px 0 0 rgba(255, 255, 255, 0.82),
    407.144px 0 0 rgba(255, 255, 255, 0.82);
}

.process-step {
  position: absolute;
  margin: 0;
  color: #fff;
}

.process-step h3 {
  position: absolute;
  top: 0;
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
  white-space: nowrap;
}

.process-step p {
  position: absolute;
  top: 136.826px;
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}

.process-dot {
  position: absolute;
  top: 49px;
  width: 68.864px;
  height: 68.864px;
  border-radius: 50%;
}

.process-apply {
  left: 40.836px;
  top: 93.957px;
  width: 68.864px;
  height: 176.826px;
}

.process-apply h3 {
  left: 10.432px;
}

.process-apply p {
  left: 6.432px;
}

.process-apply .process-dot {
  left: 0;
  background: #fff;
}

.process-apply .process-dot::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 27px;
  width: 14.5px;
  height: 14.5px;
  border-radius: 50%;
  background: #000;
}

.process-interview {
  left: 163.886px;
  top: 93px;
  width: 168px;
  height: 176.826px;
}

.process-interview h3 {
  left: 64.619px;
}

.process-interview p {
  left: 0;
  width: 168px;
}

.process-interview .process-dot {
  left: 54.187px;
  border: 18px solid #fff;
  background: #000;
}

.process-offer {
  left: 380.877px;
  top: 93.957px;
  width: 140px;
  height: 156px;
}

.process-offer h3 {
  left: 4px;
}

.process-offer p {
  left: 0;
  width: 140px;
}

.process-offer .process-dot {
  left: 35.568px;
  border: 4px solid #fff;
  background: #000;
}

.process-onboard {
  left: 635.682px;
  top: 93.957px;
  width: 111px;
  height: 156px;
}

.process-onboard h3 {
  left: 0;
}

.process-onboard-title-mobile {
  display: none;
}

.process-onboard p {
  left: 6.5px;
}

.process-onboard .process-dot {
  left: 21.068px;
  border: 3px solid #fff;
  background: #000;
}

@media (min-width: 768px) {
  html[lang="en"] .process-apply {
    --process-copy-center: 34.432px;
  }

  html[lang="en"] .process-interview {
    --process-copy-center: 88.619px;
  }

  html[lang="en"] .process-offer {
    --process-copy-center: 70px;
  }

  html[lang="en"] .process-onboard {
    --process-copy-center: 55.5px;
  }

  html[lang="en"] .process-step h3,
  html[lang="en"] .process-step p {
    left: var(--process-copy-center, 50%);
    width: max-content;
    transform: translateX(-50%);
    text-align: center;
  }
}

.careers-talent {
  left: 246.741px;
  top: 1077.447px;
  width: 787.518px;
  height: 448px;
}

.careers-talent h2,
.careers-talent h3 {
  position: absolute;
  left: 0;
  margin: 0;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0;
}

.careers-talent h2 {
  top: 0;
  width: 787.518px;
  font-size: 30px;
  line-height: 1.1;
  white-space: nowrap;
}

.talent-title-mobile-comma {
  display: none;
}

.careers-talent h3 {
  width: auto;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
}

.careers-talent p {
  position: absolute;
  left: 0;
  width: 787.018px;
}

.talent-core-title {
  top: 116px;
}

.talent-core-copy {
  top: 198px;
}

.talent-support-title {
  top: 254px;
}

.talent-support-copy {
  top: 303px;
}

.talent-growth-title {
  top: 359px;
}

.talent-growth-copy {
  top: 408px;
}

.careers-openings {
  left: 232px;
  top: 1592.447px;
  width: 817px;
  height: 631.684px;
}

.careers-openings > h2 {
  width: 817px;
  line-height: 1.1;
}

.opening-category {
  position: absolute;
  left: 0;
  width: 817px;
}

.opening-category h3 {
  position: absolute;
  left: 1.087px;
  top: 0;
  margin: 0;
  color: #fff;
  font-size: 0;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.75px;
  white-space: nowrap;
}

.opening-category h3 span {
  font-size: 20px;
  font-style: normal;
}

.opening-category h3 em {
  color: rgba(156, 161, 164, 0.5);
  font-size: 14px;
  font-style: normal;
}

.opening-category-algorithm {
  top: 66px;
  height: 282.005px;
}

.opening-category-hardware {
  top: 388.005px;
  height: 121.858px;
}

.opening-category-apply {
  top: 549.863px;
  height: 81.821px;
}

.opening-columns {
  position: absolute;
  left: 0.971px;
  top: 57.784px;
  width: 815.058px;
}

.opening-category-algorithm .opening-columns {
  height: 224.221px;
}

.opening-category-hardware .opening-columns {
  height: 64.074px;
}

.opening-category-apply .opening-columns {
  height: 24.037px;
}

.opening-list,
.opening-link {
  position: absolute;
  top: 0;
  width: 230.997px;
}

.opening-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.opening-list-one {
  left: 0;
}

.opening-list-two {
  left: 292.03px;
}

.opening-list-three {
  left: 584.06px;
}

.opening-list li,
.opening-link {
  display: block;
  width: 230.997px;
  height: 24.037px;
  margin: 0 0 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.07px;
  white-space: nowrap;
}

.opening-list li {
  position: relative;
}

.opening-list li::before,
.opening-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 229.933px;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
}

.opening-list li::after,
.opening-link::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  right: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

.opening-list li span,
.opening-link span {
  position: absolute;
  left: 0.366px;
  top: 0;
}

.opening-link {
  position: absolute;
  color: #fff;
  font-weight: 500;
  transition: color 160ms ease, text-shadow 160ms ease;
}

.opening-link::before {
  transition: height 160ms ease, background 160ms ease;
}

.opening-link::after {
  transition: background 160ms ease, border-color 160ms ease;
}

.opening-link:hover,
.opening-link:focus-visible {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 0 0.01px currentColor;
}

.opening-link:hover::before,
.opening-link:focus-visible::before {
  height: 2px;
  background: rgba(255, 255, 255, 0.96);
}

.opening-link:hover::after,
.opening-link:focus-visible::after {
  border-color: rgba(255, 255, 255, 0.94);
  background: radial-gradient(circle, rgba(0, 0, 0, 0.54) 0, rgba(0, 0, 0, 0.54) 3px, rgba(230, 230, 230, 0.94) 3.5px, rgba(230, 230, 230, 0.94) 100%);
}

.careers-footer {
  position: absolute;
  left: 0;
  top: 2291.131px;
  width: 1281px;
  height: 421px;
  background: #000;
  color: #fff;
}

.careers-footer-slogan,
.careers-footer-menu,
.careers-footer-social,
.careers-footer-contact,
.careers-footer-copyright {
  position: absolute;
}

.careers-footer-slogan {
  left: 25px;
  top: 117px;
  width: 366px;
  margin: 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.careers-footer-menu,
.careers-footer-social,
.careers-footer-contact {
  top: 117px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  font-style: normal;
}

.careers-footer-menu {
  left: 644px;
  width: 60px;
}

.careers-footer-social {
  left: 764px;
  width: 100px;
}

.careers-footer-contact {
  left: 924px;
  width: 317px;
}

html[lang="en"] .careers-footer-social {
  left: 738px;
  width: 180px;
}

html[lang="en"] .careers-footer-menu {
  left: 610px;
}

html[lang="en"] .careers-footer-contact {
  left: 960px;
  width: 280px;
}

html[lang="en"] .careers-footer h2 {
  margin-bottom: 39px;
  white-space: nowrap;
}

.careers-footer h2 {
  margin: 0 0 21px;
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  line-height: 33px;
}

.careers-footer-menu a,
.careers-social-item,
.careers-footer-contact p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

.careers-footer-menu a,
.careers-social-item {
  transition: color 120ms ease, font-weight 120ms ease;
}

.careers-footer-menu a:hover,
.careers-footer-menu a:focus-visible {
  color: #fff;
  font-weight: 900;
}

.careers-social-item {
  display: block;
  width: 75px;
  text-align: left;
  transition: color 120ms ease, font-weight 120ms ease;
}

.careers-social-item:nth-of-type(3) {
  width: 45px;
}

html[lang="en"] .careers-footer .careers-social-item {
  width: 180px;
  white-space: nowrap;
}

.careers-social-item:hover,
.careers-social-item:focus-visible {
  color: #fff;
  font-weight: 900;
}

.careers-social-qr {
  position: absolute;
  left: -192px;
  top: 36px;
  z-index: 2;
  display: grid;
  width: 160px;
  height: 160px;
  place-items: center;
  border-radius: 13px;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms ease;
}

.careers-social-qr img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.careers-social-item:hover .careers-social-qr,
.careers-social-item:focus-visible .careers-social-qr {
  opacity: 1;
}

.careers-footer-contact p {
  width: 317px;
}

html[lang="en"] .careers-footer-contact p {
  width: 280px;
}

.careers-footer-copyright {
  left: 25px;
  top: 379px;
  margin: 0;
  color: #adadae;
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .brand-mark,
  .home-nav-links,
  .tech-fixed-logo,
  .tech-fixed-nav-cluster,
  .company-fixed-logo,
  .company-fixed-nav-cluster,
  .screen-copy,
  .contact-slogan,
  .contact-directory,
  .contact-social,
  .contact-details,
  .contact-copyright,
  .footer-column,
  .copyright,
  .tech-detail-close,
  .company-copy,
  .company-tech-copy,
  .brand-genes-panel,
  .brand-gene-slogan,
  .careers-hero-title,
  .careers-intro,
  .careers-plan,
  .careers-talent,
  .careers-openings,
  .careers-footer-slogan,
  .careers-footer-menu,
  .careers-footer-social,
  .careers-footer-contact,
  .careers-footer-copyright {
    transform: scale(var(--inverse-scale));
    transform-origin: top left;
  }

  .brand-mark,
  .tech-fixed-logo,
  .company-fixed-logo {
    top: calc(22px * var(--inverse-scale));
  }

  .home-nav-links {
    left: auto;
    right: calc(67px * var(--inverse-scale));
    top: calc(21.5px * var(--inverse-scale));
    transform-origin: top right;
  }

  .tech-fixed-nav-cluster,
  .company-fixed-nav-cluster {
    left: auto;
    right: calc(30px * var(--inverse-scale));
    top: calc(19px * var(--inverse-scale));
    transform-origin: top right;
  }

  .home-header-actions {
    right: var(--home-edge-inset-layout);
    top: calc(19px * var(--inverse-scale));
    transform: scale(var(--inverse-scale));
    transform-origin: top right;
  }

  .product-x1-nav-cluster,
  .careers-nav-cluster {
    left: auto;
    right: 30px;
  }

  .company-copy,
  .company-tech-copy,
  .brand-genes-panel,
  .brand-gene-slogan,
  .careers-hero-title,
  .careers-intro,
  .careers-plan,
  .careers-talent,
  .careers-openings {
    transform-origin: top center;
  }

  .figma-pill,
  .screen-team .figma-pill {
    right: var(--home-edge-inset-layout);
    transform: scale(var(--inverse-scale));
    transform-origin: top right;
  }

  .social-preview {
    transform: translateY(6px) scale(var(--inverse-scale));
    transform-origin: top left;
  }

  .social-preview.is-visible {
    transform: translateY(0) scale(var(--inverse-scale));
  }

  .tech-glow-copy,
  .tech-module-copy,
  .scenario-title {
    transform: translateX(-50%) scale(var(--inverse-scale));
    transform-origin: top center;
  }

  .scenario-card h2,
  .scenario-video-pill {
    transform: translateX(-50%) scale(var(--inverse-scale));
    transform-origin: top center;
  }

  .company-prev,
  .company-next {
    transform: scale(var(--inverse-scale));
    transform-origin: center;
  }

  .company-prev:active,
  .company-next:active {
    transform: scale(calc(var(--inverse-scale) * 0.92));
  }

  .product-x1-story-title,
  html[lang="en"] .product-x1-story:not(.is-hero) .product-x1-story-title {
    font-size: 27.5px;
  }

  .product-x1-story.is-hero .product-x1-story-title {
    font-size: 64px;
  }
}

@supports not selector(:has(*)) {
  .scenario-slice .scenario-detail-zone:hover ~ .scenario-hover {
    opacity: 1;
  }
}
