:root {
  --cream: #fbf3d5;
  --cream-strong: #fff6cf;
  --ink: #090909;
  --soft-ink: #302c25;
  --muted: #6f695e;
  --paper: #fffef8;
  --orange: #ff914d;
  --orange-deep: #f66f1f;
  --yellow: #ffd21a;
  --green: #65c878;
  --blue: #1c355a;
  --red: #c82331;
  --cyan: #30cce9;
  --shadow-hard: 9px 9px 0 var(--ink);
  --shadow-soft: 0 24px 55px rgba(35, 27, 10, 0.16);
  --radius: 8px;
  color-scheme: light;
  font-family: "Outfit", Arial, sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(135deg, rgba(255, 210, 26, 0.13) 0 12%, transparent 12% 100%),
    radial-gradient(circle at 18% 7%, rgba(255, 145, 77, 0.1), transparent 26rem),
    var(--cream);
  color: var(--ink);
  font-family: "Outfit", Arial, sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.shell {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link,
.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;
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  border: 2px solid var(--ink);
  background: var(--paper);
  white-space: normal;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-block: 18px;
  background: rgba(251, 243, 213, 0.88);
  backdrop-filter: blur(16px);
  transition: box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  box-shadow: 0 16px 35px rgba(30, 25, 12, 0.1);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  transform: rotate(-1deg);
}

.brand img {
  width: clamp(126px, 13vw, 168px);
  height: auto;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.55));
}

.nav__links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
}

.nav__links a {
  position: relative;
  font-size: 0.98rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 180ms ease, background 180ms ease;
}

.nav__links a:hover::after,
.nav__links a:focus-visible::after {
  transform: scaleX(1);
  background: var(--orange-deep);
}

.nav__links a[aria-current="page"]::after {
  transform: scaleX(1);
  background: var(--orange-deep);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
  cursor: pointer;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button--primary {
  background: var(--orange);
  box-shadow: 7px 7px 0 var(--ink);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #ffa261;
  transform: translate(-3px, -3px);
  box-shadow: 11px 11px 0 var(--ink);
}

.button--primary:active {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--ink);
}

.button--quiet {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  padding-inline: 6px;
}

.button--quiet:hover,
.button--quiet:focus-visible {
  color: var(--orange-deep);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: clamp(36px, 5vw, 76px);
  min-height: auto;
  padding: clamp(44px, 7vw, 72px) 0 clamp(54px, 8vw, 84px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 690px;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 6.6vw, 5.15rem);
  line-height: 0.9;
  letter-spacing: 0;
  font-weight: 900;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4.8vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: 0;
  font-weight: 900;
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 2.1vw, 1.95rem);
  line-height: 1;
  font-weight: 900;
}

.marker {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.marker::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.07em;
  right: -0.07em;
  bottom: 0.03em;
  height: 0.42em;
  background: var(--yellow);
  transform: rotate(-2deg) skewX(-8deg);
  border-radius: 2px;
}

.marker--small::before {
  bottom: 0;
  height: 0.48em;
}

.hero__lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--soft-ink);
  font-size: clamp(1.05rem, 1.75vw, 1.24rem);
  line-height: 1.22;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.hero__visual {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  perspective: 900px;
  touch-action: pan-y;
}

.float-card {
  width: min(100%, 420px);
  transform-style: preserve-3d;
  transform-origin: center;
  transition: transform 120ms ease-out;
  will-change: transform;
  animation: cardFloat 5s ease-in-out infinite;
}

.float-card.is-tilting {
  animation: none;
}

.benefit-card {
  position: relative;
  aspect-ratio: 1.62;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(9, 9, 9, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 254, 248, 0.96)),
    var(--paper);
  box-shadow: 0 26px 45px rgba(38, 31, 16, 0.25);
  transform: rotate(-2.4deg);
  transition: transform 160ms ease;
}

.benefit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 22%, rgba(255, 255, 255, 0.72) 35%, transparent 48%);
  transform: translateX(-120%);
  animation: shine 4.8s ease-in-out infinite 1.4s;
  pointer-events: none;
}

.benefit-card__top,
.benefit-card__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.benefit-card__top {
  display: block;
  min-height: 132px;
  padding: 20px 28px 2px;
}

.benefit-card__brand {
  width: min(64%, 232px);
  height: auto;
  margin: 0 auto;
  transform: rotate(-1deg);
}

