.steps-panel__visual-bg {
  background-color: #f9f6ff;
  pointer-events: none;
}

.steps-panel__visual-grid {
  opacity: 0.4;
}

.steps-panel__hero-wrap {
  align-items: flex-end;
  display: flex;
  inset: 0;
  justify-content: center;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.steps-panel__hero-image {
  display: block;
  height: 100%;
  max-height: 100%;
  max-width: min(100%, 395px);
  object-fit: contain;
  object-position: bottom center;
  width: auto;
}

[data-step-visual][data-step-align="start"] .steps-panel__hero-wrap {
  align-items: flex-start;
  justify-content: flex-start;
}

[data-step-visual][data-step-align="start"] .steps-panel__hero-image {
  height: 100%;
  max-width: min(100%, 526px);
  object-fit: cover;
  object-position: left top;
  width: auto;
}

[data-step-visual][data-step-visual="3"] .steps-panel__hero-image {
  max-width: min(100%, 492px);
  transform: scale(1.325);
  object-position: top;
}

.steps-panel__visual-bg::after {
  background: linear-gradient(
    155deg,
    rgb(245 240 255 / 0.35) 0%,
    rgb(249 246 255 / 0.2) 45%,
    rgb(254 254 255 / 0.1) 100%
  );
  content: "";
  inset: 0;
  position: absolute;
}

.steps-panel__content {
  gap: 2rem;
  padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
}

@media (max-width: 1023px) {
  [data-steps-panel] {
    display: flex;
    flex-direction: column;
    max-height: none;
    overflow: hidden;
  }

  .steps-panel__visual {
    border-radius: 36px 36px 0 0;
    flex: 0 0 auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 0;
  }

  .steps-panel__hero-wrap {
    height: min(260px, 48vw);
    inset: auto;
    position: relative;
    z-index: 1;
  }

  .steps-panel__hero-image {
    height: 100%;
    max-height: min(260px, 48vw);
    width: auto;
  }

  .steps-panel__content {
    border-radius: 0 0 36px 36px;
    flex: 0 0 auto;
    overflow: visible;
    position: relative;
    z-index: 2;
  }
}

@media (min-width: 640px) {
  .steps-panel__content {
    gap: 2.5rem;
  }
}

.steps-panel__content [data-step-list] ul {
  max-width: 334px;
}

@media (min-width: 1024px) {
  .steps-panel__content {
    /* bottom: auto;
    gap: 2.5rem;
    left: 48px; */
    /* max-height: calc(100% - 48px); */
    gap: 2rem;
    overflow-x: visible;
    overflow-y: auto;
    padding-block: 2.5rem;
    padding-left: 3rem;
    /* padding: 0;
    padding-bottom: 0; */
    /* position: absolute;
    right: auto;
    top: 0; */
    /* transform: translateY(-50%); */
    width: 45%;
  }

  .steps-panel__content--wide {
    width: min(481px, 48%);
  }

  .steps-panel__visual {
    height: 100%;
    left: auto;
    margin-top: 0;
    min-height: 0;
    right: 0;
    top: 0;
    width: min(620px, 50%);
  }
}

.steps-panel__content,
.steps-panel__visual {
  transition: opacity 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-steps-panel].is-step-transitioning .steps-panel__content,
[data-steps-panel].is-step-transitioning .steps-panel__visual {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .steps-panel__content,
  .steps-panel__visual {
    transition: none;
  }
}

@keyframes logo-marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.logo-marquee__track {
  animation: logo-marquee-scroll 36s linear infinite;
  will-change: transform;
}

.logo-marquee:hover .logo-marquee__track,
.logo-marquee:focus-within .logo-marquee__track {
  animation-play-state: paused;
}

.logo-marquee.is-paused .logo-marquee__track {
  animation-play-state: paused;
}

/* FAQ accordion — smooth expand/collapse via grid row transition */
[data-faq-accordion] .faq-accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-faq-accordion] details[open] .faq-accordion__panel {
  grid-template-rows: 1fr;
}

[data-faq-accordion] .faq-accordion__inner {
  min-height: 0;
  overflow: hidden;
}

[data-faq-accordion] .faq-accordion__inner > * {
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity 300ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-faq-accordion] details[open] .faq-accordion__inner > * {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-faq-accordion] .faq-accordion__panel,
  [data-faq-accordion] .faq-accordion__inner > * {
    transition: none;
  }

  [data-faq-accordion] .faq-accordion__inner > * {
    opacity: 1;
    transform: none;
  }
}

/* Bridge section  */
.bridge {
  overflow-x: clip;
}

.bridge__header {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bridge__title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1875;
  color: #0f1117;
}

@media (min-width: 640px) {
  .bridge__title {
    font-size: 2.125rem;
    line-height: 1.2;
  }
}

@media (min-width: 768px) {
  .bridge__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .bridge__title {
    font-size: 2.5rem;
    letter-spacing: -0.06rem;
    line-height: 1.15;
  }
}

@media (min-width: 1280px) {
  .bridge__title {
    font-size: 2.75rem;
    letter-spacing: -0.0825rem;
  }
}

.bridge__subtitle {
  color: #1e1e1e;
  font-size: 1rem;
  line-height: 1.75rem;
  margin-top: 0.75rem;
}

