/* Steps panel — Figma 3139:29968 / 3139:34070 (527px cards) */
.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;
}

/* Step 1 — Figma 3139:34095: phone mock left / top (justify-start) */
[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;
}

/* Step 3 — Figma 3139:34125: 492px kiosk visual */
[data-step-visual][data-step-visual="3"] .steps-panel__hero-image {
  max-width: min(100%, 492px);
}

.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(300px, 52vw);
    inset: auto;
    position: relative;
    z-index: 1;
  }

  .steps-panel__hero-image {
    height: 100%;
    max-height: min(300px, 52vw);
    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);
    overflow-x: visible;
    overflow-y: auto;
    padding: 0;
    padding-bottom: 0;
    position: absolute;
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    width: min(394px, 44%);
  }

  .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 — Figma 3139:30202 */
.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-weight: 700;
  line-height: 1.2;
  max-width: 22rem;
}

.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.875rem;
  font-weight: 500;
  gap: 0.5rem;
}

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

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

.bridge-checklist--inline {
  flex-direction: column;
  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 {
  padding-top: 2rem;
}

/* 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.75rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
  position: absolute;
  white-space: nowrap;
  z-index: 3;
}

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

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

.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 (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%;
    position: absolute;
    top: 9%;
  }

  .bridge-chip--dark {
    right: 18%;
    top: 54%;
  }

  .bridge-chip--gradient {
    right: 22%;
    top: 61%;
  }
}

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

/* Unified commerce — stacked scroll cards (Figma 3139:30415 / 3139:30877) */
.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: var(--font-sans, "Plus Jakarta Sans", system-ui, sans-serif);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.06;
}

.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;
  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;
  }
}

/* Why FacePe Wins — featured comparison card (Figma 3139:30594) */
.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;
  }
}