.chip {
  position: absolute;
  left: 30px;
  top: 82px;
  width: 48px;
  height: 36px;
  border: 1px solid #8f9088;
  border-radius: 7px;
  background:
    linear-gradient(90deg, transparent 47%, rgba(95, 95, 88, 0.45) 47% 52%, transparent 52%),
    linear-gradient(0deg, transparent 47%, rgba(95, 95, 88, 0.45) 47% 52%, transparent 52%),
    linear-gradient(135deg, #c9c9c1, #eeeeea 45%, #aaa9a1);
}

.benefit-card__number {
  position: relative;
  z-index: 1;
  margin: -10px 28px 0;
  color: var(--ink);
  font-size: clamp(1.42rem, 3vw, 1.66rem);
  font-weight: 900;
  letter-spacing: 0.035em;
  line-height: 1;
}

.benefit-card__bottom {
  align-items: end;
  margin-top: -7px;
  padding: 5px 20px 16px 28px;
  font-size: 0.82rem;
  font-weight: 800;
}

.benefit-card__identity {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.benefit-card__identity span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.benefit-card__identity small {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.benefit-card__identity strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1;
  white-space: nowrap;
}

.elo-badge {
  display: grid;
  place-items: center;
  width: 68px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #000;
}

.elo-badge img {
  width: 64%;
  filter: saturate(1.18);
}

.acceptance-card {
  position: absolute;
  right: 4%;
  bottom: 9%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: min(330px, 84vw);
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
  font-size: clamp(0.82rem, 1.5vw, 0.95rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  will-change: transform;
  transform: rotate(3deg);
  transition: transform 120ms ease-out, box-shadow 120ms ease-out;
  animation: popFloat 4.5s ease-in-out infinite;
}

.acceptance-card.is-tilting {
  animation: none;
  box-shadow: 8px 8px 0 var(--ink);
}

.acceptance-card .material-symbols-outlined {
  color: var(--green);
  font-variation-settings: "FILL" 1;
}

.benefits {
  position: relative;
  padding: clamp(40px, 6vw, 62px);
  border-radius: 28px 28px 0 0;
  background: rgba(255, 254, 248, 0.98);
  box-shadow: var(--shadow-soft);
}

.section-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--soft-ink);
  font-size: 1.15rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 38px;
}

.feature-card,
.store-card,
.steps article {
  border: 1px solid rgba(9, 9, 9, 0.08);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 28px rgba(18, 16, 12, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.feature-card {
  min-height: 248px;
  padding: 28px;
}

.feature-card:hover,
.store-card:hover,
.steps article:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 34px rgba(18, 16, 12, 0.17);
}

.feature-card__icon {
  display: grid;
  place-items: center;
  width: 72px;
  aspect-ratio: 1;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--ink);
}

.feature-card__icon--elo {
  background: #000;
}

.feature-card__icon--elo img {
  width: 62%;
}

.feature-card__icon--green {
  background: var(--green);
}

.feature-card__icon--yellow {
  background: var(--yellow);
}

.feature-card__icon .material-symbols-outlined {
  font-size: 2.4rem;
  font-variation-settings: "FILL" 0;
}

.feature-card p,
.store-card p,
.steps p,
.payment-demo p,
.split-section p,
.app-section p,
.cta-band p {
  color: var(--soft-ink);
  font-size: 1.05rem;
}

.payment-demo {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  padding: clamp(72px, 10vw, 116px) 0;
}

.payment-demo__copy {
  max-width: 560px;
}

.payment-demo__copy h2 {
  max-width: 620px;
}

.payment-demo__copy p {
  margin-bottom: 24px;
}

.payment-demo__points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.payment-demo__points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
}

.payment-demo__points i {
  color: var(--orange-deep);
  font-style: normal;
}

.payment-demo__stage {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
  overflow: visible;
}

.wallet-phone {
  position: absolute;
  z-index: 3;
  left: 4%;
  top: 10%;
  width: min(42%, 250px);
  min-width: 220px;
  aspect-ratio: 0.54;
  padding: 14px;
  border: 3px solid var(--ink);
  border-radius: 38px;
  background: linear-gradient(145deg, #222, #060606);
  box-shadow: 0 28px 46px rgba(38, 31, 16, 0.28);
  transform: rotate(-9deg);
  animation: walletPhoneApproach 4.8s ease-in-out infinite;
}

.wallet-phone::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  pointer-events: none;
}

.wallet-phone__speaker {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 50%;
  width: 76px;
  height: 20px;
  border-radius: 999px;
  background: #050505;
  transform: translateX(-50%);
}