.bridge__cta-path {
  align-items: center;
  background: #fff;
  border: 1px solid #e2e4eb;
  border-radius: 999px;
  color: #0f1117;
  display: inline-flex;
  font-size: 0.9375rem;
  font-weight: 700;
  gap: 0.75rem;
  height: 46px;
  justify-content: center;
  padding: 0 15px;
  text-decoration: none;
  transition: background 150ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.bridge__cta-path:hover {
  background: #f5f0ff;
}

.bridge__cta-path:focus-visible {
  outline: 2px solid #5f15ee;
  outline-offset: 2px;
}

.bridge__stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.bridge__row {
  display: grid;
  gap: 1.25rem;
  width: 100%;
}

.bridge__row > * {
  min-width: 0;
}

.bridge__row--split,
.bridge__row--equal {
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 640px) {
  .bridge__header {
    flex-direction: row;
    justify-content: space-between;
  }

  .bridge__cta-path {
    width: auto;
  }

  .bridge__subtitle {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .bridge__stack {
    gap: 1.5rem;
    margin-top: 3.75rem;
  }

  .bridge__row--split {
    grid-template-columns: minmax(0, 67.35fr) minmax(0, 32.65fr);
  }

  .bridge__row--equal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Cards */
.bridge-card {
  border-radius: 1.25rem;
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.bridge-card--pay {
  background: linear-gradient(155.53deg, #5b21ff 22.36%, #dfd0ff 110.33%);
  border: 1px solid #e6e8f2;
  border-radius: 20px;
}

.bridge-card--security,
.bridge-card--face,
.bridge-card--verify {
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 24px;
}

.bridge-card__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: inherit;
}

.bridge-card__stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: inherit;
  padding: 1.25rem;
}

.bridge-card__main {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1.25rem;
  position: relative;
  z-index: 2;
}

.bridge-card--security .bridge-card__main,
.bridge-card--security .bridge-card__footer {
  padding-left: 0;
  padding-right: 0;
}

/* .bridge-card--security .bridge-card__stack {
  padding: 1.25rem 1.4375rem 1.5rem;
} */

.bridge-card__heading {
  color: #212427;
  font-size: clamp(1.625rem, 2.5vw, 2rem);
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  max-width: 22rem;
}

@media (min-width: 1024px) {
  .bridge-card__heading {
    font-size: 2rem;
    line-height: 2.6rem;
  }
}

.bridge-card__heading--light {
  color: #fff;
  max-width: 16.5rem;
}

.bridge-card__lede {
  color: #1e1e1e;
  font-size: 1rem;
  line-height: 1.25rem;
  margin-top: 0.75rem;
}

.bridge-card__lede--light {
  color: rgb(255 255 255 / 0.95);
  font-weight: 500;
}

.bridge-card__eyebrow {
  color: #004dff;
  font-family: "TT Firs Neue", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  margin-top: 1.25rem;
}

.bridge-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.bridge-card__footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
  z-index: 2;
}

.bridge-btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 700;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  transition:
    filter 150ms ease,
    background 150ms ease;
  white-space: nowrap;
}

.bridge-btn--dark {
  background: #000;
  color: #fafcff;
}

.bridge-btn--dark:hover {
  background: #0f1117;
}

.bridge-btn--light {
  background: #fff;
  color: #2d2d2d;
}

.bridge-btn--primary {
  background: linear-gradient(90deg, #9c6cfe 0%, #5000ea 98%);
  border: 0.5px solid #fff;
  color: #fafcff;
  box-shadow:
    0 10px 7.5px rgb(0 0 0 / 0.1),
    0 4px 3px rgb(0 0 0 / 0.1);
}

.bridge-btn--outline {
  background: #fff;
  border: 1px solid #d6d6d6;
  color: #2d2d2d;
}

.bridge-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bridge-checklist li {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  font-weight: 500;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .bridge-checklist li {
    font-size: 0.875rem;
  }
}

.bridge-checklist--light li {
  color: #fff;
}

.bridge-checklist--light i {
  color: #fff;
}

.bridge-checklist--inline {
  flex-direction: row;
  gap: 0.75rem;
}

.bridge-checklist--wrap {
  color: #424242;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.bridge-tag {
  background: #fafafa;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  color: #5a2bf0;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  padding: 0.75rem 1rem;
  text-align: center;
}

.bridge-card__visual {
  align-items: flex-end;
  display: flex;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}

.bridge-card__visual img {
  display: block;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.bridge-card__visual--phones {
  justify-content: flex-end;
  margin-top: -1rem;
  padding: 0 0.5rem 0.5rem;
}

.bridge-card__visual--phones img {
  max-height: 280px;
  width: auto;
}

.bridge-card__visual--diagram {
  flex: 1;
  min-height: 160px;
  padding: 0.5rem 0;
}

.bridge-card__visual--diagram img {
  max-height: 200px;
  width: auto;
}

.bridge-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
}

.bridge-steps li {
  align-items: flex-start;
  display: flex;
  gap: 0.5rem;
}

.bridge-steps__num {
  align-items: center;
  background: #f0ebff;
  border-radius: 999px;
  color: #5a2bf0;
  display: flex;
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 500;
  height: 2.5rem;
  justify-content: center;
  width: 2.5rem;
}

.bridge-steps__title {
  color: #2d2d2d;
  font-size: 1.125rem;
  font-weight: 500;
}

.bridge-steps__desc {
  color: #1e1e1e;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-top: 0.375rem;
}

/* Pay card layout */
.bridge-card--pay .bridge-card__grid {
  min-height: 420px;
}

.bridge-card--pay .bridge-card__main {
  flex: 1;
}

.bridge-card--pay .bridge-checklist--pay {
  margin-top: 1.25rem;
  padding-top: 0;
}

@media (min-width: 1024px) {
  .bridge-card--pay .bridge-checklist--pay {
    margin-top: 1.5rem;
  }
}

/* Security card */
.bridge-card--security {
  min-height: 420px;
}

.bridge-card--security .bridge-card__stack {
  min-height: 420px;
}

/* Face card */
.bridge-card--face {
  min-height: 520px;
}

.bridge-card--face .bridge-card__grid--face {
  min-height: 520px;
}

.bridge-card__visual--kiosk {
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 0.5rem;
}

.bridge-card__visual--kiosk img {
  max-height: 240px;
}

/* Verify card */
.bridge-card--verify {
  display: flex;
  flex-direction: column;
  min-height: 560px;
}

.bridge-card__visual--hero {
  flex: 1;
  min-height: 240px;
  position: relative;
}

.bridge-card__blob {
  height: auto;
  opacity: 0.55;
  position: absolute;
  right: -15%;
  top: -12%;
  width: min(70%, 280px);
}

.bridge-card__photo {
  height: auto;
  left: 50%;
  max-height: 100%;
  object-fit: cover;
  object-position: top center;
  position: relative;
  transform: translateX(-50%);
  width: min(100%, 420px);
  z-index: 1;
}

.bridge-chip {
  border-radius: 12px;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  position: absolute;
  white-space: nowrap;
  z-index: 20;
}

.bridge-chip--dark {
  background: #121212;
  border: 1px solid #e4e4e4;
  color: #fff;
  right: 10%;
  top: 70%;
  transform: rotate(1.35deg);
}

.bridge-chip--gradient {
  background: linear-gradient(90deg, #9c6cfe 0%, #5000ea 98%);
  border: 0.5px solid #fff;
  color: #fff;
  top: 87%;
  right: 10%;
  transform: rotate(-3.85deg);
}

.bridge-card__kiosk-visual .bridge-chip {
  z-index: 30;
}

.bridge-card__main--overlay {
  background: linear-gradient(180deg, rgb(255 255 255 / 0) 0%, #fff 28%);
  margin-top: auto;
  padding: 1.25rem;
  position: relative;
  z-index: 4;
}

@media (min-width: 640px) {
  .bridge-card--pay .bridge-card__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 42%);
    min-height: 484px;
  }

  .bridge-card--pay .bridge-card__visual--phones {
    align-self: end;
    margin-top: 0;
    padding: 0;
  }

  .bridge-card__visual--phones img {
    max-height: 100%;
    max-width: 100%;
  }

  .bridge-checklist--inline {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .bridge-checklist--wrap {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}

@media (max-width: 430px) {
  .bridge-card__visual.bridge-card__visual--phones {
    padding-bottom: 0;
  }

  .bridge-card__visual.bridge-card__visual--kiosk {
    justify-content: flex-end;
    padding: 0;
  }
  .bridge-card__visual.bridge-card__visual--kiosk img {
    position: relative;
    left: 15%;
  }
  .bridge__cta-path {
    display: inline-flex;
    width: fit-content;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .bridge-card__visual.bridge-card__visual--kiosk img,
  .bridge-card__visual.bridge-card__visual--hero .bridge-chip--dark,
  .bridge-card__visual.bridge-card__visual--hero .bridge-chip--gradient {
    display: none;
  }
  .bridge-card--face .bridge-card__grid--face {
    display: block;
  }

  .bridge-card--face,
  .bridge-card--face .bridge-card__grid--face,
  .bridge-card--verify {
    min-height: unset !important;
  }
}

@media (min-width: 490px) and (max-width: 830px) {
  .bridge__row.bridge__row--equal {
    grid-template-columns: auto auto;
  }
  .bridge-card__actions {
    align-items: center;
    justify-content: center;
  }
  .bridge-checklist--inline {
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .bridge-card,
  .bridge-card--pay .bridge-card__grid,
  .bridge-card--security .bridge-card__stack {
    min-height: 484px;
  }

  .bridge-card--face,
  .bridge-card--face .bridge-card__grid--face,
  .bridge-card--verify {
    min-height: 648px;
  }

  .bridge-card--pay .bridge-card__grid {
    grid-template-columns: minmax(0, 58%) minmax(0, 42%);
  }

  .bridge-card--face .bridge-card__grid--face {
    grid-template-columns: minmax(0, 58%) minmax(0, 42%);
  }

  .bridge-card--face .bridge-card__main {
    padding: 1.4375rem;
  }

  .bridge-card__visual--kiosk {
    align-self: end;
    height: 100%;
    padding: 0;
  }

  .bridge-card__visual--kiosk img {
    max-height: 54%;
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .bridge-card--verify .bridge-card__main--overlay {
    background: transparent;
    padding: 0 3.3125rem 3.3125rem;
  }

  .bridge-card__photo {
    /* max-height: 54%; */
    width: 100%;
    position: absolute;
    top: 9%;
  }
  .bridge-card__main.bridge-card__main--overlay {
    margin-top: 2.75rem;
  }

  .bridge-chip--dark {
    font-size: 0.75rem;
    top: 72%;
    /* right: 20%; */
    transform: rotate(6deg);
    padding: 0.75rem 1.25rem;
  }

  .bridge-chip--gradient {
    font-size: 0.75rem;
    top: 88%;
    right: 10%;
    transform: rotate(-6deg);
    padding: 0.75rem 1.25rem;
  }
}

/* @media (max-width: 639px) {
  .bridge-chip {
    display: none;
  }
} */

/* Unified commerce  */
.unified-commerce__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .unified-commerce__header {
    align-items: flex-end;
    flex-direction: row;
    justify-content: space-between;
  }
}

.unified-commerce__scroll {
  --commerce-card-count: 4;
  --commerce-scroll-segment: 70vh;
  /*height: calc(var(--commerce-card-count) * var(--commerce-scroll-segment)); */
  margin-top: 2rem;
  position: relative;
}

@media (min-width: 1024px) {
  .unified-commerce__scroll {
    margin-top: 2.5rem;
  }
}

.unified-commerce__stage {
  height: clamp(520px, calc(100vh - 8.5rem), 720px);
  position: sticky;
  top: 6.25rem;
}

.unified-commerce__cards {
  height: 100%;
  position: relative;
  width: 100%;
}

.commerce-card {
  display: flex;
  flex-direction: column;
  inset: 0;
  position: absolute;
  transform-origin: top center;
  transition:
    opacity 450ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 550ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.commerce-card:nth-child(1) {
  z-index: 1;
}

.commerce-card:nth-child(2) {
  z-index: 2;
}

.commerce-card:nth-child(3) {
  z-index: 3;
}

.commerce-card:nth-child(4) {
  z-index: 4;
}

.commerce-card[data-state="past"] {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.9) translateY(-8%);
}

.commerce-card[data-state="active"] {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.commerce-card[data-state="upcoming"] {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96) translateY(4%);
}

.commerce-card__layers {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.commerce-card__layer {
  border: 1px solid #eae7ff;
  position: absolute;
}

.commerce-card__layer--3 {
  background: #c7b1fe;
  border-radius: 46px;
  height: calc(100% - 0.5rem);
  left: 10%;
  top: 0;
  width: 80%;
}

.commerce-card__layer--2 {
  background: #dfd3ff;
  border-radius: 36px;
  height: calc(100% - 2rem);
  left: 5%;
  top: 2rem;
  width: 90%;
}

.commerce-card__layer--1 {
  display: none;
}

.commerce-card__surface {
  background: linear-gradient(180deg, #faf8ff 78.62%, #f2edff 100%);
  border: 1px solid #eae7ff;
  border-radius: 30px;
  box-shadow:
    0 4px 14px rgba(36, 26, 120, 0.06),
    0 1px 2px rgba(15, 18, 32, 0.04);
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  padding: clamp(1.25rem, 2.5vw, 3.125rem);
  position: relative;
  z-index: 1;
}

.commerce-card__body {
  align-items: center;
  display: grid;
  flex: 1;
  gap: clamp(1.5rem, 3vw, 5.5rem);
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
}

@media (min-width: 1024px) {
  .commerce-card__body {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 46%);
  }
}

.commerce-card__copy {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  min-width: 0;
}

.commerce-card__head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.commerce-card__title {
  color: #0f1220;
  font-family: Satoshi, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.commerce-card__lede {
  color: #5a6485;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 32rem;
}

.commerce-card__eyebrow {
  color: #5a6485;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.commerce-card__features {
  display: flex;
  flex-direction: column;
  gap: 1.0625rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.commerce-card__features li {
  align-items: flex-start;
  display: flex;
  gap: 1.125rem;
}

.commerce-card__check {
  color: #5f15ee;
  flex-shrink: 0;
  height: 1.125rem;
  width: 1.125rem;
}

.commerce-card__feature-title {
  color: #0f1220;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.45;
}

.commerce-card__feature-desc {
  color: #5a6485;
  font-size: 0.875rem;
  line-height: 1.55;
  margin-top: 0.25rem;
}

.commerce-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.commerce-card__btn {
  align-items: center;
  border-radius: 12px;
  display: inline-flex;
  font-family: var(--font-sans, "Plus Jakarta Sans", system-ui, sans-serif);
  font-size: 0.9375rem;
  font-weight: 600;
  justify-content: center;
  line-height: 1.45;
  padding: 0.75rem 1.3125rem;
  text-decoration: none;
  transition:
    background 150ms ease,
    color 150ms ease,
    box-shadow 150ms ease;
  white-space: nowrap;
}

.commerce-card__btn--dark {
  background: #0f1220;
  color: #fff;
}

.commerce-card__btn--dark:hover {
  background: #212325;
}

.commerce-card__btn--light {
  background: #fff;
  border: 1px solid #e6e8f2;
  box-shadow: 0 1px 1px rgba(15, 18, 32, 0.04);
  color: #0f1220;
}

.commerce-card__btn--light:hover {
  background: #f9f6ff;
}

.commerce-card__btn:focus-visible {
  outline: 2px solid #5f15ee;
  outline-offset: 2px;
}

.commerce-card__visual {
  min-height: 220px;
  min-width: 0;
  position: relative;
  width: 100%;
}

.commerce-card__image {
  border-radius: 12px;
  display: block;
  height: 100%;
  max-height: 386px;
  object-fit: cover;
  object-position: top;
  width: 100%;
}

.commerce-card__badge {
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.5rem 0.75rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.commerce-card__receipt {
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  bottom: 1rem;
  display: flex;
  justify-content: space-between;
  left: 1rem;
  padding: 0.875rem 1rem;
  position: absolute;
  right: 1rem;
}

.commerce-card__receipt-label {
  color: rgba(255, 255, 255, 0.6);
  font-family: ui-monospace, monospace;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.commerce-card__receipt-label--dark {
  color: rgba(34, 34, 34, 0.6);
}

.commerce-card__receipt-value {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 0.25rem;
}

.commerce-card__receipt-value--dark {
  color: #222;
}

@media (max-width: 1023px) {
  .unified-commerce__cta {
    width: 100%;
  }

  .unified-commerce__scroll {
    --commerce-scroll-segment: auto;
    height: auto;
  }

  .unified-commerce__stage {
    height: auto;
    position: relative;
    top: auto;
  }

  .unified-commerce__cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: auto;
  }

  .commerce-card {
    opacity: 1 !important;
    pointer-events: auto;
    position: relative;
    transform: none !important;
  }

  .commerce-card__layers {
    display: none;
  }

  .commerce-card__surface {
    min-height: 0;
  }
}

@media (max-width: 430px) {
  .unified-commerce__cta {
    width: fit-content;
  }
}

/* Comparison / product cards — shared shell */
.comparison-card {
  border-radius: 32px;
  border: 1px solid #e2e4eb;
  background: #fff;
  padding: 12px;
  box-shadow:
    0 1px 1px rgba(15, 17, 23, 0.04),
    0 1px 1.5px rgba(15, 17, 23, 0.06);
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

@media (min-width: 768px) {
  .comparison-card {
    padding: 1.5rem;
  }
}

.comparison-card__inner {
  border-radius: 28px;
  padding: 24px;
  background: #fff;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.comparison-cards {
  gap: 20px;
}

.comparison-cards .comparison-card {
  padding: 20px;
  transition:
    padding 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 768px) {
  .comparison-cards .comparison-card {
    padding: 28px;
  }
}

.comparison-cards .comparison-card__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition:
    padding 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.comparison-cards .comparison-card__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comparison-cards .comparison-card__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  border-radius: 9999px;
  background: #f0f0f0;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f1117;
  transition:
    background 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 768px) {
  .comparison-cards .comparison-card__pill {
    font-size: 10px;
  }
}

.comparison-cards .comparison-card__pill--brand {
  border-radius: 9999px;
  background: #f0ebff;
  color: #5f15ee;
  font-weight: 500;
}

@media (hover: hover) and (pointer: fine) {
  .comparison-card:hover {
    padding: 12px;
    border-color: #ededed;
    background: linear-gradient(
      170.51deg,
      #5f15ee 5.77%,
      #c8aeff 46.18%,
      #fff 140.81%
    );
    box-shadow: none;
  }

  .comparison-card:hover .comparison-card__inner {
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(-1.54deg, #fff 6.08%, #d6c2ff 348.09%);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
  }

  .comparison-cards .comparison-card:hover {
    padding: 12px;
    border-color: #ededed;
    background: linear-gradient(
      170.51deg,
      #5f15ee 5.77%,
      #c8aeff 46.18%,
      #fff 140.81%
    );
    box-shadow:
      0 12px 28px rgba(95, 21, 238, 0.14),
      0 4px 12px rgba(15, 17, 23, 0.06);
    transform: translateY(-3px);
  }

  .comparison-cards .comparison-card:hover .comparison-card__inner {
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(-1.54deg, #fff 6.08%, #d6c2ff 348.09%);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
  }
}

.comparison-cards .comparison-card:active,
.comparison-cards .comparison-card:focus-within {
  padding: 12px;
  border-color: #ededed;
  background: linear-gradient(
    170.51deg,
    #5f15ee 5.77%,
    #c8aeff 46.18%,
    #fff 140.81%
  );
  box-shadow:
    0 8px 20px rgba(95, 21, 238, 0.12),
    0 2px 8px rgba(15, 17, 23, 0.05);
  transform: translateY(-1px);
}

.comparison-cards .comparison-card:active .comparison-card__inner,
.comparison-cards .comparison-card:focus-within .comparison-card__inner {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(-1.54deg, #fff 6.08%, #d6c2ff 348.09%);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
}

.comparison-card:active,
.comparison-card:focus-within {
  padding: 12px;
  border-color: #ededed;
  background: linear-gradient(
    170.51deg,
    #5f15ee 5.77%,
    #c8aeff 46.18%,
    #fff 140.81%
  );
  box-shadow: none;
}

.comparison-card:active .comparison-card__inner,
.comparison-card:focus-within .comparison-card__inner {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(-1.54deg, #fff 6.08%, #d6c2ff 348.09%);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
}

@media (prefers-reduced-motion: reduce) {
  .comparison-cards .comparison-card,
  .comparison-cards .comparison-card__inner,
  .comparison-cards .comparison-card__pill {
    transition-duration: 0.01ms;
  }

  .comparison-cards .comparison-card:hover,
  .comparison-cards .comparison-card:active,
  .comparison-cards .comparison-card:focus-within {
    transform: none;
  }
}

.products-grid-cards .comparison-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.products-grid-cards .comparison-card__inner {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 100%;
}

/* Why FacePe Wins  */
.why-wins-card--featured {
  background: linear-gradient(161.17deg, #5f15ee 14.76%, #dfd0ff 98.32%);
}

@media (prefers-reduced-motion: reduce) {
  .unified-commerce__scroll {
    --commerce-scroll-segment: auto;
    height: auto;
  }

  .unified-commerce__stage {
    height: auto;
    position: relative;
    top: auto;
  }

  .unified-commerce__cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: auto;
  }

  .commerce-card {
    opacity: 1 !important;
    pointer-events: auto;
    position: relative;
    transform: none !important;
    transition: none;
  }

  .commerce-card__layers {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee__viewport {
    overflow: visible;
  }

  .logo-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    will-change: auto;
  }

  .logo-marquee__set[aria-hidden="true"] {
    display: none;
  }

  .logo-marquee__set {
    justify-content: center;
    gap: 2rem;
  }
}

/* —— About Us page (Figma 3139:33763 desktop / 3110:16170 mobile) —— */
.about-section {
  padding-block: 30px;
}

@media (min-width: 768px) {
  .about-section {
    padding-block: 60px;
  }
}

.about-accent {
  color: #5f15ee;
}

.about-accent--violet {
  color: #5b21ff;
}

.about-eyebrow {
  margin: 0;
  text-transform: uppercase;
}

.about-eyebrow--display {
  font-family: "TT Firs Neue", var(--font-display, inherit), sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.32px;
  line-height: 16px;
  color: #5f15ee;
}

.about-eyebrow--mono {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.12px;
  line-height: 21px;
  color: #5b21ff;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid #ddd0ff;
  border-radius: 101px;
  background: #f0ebff;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  color: #2d2d2d;
  white-space: nowrap;
}

.about-pill--square {
  border-radius: 12px;
}

/* Hero */
.about-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.about-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 777px;
  text-align: center;
}

.about-hero__headline-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.about-hero__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  color: #2d2d2d;
}

.about-hero__lead {
  margin: 0;
  max-width: 562px;
  font-size: 16px;
  line-height: normal;
  color: #000;
}

.about-hero__tags {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.about-hero__tags-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.about-hero__image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 818 / 508;
  overflow: hidden;
  border: 0.554px dashed rgba(95, 21, 238, 0.25);
  border-radius: 12px;
}

.about-hero__image-bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(
      140.34deg,
      rgba(95, 21, 238, 0.035) 0%,
      rgba(95, 21, 238, 0.035) 1.56%,
      rgba(95, 21, 238, 0) 1.56%,
      rgba(95, 21, 238, 0) 3.13%
    ),
    linear-gradient(180deg, #f6f3ff 0%, #ede8ff 100%);
}

.about-hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .about-hero__inner {
    gap: 64px;
  }

  .about-hero__copy {
    gap: 24px;
  }

  .about-hero__headline-group {
    gap: 20px;
  }

  .about-hero__title {
    font-size: 44px;
  }

  .about-hero__lead {
    font-size: 18px;
  }

  .about-hero__tags {
    flex-direction: row;
    gap: 20px;
  }

  .about-hero__tags-row--second {
    display: contents;
  }

  .about-hero__image-frame {
    border-width: 1.927px;
    border-radius: 34.682px;
  }
}

/* Story */
.about-story__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-story__intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-story__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  color: #2d2d2d;
}

.about-story__body {
  margin: 0;
  font-size: 16px;
  line-height: normal;
  color: #2d2d2d;
}

.about-timeline {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-timeline__rail {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-direction: column;
  align-items: center;
  width: 40px;
}

.about-timeline__step {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d4d8dd;
  border-radius: 9999px;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #171717;
  cursor: pointer;
}

.about-timeline__step--active {
  border: none;
  background: linear-gradient(180deg, #9c6cfe 0%, #5000ea 98%);
  color: #fff;
}

.about-timeline__line {
  width: 3px;
  flex: 1;
  min-height: 2.5rem;
  background: #e4e4e7;
  border-radius: 9999px;
}

.about-timeline__line--active {
  background: linear-gradient(180deg, #9c6cfe 0%, #5000ea 98%);
}

.about-timeline__cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-timeline__card {
  border-radius: 20px;
  padding: 12px;
  background: #fbfbfb;
  transition: background 0.2s ease;
}

.about-timeline__card--active {
  padding: 12px;
  background: linear-gradient(
    171deg,
    #5f15ee 5.77%,
    #c8aeff 66.26%,
    #fff 140.81%
  );
}

.about-timeline__card-inner {
  border-radius: 20px;
  transition:
    background 0.2s ease,
    padding 0.2s ease;
}

.about-timeline__card--active .about-timeline__card-inner {
  background: #f8f6ff;
  padding: 12px;
}

.about-timeline__year {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  color: #2d2d2d;
}

.about-timeline__card--active .about-timeline__year {
  color: #5f15ee;
}

.about-timeline__text {
  margin: 0;
  font-size: 12px;
  line-height: normal;
  color: #2d2d2d;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .about-timeline__cards {
    max-width: 520px;
    width: 100%;
    margin-inline: auto;
    align-items: stretch;
  }

  .about-timeline {
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .about-story__grid {
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
  }

  .about-story__intro {
    flex: 0 0 420px;
    max-width: 420px;
  }

  .about-story__title {
    font-size: 36px;
  }

  .about-story__body {
    font-size: 24px;
  }

  .about-timeline {
    flex-direction: row;
    gap: 20px;
    flex: 1;
    min-width: 0;
  }

  .about-timeline__rail {
    display: flex;
  }

  .about-timeline__cards {
    gap: 22px;
    flex: 1;
  }

  .about-timeline__card {
    padding: 24px;
  }

  .about-timeline__card--active {
    padding: 20px;
  }

  .about-timeline__card--active .about-timeline__card-inner {
    padding: 24px;
  }

  .about-timeline__year {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .about-timeline__text {
    font-size: 20px;
  }
}

/* Platform */
.about-platform {
  padding-block: 20px;
}

@media (min-width: 1024px) {
  .about-platform {
    padding-block: 80px;
  }
}

.about-platform__header {
  max-width: 770px;
  margin-inline: auto;
  text-align: center;
}

.about-platform__title {
  margin: 12px 0 0;
  font-size: 34px;
  font-weight: 700;
  line-height: normal;
  color: #2d2d2d;
}

.about-platform__lead {
  margin: 16px auto 0;
  max-width: 456px;
  font-size: 16px;
  line-height: normal;
  color: #000;
}

.about-platform__stack {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-platform__card {
  border: 1px solid #ddd0ff;
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
}

.about-platform__card--hardware {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 19px;
  min-height: 546px;
}

.about-platform__card-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-platform__card-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #212427;
}

.about-platform__card-body {
  margin: 0;
  font-size: 12px;
  line-height: normal;
  color: #1e1e1e;
}

.about-platform__tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}

.about-platform__visual--hardware {
  position: relative;
  margin-top: auto;
  min-height: 280px;
}

.about-platform__visual--hardware img {
  display: block;
  width: 100%;
  max-width: 240px;
  margin-inline: auto;
  object-fit: contain;
}

.about-platform__chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 0.604px solid #e6e6e6;
  border-radius: 42px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 17, 23, 0.06);
}

.about-platform__chip-title {
  display: block;
  font-size: 8.5px;
  font-weight: 700;
  color: #0f1117;
}

.about-platform__chip-meta {
  display: block;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 7.25px;
  letter-spacing: 0.48px;
  color: #5e6472;
}

.about-platform__chip-icon {
  display: flex;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
}

.about-platform__chip-icon img {
  width: 8.5px;
  height: 8.5px;
}

.about-platform__chip-icon--purple {
  background: #f5f0ff;
}

.about-platform__chip-icon--green {
  background: rgba(143, 207, 146, 0.2);
}

.about-platform__chip-icon--amber {
  background: rgba(255, 177, 0, 0.25);
}

.about-platform__chip--receipt {
  left: 13px;
  top: 12%;
}

.about-platform__chip--liveness {
  right: 0;
  top: 42%;
}

.about-platform__chip--paid {
  left: 0;
  bottom: 8%;
}

.about-platform__duo {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-platform__card--layer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.about-platform__illus {
  height: 192px;
  overflow: hidden;
  border: 0.398px solid #9b6bff;
  border-radius: 11px;
}

@media (max-width: 430px) {
  .about-platform__duo article:nth-child(2) .about-platform__illus img {
    height: 100%;
  }
}

@media (min-width: 431px) and (max-width: 768px) {
  .about-platform__duo article:nth-child(2) .about-platform__illus img {
    height: 100% !important;
  }
}

.about-platform__duo article:first-child .about-platform__illus img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .about-platform__duo {
    flex-direction: row;
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .about-platform__header {
    margin-bottom: 40px;
  }

  .about-platform__title {
    font-size: 44px;
  }

  .about-platform__lead {
    font-size: 18px;
  }

  .about-platform__stack {
    margin-top: 0;
    max-width: 1152px;
    margin-inline: auto;
    gap: 24px;
  }

  .about-platform__card--hardware {
    position: relative;
    min-height: 410px;
    padding: 49px;
    flex-direction: row;
    align-items: flex-start;
  }

  .about-platform__card-copy {
    max-width: 459px;
    gap: 20px;
  }

  .about-platform__card-body {
    font-size: 16px;
  }

  .about-platform__tags {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .about-platform__visual--hardware {
    position: absolute;
    right: 49px;
    top: 37px;
    width: 396px;
    min-height: auto;
    margin: 0;
  }

  .about-platform__visual--hardware img {
    max-width: none;
    width: 100%;
    height: auto;
  }

  .about-platform__chip {
    padding: 12px;
    border-width: 1px;
    border-radius: 70px;
  }

  .about-platform__chip-title {
    font-size: 14px;
  }

  .about-platform__chip-meta {
    font-size: 12px;
    letter-spacing: 0.8px;
  }

  .about-platform__chip-icon {
    width: 28px;
    height: 28px;
  }

  .about-platform__chip-icon img {
    width: 14px;
    height: 14px;
  }

  .about-platform__chip--receipt {
    left: 0;
    top: 7%;
  }

  .about-platform__chip--liveness {
    right: 4px;
    top: 57%;
  }

  .about-platform__chip--paid {
    left: -40px;
    bottom: 8%;
  }

  .about-platform__duo {
    flex-direction: row;
    gap: 24px;
  }

  .about-platform__card--layer {
    flex: 1;
    min-height: 410px;
    padding: 23px;
    position: relative;
  }

  .about-platform__illus {
    height: 241px;
    border-radius: 14px;
    border-width: 0.5px;
    margin-bottom: 24px;
  }

  .about-platform__card--layer .about-platform__card-title,
  .about-platform__card--layer .about-platform__card-body {
    margin-top: auto;
  }
}

@media (min-width: 1024px) and (max-width: 1279.98px) {
  .about-platform__card--hardware {
    padding: 32px;
  }

  .about-platform__card-copy {
    max-width: 360px;
  }

  .about-platform__visual--hardware {
    right: 32px;
    top: 32px;
    width: 320px;
  }

  .about-platform__chip--receipt {
    left: -8px;
  }

  .about-platform__chip--paid {
    left: -32px;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .about-platform__visual--hardware {
    max-width: 420px;
    margin-inline: auto;
  }
}

/* Values */
.about-values__header {
  text-align: center;
}

.about-values__title {
  margin: 12px 0 0;
  font-size: 34px;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  color: #2d2d2d;
}

.about-values__list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.about-values__item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background: #fefefe;
}

.about-values__item img {
  flex-shrink: 0;
  border-radius: 17px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

.about-values__item span {
  font-size: 16px;
  font-weight: 700;
  color: #2d2d2d;
}

@media (min-width: 1024px) {
  .about-values__title {
    font-size: 44px;
  }

  .about-values__list {
    flex-direction: row;
    gap: 20px;
    margin-top: 40px;
  }

  .about-values__item {
    flex: 1;
    min-height: 122px;
    padding: 25px;
  }

  .about-values__item span {
    font-size: 28px;
  }
}

/* Team (mobile / tablet only) */
.about-team {
  display: block;
}

@media (min-width: 1280px) {
  .about-team {
    display: none;
  }
}

.about-team__header {
  text-align: center;
}

.about-team__title {
  margin: 12px 0 0;
  font-size: 34px;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  color: #2d2d2d;
}

.about-team__grid {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-team__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  background: #fbfaff;
  text-align: center;
}

.about-team__card img {
  width: 147px;
  height: 151px;
  border: 0.798px solid #dfdfdf;
  border-radius: 9999px;
  object-fit: cover;
  object-position: top;
}

.about-team__name {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: capitalize;
  color: #2d2d2d;
}

.about-team__role {
  margin: 0;
  font-size: 20px;
  color: #2d2d2d;
}

@media (min-width: 768px) {
  .about-team__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Careers */
.about-careers__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-careers__intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-careers__title {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  color: #2d2d2d;
}

.about-careers__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-careers__roles-title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  color: #2d2d2d;
}

.about-careers__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-careers__role {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid #f2f2f2;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  text-transform: capitalize;
  color: #2d2d2d;
  text-decoration: none;
  transition:
    border-color 150ms ease,
    background-color 150ms ease;
}

.about-careers__role:hover {
  border-color: #ddd0ff;
  background: #f5f0ff;
}

.about-careers__role img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.about-careers__cta {
  display: inline-flex;
  margin-top: 20px;
  width: 100%;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 58px;
  background: linear-gradient(90deg, #9c6cfe 0%, #5000ea 98%);
  box-shadow:
    0 10px 7.5px rgba(0, 0, 0, 0.1),
    0 4px 3px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

@media (min-width: 1024px) {
  .about-careers__grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
  }

  .about-careers__intro {
    flex: 1 1 0;
    min-width: 0;
    max-width: 416px;
    gap: 30px;
  }

  .about-careers__title {
    font-size: 36px;
  }

  .about-careers__roles {
    flex: 1 1 0;
    min-width: 0;
    max-width: 518px;
  }

  .about-careers__role {
    font-size: 16px;
  }

  .about-careers__cta {
    width: auto;
    padding-inline: 20px;
    font-size: 16px;
  }
}

@media (min-width: 1280px) {
  .about-careers__grid {
    gap: 60px;
  }

  .about-careers__intro {
    flex: 0 0 416px;
  }

  .about-careers__title {
    font-size: 44px;
  }

  .about-careers__roles {
    flex: 0 0 518px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-timeline__card,
  .about-timeline__step,
  .about-timeline__line,
  .about-careers__role {
    transition: none;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  #hero-online-section .hero-online__layout {
    align-items: center;
    flex-direction: column;
  }

  #hero-online-section .hero-online__copy {
    max-width: none;
    text-align: center;
  }

  #hero-online-section .hero-online__actions {
    justify-content: center;
  }
}

@media (min-width: 1280px) {
  #hero-online-section .hero-online__layout {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  #hero-online-section .hero-online__copy {
    flex-shrink: 0;
    max-width: 519px;
    text-align: left;
  }

  #hero-online-section .hero-online__actions {
    justify-content: flex-start;
  }
}

.hero-online-visual-wrap {
  display: flex;
  justify-content: center;
  overflow: visible;
  width: 100%;
}

@media (min-width: 1280px) {
  .hero-online-visual-wrap {
    flex: 1 1 0;
    justify-content: flex-end;
    max-width: 694px;
    min-width: 0;
  }

  .hero-online-visual {
    margin-left: auto;
    margin-right: 0;
  }
}

.hero-online-visual {
  aspect-ratio: 694 / 393;
  margin-inline: auto;
  max-width: 694px;
  position: relative;
  width: min(100%, 694px);
}

.hero-online-visual__stage {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-online-visual__media {
  align-items: center;
  display: flex;
  height: 89.6%;
  inset: 10.4% 17.9% 0 22%;
  justify-content: center;
  position: absolute;
  z-index: 10;
}

.hero-online-visual__image {
  display: block;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
  width: auto;
}

.hero-online-visual__star {
  pointer-events: none;
  position: absolute;
  z-index: 15;
}

.hero-online-visual__star--top {
  height: 8px;
  left: 42.6%;
  top: 10.4%;
  width: 8px;
}

.hero-online-visual__star--bottom {
  bottom: 22.4%;
  height: 8px;
  right: 6.9%;
  width: 8px;
}

.hero-online-chip {
  align-items: center;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgb(15 17 23 / 0.06);
  display: flex;
  gap: 6px;
  padding: 8px;
  position: absolute;
  z-index: 20;
}

.hero-online-chip__icon {
  align-items: center;
  border-radius: 9999px;
  display: flex;
  flex-shrink: 0;
  height: 20px;
  justify-content: center;
  width: 20px;
}

.hero-online-chip__icon--lilac {
  background: rgb(186 154 253 / 0.2);
}

.hero-online-chip__icon--green {
  background: rgb(143 207 146 / 0.2);
}

.hero-online-chip__icon--red {
  background: rgb(255 0 4 / 0.2);
}

.hero-online-chip__icon img {
  display: block;
  height: 10px;
  width: 10px;
}

.hero-online-chip__icon--lilac img,
.hero-online-chip__icon--red img {
  height: 10px;
  width: 10px;
}

.hero-online-chip__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.hero-online-chip__value {
  color: #0f1117;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: -0.07px;
  line-height: 1.2;
}

.hero-online-chip__label {
  color: #5e6472;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-online-chip--era {
  left: 0;
  max-width: min(240px, 92%);
  top: 68%;
}

.hero-online-chip--fraud {
  left: 8%;
  max-width: min(175px, 78%);
  top: 2%;
}

.hero-online-chip--cart {
  left: auto;
  max-width: min(190px, 78%);
  right: 0;
  top: 16%;
}

@media (min-width: 640px) {
  .hero-online-chip {
    gap: 8px;
    padding: 10px;
  }

  .hero-online-chip__icon {
    height: 24px;
    width: 24px;
  }

  .hero-online-chip__icon img {
    height: 12px;
    width: 12px;
  }

  .hero-online-chip__icon--lilac img,
  .hero-online-chip__icon--red img {
    height: 14px;
    width: 14px;
  }

  .hero-online-chip__value {
    font-size: 12px;
  }

  .hero-online-chip__label {
    font-size: 10px;
    letter-spacing: 0.65px;
  }
}

@media (min-width: 1024px) {
  .hero-online-visual__star--top {
    height: 14px;
    left: 42.6%;
    top: 10.4%;
    width: 14px;
  }

  .hero-online-visual__star--bottom {
    bottom: 22.4%;
    height: 14px;
    right: 6.9%;
    width: 14px;
  }

  .hero-online-chip {
    gap: 8px;
    padding: 12px;
  }

  .hero-online-chip__icon {
    height: 28px;
    width: 28px;
  }

  .hero-online-chip__icon img {
    height: 14px;
    width: 14px;
  }

  .hero-online-chip__icon--lilac img,
  .hero-online-chip__icon--red img {
    height: 16px;
    width: 16px;
  }

  .hero-online-chip__value {
    font-size: 14px;
    letter-spacing: -0.1px;
  }

  .hero-online-chip__label {
    font-size: 12px;
    letter-spacing: 0.8px;
  }

  .hero-online-chip--era {
    left: 0;
    top: 67.9%;
  }

  .hero-online-chip--fraud {
    left: 15.4%;
    top: 17%;
  }

  .hero-online-chip--cart {
    left: 72.5%;
    right: auto;
    top: 24%;
  }
}

/* ===== Verify hero decor (grid lines, stars, crosses, asterisks, lilac boxes) ===== */
.hero-verify-section__grid {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-tags {
    left: 20%;
  }
.verify-hero-image {
  position: relative !important;
  left: 34% !important;
}
}
@media (max-width: 639px) {
  .hero-verify-section__grid {
    display: none;
  }
}

.hero-verify-section__star {
  height: auto;
  position: absolute;
  width: clamp(9px, 1vw, 14px);
  z-index: 1;
}

.hero-verify-section__star--a {
  left: 6%;
  top: 8%;
}

.hero-verify-section__star--b {
  right: 8%;
  top: 8%;
}

.hero-verify-section__star--c {
  left: 12%;
  top: 92%;
}

.hero-verify-section__star--d {
  right: 14%;
  top: 70%;
}

.hero-verify-section__cross {
  height: 14px;
  position: absolute;
  width: 14px;
  z-index: 1;
}

.hero-verify-section__cross::before,
.hero-verify-section__cross::after {
  background: linear-gradient(90deg, #5507eb 0%, rgb(102 102 102 / 0.28) 100%);
  content: "";
  opacity: 0.4;
  position: absolute;
}

.hero-verify-section__cross::before {
  height: 1px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.hero-verify-section__cross::after {
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1px;
}

.hero-verify-section__cross--a {
  left: 4%;
  top: 46%;
}

.hero-verify-section__cross--b {
  right: 5%;
  top: 32%;
}

.hero-verify-section__cross--c {
  left: 22%;
  top: 88%;
}

.hero-verify-section__cross--d {
  right: 28%;
  top: 84%;
}

.hero-verify-section__asterisk {
  color: #c8aeff;
  font-family: "Satoshi", system-ui, sans-serif;
  font-size: clamp(14px, 1.4vw, 22px);
  font-weight: 700;
  line-height: 1;
  opacity: 0.6;
  position: absolute;
  z-index: 1;
}

.hero-verify-section__asterisk--a {
  left: 16%;
  top: 28%;
}

.hero-verify-section__asterisk--b {
  right: 18%;
  top: 52%;
}

.hero-verify-section__asterisk--c {
  left: 44%;
  top: 92%;
}

.hero-verify-section__box {
  background: #f0ebff;
  border-radius: 6px;
  position: absolute;
  z-index: 0;
}

.hero-verify-section__box--a {
  height: 28px;
  left: -14px;
  top: 38%;
  transform: rotate(-12deg);
  width: 28px;
  background: #e0d5ff;
  opacity: 0.55;
}

.hero-verify-section__box--b {
  height: 36px;
  right: 4%;
  top: 22%;
  transform: rotate(18deg);
  width: 36px;
  opacity: 0.7;
}

.hero-verify-section__box--c {
  height: 22px;
  left: 8%;
  top: 60%;
  transform: rotate(8deg);
  width: 22px;
  background: #d9c8fa;
  opacity: 0.5;
}

.hero-verify-section__box--d {
  height: 46px;
  right: -16px;
  top: 64%;
  transform: rotate(-22deg);
  width: 46px;
  background: #e0d5ff;
  opacity: 0.45;
}

@media (min-width: 640px) {
  .hero-verify-section__box--a {
    height: 36px;
    width: 36px;
  }

  .hero-verify-section__box--b {
    height: 44px;
    width: 44px;
  }
}

@media (min-width: 1280px) {
  .hero-verify-section__box--a {
    height: 44px;
    left: 2%;
    width: 44px;
  }

  .hero-verify-section__box--c {
    height: 28px;
    width: 28px;
  }
}
