@import url("https://fonts.googleapis.com/css2?family=Encode+Sans+Semi+Condensed:wght@400;600&family=Geist:wght@400;500&family=Geologica:wght@500;700&family=Inter:wght@400;700&family=Noto+Sans+KR:wght@700&family=Radio+Canada+Big:wght@400;500;600;700&family=Source+Serif+4:opsz,wght@8..60,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wdth,wght@12..96,75..100,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Geist+Mono:wght@400;700&family=Space+Grotesk:wght@400;500&display=swap");

:root {
  --background: #000000;
  --display: #f2f2f2;
  --divider: #575757;
  --content-zoom: 0.9;
  --page-gutter: 75px;
  --gnb-height: 100px;
  --hero-height: 1080px;
}

* {
  box-sizing: border-box;
}

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

html {
  background: var(--background);
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--background);
  color: #ffffff;
  font-family: "Geist", Arial, sans-serif;
}

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

button {
  font: inherit;
}

.landing-page {
  width: 100%;
  overflow: hidden;
}

/* Preserve the preferred 90% desktop density while keeping the footer at 100%. */
.landing-page > :not(.site-footer) {
  zoom: var(--content-zoom);
}

.reveal-ready .scroll-reveal {
  opacity: 0;
  translate: 0 48px;
  filter: blur(4px);
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    translate 800ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, translate, filter;
}

.reveal-ready .scroll-reveal.is-visible {
  opacity: 1;
  translate: 0 0;
  filter: blur(0);
}

.gnb {
  position: relative;
  top: 0;
  z-index: 10;
  display: flex;
  width: 100%;
  height: var(--gnb-height);
  background: var(--background);
  font-family: "Encode Sans Semi Condensed", Arial, sans-serif;
}

.gnb__item {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  height: 100%;
  padding: 13.158px 39.474px;
  border-right: 1.316px solid var(--divider);
  border-bottom: 1.316px solid var(--divider);
  white-space: nowrap;
}

.gnb__brand {
  width: 211.809px;
}

.gnb__brand img {
  display: block;
  width: 132.861px;
  height: 50.877px;
}

.gnb__about {
  width: 137.719px;
  font-size: 23.684px;
  line-height: 1.1;
  letter-spacing: -0.4737px;
}

.gnb__product {
  width: 328.07px;
  font-size: 23.684px;
  line-height: 1.1;
  letter-spacing: -0.4737px;
}

.gnb__product strong {
  font-weight: 600;
}

.gnb__cta {
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
  border-right: 0;
  font-family: "Geologica", Arial, sans-serif;
  font-size: 42.105px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1.2632px;
  text-transform: uppercase;
}

.gnb__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 13.158px;
}

.gnb__cta-link span:last-child {
  font-size: 36.842px;
  font-weight: 700;
  letter-spacing: -1.1053px;
}

.hero {
  position: relative;
  display: flex;
  width: 100%;
  height: var(--hero-height);
  padding: 37.5px var(--page-gutter) 105px;
  align-items: flex-end;
  color: var(--display);
  isolation: isolate;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -2;
  overflow: hidden;
  background: #333;
}