.wallet-phone__screen {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  height: 100%;
  overflow: hidden;
  padding: 36px 14px 16px;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 210, 26, 0.18), transparent 40%),
    linear-gradient(180deg, #fffef8, #f4edd2);
}

.wallet-phone__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.wallet-phone__status i {
  font-size: 1rem;
  font-style: normal;
}

.wallet-card {
  align-self: center;
  width: 100%;
  aspect-ratio: 1.62;
  padding: 12px 13px 11px;
  border: 1px solid rgba(9, 9, 9, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 254, 248, 0.98)),
    var(--paper);
  box-shadow: 0 14px 22px rgba(38, 31, 16, 0.16);
  transform: rotate(-2deg);
}

.wallet-card__brand {
  width: 64%;
  margin: 0 auto 5px;
  transform: rotate(-1deg);
}

.wallet-card__chip {
  display: block;
  width: 28px;
  height: 22px;
  margin-bottom: 5px;
  border: 1px solid #8f9088;
  border-radius: 5px;
  background:
    linear-gradient(90deg, transparent 47%, rgba(95, 95, 88, 0.45) 47% 52%, transparent 52%),
    linear-gradient(0deg, transparent 47%, rgba(95, 95, 88, 0.45) 47% 52%, transparent 52%),
    linear-gradient(135deg, #c9c9c1, #eeeeea 45%, #aaa9a1);
}

.wallet-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: clamp(0.74rem, 1.45vw, 0.92rem);
  letter-spacing: 0.02em;
  line-height: 1;
}

.wallet-card__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 8px;
  color: var(--ink);
  font-size: 0.54rem;
  font-weight: 900;
  line-height: 1;
}

.wallet-card__footer span {
  display: grid;
  gap: 3px;
}

.wallet-card__footer small {
  color: var(--muted);
  font-size: 0.38rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wallet-card__footer img {
  width: 34px;
  aspect-ratio: 1;
  padding: 5px;
  border-radius: 50%;
  background: #000;
}

.wallet-phone__hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 9px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
}

.wallet-phone__hint .material-symbols-outlined {
  font-size: 1.1rem;
}

.payment-terminal {
  position: absolute;
  z-index: 2;
  right: 7%;
  top: 15%;
  width: min(36%, 220px);
  min-width: 178px;
  height: 316px;
  padding: 18px;
  border: 3px solid var(--ink);
  border-radius: 24px;
  background: linear-gradient(145deg, #262626, #0d0d0d);
  box-shadow: 12px 16px 0 rgba(9, 9, 9, 0.18);
  transform: rotate(5deg);
}

.payment-terminal::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  pointer-events: none;
}

.terminal-screen {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  height: 104px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: #eaffef;
  color: #145321;
  text-align: center;
  animation: terminalGlow 4.8s ease-in-out infinite;
}

.terminal-screen__state {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  padding: 10px;
}

.terminal-screen__state--ready {
  animation: terminalReadyState 4.8s ease-in-out infinite;
}

.terminal-screen__state--ready strong {
  font-size: 1.25rem;
}

.terminal-screen__state--approved {
  opacity: 0;
  transform: translateY(12px) scale(0.94);
  animation: terminalApprovedState 4.8s ease-in-out infinite;
}

.terminal-screen .material-symbols-outlined {
  font-size: 2rem;
  font-variation-settings: "FILL" 1;
}

.terminal-screen strong {
  color: #145321;
  font-size: 1.05rem;
  line-height: 1;
}

.terminal-screen small {
  color: #1d6530;
  font-size: 0.72rem;
  font-weight: 800;
}

.terminal-contactless {
  display: grid;
  place-items: center;
  margin: 16px auto 14px;
  width: 54px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
}

.terminal-keypad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.terminal-keypad span {
  height: 18px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.72);
}

.tap-waves {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 43%;
  width: 96px;
  height: 96px;
  pointer-events: none;
}

.tap-waves span {
  position: absolute;
  inset: 0;
  border: 3px solid rgba(246, 111, 31, 0.78);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(35deg) scale(0.35);
  opacity: 0;
  animation: tapWave 1.8s ease-out infinite;
}

.tap-waves span:nth-child(2) {
  animation-delay: 0.25s;
}

.tap-waves span:nth-child(3) {
  animation-delay: 0.5s;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(330px, 1.15fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(70px, 10vw, 122px) 0;
}

.split-section__copy p {
  max-width: 560px;
  margin-bottom: 28px;
}

.steps {
  display: grid;
  gap: 16px;
}

.steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
  padding: 24px;
}

.steps span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 54px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  font-weight: 900;
}

.network {
  background: var(--ink);
  color: var(--paper);
}

.network__inner {
  padding: clamp(64px, 8vw, 96px) 0;
}

.network .eyebrow {
  color: var(--yellow);
}

.network h2,
.network p {
  color: var(--paper);
}

.store-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.store-card {
  padding: 24px;
  color: var(--ink);
}

.store-card .material-symbols-outlined {
  display: grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  font-size: 2rem;
}

.app-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
  padding: clamp(72px, 10vw, 126px) 0;
}

.phone-panel {
  display: grid;
  place-items: center;
}

.phone {
  width: min(100%, 330px);
  min-height: 584px;
  padding: 22px;
  border: 10px solid var(--ink);
  border-radius: 36px;
  background: #f7f6ef;
  box-shadow: var(--shadow-hard);
}

.phone__header,
.phone__actions,
.phone__list p {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone__header {
  font-family: "Caveat Brush", cursive;
  color: var(--red);
  font-size: 2rem;
}

.phone__logo {
  width: 154px;
  height: auto;
}

.elo-mini {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #000;
}

.elo-mini img {
  width: 62%;
}

.phone__balance {
  margin: 28px 0 18px;
  padding: 22px;
  border-radius: 18px;
  background: var(--ink);
  color: var(--paper);
}

.phone__balance span,
.phone__list span {
  color: rgba(255, 254, 248, 0.68);
  font-size: 0.88rem;
}

.phone__balance strong {
  display: block;
  margin-top: 8px;
  font-size: 2.6rem;
  line-height: 1;
}

.phone__actions {
  gap: 8px;
  margin-bottom: 18px;
}

.phone__actions span {
  flex: 1;
  padding: 10px 8px;
  border-radius: 999px;
  background: var(--yellow);
  font-size: 0.8rem;
  font-weight: 900;
  text-align: center;
}

.phone__list {
  display: grid;
  gap: 12px;
}

.phone__list p {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(9, 9, 9, 0.12);
}

.phone__list span {
  color: var(--muted);
  font-weight: 800;
}

.app-section__copy {
  max-width: 620px;
}

.app-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.app-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.app-list i {
  color: var(--green);
  font-style: normal;
  font-variation-settings: "FILL" 1;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding: clamp(58px, 8vw, 96px) 0 clamp(52px, 8vw, 90px);
}

.page-hero h1 {
  max-width: 780px;
}

.page-hero__lead {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--soft-ink);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.28;
}

.page-hero__panel,
.insight-card,
.metric-card,
.faq-list details,
.contact-card,
.contact-form {
  border: 1px solid rgba(9, 9, 9, 0.1);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 34px rgba(18, 16, 12, 0.12);
}

.page-hero__panel {
  padding: clamp(24px, 4vw, 34px);
  transform: rotate(1.5deg);
}

.page-hero__panel h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
}

.panel-list,
.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.panel-list li,
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--soft-ink);
  font-weight: 700;
}

.panel-list .material-symbols-outlined,
.check-list .material-symbols-outlined {
  flex: 0 0 auto;
  color: var(--green);
  font-variation-settings: "FILL" 1;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.metric-card {
  padding: 22px;
}

.metric-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.metric-card span {
  color: var(--muted);
  font-weight: 800;
}

.page-section {
  padding: clamp(64px, 9vw, 112px) 0;
}

.page-section--tight {
  padding-top: 0;
}

.page-section--dark {
  background: var(--ink);
  color: var(--paper);
}

.page-section--dark .eyebrow {
  color: var(--yellow);
}

.page-section--dark h2,
.page-section--dark p {
  color: var(--paper);
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

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

.insight-card {
  padding: 28px;
}

.insight-card .material-symbols-outlined {
  display: grid;
  place-items: center;
  width: 56px;
  aspect-ratio: 1;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 2rem;
}

.insight-card p {
  color: var(--soft-ink);
}

.page-section--dark .insight-card {
  background: #fffef8;
  color: var(--ink);
}

.page-section--dark .insight-card p {
  color: var(--soft-ink);
}

.copy-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.copy-split p {
  color: var(--soft-ink);
  font-size: 1.1rem;
}

.process-list {
  display: grid;
  gap: 14px;
  counter-reset: process;
}

.process-list article {
  position: relative;
  padding: 24px 24px 24px 86px;
  border: 1px solid rgba(9, 9, 9, 0.1);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 26px rgba(18, 16, 12, 0.1);
}

.process-list article::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  position: absolute;
  left: 22px;
  top: 24px;
  display: grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 900;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--soft-ink);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: start;
  padding: clamp(50px, 8vw, 86px) 0;
}