.hero__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.hero__progress {
  position: absolute;
  top: 32px;
  right: var(--page-gutter);
  left: var(--page-gutter);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero__progress span {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  transition: background-color 180ms ease;
}

.hero__progress span.is-active {
  background: #ffffff;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero h1,
.hero h2,
.hero p {
  margin: 0;
}

.hero h1 {
  margin-bottom: 80px;
  font-size: 120px;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -3.6px;
  white-space: nowrap;
}

.hero__subcontent {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.hero__message {
  flex: 0 0 934.5px;
  font-size: 48px;
  line-height: 1.09;
  letter-spacing: -2.4px;
}

.hero__message h2 {
  font: inherit;
  font-weight: 500;
}

.hero__message p {
  font-weight: 400;
}

.hero__details {
  flex: 0 0 555px;
  padding-top: 1px;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.54px;
  text-align: right;
}

.hero__controls {
  position: absolute;
  z-index: 3;
  right: var(--page-gutter);
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__counter {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.32px;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.hero__controls button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

.hero__controls button:hover,
.hero__controls button:focus-visible {
  background: rgba(255, 255, 255, 0.24);
}

.hero__controls button:active {
  transform: scale(0.94);
}

.hero__controls button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.hero__controls img {
  display: block;
  width: 18px;
  height: 18px;
}

.workflow-impact {
  position: relative;
  width: 100%;
  height: 1080px;
  overflow: hidden;
  background: linear-gradient(180deg, #a8d3ff 0%, #fff4df 100%);
  color: #000000;
}

.workflow-impact__stage {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1920px;
  height: 1080px;
  transform: translateX(-50%);
  transform-origin: top center;
}

.workflow-impact__app {
  position: absolute;
  top: 432px;
  left: 260px;
  width: 1400px;
  height: 886px;
  overflow: hidden;
  border: 3px solid #000000;
  border-radius: 35px;
}

.workflow-impact__app img,
.workflow-impact__app span {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.workflow-impact__app img {
  object-fit: cover;
}

.workflow-impact__app span {
  background: #2683eb;
}

.workflow-impact__visual {
  position: absolute;
  top: 430px;
  left: 228px;
  display: block;
  width: 1464.11px;
  height: 824px;
  border-radius: 50px;
  object-fit: cover;
}

.workflow-impact__metric {
  position: absolute;
  z-index: 2;
  top: 535px;
  left: 311px;
  display: flex;
  align-items: center;
  gap: 40px;
  color: #fdfdfd;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.65);
}

.workflow-impact__metric strong,
.workflow-impact__metric p {
  margin: 0;
}

.workflow-impact__metric strong {
  color: #fff546;
  font-family: "Radio Canada Big", Arial, sans-serif;
  font-size: 120px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -6px;
  white-space: nowrap;
}

.workflow-impact__metric p {
  width: 381px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.workflow-impact__blur {
  position: absolute;
  z-index: 3;
  top: 860px;
  left: 0;
  width: 1920px;
  height: 168px;
  background: #f3efe3;
  filter: blur(100px);
  pointer-events: none;
}

.workflow-impact__title {
  position: absolute;
  z-index: 4;
  top: 130px;
  left: 140px;
  width: 1640px;
  margin: 0;
  color: #000000;
  text-align: center;
}

.workflow-impact__title span,
.workflow-impact__title strong {
  display: block;
  font-size: 90px;
  font-weight: 400;
  line-height: 1;
}

.workflow-impact__title span {
  font-family: "Source Serif 4", Georgia, serif;
  letter-spacing: -3.6px;
}

.workflow-impact__title strong {
  margin-top: 20px;
  font-family: "Radio Canada Big", Arial, sans-serif;
  letter-spacing: -4.5px;
}

.partners-bar {
  position: relative;
  display: flex;
  width: 100%;
  height: 88px;
  align-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(35, 36, 45, 0.02) 0%, rgba(35, 36, 45, 0.02) 100%),
    linear-gradient(90deg, #1b1b1b 0%, #1b1b1b 100%);
}

.partners-bar__track {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 64px;
  width: max-content;
  padding-left: max(99.483px, calc((100vw - 1721.034px) / 2));
  will-change: transform;
  animation: partners-marquee 38s linear infinite;
}

.partners-bar__group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 64px;
}

.partners-bar__group img {
  display: block;
  flex: 0 0 auto;
  width: 828.517px;
  height: 24.0003px;
}

@keyframes partners-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-1785.034px, 0, 0);
  }
}

.scannable-data {
  position: relative;
  width: 100%;
  height: 1080px;
  overflow: hidden;
  background: #ffffff;
  color: #000000;
}

.scannable-data__stage {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1920px;
  height: 1080px;
  transform: translateX(-50%);
  transform-origin: top center;
}

.scannable-data__background {
  position: absolute;
  inset: 0;
  background: #ffffff;
}

.scannable-data__copy {
  position: absolute;
  z-index: 2;
  top: 128px;
  left: 120px;
  display: flex;
  width: 517px;
  flex-direction: column;
  gap: 81px;
  color: #000000;
}

.scannable-data__copy h2,
.scannable-data__copy p,
.scannable-data__callout,
.scannable-data__stat strong,
.scannable-data__stat span {
  margin: 0;
}

.scannable-data__copy h2 {
  font-family: "Radio Canada Big", Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.44px;
}

.scannable-data__copy p {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -1.44px;
}

.scannable-data__callout {
  position: absolute;
  z-index: 2;
  top: 714px;
  left: 130px;
  width: 627px;
  color: #0058dd;
  font-family: "Radio Canada Big", Arial, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.64px;
  text-align: right;
}

.scannable-data__callout strong {
  font-weight: 700;
}

.scannable-data__stats[hidden] {
  display: none;
}

.scannable-data__stat {
  position: absolute;
  top: var(--stat-y);
  left: var(--stat-x);
  width: 400px;
}

.scannable-data__stat strong,
.scannable-data__stat span {
  display: block;
}

.scannable-data__stat strong {
  height: 132px;
  font-family: "Radio Canada Big", Arial, sans-serif;
  font-size: 120px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -6px;
}

.scannable-data__stat span {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -1.2px;
}

.scannable-data__image {
  position: absolute;
  z-index: 1;
  top: 128px;
  left: 821px;
  display: block;
  width: 1098.667px;
  height: 824px;
  object-fit: cover;
}

.scan-label {
  position: absolute;
  z-index: 3;
  top: var(--label-y);
  left: var(--label-x);
  width: 31.626px;
  height: 37.836px;
  overflow: hidden;
  border-radius: 2.811px;
  background: #ffffff;
}

.scan-label--wide {
  width: 39px;
  height: 38px;
}

.scan-label span {
  position: absolute;
  top: 1.35px;
  left: 50%;
  width: 18.707px;
  transform: translateX(-50%);
  color: #000000;
  font-family: "Noto Sans KR", Arial, sans-serif;
  font-size: 3.958px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.1583px;
  text-align: center;
}

.scan-label img {
  position: absolute;
  top: 17.58px;
  left: 50%;
  display: block;
  width: 23.214px;
  height: 11.928px;
  transform: translate(-50%, -50%) rotate(90deg);
  object-fit: cover;
}

.multiscan-steps {
  position: relative;
  width: 100%;
  height: 1080px;
  overflow: hidden;
  background: #f3f3f3;
  color: #000000;
}

.multiscan-steps__stage {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1920px;
  height: 1080px;
  transform: translateX(-50%);
  transform-origin: top center;
}

.multiscan-steps__stage > h2 {
  position: absolute;
  top: 99px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  color: #1e1e1e;
  font-family: "Radio Canada Big", Arial, sans-serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1.8px;
  text-align: center;
  white-space: nowrap;
}

.multiscan-steps__stage > h2 strong {
  font-weight: 600;
}

.multiscan-step {
  position: absolute;
  top: 0;
  width: 570px;
  height: 1080px;
  text-align: center;
}

.multiscan-step--embed {
  left: 64px;
}

.multiscan-step--capture {
  left: 674px;
}

.multiscan-step--identify {
  left: 1284px;
}

.multiscan-step__image {
  position: absolute;
  top: 221px;
  overflow: hidden;
  height: 571px;
}

.multiscan-step__image img {
  position: absolute;
  top: 0;
  display: block;
  max-width: none;
  height: 571px;
}

.multiscan-step--embed .multiscan-step__image {
  left: 94px;
  width: 382px;
}

.multiscan-step--embed .multiscan-step__image img {
  left: -18.871px;
  width: 1234.395px;
}

.multiscan-step--capture .multiscan-step__image {
  left: 89px;
  width: 393px;
}

.multiscan-step--capture .multiscan-step__image img {
  left: -418.0px;
  width: 1234.374px;
}

.multiscan-step--identify .multiscan-step__image {
  left: 94px;
  width: 382px;
}

.multiscan-step--identify .multiscan-step__image img {
  left: -830.803px;
  width: 1234.395px;
}

.multiscan-step h3 {
  position: absolute;
  top: 788px;
  left: 0;
  width: 570px;
  margin: 0;
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: 72px;
  font-variation-settings: "opsz" 80, "wdth" 100, "wght" 382;
  font-weight: 382;
  line-height: 1;
  letter-spacing: -2.16px;
  text-transform: uppercase;
}

.multiscan-step p {
  position: absolute;
  top: 880px;
  left: 63px;
  width: 444px;
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
}

.comparison-section {
  position: relative;
  width: 100%;
  height: 1080px;
  overflow: hidden;
  background: #ffffff;
  color: #000000;
}

.comparison-section__stage {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1920px;
  height: 1080px;
  transform: translateX(-50%);
  transform-origin: top center;
}

.comparison-section__stage > h2 {
  position: absolute;
  top: 80px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  font-family: "Radio Canada Big", Arial, sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1.44px;
  white-space: nowrap;
}

.comparison-section__column-bg {
  position: absolute;
  top: 205px;
  width: 570px;
  height: 486px;
}

.comparison-section__column-bg--rfid {
  left: 616px;
  background: #fbfbfb;
}

.comparison-section__column-bg--multiscan {
  left: 1186px;
  background: #f5f9ff;
}

.comparison-section__labels {
  position: absolute;
  z-index: 1;
  top: 227px;
  left: 164px;
  display: grid;
  width: 1592px;
  grid-template-columns: 452px 546px 546px;
  column-gap: 24px;
  font-family: "Geist Mono", monospace;
  font-size: 20px;
  line-height: 1;
}

.comparison-section__labels span {
  color: #6c6c6c;
  font-weight: 400;
}

.comparison-section__labels strong {
  font-weight: 700;
}

.comparison-section__labels strong:last-child {
  color: #003cdd;
}

.comparison-table {
  position: absolute;
  z-index: 1;
  top: 271px;
  left: 164px;
  width: 1592px;
}

.comparison-table__row {
  display: grid;
  width: 100%;
  height: 84px;
  grid-template-columns: 452px 546px 546px;
  column-gap: 24px;
  align-items: center;
  border-bottom: 1px solid #dbe0ec;
  font-size: 30px;
}

.comparison-table__row:first-child {
  border-top: 1px solid #dbe0ec;
}

.comparison-table__row strong,
.comparison-table__row span {
  display: block;
}

.comparison-table__row strong {
  font-family: "Radio Canada Big", Arial, sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.6px;
}

.comparison-table__row span {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -1.5px;
}

.comparison-table__row span:last-child {
  font-weight: 500;
  letter-spacing: -1.8px;
}

.comparison-section__image {
  position: absolute;
  top: 691px;
  display: block;
  width: 570px;
  height: 285px;
  object-fit: cover;
}

.comparison-section__image--rfid {
  left: 616px;
}

.comparison-section__image--multiscan {
  left: 1186px;
}

.shelf-order-section {
  position: relative;
  width: 100%;
  height: 1080px;
  overflow: hidden;
  background: linear-gradient(180deg, #033b89 17.639%, #002353 105.23%);
}

.shelf-order-section__stage {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1920px;
  height: 1080px;
  overflow: hidden;
  transform: translateX(-50%);
  transform-origin: top center;
}

.shelf-order-section__copy {
  position: absolute;
  top: 103px;
  left: 120px;
  display: flex;
  align-items: flex-start;
  gap: 118px;
  width: 1667px;
  height: 168px;
  color: #ffffff;
}

.shelf-order-section__copy h2 {
  flex: 0 0 517px;
  margin: 0;
  font-family: "Radio Canada Big", Arial, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.32px;
}

.shelf-order-section__body {
  display: flex;
  align-items: center;
  gap: 89px;
  width: 1032px;
  height: 168px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -1.28px;
}

.shelf-order-section__body p {
  flex: 0 0 auto;
  margin: 0;
}

.shelf-order-section__body p:first-child {
  width: 552px;
}

.shelf-order-section__body p:last-child {
  width: 391px;
}

.shelf-order-section__diagram {
  position: absolute;
  top: 367px;
  left: 120px;
  width: 1680px;
  height: 921.866px;
  object-fit: cover;
}

.shelf-order-section__fade {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: calc(100vw / var(--content-zoom));
  object-fit: fill;
  transform: translateX(-50%);
  pointer-events: none;
}

.shelf-order-section__fade--wide {
  height: 96px;
}

.shelf-order-section__fade--deep {
  height: 67px;
}

.library-workflows {
  position: relative;
  width: 100%;
  height: 1080px;
  overflow: hidden;
  background: #f3f3f3;
  color: #000000;
}

.library-workflows__stage {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1920px;
  height: 1080px;
  overflow: hidden;
  transform: translateX(-50%);
  transform-origin: top center;
}

.library-workflows__stage > h2 {
  position: absolute;
  top: 99px;
  left: 273px;
  width: 1374px;
  margin: 0;
  font-family: "Radio Canada Big", Arial, sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1.92px;
  text-align: center;
}

.library-workflows__cards {
  position: absolute;
  top: 267px;
  left: 206.173px;
  display: flex;
  align-items: center;
  gap: 162.5px;
  width: 1508.654px;
  height: 698.308px;
}

.library-workflow-card {
  position: relative;
  flex: 0 0 673.077px;
  width: 673.077px;
  height: 698.308px;
}

.library-workflow-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 673.077px;
  height: 470.192px;
  border-radius: 19.231px;
  object-fit: cover;
}

.library-workflow-card__copy {
  position: absolute;
  top: 523.077px;
  left: 16.346px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19.231px;
  width: 640.385px;
  height: 175.231px;
  text-align: center;
}

.library-workflow-card__copy h3 {
  width: 100%;
  height: 52px;
  margin: 0;
  font-family: "Bricolage Grotesque", Arial, sans-serif;
  font-size: 51.923px;
  font-weight: 382;
  font-variation-settings: "opsz" 80, "wdth" 100;
  line-height: 1;
  letter-spacing: -1.558px;
  text-transform: uppercase;
}

.library-workflow-card__copy p {
  width: 100%;
  height: 104px;
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 26.923px;
  font-weight: 400;
  line-height: 1.2;
}

.library-workflow-card__copy p span {
  display: block;
}

.library-workflow-card__copy p span:not(:last-child) {
  margin-bottom: 3.846px;
}

.deployment-partners {
  position: relative;
  width: 100%;
  height: 1080px;
  overflow: hidden;
  background: #ffffff;
  color: #000000;
}

.deployment-partners__stage {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1920px;
  height: 1080px;
  overflow: hidden;
  transform: translateX(-50%);
  transform-origin: top center;
}

.deployment-partners__stage > h2 {
  position: absolute;
  top: 98px;
  left: 292px;
  width: 1336px;
  margin: 0;
  font-family: "Radio Canada Big", Arial, sans-serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1.8px;
  white-space: nowrap;
}

.deployment-partners__columns {
  position: absolute;
  top: 263px;
  left: 160px;
  display: flex;
  align-items: center;
  gap: 141px;
  width: 1601px;
  height: 688.626px;
}

.deployment-partners__column {
  position: relative;
  flex: 0 0 730px;
  width: 730px;
  height: 688.626px;
}

.deployment-partners__column > h3 {
  width: 730px;
  height: 47px;
  margin: 0;
  color: #3f3f3f;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -1.44px;
  text-align: center;
}

.deployment-partners__card {
  position: absolute;
  top: 67px;
  left: 0;
  width: 730px;
  border: 2px solid rgba(108, 108, 108, 0.2);
  border-radius: 40px;
  background: #fdfdfd;
}

.deployment-partners__card--references {
  height: 621.626px;
}

.deployment-logo,
.partner-logo {
  position: absolute;
  display: block;
  object-fit: cover;
}

.deployment-logo {
  mix-blend-mode: darken;
}

.deployment-logo--national {
  top: 60px;
  left: 42px;
  width: 642px;
  height: 129.2px;
}

.deployment-logo--snu {
  top: 245.2px;
  left: 63px;
  width: 600px;
  height: 140px;
}

.deployment-logo--chosun {
  top: 441.2px;
  left: 142.5px;
  width: 441px;
  height: 116.426px;
}

.deployment-partners__column--partners {
  height: 688px;
}

.deployment-partners__card--partners {
  height: 621px;
}

.partner-logo--samsung {
  top: 63.336px;
  left: 151.654px;
  width: 422.691px;
  height: 144.772px;
}

.partner-logo--middle {
  top: 298.108px;
  left: 51.166px;
  width: 623.667px;
  height: 47.191px;
}

.deployment-partners__bottom-logos {
  position: absolute;
  top: 415.299px;
  left: 64.734px;
  display: flex;
  align-items: center;
  gap: 97px;
  width: 596.2px;
  height: 138.364px;
}

.deployment-partners__bottom-logos img:first-child {
  width: 277.333px;
  height: 47.769px;
}

.deployment-partners__bottom-logos img:last-child {
  width: 221.867px;
  height: 138.364px;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.site-footer {
  position: relative;
  width: 100%;
  height: 716.074px;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  font-family: "Inter", Arial, sans-serif;
}

.site-footer__stage {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1920px;
  height: 716.074px;
  overflow: hidden;
  transform: translateX(-50%);
  transform-origin: top center;
}

.footer-newsletter {
  position: absolute;
  top: 83.556px;
  left: 254.864px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1410.272px;
  height: 120.112px;
  padding: 29.245px 50.134px;
  border: 0.571px solid #3f3f46;
  border-radius: 16px;
  background: #27272a;
}

.footer-newsletter__copy h2,
.footer-newsletter__copy p,
.footer-brand h2,
.footer-brand p,
.footer-link-column h2,
.site-footer__legal p {
  margin: 0;
}

.footer-newsletter__copy h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.24px;
}

.footer-newsletter__copy p {
  margin-top: 8px;
  color: #71717a;
  font-size: 14px;
  line-height: 1.429;
  letter-spacing: 0.203px;
}

.footer-newsletter__form {
  display: flex;
  width: 394.78px;
  height: 46.067px;
}

.footer-newsletter__form input {
  width: 271.557px;
  height: 46.067px;
  padding: 10px 16.711px;
  border: 0.571px solid #3f3f46;
  border-radius: 8px 0 0 8px;
  outline: none;
  background: #3f3f46;
  color: #ffffff;
  font: 400 14px/1.429 "Inter", Arial, sans-serif;
  letter-spacing: 0.203px;
}

.footer-newsletter__form input::placeholder {
  color: #71717a;
}

.footer-newsletter__form button {
  display: flex;
  width: 123.223px;
  height: 46.067px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 16px;
  border: 0;
  border-radius: 0 8px 8px 0;
  background: #289eff;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.203px;
  cursor: pointer;
}

.footer-newsletter__form button img {
  width: 14.622px;
  height: 14.622px;
}

.subscription-toast {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 100;
  display: flex;
  width: min(430px, calc(100vw - 40px));
  flex-direction: column;
  gap: 5px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(39, 39, 42, 0.96);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  opacity: 0;
  color: #ffffff;
  translate: 0 18px;
  visibility: hidden;
  transition:
    opacity 220ms ease,
    translate 220ms ease,
    visibility 220ms ease;
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.subscription-toast.is-visible {
  opacity: 1;
  translate: 0 0;
  visibility: visible;
}

.subscription-toast strong {
  font-size: 15px;
  line-height: 1.4;
}

.subscription-toast span {
  color: #d4d4d8;
  font-size: 13px;
  line-height: 1.5;
}

.site-footer__navigation {
  position: absolute;
  top: 270.513px;
  left: 359.291px;
  width: 1201.417px;
  height: 281.358px;
}

.footer-brand {
  position: absolute;
  top: 0;
  left: 0;
  width: 334.224px;
  height: 281.358px;
}

.footer-brand__heading {
  display: flex;
  height: 33.422px;
  align-items: center;
  gap: 8.356px;
}

.footer-brand__heading > span {
  position: relative;
  display: grid;
  width: 33.422px;
  height: 33.422px;
  place-items: center;
  border-radius: 8px;
  background: #1b84f5;
}

.footer-brand__heading img {
  width: 20.436px;
  height: 13.369px;
}

.footer-brand__heading h2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.445;
}

.footer-brand__description {
  position: absolute;
  top: 54.311px;
  left: 0;
  color: #d4d4d8;
  font-size: 14px;
  line-height: 1.571;
  letter-spacing: 0.203px;
}

.footer-brand__proof {
  position: absolute;
  top: 149.758px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 8.356px;
  margin: 0;
  padding: 0;
  color: #a1a1aa;
  font-size: 12px;
  line-height: 1.334;
  letter-spacing: 0.302px;
  list-style: none;
}

.footer-brand__proof li::before {
  display: inline-block;
  width: 6.267px;
  height: 6.267px;
  margin-right: 8.356px;
  border-radius: 4px;
  background: #289eff;
  content: "";
  vertical-align: 1px;
}

.footer-brand__youtube {
  position: absolute;
  top: 243.758px;
  left: 0;
  display: grid;
  width: 37.6px;
  height: 37.6px;
  place-items: center;
  border: 0.571px solid #3f3f46;
  border-radius: 8px;
  background: #27272a;
  color: #d4d4d8;
  font-size: 13px;
}

.footer-link-column {
  position: absolute;
  top: 0;
  display: flex;
  width: 167.112px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.429;
  letter-spacing: 0.203px;
}

.footer-link-column h2 {
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.footer-link-column a,
.footer-link-column span {
  color: #a1a1aa;
}

.footer-link-column--products { left: 384.358px; }
.footer-link-column--features { left: 601.604px; }
.footer-link-column--resources { left: 818.85px; }
.footer-link-column--support { left: 1036.096px; }

.site-footer__legal {
  position: absolute;
  top: 618.716px;
  left: 359.291px;
  display: flex;
  width: 1201.417px;
  height: 69.134px;
  align-items: center;
  justify-content: space-between;
  border-top: 0.571px solid #27272a;
  color: #a1a1aa;
  font-size: 13px;
  line-height: 1.385;
  letter-spacing: 0.252px;
}

.site-footer__legal nav {
  display: flex;
  gap: 25.067px;
}

@media (max-width: 1280px) {
  :root {
    --page-gutter: 40px;
    --gnb-height: 88px;
    --hero-height: 100vh;
  }

  .gnb__item {
    padding-inline: 28px;
  }

  .gnb__brand {
    width: 185px;
  }

  .gnb__brand img {
    width: 128px;
    height: auto;
  }

  .gnb__about {
    width: 130px;
  }

  .gnb__product {
    width: 330px;
  }

  .gnb__about,
  .gnb__product {
    font-size: 22px;
  }

  .gnb__cta {
    font-size: 34px;
  }

  .hero {
    min-height: 620px;
    padding-bottom: 76px;
  }

  .hero h1 {
    margin-bottom: 54px;
    font-size: clamp(64px, 7vw, 96px);
  }

  .hero__message {
    flex-basis: 58%;
    font-size: clamp(30px, 3vw, 42px);
  }

  .hero__details {
    flex-basis: 35%;
    font-size: 22px;
  }

  .workflow-impact {
    height: 56.25vw;
    min-height: 600px;
  }

  .workflow-impact__stage {
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(0.6667);
  }

  .scannable-data {
    height: 720px;
  }

  .scannable-data__stage {
    transform: translateX(-50%) scale(0.6667);
  }

  .multiscan-steps {
    height: 720px;
  }

  .multiscan-steps__stage {
    transform: translateX(-50%) scale(0.6667);
  }

  .comparison-section {
    height: 720px;
  }

  .comparison-section__stage {
    transform: translateX(-50%) scale(0.6667);
  }

  .shelf-order-section {
    height: 720px;
  }

  .shelf-order-section__stage {
    transform: translateX(-50%) scale(0.6667);
  }

  .shelf-order-section__fade {
    width: calc(100vw / var(--content-zoom));
  }

  .shelf-order-section__fade--wide {
    height: 64px;
  }

  .shelf-order-section__fade--deep {
    height: 44.67px;
  }

  .library-workflows {
    height: 720px;
  }

  .library-workflows__stage {
    transform: translateX(-50%) scale(0.6667);
  }

  .deployment-partners {
    height: 720px;
  }

  .deployment-partners__stage {
    transform: translateX(-50%) scale(0.6667);
  }

  .site-footer {
    height: 477.383px;
  }

  .site-footer__stage {
    transform: translateX(-50%) scale(0.6667);
  }
}

@media (max-width: 800px) {
  :root {
    --page-gutter: 22px;
    --gnb-height: 72px;
  }

  .gnb__brand {
    width: 134px;
    padding-inline: 22px;
  }

  .gnb__brand img {
    width: 90px;
  }

  .gnb__about,
  .gnb__product {
    display: none;
  }

  .gnb__cta {
    padding-inline: 22px;
    font-size: 25px;
  }

  .gnb__cta-link span:last-child {
    font-size: 25px;
  }

  .hero {
    min-height: 650px;
    padding-bottom: 96px;
  }

  .hero h1 {
    margin-bottom: 42px;
    font-size: clamp(48px, 14vw, 76px);
    line-height: 0.98;
    letter-spacing: -2px;
    white-space: normal;
  }

  .hero__subcontent {
    display: block;
  }

  .hero__message,
  .hero__details {
    width: 100%;
  }

  .hero__message {
    font-size: 29px;
    letter-spacing: -1.3px;
  }

  .hero__details {
    margin-top: 26px;
    font-size: 17px;
    text-align: left;
  }

  .hero__controls {
    right: var(--page-gutter);
  }

  .workflow-impact {
    height: 720px;
  }

  .workflow-impact__stage {
    left: 50%;
    transform: translateX(-50%) scale(0.6667);
  }

  .partners-bar__track {
    animation-duration: 28s;
  }

  .scannable-data {
    height: 486px;
  }

  .scannable-data__stage {
    transform: translateX(-50%) scale(0.45);
  }

  .multiscan-steps {
    height: 486px;
  }

  .multiscan-steps__stage {
    transform: translateX(-50%) scale(0.45);
  }

  .comparison-section {
    height: 486px;
  }

  .comparison-section__stage {
    transform: translateX(-50%) scale(0.45);
  }

  .shelf-order-section {
    height: 486px;
  }

  .shelf-order-section__stage {
    transform: translateX(-50%) scale(0.45);
  }

  .shelf-order-section__fade {
    width: calc(100vw / var(--content-zoom));
  }

  .shelf-order-section__fade--wide {
    height: 43.2px;
  }

  .shelf-order-section__fade--deep {
    height: 30.15px;
  }

  .library-workflows {
    height: 486px;
  }

  .library-workflows__stage {
    transform: translateX(-50%) scale(0.45);
  }

  .deployment-partners {
    height: 486px;
  }

  .deployment-partners__stage {
    transform: translateX(-50%) scale(0.45);
  }

  .site-footer {
    height: 322.233px;
  }

  .site-footer__stage {
    transform: translateX(-50%) scale(0.45);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .partners-bar__track {
    animation: none;
  }

  .reveal-ready .scroll-reveal {
    opacity: 1;
    translate: none;
    filter: none;
  }
}