.contact-card,
.contact-form {
  padding: clamp(24px, 4vw, 34px);
}

.contact-card a {
  display: block;
  width: fit-content;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--soft-ink);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 2px solid rgba(9, 9, 9, 0.18);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.contact-form textarea {
  min-height: 136px;
  padding-block: 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(255, 210, 26, 0.75);
  border-color: var(--ink);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 64px;
  padding: clamp(32px, 5vw, 46px);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--yellow);
  box-shadow: var(--shadow-hard);
}

.cta-band h2 {
  max-width: 660px;
  margin-bottom: 8px;
}

.cta-band p {
  margin-bottom: 0;
  font-weight: 700;
}

.footer {
  background: #101416;
  color: var(--paper);
  padding: 48px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 36px;
}

.brand--footer {
  align-self: start;
}

.brand--footer img {
  width: clamp(150px, 18vw, 220px);
}

.footer h2 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.footer a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: rgba(255, 254, 248, 0.82);
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--orange);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 254, 248, 0.62);
  font-size: 0.92rem;
}

.lead-modal {
  width: min(92vw, 520px);
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-hard);
}

.lead-modal::backdrop {
  background: rgba(9, 9, 9, 0.46);
  backdrop-filter: blur(5px);
}

.lead-form {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 32px;
}

.lead-form h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 8vw, 3.2rem);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--soft-ink);
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  min-height: 48px;
  width: 100%;
  border: 2px solid rgba(9, 9, 9, 0.18);
  border-radius: var(--radius);
  background: #fff;
  padding: 0 13px;
  color: var(--ink);
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 3px solid rgba(255, 210, 26, 0.75);
  border-color: var(--ink);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  cursor: pointer;
}

.form-success {
  display: none;
  margin: 0;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(101, 200, 120, 0.22);
  color: #145321;
  font-weight: 800;
}

.form-success.is-visible {
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.reveal--delay {
  transition-delay: 120ms;
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

@keyframes popFloat {
  0%,
  100% {
    transform: translateY(0) rotate(3deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

@keyframes walletPhoneApproach {
  0%,
  100% {
    transform: translate3d(-10px, 10px, 0) rotate(-9deg);
  }
  48% {
    transform: translate3d(52px, -8px, 0) rotate(-4deg) scale(1.02);
  }
  62% {
    transform: translate3d(52px, -8px, 0) rotate(-4deg) scale(1.02);
  }
}

@keyframes tapWave {
  0% {
    opacity: 0;
    transform: rotate(35deg) scale(0.3);
  }
  32% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(35deg) scale(1);
  }
}

@keyframes terminalGlow {
  0%,
  38%,
  100% {
    box-shadow: inset 0 0 0 rgba(101, 200, 120, 0);
  }
  52%,
  68% {
    box-shadow: inset 0 0 22px rgba(101, 200, 120, 0.36);
  }
}

@keyframes terminalReadyState {
  0%,
  42%,
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  48%,
  78% {
    opacity: 0;
    transform: translateY(-10px) scale(0.96);
  }
}

@keyframes terminalApprovedState {
  0%,
  50%,
  100% {
    opacity: 0;
    transform: translateY(12px) scale(0.94);
  }
  56%,
  72% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes shine {
  0%,
  35% {
    transform: translateX(-120%);
  }
  55%,
  100% {
    transform: translateX(120%);
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 980px) {
  .nav {
    display: flex;
    justify-content: space-between;
    gap: 18px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav__cta {
    display: none;
  }

  .nav__links {
    position: absolute;
    top: calc(100% + 2px);
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow-hard);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .nav__links a {
    padding: 14px 10px;
    white-space: normal;
  }

  .nav__links a::after {
    display: none;
  }

  .hero,
  .split-section,
  .app-section,
  .payment-demo,
  .page-hero,
  .copy-split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .hero__visual {
    min-height: 360px;
  }

  .benefit-grid,
  .store-row,
  .metric-grid,
  .page-grid,
  .page-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-demo {
    padding-top: 84px;
  }

  .payment-demo__stage {
    min-height: 430px;
  }

  .wallet-phone {
    left: 6%;
    top: 7%;
    width: 230px;
    min-width: 210px;
  }

  .payment-terminal {
    right: 10%;
    top: 9%;
    width: 190px;
    height: 292px;
  }

  .tap-waves {
    left: 49%;
    top: 41%;
  }

  .page-hero__panel {
    transform: none;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    padding-block: 12px;
  }

  .brand img {
    width: 138px;
  }

  h1 {
    font-size: clamp(2.8rem, 13.6vw, 3.55rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
  }

  .benefit-grid,
  .store-row,
  .metric-grid,
  .page-grid,
  .page-grid--two {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero__visual {
    min-height: 315px;
  }

  .float-card {
    width: min(100%, 320px);
  }

  .benefit-card__top {
    min-height: 112px;
    padding: 16px 18px 2px;
  }

  .benefit-card__brand {
    width: min(66%, 190px);
  }

  .chip {
    left: 20px;
    top: 74px;
    width: 38px;
    height: 30px;
  }

  .benefit-card__number {
    margin: -4px 18px 0;
    font-size: 1.12rem;
    letter-spacing: 0.02em;
  }

  .benefit-card__bottom {
    gap: 12px;
    margin-top: -5px;
    padding: 5px 14px 10px 18px;
  }

  .benefit-card__identity {
    gap: 5px;
  }

  .benefit-card__identity small {
    font-size: 0.54rem;
  }

  .benefit-card__identity strong {
    font-size: 0.78rem;
  }

  .elo-badge {
    width: 54px;
  }

  .acceptance-card {
    right: 0;
    bottom: 0;
    padding: 10px 11px;
    font-size: 0.78rem;
  }

  .benefits {
    padding: 34px 18px;
    border-radius: 22px 22px 0 0;
  }

  .feature-card {
    min-height: auto;
  }

  .payment-demo {
    padding: 58px 0 70px;
  }

  .payment-demo__points span {
    width: 100%;
  }

  .payment-demo__stage {
    min-height: 420px;
  }

  .wallet-phone {
    left: 0;
    top: 13%;
    width: 176px;
    min-width: 176px;
    padding: 10px;
    border-radius: 30px;
  }

  .wallet-phone__speaker {
    top: 10px;
    width: 56px;
    height: 15px;
  }

  .wallet-phone__screen {
    gap: 8px;
    padding: 28px 10px 12px;
    border-radius: 22px;
  }

  .wallet-phone__status {
    font-size: 0.7rem;
  }

  .wallet-card {
    padding: 9px 9px 8px;
  }

  .wallet-card__brand {
    width: 62%;
    margin-bottom: 4px;
  }

  .wallet-card__chip {
    width: 22px;
    height: 17px;
    margin-bottom: 4px;
  }

  .wallet-card strong {
    margin-bottom: 5px;
    font-size: 0.64rem;
    letter-spacing: 0.01em;
  }

  .wallet-card__footer {
    font-size: 0.44rem;
  }

  .wallet-card__footer small {
    font-size: 0.3rem;
  }

  .wallet-card__footer img {
    width: 28px;
    padding: 4px;
  }

  .wallet-phone__hint {
    padding: 7px 8px;
    font-size: 0.62rem;
  }

  .payment-terminal {
    right: 0;
    top: 5%;
    width: 150px;
    min-width: 150px;
    height: 246px;
    padding: 14px;
    border-radius: 20px;
  }

  .terminal-screen {
    height: 82px;
  }

  .terminal-screen strong {
    font-size: 0.88rem;
  }

  .terminal-screen small {
    font-size: 0.62rem;
  }

  .terminal-contactless {
    width: 44px;
    margin-block: 12px;
  }

  .terminal-keypad {
    gap: 6px;
  }

  .terminal-keypad span {
    height: 14px;
  }

  .tap-waves {
    left: 41%;
    top: 43%;
    width: 72px;
    height: 72px;
  }

  .steps article {
    grid-template-columns: 1fr;
  }

  .steps span {
    margin-bottom: 16px;
  }

  .process-list article {
    padding: 22px;
  }

  .process-list article::before {
    position: static;
    margin-bottom: 16px;
  }

  .phone {
    min-height: 540px;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .footer__grid,
  .footer__bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .lead-form {
    padding: 28px 18px;
  }
}

@media (max-width: 540px) {
  .shell {
    width: min(360px, calc(100% - 28px));
  }

  .hero__content {
    max-width: 360px;
  }

  .hero__lead {
    max-width: 352px;
  }

  .menu-toggle {
    margin-right: 8px;
  }
}
