@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  --page: #f9f9ff;
  --band: #f0f3ff;
  --purple: #4b2ab8;
  --purple-soft: #e6deff;
  --purple-bright: #6347d1;
  --ink: #151c27;
  --slate: #484554;
  --muted: #64748b;
  --line: rgba(201, 196, 214, 0.3);
  --line-strong: #c9c4d6;
  --white: #ffffff;
  --shadow-soft: 0 10px 30px -10px rgba(75, 42, 184, 0.15);
  --shadow-card: 0 15px 40px -12px rgba(75, 42, 184, 0.08);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin: 0;
  background: var(--band);
  color: #111827;
  display: flex;
  flex-direction: column;
  font-family: Inter, Arial, sans-serif;
  min-height: 100%;
}

main {
  display: flex;
  flex-direction: column;
  flex: 1;
}

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
}

.landing-shell {
  background: var(--page);
  min-height: 100vh;
  overflow-x: clip;
}

.site-header {
  background: #fbfaff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 18px 42px -34px rgba(15, 23, 42, 0.42);
  height: 78px;
  padding: 0 clamp(32px, 4vw, 64px);
  position: sticky;
  top: 0;
  z-index: 40;
}

.site-header-inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1400px;
  width: 100%;
}

.site-logo {
  color: var(--purple);
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(20px, 1.5vw, 24px);
  font-weight: 800;
  letter-spacing: -0.2px;
  line-height: 1;
}

.site-header nav,
.site-footer nav {
  align-items: center;
  color: #626b7a;
  display: flex;
  font-size: 15px;
  font-weight: 700;
  gap: clamp(22px, 2.5vw, 38px);
  line-height: 1.5;
}

.site-header nav a,
.site-header-login {
  position: relative;
  transition: color 180ms ease;
}

.site-header-login {
  color: #626b7a;
  font-size: 15px;
  font-weight: 700;
}

.site-header nav a::after,
.site-header-login::after {
  background: #075fd8;
  border-radius: 9999px;
  bottom: -9px;
  content: "";
  height: 2px;
  left: 50%;
  opacity: 0;
  position: absolute;
  transform: translateX(-50%) scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
  width: 18px;
}

.site-header nav a:hover,
.site-header nav a:focus-visible,
.site-header-login:hover,
.site-header-login:focus-visible {
  color: #111827;
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after,
.site-header-login:hover::after,
.site-header-login:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-header-button {
  align-items: center;
  background: linear-gradient(135deg, #4b2ab8 0%, #075fd8 100%);
  border-radius: 9999px;
  box-shadow: 0 14px 26px rgba(75, 42, 184, 0.22);
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  height: 46px;
  justify-content: center;
  letter-spacing: 0;
  padding: 0 25px;
  transition: box-shadow 180ms ease, transform 180ms ease;
  width: auto;
}

.site-header-button:hover,
.site-header-button:focus-visible {
  box-shadow: 0 18px 32px rgba(75, 42, 184, 0.28);
  transform: translateY(-1px);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu-toggle {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(75, 42, 184, 0.16);
  border-radius: 9999px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  color: var(--purple);
  cursor: pointer;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
  width: 42px;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
  background: #f8f6ff;
  border-color: rgba(75, 42, 184, 0.28);
  outline: none;
  transform: translateY(-1px);
}

.mobile-menu-panel {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow: 0 24px 54px -28px rgba(15, 23, 42, 0.48);
  display: grid;
  gap: 4px;
  opacity: 0;
  padding: 8px;
  pointer-events: none;
  position: fixed;
  right: 18px;
  top: 70px;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
  width: calc(100vw - 36px);
  z-index: 60;
}

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

.mobile-menu-panel a {
  align-items: center;
  border-radius: 10px;
  color: #172033;
  display: flex;
  font-size: 15px;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 12px 14px;
}

.mobile-menu-panel a:last-child {
  background: linear-gradient(135deg, #4b2ab8 0%, #075fd8 100%);
  color: #ffffff;
  justify-content: center;
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a:focus-visible {
  background: rgba(75, 42, 184, 0.08);
  outline: none;
}

.mobile-menu-panel a:last-child:hover,
.mobile-menu-panel a:last-child:focus-visible {
  background: linear-gradient(135deg, #5530c7 0%, #1268e4 100%);
}

.landing-hero {
  background:
    radial-gradient(circle at 88% 18%, rgba(7, 95, 216, 0.09), transparent 30%),
    radial-gradient(circle at 74% 88%, rgba(16, 185, 129, 0.08), transparent 34%),
    linear-gradient(118deg, #ffffff 0%, #ffffff 54%, #f4f9ff 100%);
  min-height: min(760px, calc(100vh - 78px));
  overflow: hidden;
  padding: clamp(26px, 3.3vw, 54px) clamp(24px, 3.2vw, 58px) clamp(36px, 4vw, 64px);
  position: relative;
}

.landing-hero::before {
  background-image: radial-gradient(circle, rgba(37, 99, 235, 0.18) 1px, transparent 1.8px);
  background-size: 15px 15px;
  content: "";
  height: 58%;
  mask-image: linear-gradient(90deg, transparent, #000 24%, transparent 92%);
  opacity: 0.48;
  pointer-events: none;
  position: absolute;
  right: -1vw;
  top: 0;
  width: min(38vw, 520px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 24%, transparent 92%);
}

.landing-hero-inner {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(560px, 0.53fr) minmax(480px, 0.47fr);
  gap: clamp(34px, 3.5vw, 66px);
  height: 100%;
  margin: 0 auto;
  max-width: 1400px;
  position: relative;
  z-index: 1;
}

.hero-left {
  align-content: start;
  display: grid;
  gap: clamp(13px, 0.9vw, 17px);
  max-width: 740px;
  min-height: 0;
  position: relative;
  z-index: 3;
}

.section-intro {
  align-items: center;
  color: var(--purple);
  display: inline-flex;
  gap: 16px;
  height: 17px;
  text-transform: uppercase;
}

.section-intro span {
  background: var(--purple);
  display: block;
  height: 1px;
  width: 48px;
}

.section-intro b {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.4px;
  line-height: 17px;
}

.hero-left h1 {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(42px, 3.05vw, 58px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0 0 clamp(4px, 0.7vw, 10px);
  color: #05070b;
}

.hero-left h1 span {
  color: #075fd8;
  display: block;
  font-size: clamp(42px, 3vw, 57px);
  margin-top: 8px;
  text-transform: uppercase;
}

.hero-left h1 .hero-headline-line {
  color: #05070b;
  font-size: clamp(42px, 3.05vw, 58px);
  margin-top: 0;
  text-transform: none;
  white-space: nowrap;
}

.scan-copy > p,
.scroll-panel > p {
  color: #6b7280;
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
}

.scroll-card-list {
  display: grid;
  gap: 12px;
  width: 512px;
}

.scroll-card-list > div {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 14px;
  height: 68px;
  padding: 12px 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.scroll-card-list > div:hover {
  border-color: rgba(99, 71, 209, 0.25);
  box-shadow: 0 6px 20px -4px rgba(99, 71, 209, 0.12);
  transform: translateX(4px);
}

.scroll-card-list span {
  align-items: center;
  background: var(--purple-soft);
  border-radius: 10px;
  color: var(--purple);
  display: inline-flex;
  flex: 0 0 auto;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.scroll-card-list strong {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 1.2;
}
.hero-wallet-badges {
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(13, 47, 92, 0.09);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(14, 36, 68, 0.08);
  display: inline-flex;
  justify-self: start;
  margin-bottom: 6px;
  min-height: 56px;
  padding: 11px 18px;
}

.wallet-badge {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #10131a;
  display: inline-flex;
  gap: 10px;
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 800;
  line-height: 1;
  padding: 0;
  white-space: nowrap;
}

.wallet-badge + .wallet-badge {
  border-left: 1px solid #d8dde7;
  margin-left: 18px;
  padding-left: 18px;
}

.wallet-brand-icon {
  display: block;
  flex: 0 0 auto;
  height: 24px;
  width: 24px;
}

.wallet-brand-icon.apple {
  fill: #05070b;
}

.wallet-brand-icon.google {
  height: 26px;
  width: 26px;
}

.hero-tag {
  align-items: center;
  background: rgba(7, 95, 216, 0.06);
  border: 1px solid rgba(7, 95, 216, 0.28);
  border-radius: 9999px;
  display: inline-flex;
  gap: 9px;
  justify-self: start;
  padding: 8px 15px;
  font-size: clamp(13px, 0.92vw, 16px);
  font-weight: 800;
  color: #15316f;
  width: fit-content;
}

.hero-tag svg {
  color: #075fd8;
}

.hero-benefits-new {
  align-self: start;
  display: grid;
  grid-template-columns: repeat(2, minmax(230px, 1fr));
  column-gap: clamp(20px, 2vw, 32px);
  row-gap: clamp(14px, 1.1vw, 18px);
  margin-top: 0;
}

.hero-benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-width: 0;
}

.hero-benefit-item.full {
  grid-column: 1;
}

.hero-benefit-icon {
  align-items: center;
  background: #075fd8;
  box-shadow: 0 12px 24px rgba(4, 93, 221, 0.22);
  border-radius: 9999px;
  color: #ffffff;
  display: flex;
  flex-shrink: 0;
  height: clamp(40px, 2.35vw, 46px);
  justify-content: center;
  width: clamp(40px, 2.35vw, 46px);
}

.hero-benefit-text strong {
  display: block;
  font-size: clamp(16px, 1vw, 19px);
  font-weight: 800;
  color: #10131a;
  line-height: 1.12;
  margin-bottom: 8px;
}

.hero-benefit-text strong span {
  display: inline;
}

.hero-benefit-text p {
  font-size: clamp(14px, 0.9vw, 17px);
  color: #3f4653;
  line-height: 1.45;
  margin: 0;
}

.hero-description {
  color: #2e3746;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.55;
  margin: 0;
  max-width: 680px;
}

.hero-cta-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 2.5vw, 36px);
  margin-top: clamp(2px, 0.5vw, 8px);
}

.hero-cta-btn {
  align-items: center;
  background: linear-gradient(135deg, #075fd8 0%, #1e64e8 100%);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(4, 93, 221, 0.24);
  color: #fff;
  display: inline-flex;
  font-size: 17px;
  font-weight: 800;
  gap: 20px;
  justify-content: center;
  min-height: 58px;
  min-width: 235px;
  padding: 0 28px;
  text-decoration: none;
}

.hero-social-proof {
  align-items: center;
  display: flex;
  gap: 18px;
  min-width: 248px;
}

.hero-avatars {
  display: flex;
}

.hero-avatars .avatar {
  align-items: center;
  border: 2px solid #fff;
  border-radius: 9999px;
  display: flex;
  height: 38px;
  justify-content: center;
  margin-left: -10px;
  overflow: hidden;
  width: 38px;
}

.hero-avatars .avatar:first-child {
  margin-left: 0;
}

.hero-avatars .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-social-text strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  white-space: nowrap;
}

.hero-social-text span {
  color: #3c4655;
  display: block;
  font-size: 18px;
  margin-top: 3px;
  white-space: nowrap;
}

.hero-right {
  align-items: end;
  display: grid;
  align-content: start;
  grid-template-rows: auto auto;
  gap: 0;
  min-width: 0;
  padding-top: clamp(18px, 2vw, 32px);
  position: relative;
  z-index: 1;
}

.hero-visual {
  align-items: flex-start;
  display: flex;
  grid-column: 1;
  grid-row: 1;
  justify-content: flex-end;
  height: min(620px, 66vh);
  max-width: none;
  min-height: 0;
  overflow: visible;
  width: 100%;
}

.hero-device-stage {
  height: 100%;
  max-height: 750px;
  position: relative;
  width: min(100%, 590px);
}

.hero-phone {
  height: 385px;
  position: absolute;
  right: 210px;
  top: 12px;
  transform: scale(1.28);
  transform-origin: top left;
  width: 265px;
  z-index: 1;
}

.hero-phone-frame,
.hero-watch-frame {
  pointer-events: none;
  z-index: 3;
}

.hero-phone-frame {
  object-fit: contain;
}

.hero-phone-screen {
  background: #fff;
  border: 1px solid rgba(121, 117, 133, 0.1);
  border-radius: 26px;
  inset: 0 44px;
  overflow: hidden;
  position: absolute;
  z-index: 2;
}

.hero-status-bar {
  align-items: center;
  color: #000;
  display: flex;
  font-size: 8px;
  font-weight: 700;
  height: 22px;
  justify-content: space-between;
  left: 8px;
  position: absolute;
  right: 8px;
  top: 6px;
}

.hero-status-bar > span {
  padding-left: 10px;
}

.hero-status-levels {
  align-items: center;
  display: flex;
  gap: 4px;
  padding-right: 5px;
}

.hero-signal {
  align-items: end;
  display: flex;
  gap: 1px;
  height: 7px;
}

.hero-signal i {
  background: #000;
  border-radius: 1px;
  display: block;
  width: 1.5px;
}

.hero-signal i:nth-child(1) { height: 2px; }
.hero-signal i:nth-child(2) { height: 4px; }
.hero-signal i:nth-child(3) { height: 5px; }
.hero-signal i:nth-child(4) { height: 7px; }

.hero-wifi {
  color: #000;
  fill: none;
  height: 8px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
  width: 10px;
}

.hero-battery {
  border: 1px solid rgba(0, 0, 0, 0.48);
  border-radius: 3px;
  display: block;
  height: 7px;
  position: relative;
  width: 11px;
}

.hero-battery::after {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0 2px 2px 0;
  content: "";
  height: 3px;
  position: absolute;
  right: -3px;
  top: 1px;
  width: 1px;
}

.hero-battery i {
  background: #000;
  border-radius: 2px;
  inset: 1px;
  position: absolute;
}

.hero-wallet-screen {
  display: flex;
  flex-direction: column;
  gap: 10px;
  left: 9px;
  position: absolute;
  right: 9px;
  top: 44px;
}

.hero-wallet-heading {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.hero-wallet-heading h2 {
  color: #151c27;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  line-height: 1.2;
  margin: 0;
}

.hero-wallet-heading > span {
  align-items: center;
  background: #151c27;
  border-radius: 9999px;
  color: #fff;
  display: flex;
  height: 18px;
  justify-content: center;
  width: 18px;
}

.hero-wallet-heading > span svg {
  height: 10px;
  width: 10px;
}

.hero-loyalty-card {
  background:
    radial-gradient(ellipse at 12% 120%, rgba(255, 255, 255, 0.1) 0 44%, transparent 45%),
    linear-gradient(122deg, #0f172a 0%, #1e1b4b 100%);
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  color: #fff;
  height: 106px;
  overflow: hidden;
  padding: 9px;
  position: relative;
  width: 100%;
}

.hero-loyalty-copy {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.hero-loyalty-copy strong {
  font-size: 8px;
  letter-spacing: 0.7px;
  line-height: 10px;
}

.hero-loyalty-copy span {
  font-size: 7px;
  letter-spacing: 0.6px;
  line-height: 10px;
  opacity: 0.6;
}

.hero-loyalty-logo {
  align-items: center;
  background: #fff;
  border-radius: 9999px;
  bottom: 12px;
  color: #151c27;
  display: flex;
  font-size: 8px;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  line-height: 1.15;
  position: absolute;
  right: 7px;
  text-align: center;
  width: 42px;
  z-index: 2;
}

.hero-loyalty-wave {
  background:
    radial-gradient(ellipse at 100% 100%, rgba(96, 165, 250, 0.28), transparent 54%),
    linear-gradient(165deg, transparent 44%, rgba(255, 255, 255, 0.07) 45% 58%, transparent 59%);
  inset: 0;
  opacity: 0.9;
  position: absolute;
}

.hero-success {
  align-items: center;
  color: #484554;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  padding: 6px 0 0;
}

.hero-success > span {
  align-items: center;
  border: 2px solid rgba(75, 42, 184, 0.4);
  border-radius: 9999px;
  color: #4b2ab8;
  display: flex;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.hero-success > span svg {
  height: 14px;
  width: 14px;
}

.hero-success p {
  font-size: 9px;
  line-height: 14px;
  margin: 0;
}

.hero-watch {
  bottom: 140px;
  height: 430px;
  position: absolute;
  right: 44px;
  transform: scale(0.58);
  transform-origin: bottom right;
  width: 251px;
  z-index: 4;
}

.hero-watch-frame {
  object-fit: contain;
}

.hero-watch-screen {
  background: #000;
  border-radius: 23px;
  bottom: 91px;
  left: 15.6%;
  overflow: hidden;
  position: absolute;
  right: 15.6%;
  top: 101px;
  z-index: 4;
}

.hero-loyalty-card.compact {
  border-radius: 10px;
  box-shadow: none;
  height: 138px;
  left: 1px;
  padding: 15px 16px;
  position: absolute;
  top: 20px;
  width: calc(100% - 2px);
}

.hero-loyalty-card.compact .hero-loyalty-copy strong {
  font-size: 11px;
  line-height: 15px;
}

.hero-loyalty-card.compact .hero-loyalty-copy span {
  font-size: 9px;
  line-height: 14px;
}

.hero-loyalty-card.compact .hero-loyalty-logo {
  bottom: 5px;
  font-size: 9px;
  height: 48px;
  line-height: 1.05;
  right: 5px;
  width: 48px;
}

.hero-watch-done {
  align-items: center;
  bottom: 8px;
  color: #fff;
  display: flex;
  gap: 5px;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
}

.hero-watch-done span {
  align-items: center;
  background: #fff;
  border-radius: 9999px;
  color: #151c27;
  display: flex;
  height: 12px;
  justify-content: center;
  width: 12px;
}

.hero-watch-done b {
  font-size: 12px;
  font-weight: 500;
}

.hero-wallet-overlay {
  align-self: end;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(19, 51, 91, 0.1);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(12, 36, 70, 0.14);
  display: grid;
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  margin: 0 0 124px clamp(30px, 4.5vw, 66px);
  padding: 9px 13px;
  width: 190px;
  z-index: 3;
}

.hero-wallet-overlay > div {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 34px minmax(0, 1fr);
  min-height: 50px;
}

.hero-wallet-overlay > div + div {
  border-top: 1px solid rgba(107, 114, 128, 0.25);
}

.hero-wallet-overlay img,
.hero-wallet-overlay svg {
  height: 34px;
  width: 34px;
}

.hero-wallet-overlay .hero-apple-icon img {
  transform: scale(1.12);
}

.hero-wallet-overlay span {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
  text-align: left;
}

.hero-wallet-overlay small {
  color: #596173;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.hero-wallet-overlay strong {
  color: #111318;
  font-size: 14px;
  white-space: nowrap;
}

/* Trust bar */
.hero-trust-bar {
  background: #fff;
  border: 1px solid rgba(19, 51, 91, 0.08);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(12, 36, 70, 0.1);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: min(100%, 660px);
  max-width: 660px;
  min-height: 118px;
  padding: 18px 14px 16px;
  position: relative;
  justify-self: end;
  margin-top: -95px;
  z-index: 2;
}

.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  justify-content: flex-start;
  min-width: 0;
  padding: 0 10px;
  text-align: center;
}

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 9px;
}

.trust-icon.green {
  background: #d1fae5;
  color: #059669;
}

.trust-icon.blue {
  background: #dbeafe;
  color: #2563eb;
}

.trust-icon.purple {
  background: #ede9fe;
  color: #7c3aed;
}

.trust-icon.orange {
  background: #ffedd5;
  color: #ea580c;
}

.trust-card strong {
  font-size: 12px;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 7px;
}

.trust-card strong span {
  display: inline;
}

.trust-card strong span:first-child {
  margin-right: 4px;
}

.trust-card p {
  font-size: 10.5px;
  color: #6b7280;
  line-height: 1.4;
  margin: 0;
}


.scan-section {
  background: var(--page);
  padding: 80px 60px 100px;
}

.scan-inner {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 548px 1fr;
  margin: 0 auto;
  max-width: var(--container);
  position: relative;
}

.qr-mockup {
  align-items: center;
  display: flex;
  gap: 34px;
  justify-content: center;
  position: relative;
}

.qr-glow,
.purple-orbit {
  background: rgba(75, 42, 184, 0.2);
  border-radius: 9999px;
  filter: blur(32px);
  height: 400px;
  position: absolute;
  width: 400px;
}

.qr-glow {
  left: 88px;
  top: 100px;
}

.qr-stand {
  align-items: center;
  background: #fff;
  border: 2px solid var(--purple);
  border-radius: 16px;
  box-shadow: 0 20px 40px -10px rgba(75, 42, 184, 0.18);
  display: flex;
  flex-direction: column;
  height: 368px;
  justify-content: flex-start;
  gap: 4px;
  padding-top: 16px;
  transform: rotate(-6deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  width: 266px;
  z-index: 2;
}

.qr-stand:hover {
  box-shadow: 0 28px 52px -8px rgba(75, 42, 184, 0.25);
  transform: rotate(-4deg) translateY(-4px);
}

.qr-stand small {
  color: var(--purple);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.2px;
  line-height: 18px;
  text-transform: uppercase;
}

.qr-stand strong {
  color: var(--purple);
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 31px;
  margin-bottom: 0;
  text-transform: uppercase;
}

.qr-scanner {
  align-items: center;
  border: 3px solid var(--purple);
  border-radius: 12px;
  display: flex;
  height: 154px;
  justify-content: center;
  margin-top: 40px;
  padding: 16px;
  position: relative;
  width: 154px;
}

.qr-vector {
  display: block;
  flex: none;
  height: 116px;
  image-rendering: pixelated;
  width: 116px;
}

.qr-wallets {
  align-items: center;
  background: var(--purple);
  border-radius: 0 0 12px 12px;
  display: flex;
  gap: 10px;
  height: 56px;
  justify-content: center;
  margin-top: auto;
  width: 100%;
}

.qr-wallets .wallet-download span:not(.google-letter) {
  gap: 0;
  line-height: 1;
}

.qr-wallets .wallet-download small {
  margin-bottom: -3px;
}

.wallet-download {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  gap: 7px;
  height: 32px;
  padding: 6px 11px;
  width: 116px;
}

.wallet-download.dark {
  background: #000;
  color: #fff;
}

.wallet-download.dark small {
  color: #fff;
}

.wallet-download.light {
  background: #fff;
  border: 1px solid rgba(195, 198, 215, 0.3);
  color: #191c1d;
}

.wallet-download.light small {
  color: #000;
}

.wallet-download span:not(.google-letter) {
  display: flex;
  flex-direction: column;
  font-size: 9px;
  font-weight: 700;
  gap: 8px;
  line-height: 1.1;
  transform: translateY(-2px);
}

.wallet-download small {
  font-size: 5px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: -5px;
  text-transform: uppercase;
}

.google-letter {
  color: #4285f4;
  font-size: 19px;
  font-weight: 800;
}

.mini-phone {
  height: 385px;
  position: relative;
  transform: rotate(9deg) scale(0.96);
  width: 265px;
  z-index: 2;
}

.mini-phone img {
  object-fit: contain;
  z-index: 2;
}

.mini-phone-screen {
  align-items: center;
  background: #fff;
  border-radius: 26px;
  color: var(--purple);
  display: flex;
  flex-direction: column;
  gap: 20px;
  inset: 0 44px 0;
  justify-content: flex-start;
  padding: 76px 18px 0;
  position: absolute;
  text-align: center;
  z-index: 1;
}

.mini-phone-screen strong {
  color: #3a342f;
  font-size: 12px;
  font-weight: 800;
  line-height: 15px;
  max-width: 112px;
  transform: rotate(0deg);
}

.scan-phone-pass {
  background: #4b2d26;
  border-radius: 12px;
  box-shadow: 0 12px 18px rgba(51, 24, 18, 0.12);
  color: #fff;
  padding: 11px;
  transform: rotate(0deg);
  width: 142px;
}

.scan-pass-head {
  align-items: center;
  display: flex;
  font-size: 6.4px;
  font-weight: 800;
  gap: 15px;
  justify-content: space-between;
  letter-spacing: 0.2px;
  line-height: 1.1;
  text-transform: uppercase;
}

.scan-pass-head span {
  opacity: 0.9;
}

.scan-pass-stamps {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 8px;
}

.scan-pass-stamps span {
  align-items: center;
  background: #3a211b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  height: 26px;
  justify-content: center;
}

.scan-pass-stamps span.filled {
  background: #684237;
  color: #fff;
}

.scan-pass-progress {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 99px;
  height: 5px;
  margin-top: 10px;
  overflow: hidden;
}

.scan-pass-progress span {
  background: rgba(255, 255, 255, 0.72);
  display: block;
  height: 100%;
  width: 32%;
}

.scan-check {
  align-items: center;
  border: 5px solid var(--purple);
  border-radius: 9999px;
  display: flex;
  height: 58px;
  justify-content: center;
  margin-top: 4px;
  width: 58px;
}

.scan-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 0;
}

.scan-title {
  align-items: center;
  display: flex;
  gap: 14px;
}

.scan-title span {
  align-items: center;
  background: var(--purple-soft);
  border-radius: 12px;
  color: var(--purple);
  display: flex;
  flex-shrink: 0;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.scan-title h2,
.feature-section h2,
.strategy-heading h2 {
  color: #111827;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
}

.scan-title h2 em {
  color: var(--purple);
  display: block;
  font-style: normal;
}

.scan-copy ul {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.scan-copy li {
  align-items: center;
  color: #374151;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  gap: 14px;
  line-height: 1.5;
}

.scan-copy li svg {
  background: var(--purple);
  border-radius: 9999px;
  color: #fff;
  flex-shrink: 0;
  padding: 4px;
}

.scan-copy > strong {
  align-items: center;
  background: rgba(230, 222, 255, 0.4);
  border: 1px solid rgba(75, 42, 184, 0.12);
  border-radius: 9999px;
  color: var(--purple);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  width: fit-content;
}

.feature-section {
  background: var(--band);
  height: 535px;
  padding: 80px 60px;
}

.feature-section h2 {
  margin: 0 auto 64px;
  text-align: center;
}

.feature-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: var(--container);
}

.feature-grid article {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  min-height: 272px;
  padding: 32px;
  text-align: center;
}

.feature-grid span {
  align-items: center;
  background: var(--purple-soft);
  border-radius: 16px;
  color: var(--purple);
  display: flex;
  height: 64px;
  justify-content: center;
  margin-bottom: 15px;
  width: 64px;
}

.feature-grid h3 {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 31px;
  margin: 0 0 15px;
}

.feature-grid p {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.scroll-story {
  background: var(--page);
  isolation: isolate;
  min-height: 400svh;
  overflow: visible;
  position: relative;
  z-index: 1;
}

.scroll-story-desktop {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(460px, 0.92fr) minmax(440px, 0.9fr);
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1284px;
  min-height: calc(100svh - 78px);
  overflow: visible;
  padding: 0 clamp(40px, 4.5vw, 60px);
  position: sticky;
  top: 78px;
  z-index: 1;
}

.scroll-story-panels {
  display: grid;
  min-height: min(560px, calc(100svh - 150px));
  min-width: 0;
  position: relative;
  width: 100%;
}

.scroll-panel-animated {
  align-items: center;
  display: flex;
  inset: 0;
  min-height: 0;
  padding: 0 40px 0 0;
  position: absolute;
  will-change: opacity, transform, filter;
}

.scroll-story-phone {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: min(660px, calc(100svh - 130px));
  min-width: 0;
  overflow: visible;
}

.scroll-story-mobile {
  display: none;
}

.scroll-mobile-phone-slot {
  display: none;
}

.scroll-story-inner {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 1284px;
}

.scroll-panel {
  display: grid;
  grid-template-columns: 542px 572px;
  justify-content: space-between;
  min-height: 818px;
  padding: 78px 0 0 60px;
}

.scroll-panel-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  max-width: 520px;
  width: 100%;
}

.scroll-kicker {
  align-items: center;
  color: var(--purple);
  display: flex;
  gap: 12px;
  text-transform: uppercase;
}

.scroll-kicker b {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.4px;
  line-height: 1.4;
}

.scroll-panel h2,
.scroll-panel-copy h2 {
  color: #111827;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(36px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin: 0;
}

.scroll-panel-copy > p {
  color: #4b5563;
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.6;
  margin: 0;
}

.scroll-panel-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  max-width: 520px;
  width: 100%;
}

.scroll-card-list > div {
  width: min(100%, 500px);
}

.scroll-card-list span {
  border-radius: 8px;
}

.thin-card-list {
  display: grid;
  gap: 0;
  width: min(100%, 500px);
}

.thin-card-list > div {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  gap: 14px;
  margin-bottom: 8px;
  min-height: 52px;
  padding: 12px 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.thin-card-list > div:hover {
  box-shadow: 0 4px 14px -3px rgba(99, 71, 209, 0.1);
  transform: translateX(3px);
}

.thin-card-list > div:last-child {
  margin-bottom: 0;
}

.thin-card-list span {
  align-items: center;
  background: var(--purple-soft);
  border-radius: 8px;
  color: var(--purple);
  display: inline-flex;
  flex-shrink: 0;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.thin-card-list strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.scroll-note {
  align-items: center;
  background: rgba(230, 222, 255, 0.35);
  border: 1px solid rgba(75, 42, 184, 0.12);
  border-left: 3px solid var(--purple);
  border-radius: 0 12px 12px 0;
  color: var(--purple);
  display: flex;
  gap: 12px;
  min-height: 56px;
  padding: 14px 18px;
  width: min(100%, 500px);
}

.scroll-note p {
  color: #4b5563;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

.scroll-phone-wrap {
  height: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: inherit;
  overflow: visible;
  padding: 44px 24px;
  width: 100%;
}

.purple-orbit {
  background: rgba(75, 42, 184, 0.4);
  left: 80px;
  top: 100px;
}

.scroll-phone {
  aspect-ratio: 1018 / 2048;
  height: min(616px, calc(100svh - 150px));
  margin-left: 0;
  position: relative;
  transform: rotate(3deg);
  width: auto;
  z-index: 3;
}

.scroll-phone-frame {
  object-fit: contain;
  z-index: 4;
}

.scroll-phone-screen {
  background: #fff;
  border: 1px solid rgba(121, 117, 133, 0.1);
  border-radius: 44px;
  inset: 10px 12px 12px;
  overflow: hidden;
  padding: 66px 20px;
  position: absolute;
  z-index: 2;
}

.scroll-phone-screen.lockscreen {
  background:
    radial-gradient(circle at 27% 18%, rgba(131, 105, 238, 0.95), transparent 34%),
    linear-gradient(160deg, #38248c 0%, #6f4dea 48%, #222456 100%);
  padding: 74px 18px 0;
}

.pass-heading {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.pass-heading small {
  color: var(--slate);
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  line-height: 17px;
  text-transform: uppercase;
}

.pass-heading strong {
  display: block;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 24px;
  line-height: 31px;
  margin-top: 2px;
}

.loyalty-pass {
  background: #3e2723;
  border-radius: 16px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 207px;
  padding: 23px 24px 24px;
}

.loyalty-pass.compact {
  margin-top: 40px;
  min-height: 187px;
}

.loyalty-pass > strong {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 31px;
}

.loyalty-pass small {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.loyalty-pass .compact-card-title {
  display: flex;
  flex-direction: column;
  font-size: 9px;
  gap: 1px;
  letter-spacing: 0.35px;
  line-height: 1.15;
}

.loyalty-pass .compact-card-title span:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  font-weight: 600;
}

.stamp-grid {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

.stamp-grid > span {
  align-items: center;
  background: #5d4037;
  border-radius: 8px;
  display: flex;
  height: 34px;
  justify-content: center;
}

.stamp-grid > span.active {
  background: var(--purple-bright);
}

.stamp-grid > span.empty {
  background: transparent;
  border: 1px dashed #5d4037;
  opacity: 0.4;
}

.stamp-grid p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  grid-column: 1 / -1;
  line-height: 15px;
  margin: 0;
}

.stamp-progress {
  background: #5d4037;
  border-radius: 999px;
  grid-column: 1 / -1;
  height: 6px;
  overflow: hidden;
}

.stamp-progress span {
  background: var(--purple-bright);
  display: block;
  height: 100%;
  width: 88%;
}

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

.in-app-offers div {
  align-items: center;
  background: #e2e8f8;
  border-radius: 12px;
  display: flex;
  font-size: 12px;
  font-weight: 600;
  justify-content: space-between;
  min-height: 42px;
  padding: 12px;
}

.in-app-offers b {
  color: var(--slate);
  font-size: 10px;
}

.lock-time {
  color: #fff;
  display: block;
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 68px;
  text-align: center;
}

.lock-date {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  font-size: 21px;
  line-height: 28px;
  margin: 12px 0 52px;
  text-align: center;
}

.notification-stack {
  display: grid;
  gap: 13px;
}

.phone-notification {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  color: var(--ink);
  display: grid;
  gap: 8px;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  min-height: 72px;
  overflow: hidden;
  padding: 10px 0 10px 12px;
  position: relative;
}

.phone-notification b {
  font-size: 10px;
  white-space: nowrap;
}

.phone-notification small {
  font-size: 10px;
}

.phone-notification p {
  font-size: 12px;
  line-height: 1.35;
  margin: 0;
}

.phone-notification .notification-icon {
  align-items: center;
  color: var(--purple);
  display: flex;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.phone-notification header {
  align-items: baseline;
  display: flex;
  gap: 4px;
  justify-content: space-between;
  margin-bottom: 2px;
}

.phone-notification header small {
  color: #6b7280;
  font-size: 10px;
  font-weight: 500;
  white-space: nowrap;
}

.phone-notification .notification-thumb {
  align-items: center;
  background: rgba(75, 42, 184, 0.1);
  border-radius: 9999px;
  color: #5433c8;
  display: flex;
  height: 34px;
  justify-content: center;
  justify-self: center;
  margin-right: 4px;
  width: 34px;
}

.phone-notification .notification-thumb svg {
  height: 14px;
  width: 14px;
}

.scroll-phone-screen.offers {
  background: #1e1b4b;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 74px 18px 24px;
}

.scroll-phone-screen.offers .pass-heading small {
  color: rgba(255, 255, 255, 0.65);
}

.scroll-phone-screen.offers .pass-heading strong {
  color: #fff;
}

.scroll-phone-screen.offers .pass-heading svg {
  color: #fff;
}

.phone-offers-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 18px;
  justify-content: center;
  margin-top: 8px;
}

.phone-offers-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.phone-offer-item {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 14px;
  grid-template-columns: 36px 1fr 18px;
  padding: 14px 0;
}

.phone-offer-item:last-child {
  border-bottom: 0;
}

.phone-offer-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  display: flex;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.phone-offer-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  text-align: left;
}

.phone-offer-text strong {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}

.phone-offer-text span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  line-height: 1.35;
  text-align: left;
}

.phone-offer-item > svg {
  color: rgba(255, 255, 255, 0.5);
  justify-self: end;
}

.phone-offer-vip {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.phone-offer-vip span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  text-align: left;
}

.phone-offer-progress {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  height: 5px;
  overflow: hidden;
}

.phone-offer-progress span {
  background: #7c5cff;
  display: block;
  height: 100%;
}

.simple-pass {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
}

.simple-pass .wallet-download {
  bottom: -28px;
  height: 43px;
  justify-content: center;
  left: 50%;
  margin: 0;
  position: absolute;
  transform: translateX(-50%);
  width: 200px;
}

.simple-labels-wrap {
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 5;
}

.floating-label {
  align-items: center;
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
  color: #1e1b4b;
  display: flex;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
  gap: 10px;
  min-height: 54px;
  padding: 12px;
  pointer-events: auto;
  position: absolute;
  width: 172px;
}

.floating-label svg {
  color: var(--purple);
  flex: 0 0 auto;
}

.label-a { right: -18px; top: 60px; }
.label-b { left: -22px; top: 270px; }
.label-c { left: -14px; top: 440px; }
.label-d { right: -20px; top: 370px; }

.form-section {
  background: var(--band);
  padding: 100px 60px 120px;
  position: relative;
  z-index: 10;
}

.strategy-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 32px 64px -16px rgba(0, 0, 0, 0.08);
  margin: 0 auto;
  max-width: 1000px;
  padding: 64px;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.strategy-card:hover {
  box-shadow: 0 40px 80px -12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.strategy-heading {
  margin: 0 auto 40px;
  max-width: 640px;
  text-align: center;
}

.strategy-heading h2 {
  color: #111827;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.96px;
  line-height: 1.15;
}

.strategy-heading p {
  color: #6b7280;
  font-size: 17px;
  line-height: 1.6;
  margin: 14px 0 0;
}

.strategy-form {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.strategy-form label,
.strategy-field {
  display: grid;
  gap: 10px;
  position: relative;
}

.strategy-form label.full,
.strategy-field.full,
.strategy-form > button {
  grid-column: 1 / -1;
}

.strategy-form label > span,
.strategy-field > span {
  color: #6b7280;
  font-size: 13px;
  letter-spacing: 0.65px;
  line-height: 1.4;
  padding-left: 4px;
  text-transform: uppercase;
}

.strategy-form input,
.strategy-select-trigger {
  appearance: none;
  background: #fff;
  border: 1.5px solid var(--line-strong);
  border-radius: 10px;
  color: var(--ink);
  cursor: pointer;
  font-size: 16px;
  height: 58px;
  line-height: 24px;
  outline: none;
  padding: 16px 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.strategy-form input:hover,
.strategy-select-trigger:hover {
  border-color: #c4b8e0;
}

.strategy-form input:focus,
.strategy-select-trigger:focus,
.strategy-select-trigger[aria-expanded="true"] {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(99, 71, 209, 0.1);
}

.strategy-form input::placeholder {
  color: var(--line-strong);
}

.strategy-select {
  position: relative;
  z-index: 5;
}

.strategy-select:has(.strategy-select-trigger[aria-expanded="true"]) {
  z-index: 100;
}

.strategy-select-trigger {
  align-items: center;
  display: flex;
  justify-content: space-between;
  text-align: left;
}

.strategy-select-trigger:not(.has-value) span {
  color: var(--line-strong);
}

.strategy-select-trigger svg {
  color: #6b7280;
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}

.strategy-select-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.strategy-select-menu {
  background: #fff;
  border: 1px solid rgba(99, 71, 209, 0.18);
  border-radius: 12px;
  box-shadow: 0 22px 44px -18px rgba(31, 24, 64, 0.3);
  display: grid;
  gap: 4px;
  left: 0;
  overflow: hidden;
  padding: 6px;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 20;
}

.strategy-select-menu button {
  background: transparent;
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  min-height: 44px;
  padding: 10px 14px;
  text-align: left;
  transition: background 0.16s ease, color 0.16s ease;
}

.strategy-select-menu button:hover,
.strategy-select-menu button:focus,
.strategy-select-menu button.is-selected {
  background: rgba(99, 71, 209, 0.1);
  color: var(--purple);
  outline: none;
}

.strategy-form > button {
  background: var(--purple);
  border: none;
  border-radius: 10px;
  box-shadow: 0 12px 28px -6px rgba(99, 71, 209, 0.4);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  height: 64px;
  letter-spacing: -0.2px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.strategy-form > button:hover {
  background: #5538b8;
  box-shadow: 0 16px 36px -4px rgba(99, 71, 209, 0.5);
  transform: translateY(-1px);
}

.strategy-form > button:active {
  transform: translateY(0);
}

.strategy-trust {
  border-top: 1px solid rgba(201, 196, 214, 0.25);
  color: #6b7280;
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
  padding-top: 32px;
}

.strategy-trust span {
  align-items: center;
  background: rgba(248, 250, 252, 0.8);
  border-radius: 8px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 500;
  gap: 8px;
  padding: 8px 14px;
}

.strategy-trust svg {
  color: var(--purple);
  flex-shrink: 0;
}

.testimonial-section {
  background: var(--page);
  padding: 80px 60px 96px;
  position: relative;
  z-index: 2;
}

.testimonial-heading {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto 64px;
  max-width: 1216px;
  text-align: center;
}

.testimonial-heading .section-intro b {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 13px;
}

.testimonial-heading .section-intro span {
  opacity: 0.4;
  width: 32px;
}

.testimonial-heading h2 {
  color: #111827;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.15;
  margin: 0;
}

.testimonial-heading p {
  color: #6b7280;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  max-width: 672px;
}

.testimonial-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1216px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.testimonial-card > header {
  align-items: center;
  color: var(--purple);
  display: flex;
  gap: 10px;
  padding: 18px 20px 10px;
}

.testimonial-card > header b {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.testimonial-image {
  border-radius: 12px;
  height: 200px;
  margin: 0 20px;
  overflow: hidden;
  position: relative;
}

.testimonial-image::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25) 0%, transparent 50%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.testimonial-image img {
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-image img {
  transform: scale(1.08);
}

.testimonial-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 22px 24px 28px;
}

.stars {
  align-items: center;
  color: var(--purple);
  display: flex;
  gap: 4px;
}

.stars b {
  color: #334155;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-left: 8px;
}

.testimonial-body blockquote {
  color: #475569;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  position: relative;
}

.testimonial-body blockquote::before {
  color: var(--purple);
  content: "\201C";
  display: block;
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  height: 18px;
  line-height: 1;
  margin-bottom: 6px;
  opacity: 0.35;
}

.testimonial-body > strong {
  color: #111827;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin-top: auto;
  padding-top: 8px;
}

.testimonial-body small {
  color: #6b7280;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.testimonial-card footer {
  background: rgba(248, 250, 252, 0.5);
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  padding: 16px 20px 20px;
}

.testimonial-card footer div {
  align-items: center;
  background: var(--band);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  justify-content: center;
  min-height: 60px;
  padding: 10px 6px;
}

.testimonial-card footer b {
  color: var(--purple);
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.testimonial-card footer span {
  color: #64748b;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.final-cta {
  align-items: center;
  background:
    radial-gradient(112% 221% at 100% 0%, rgba(255, 255, 255, 0.15), rgba(99, 71, 209, 0) 40%),
    radial-gradient(112% 221% at 0% 100%, rgba(255, 255, 255, 0.1), rgba(99, 71, 209, 0) 40%),
    var(--purple-bright);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 560px;
  overflow: hidden;
  padding: 100px 60px 120px;
  position: relative;
  text-align: center;
}

.cta-orb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  filter: blur(32px);
  height: 384px;
  position: absolute;
  width: 384px;
}

.cta-orb.one {
  right: -96px;
  top: -96px;
}

.cta-orb.two {
  bottom: -96px;
  left: -96px;
}

.scale-pill {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9999px;
  display: inline-flex;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.5px;
  padding: 9px 18px;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
}

.final-cta h2 {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin: 16px 0 0;
  max-width: 820px;
  position: relative;
  z-index: 2;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.75);
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  margin: 0;
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.final-cta a {
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.25);
  color: var(--purple-bright);
  display: inline-flex;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 18px;
  font-weight: 700;
  gap: 10px;
  height: 64px;
  justify-content: center;
  margin-top: 20px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  width: 240px;
  z-index: 2;
}

.final-cta a:hover {
  box-shadow: 0 24px 48px -6px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px) scale(1.02);
}

.final-cta a:active {
  transform: translateY(0) scale(1);
}

.site-footer {
  background:
    radial-gradient(circle at 9% 12%, rgba(123, 92, 246, 0.16), transparent 27%),
    linear-gradient(138deg, #17102e 0%, #211442 48%, #2d195c 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  margin-top: auto;
  padding: 0 60px;
}

.site-footer-inner {
  align-items: start;
  display: grid;
  column-gap: 28px;
  grid-template-columns: minmax(250px, 275px) repeat(4, max-content);
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1240px;
  padding: 44px 0 32px;
}

.footer-brand,
.footer-column {
  min-width: 0;
}

.footer-brand strong {
  color: #fff;
  display: block;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.25;
  max-width: 230px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin: 12px 0 18px;
  max-width: 275px;
}

.footer-social h2 {
  color: rgba(255, 255, 255, 0.82);
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2px;
  margin: 0 0 10px;
}

.footer-social-link {
  align-items: center;
  background: #7657df;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 10px 24px -10px rgba(143, 115, 243, 0.9);
  color: #fff;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  width: 44px;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  background: #8f73f3;
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: 0 12px 28px -10px rgba(143, 115, 243, 1);
  transform: translateY(-2px);
}

.footer-social-link:focus-visible {
  outline: 3px solid #d8ccff;
  outline-offset: 3px;
}

.footer-social-link svg {
  height: 18px;
  width: 18px;
}

.footer-column h2 {
  color: #fff;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1.35;
  margin: 1px 0 18px;
}

.footer-column h2::after {
  background: #8f73f3;
  border-radius: 999px;
  content: "";
  display: block;
  height: 2px;
  margin-top: 9px;
  width: 24px;
}

.footer-column nav,
.footer-column ul {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 11px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column nav {
  font-size: 14px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  overflow-wrap: anywhere;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.footer-partners a {
  color: rgba(255, 255, 255, 0.66);
  display: block;
  font-weight: 500;
  white-space: nowrap;
}

.footer-partners ul {
  display: grid;
  gap: 7px 18px;
  grid-template-columns: minmax(0, 1fr);
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: #a98ff8;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.footer-column a:focus-visible {
  border-radius: 2px;
  outline: 3px solid #d8ccff;
  outline-offset: 4px;
}

.footer-contact li {
  align-items: flex-start;
  display: grid;
  gap: 9px;
  grid-template-columns: 18px minmax(0, 1fr);
}

.footer-contact li > svg {
  color: #a98ff8;
  margin-top: 2px;
}

.footer-contact a {
  display: grid;
  gap: 2px;
}

.footer-contact a span {
  color: #bba8f7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0 auto;
  max-width: 1240px;
  padding: 15px 0 18px;
  text-align: center;
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  letter-spacing: 0.2px;
}

@media (min-width: 1360px) and (max-width: 1500px) and (min-height: 820px) and (max-height: 940px) {
  .landing-hero {
    height: calc(100svh - 78px);
    min-height: 0;
    padding-bottom: 22px;
    padding-top: 24px;
  }

  .landing-hero-inner {
    gap: clamp(26px, 2.6vw, 42px);
    height: 100%;
  }

  .hero-right {
    padding-top: 0;
  }

  .hero-visual {
    height: min(510px, 56svh);
  }

  .hero-trust-bar {
    margin-top: -105px;
    min-height: 104px;
    padding-bottom: 12px;
    padding-top: 14px;
  }
}

@media (max-width: 1180px) {
  .site-header,
  .landing-hero,
  .scan-section,
  .feature-section,
  .form-section,
  .testimonial-section,
  .final-cta,
  .site-footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  .landing-hero {
    height: auto;
    min-height: auto;
    overflow: visible;
    padding-bottom: 46px;
    padding-top: 42px;
  }

  .landing-hero-inner {
    height: auto;
    min-height: auto;
  }

  .landing-hero-inner,
  .scan-inner,
  .scroll-story-inner {
    display: grid;
    gap: 34px;
    grid-template-columns: 1fr;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    max-width: 780px;
    height: auto;
    padding-top: 0;
    position: relative;
  }

  .hero-benefits-new,
  .hero-description,
  .hero-cta-row {
    align-self: auto;
  }

  .hero-left h1 {
    font-size: clamp(42px, 6.2vw, 56px);
    line-height: 1.03;
  }

  .hero-left h1 span,
  .hero-left h1 .hero-headline-line {
    font-size: inherit;
  }

  .hero-right {
    align-items: center;
    display: grid;
    grid-template-rows: auto auto;
    height: auto;
    margin: 0 auto;
    width: min(100%, 800px);
  }

  .hero-visual {
    height: 610px;
    justify-content: center;
    max-width: 780px;
  }

  .hero-device-stage {
    max-width: 590px;
  }

  .hero-trust-bar {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -80px;
    max-width: 620px;
    justify-self: center;
  }

  .scan-inner {
    grid-template-columns: 1fr;
    height: auto;
  }

  .scan-section {
    height: auto;
    overflow: visible;
  }

  .feature-section,
  .scroll-story,
  .scroll-story-inner,
  .final-cta {
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .qr-mockup {
    transform: none;
  }

  .scroll-story-desktop {
    display: none;
  }

  .scroll-story-mobile {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .scroll-panel {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 70px 32px;
    width: min(100%, 620px);
  }

  .scroll-panel-copy {
    width: 100%;
  }

  .scroll-phone-wrap {
    display: none;
  }

  .feature-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-section {
    padding-left: 32px;
    padding-right: 32px;
  }

  .site-footer-inner {
    gap: 36px 32px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: initial;
    padding: 42px 0 34px;
    width: 100%;
  }

  .footer-emails {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: auto;
    padding: 14px 18px;
  }

  .site-header-inner {
    min-height: 40px;
  }

  .site-header nav,
  .header-actions {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .site-logo {
    font-size: 18px;
  }

  .mobile-menu-toggle {
    height: 44px;
    width: 44px;
  }

  .landing-hero,
  .scan-section,
  .feature-section,
  .testimonial-section,
  .form-section,
  .final-cta {
    padding: 48px 18px;
  }

  .site-footer {
    padding: 0 18px;
  }

  .landing-hero {
    padding: 18px 16px 30px;
  }

  .hero-left,
  .scroll-card-list,
  .scroll-card-list > div,
  .thin-card-list,
  .scroll-note {
    width: 100%;
  }

  .landing-hero-inner {
    gap: 12px;
  }

  .hero-left {
    display: contents;
    gap: 14px;
    margin: 0 auto;
    text-align: center;
  }

  .section-intro {
    gap: 10px;
  }

  .section-intro span {
    width: 28px;
  }

  .section-intro b {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .hero-left h1,
  .strategy-heading h2,
  .testimonial-heading h2,
  .final-cta h2 {
    font-size: clamp(32px, 9.2vw, 40px);
    letter-spacing: 0;
    line-height: 1.08;
  }

  .scroll-panel h2,
  .scroll-panel-copy h2 {
    font-size: clamp(31px, 8.6vw, 38px);
    letter-spacing: 0;
    line-height: 1.1;
  }

  .hero-left h1 span,
  .hero-left h1 .hero-headline-line {
    font-size: inherit;
    white-space: nowrap;
  }

  .hero-left h1 {
    font-size: clamp(24px, 6.6vw, 29px);
    line-height: 1.04;
    margin: 2px auto 0;
    max-width: 360px;
    text-align: center;
  }

  .hero-benefits-new {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(7, 95, 216, 0.09);
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(14, 36, 68, 0.06);
    gap: 6px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 8px;
    order: 7;
    padding: 14px 8px;
    width: 100%;
  }

  .hero-benefit-item.full {
    grid-column: auto;
  }

  .hero-wallet-badges {
    order: 1;
  }

  .hero-tag {
    background: rgba(7, 95, 216, 0.05);
    border-color: rgba(7, 95, 216, 0.2);
    font-size: 10px;
    gap: 6px;
    justify-content: center;
    justify-self: center;
    max-width: 100%;
    order: 2;
    padding: 7px 10px;
    text-align: center;
  }

  .hero-tag svg {
    height: 13px;
    width: 13px;
  }

  .hero-left h1 {
    order: 3;
  }

  .hero-description {
    justify-self: center;
    margin-top: 0;
    max-width: 340px;
    order: 8;
    text-align: center;
  }

  .hero-cta-row {
    order: 6;
  }

  .hero-benefit-item {
    align-items: center;
    flex-direction: column;
    gap: 7px;
    min-width: 0;
    padding: 0 2px;
    text-align: center;
  }

  .hero-benefit-icon {
    box-shadow: 0 8px 18px rgba(4, 93, 221, 0.18);
    height: 32px;
    width: 32px;
  }

  .hero-benefit-icon svg {
    height: 17px;
    width: 17px;
  }

  .hero-benefit-text strong {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-size: 10px;
    justify-content: center;
    line-height: 1.2;
    margin-bottom: 0;
    min-height: 24px;
  }

  .hero-benefit-text p {
    display: none;
  }

  .hero-benefit-text p,
  .hero-description,
  .scan-copy > p,
  .scroll-panel-copy > p,
  .testimonial-heading p {
    font-size: 14px;
    line-height: 1.5;
  }

  .hero-wallet-badges {
    align-items: center;
    border-radius: 12px;
    box-shadow: 0 10px 26px rgba(14, 36, 68, 0.06);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    justify-content: stretch;
    margin-bottom: 0;
    min-height: 42px;
    padding: 7px 8px;
    width: 100%;
  }

  .wallet-badge {
    font-size: 11px;
    gap: 5px;
    justify-content: center;
    min-width: 0;
  }

  .wallet-brand-icon {
    height: 19px;
    width: 19px;
  }

  .wallet-brand-icon.google {
    height: 20px;
    width: 20px;
  }

  .wallet-badge + .wallet-badge {
    border-left: 1px solid #d8dde7;
    border-top: 0;
    margin-left: 0;
    margin-top: 0;
    padding-left: 0;
    padding-top: 0;
  }

  .hero-cta-row {
    align-items: center;
    display: contents;
    flex-direction: column;
    gap: 18px;
  }

  .hero-cta-btn {
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(4, 93, 221, 0.2);
    font-size: 16px;
    gap: 12px;
    justify-self: center;
    min-height: 48px;
    min-width: 0;
    order: 6;
    padding: 0 20px;
    width: min(100%, 344px);
  }

  .hero-social-proof {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(13, 47, 92, 0.08);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(14, 36, 68, 0.05);
    justify-content: center;
    gap: 12px;
    justify-self: center;
    min-width: 0;
    order: 9;
    padding: 10px 14px;
    width: fit-content;
  }

  .hero-avatars .avatar {
    height: 32px;
    margin-left: -8px;
    width: 32px;
  }

  .hero-social-text strong,
  .hero-social-text span {
    font-size: 13px;
    line-height: 1.25;
    white-space: normal;
  }

  .hero-visual {
    height: 320px;
    justify-content: center;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-device-stage {
    flex: 0 0 590px;
    height: 610px;
    max-height: none;
    transform: scale(0.58);
    transform-origin: top center;
    width: 590px;
  }

  .hero-phone {
    right: 190px;
    top: 28px;
    transform: scale(1.05);
  }

  .hero-watch {
    bottom: 250px;
    right: 80px;
  }

  .hero-right {
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(19, 51, 91, 0.08);
    border-radius: 14px;
    box-shadow: 0 16px 34px rgba(12, 36, 70, 0.07);
    justify-items: center;
    gap: 0;
    order: 5;
    overflow: hidden;
    padding-top: 0;
    position: relative;
    width: 100%;
  }

  .hero-wallet-overlay {
    border-radius: 11px;
    box-shadow: 0 12px 26px rgba(12, 36, 70, 0.13);
    margin: 0 0 100px 36px;
    padding: 5px 7px;
    width: 106px;
  }

  .hero-wallet-overlay > div {
    align-items: center;
    display: grid;
    gap: 6px;
    grid-template-columns: 20px minmax(0, 1fr);
    min-height: 30px;
  }

  .hero-wallet-overlay > div + div {
    border-top: 1px solid rgba(107, 114, 128, 0.25);
  }

  .hero-wallet-overlay img,
  .hero-wallet-overlay svg {
    height: 20px;
    width: 20px;
  }

  .hero-wallet-overlay .hero-apple-icon img {
    transform: scale(1.12);
  }

  .hero-wallet-overlay span {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    line-height: 1.02;
    min-width: 0;
    text-align: left;
  }

  .hero-wallet-overlay small {
    color: #596173;
    font-size: 5.5px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
  }

  .hero-wallet-overlay strong {
    color: #111318;
    font-size: 8px;
    white-space: nowrap;
  }

  .hero-trust-bar {
    background: #fff;
    border: 0;
    border-radius: 0;
    border-top: 1px solid rgba(19, 51, 91, 0.08);
    box-shadow: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    margin-top: -108px;
    max-width: none;
    min-height: 0;
    padding: 7px 6px 0;
    width: 100%;
    z-index: 6;
  }

  .trust-card {
    background: #f8fafc;
    border-radius: 7px;
    padding: 7px 2px 8px;
  }

  .trust-icon {
    height: 24px;
    margin-bottom: 5px;
    width: 24px;
  }

  .trust-icon svg {
    height: 15px;
    width: 15px;
  }

  .trust-card strong {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-size: 9px;
    justify-content: center;
    line-height: 1.15;
    margin-bottom: 0;
    min-height: 22px;
  }

  .trust-card p {
    display: none;
  }

  .feature-grid,
  .testimonial-grid,
  .strategy-form {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .qr-mockup {
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin: 0 auto -12px;
    max-width: 100%;
    transform: none;
  }

  .qr-glow {
    height: 260px;
    left: 50%;
    top: 42px;
    transform: translateX(-50%);
    width: 260px;
  }

  .qr-stand {
    border-radius: 14px;
    height: 236px;
    padding-top: 11px;
    transform: rotate(-4deg);
    transform-origin: center;
    width: 166px;
  }

  .qr-stand:hover {
    transform: rotate(-3deg) translateY(-3px);
  }

  .qr-stand small {
    font-size: 10px;
    line-height: 1.2;
  }

  .qr-stand strong {
    font-size: 16px;
    line-height: 1.2;
  }

  .qr-scanner {
    border-radius: 10px;
    border-width: 2px;
    height: 94px;
    margin-top: 19px;
    padding: 9px;
    width: 94px;
  }

  .qr-vector {
    height: 72px;
    width: 72px;
  }

  .qr-wallets {
    gap: 5px;
    height: 42px;
  }

  .wallet-download {
    gap: 5px;
    height: 27px;
    padding: 5px 6px;
    width: 73px;
  }

  .wallet-download span:not(.google-letter) {
    font-size: 6px;
  }

  .wallet-download small {
    font-size: 4px;
    letter-spacing: 0.5px;
  }

  .mini-phone {
    height: 238px;
    transform: rotate(7deg);
    transform-origin: center;
    width: 154px;
  }

  .mini-phone-screen {
    border-radius: 18px;
    gap: 9px;
    inset: 0 25px 0;
    padding: 48px 10px 0;
  }

  .scan-phone-pass {
    border-radius: 9px;
    padding: 7px;
    width: 84px;
  }

  .scan-pass-head {
    font-size: 5px;
    gap: 6px;
  }

  .scan-pass-stamps span {
    height: 16px;
  }

  .scan-phone-pass .scan-pass-stamps {
    gap: 3px;
  }

  .scan-check {
    border-width: 3px;
    height: 38px;
    width: 38px;
  }

  .scan-check svg {
    stroke-width: 5px;
  }

  .mini-phone-screen strong {
    font-size: 10px;
    line-height: 1.25;
    max-width: 90px;
  }

  .scan-title {
    align-items: center;
    gap: 12px;
  }

  .scan-title h2,
  .feature-section h2 {
    font-size: clamp(25px, 6.8vw, 30px);
    line-height: 1.15;
  }

  .scan-title h2 {
    min-width: 0;
  }

  .scan-title h2 em {
    white-space: nowrap;
  }

  .scan-title span {
    border-radius: 10px;
    height: 44px;
    width: 44px;
  }

  .scan-copy {
    gap: 14px;
    text-align: left;
  }

  .scan-inner {
    gap: 22px;
  }

  .scan-section {
    padding-bottom: 42px;
    padding-top: 34px;
  }

  .qr-mockup {
    margin-bottom: -4px;
  }

  .qr-glow {
    height: 210px;
    top: 28px;
    width: 210px;
  }

  .qr-stand {
    border-radius: 15px;
    height: 200px;
    padding-top: 9px;
    width: 140px;
  }

  .qr-stand small {
    font-size: 8px;
  }

  .qr-stand strong {
    font-size: 14px;
  }

  .qr-scanner {
    height: 78px;
    margin-top: 14px;
    padding: 7px;
    width: 78px;
  }

  .qr-vector {
    height: 60px;
    width: 60px;
  }

  .qr-wallets {
    height: 38px;
  }

  .qr-wallets .wallet-download {
    gap: 3px;
    height: 26px;
    padding: 3px 4px;
    width: 62px;
  }

  .qr-wallets .wallet-download > img,
  .qr-wallets .wallet-download > svg {
    flex: 0 0 auto;
    height: 14px;
    width: 14px;
  }

  .qr-wallets .wallet-download span:not(.google-letter) {
    align-items: flex-start;
    font-size: 5px;
    gap: 1px;
    justify-content: center;
    line-height: 0.9;
    transform: none;
    white-space: nowrap;
  }

  .qr-wallets .wallet-download small {
    font-size: 3.5px;
    letter-spacing: 0;
    line-height: 1;
    margin: 0;
  }

  .qr-wallets .google-letter {
    font-size: 14px;
  }

  .mini-phone {
    height: 205px;
    width: 132px;
  }

  .mini-phone-screen {
    border-radius: 16px;
    gap: 8px;
    inset: 0 16px;
    padding: 41px 8px 0;
  }

  .scan-phone-pass {
    border-radius: 8px;
    padding: 7px;
    width: 82px;
  }

  .scan-pass-head {
    align-items: center;
    flex-direction: column;
    font-size: 4px;
    gap: 1px;
    justify-content: center;
    line-height: 1;
  }

  .scan-pass-head b,
  .scan-pass-head span {
    white-space: nowrap;
  }

  .scan-phone-pass .scan-pass-stamps {
    gap: 2px;
    margin-top: 5px;
  }

  .scan-pass-stamps span {
    border-radius: 5px;
    height: 13px;
  }

  .scan-pass-stamps span svg {
    height: 8px;
    width: 8px;
  }

  .scan-pass-progress {
    height: 3px;
    margin-top: 6px;
  }

  .scan-check {
    border-width: 3px;
    height: 32px;
    width: 32px;
  }

  .scan-check svg {
    height: 18px;
    stroke-width: 5px;
    width: 18px;
  }

  .mini-phone-screen strong {
    font-size: 7.5px;
    line-height: 1.15;
    max-width: 82px;
  }

  .scan-title {
    align-items: flex-start;
    gap: 10px;
  }

  .scan-title span {
    border-radius: 9px;
    height: 38px;
    width: 38px;
  }

  .scan-title span svg {
    height: 20px;
    width: 20px;
  }

  .scan-title h2 {
    font-size: clamp(23px, 6.5vw, 28px);
    line-height: 1.08;
  }

  .scan-copy > p {
    font-size: 14px;
    line-height: 1.45;
  }

  .scan-copy ul {
    gap: 10px;
  }

  .scan-copy li {
    align-items: flex-start;
    font-size: 14px;
    gap: 10px;
    line-height: 1.35;
  }

  .scan-copy li svg {
    height: 20px;
    margin-top: 0;
    width: 20px;
  }

  .scan-copy > strong {
    border-radius: 12px;
    font-size: 12px;
    justify-content: center;
    line-height: 1.35;
    padding: 9px 12px;
    text-align: center;
    width: 100%;
  }

  .feature-section h2 {
    font-size: clamp(24px, 6.6vw, 28px);
    line-height: 1.08;
    margin-bottom: 22px;
    max-width: 340px;
  }

  .feature-section {
    padding: 36px 16px 38px;
  }

  .feature-grid {
    gap: 6px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .feature-grid article {
    align-items: center;
    border-radius: 12px;
    justify-content: flex-start;
    min-height: 96px;
    padding: 12px 4px 10px;
    text-align: center;
  }

  .feature-grid span {
    border-radius: 10px;
    height: 34px;
    margin-bottom: 8px;
    width: 34px;
  }

  .feature-grid span svg {
    height: 22px;
    width: 22px;
  }

  .feature-grid h3 {
    font-size: 10px;
    line-height: 1.12;
    margin-bottom: 0;
    overflow-wrap: anywhere;
  }

  .feature-grid p {
    display: none;
  }

  .scroll-panel {
    padding: 46px 18px;
  }

  .scroll-panel-copy {
    align-items: center;
    gap: 15px;
    text-align: center;
  }

  .scroll-mobile-phone-slot {
    display: flex;
    justify-content: center;
    margin: 2px 0 0;
    width: 100%;
  }

  .scroll-mobile-phone-slot .scroll-phone-wrap {
    display: flex;
    min-height: 0;
    overflow: hidden;
    padding: 0;
  }

  .scroll-mobile-phone-slot .purple-orbit {
    display: none;
  }

  .scroll-mobile-phone-slot .scroll-phone-wrap {
    overflow: visible;
  }

  .scroll-mobile-phone-slot .simple-labels-wrap {
    display: block;
  }

  .scroll-mobile-phone-slot .floating-label {
    border-radius: 8px;
    font-size: 6px;
    gap: 4px;
    justify-content: flex-start;
    min-height: 24px;
    padding: 4px 5px;
    text-align: left;
    width: 72px;
  }

  .scroll-mobile-phone-slot .floating-label svg {
    height: 11px;
    width: 11px;
  }

  .scroll-mobile-phone-slot .label-a { right: -22px; top: 25px; }
  .scroll-mobile-phone-slot .label-b { left: -24px; top: 100px; }
  .scroll-mobile-phone-slot .label-c { left: -22px; top: 165px; }
  .scroll-mobile-phone-slot .label-d { right: -24px; top: 145px; }

  .scroll-mobile-phone-slot .scroll-phone {
    height: 250px;
    transform: rotate(0deg);
    width: 142px;
  }

  .scroll-mobile-phone-slot .scroll-phone-screen {
    border-radius: 20px;
    inset: 0 15px;
    padding: 26px 8px;
  }

  .scroll-mobile-phone-slot .scroll-phone-screen.lockscreen {
    padding: 32px 8px 0;
  }

  .scroll-mobile-phone-slot .pass-heading {
    margin-bottom: 8px;
  }

  .scroll-mobile-phone-slot .scroll-phone-screen[data-mode="loyalty"] .pass-heading {
    margin-bottom: 4px;
  }

  .scroll-mobile-phone-slot .scroll-phone-screen[data-mode="loyalty"] .phone-offers-card {
    gap: 2px;
    margin-top: 18px;
  }

  .scroll-mobile-phone-slot .scroll-phone-screen[data-mode="loyalty"] .phone-offer-item {
    padding: 2px 0;
  }

  .scroll-mobile-phone-slot .scroll-phone-screen[data-mode="loyalty"] .phone-offer-vip {
    gap: 2px;
    margin-top: auto;
  }

  .scroll-mobile-phone-slot .pass-heading > div {
    text-align: left;
    transform: translateY(2px);
  }

  .scroll-mobile-phone-slot .pass-heading > svg {
    height: 14px;
    width: 14px;
  }

  .scroll-mobile-phone-slot .pass-heading small {
    font-size: 6px;
    line-height: 1.2;
  }

  .scroll-mobile-phone-slot .pass-heading strong,
  .scroll-mobile-phone-slot .loyalty-pass > strong {
    font-size: 9px;
    line-height: 1.15;
  }

  .scroll-mobile-phone-slot .phone-offers-card {
    gap: 6px;
    margin-top: 4px;
  }

  .scroll-mobile-phone-slot .phone-offer-item {
    gap: 5px;
    grid-template-columns: 16px 1fr 9px;
    padding: 5px 0;
  }

  .scroll-mobile-phone-slot .phone-offer-icon {
    border-radius: 4px;
    height: 16px;
    width: 16px;
  }

  .scroll-mobile-phone-slot .phone-offer-icon svg {
    height: 9px;
    width: 9px;
  }

  .scroll-mobile-phone-slot .phone-offer-text strong {
    font-size: 5.5px;
    line-height: 1.1;
  }

  .scroll-mobile-phone-slot .phone-offer-text span {
    font-size: 4.5px;
    line-height: 1.15;
  }

  .scroll-mobile-phone-slot .phone-offer-item > svg {
    height: 9px;
    width: 9px;
  }

  .scroll-mobile-phone-slot .phone-offer-vip {
    gap: 3px;
  }

  .scroll-mobile-phone-slot .phone-offer-vip span {
    font-size: 4.5px;
  }

  .scroll-mobile-phone-slot .phone-offer-progress {
    height: 3px;
  }

  .scroll-mobile-phone-slot .scroll-phone-screen[data-mode="loyalty"] .phone-offer-text span,
  .scroll-mobile-phone-slot .scroll-phone-screen[data-mode="notifications"] .phone-offer-text span,
  .scroll-mobile-phone-slot .scroll-phone-screen[data-mode="single"] .phone-offer-text span {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow: hidden;
  }

  .scroll-mobile-phone-slot .scroll-phone-screen[data-mode="notifications"] .phone-offer-text strong,
  .scroll-mobile-phone-slot .scroll-phone-screen[data-mode="single"] .phone-offer-text strong {
    font-size: 3.5px;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }

  .scroll-mobile-phone-slot .loyalty-pass > strong {
    white-space: nowrap;
  }

  .scroll-mobile-phone-slot .loyalty-pass {
    border-radius: 10px;
    gap: 6px;
    min-height: 92px;
    padding: 10px;
  }

  .scroll-mobile-phone-slot .loyalty-pass.compact {
    margin-top: 22px;
    min-height: 98px;
  }

  .scroll-mobile-phone-slot .stamp-grid {
    gap: 3px;
  }

  .scroll-mobile-phone-slot .stamp-grid > span {
    border-radius: 5px;
    height: 13px;
  }

  .scroll-mobile-phone-slot .stamp-grid p,
  .scroll-mobile-phone-slot .loyalty-pass small {
    font-size: 6px;
    line-height: 1.2;
  }

  .scroll-mobile-phone-slot .loyalty-pass .compact-card-title {
    font-size: 5.5px;
  }

  .scroll-mobile-phone-slot .loyalty-pass .compact-card-title span:last-child {
    font-size: 5px;
  }

  .scroll-mobile-phone-slot .stamp-progress {
    height: 4px;
  }

  .scroll-mobile-phone-slot .in-app-offers {
    gap: 4px;
    margin-top: 8px;
  }

  .scroll-mobile-phone-slot .in-app-offers div {
    border-radius: 7px;
    font-size: 5.5px;
    line-height: 1.1;
    min-height: 20px;
    padding: 4px 6px;
  }

  .scroll-mobile-phone-slot .in-app-offers b {
    font-size: 5.5px;
  }

  .scroll-mobile-phone-slot .lock-time {
    font-size: 34px;
    line-height: 32px;
  }

  .scroll-mobile-phone-slot .lock-date {
    font-size: 10px;
    line-height: 1.3;
    margin: 5px 0 22px;
  }

  .scroll-mobile-phone-slot .notification-stack {
    gap: 6px;
  }

  .scroll-mobile-phone-slot .phone-notification {
    border-radius: 8px;
    gap: 3px;
    grid-template-columns: 18px minmax(0, 1fr) 16px;
    min-height: 36px;
    padding: 5px 3px 5px 6px;
  }

  .scroll-mobile-phone-slot .phone-notification .notification-icon {
    height: 18px;
    width: 18px;
  }

  .scroll-mobile-phone-slot .phone-notification .notification-thumb {
    display: flex;
    height: 16px;
    margin: 0;
    width: 16px;
  }

  .scroll-mobile-phone-slot .phone-notification .notification-thumb svg {
    height: 7px;
    width: 7px;
  }

  .scroll-mobile-phone-slot .phone-notification b,
  .scroll-mobile-phone-slot .phone-notification p,
  .scroll-mobile-phone-slot .phone-notification small,
  .scroll-mobile-phone-slot .phone-notification header small {
    font-size: 5.5px;
    line-height: 1.2;
  }

  .scroll-mobile-phone-slot .phone-notification header {
    display: block;
  }

  .scroll-mobile-phone-slot .phone-notification b {
    display: block;
    font-size: 5px;
    white-space: nowrap;
  }

  .scroll-mobile-phone-slot .phone-notification header small {
    display: none;
  }

  .scroll-mobile-phone-slot .simple-pass .wallet-download {
    bottom: -12px;
    gap: 5px;
    height: 24px;
    padding: 3px 6px;
    width: 90px;
  }

  .scroll-mobile-phone-slot .simple-pass .wallet-download img {
    height: 14px;
    width: 14px;
  }

  .scroll-mobile-phone-slot .simple-pass .wallet-download span {
    align-items: flex-start;
    font-size: 5px;
    gap: 1.5px;
    line-height: 1.05;
    transform: none;
    white-space: nowrap;
  }

  .scroll-mobile-phone-slot .simple-pass .wallet-download small {
    font-size: 3.5px;
    letter-spacing: 0;
    line-height: 1;
    margin: 0;
  }

  .scroll-card-list {
    gap: 10px;
  }

  .scroll-card-list > div {
    height: auto;
    min-height: 58px;
    padding: 10px 12px;
  }

  .scroll-card-list span {
    height: 38px;
    width: 38px;
  }

  .scroll-story-mobile .scroll-card-list:not(.comparison-card-list) {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .scroll-story-mobile .scroll-card-list:not(.comparison-card-list) > div {
    align-content: start;
    display: grid;
    gap: 6px;
    height: 100%;
    justify-items: center;
    min-height: 82px;
    padding: 8px 5px;
    text-align: center;
    width: 100%;
  }

  .scroll-story-mobile .scroll-card-list:not(.comparison-card-list) > div:hover {
    transform: none;
  }

  .scroll-story-mobile .scroll-card-list:not(.comparison-card-list) span {
    height: 30px;
    width: 30px;
  }

  .scroll-story-mobile .scroll-card-list:not(.comparison-card-list) span svg {
    height: 16px;
    width: 16px;
  }

  .scroll-story-mobile .scroll-card-list:not(.comparison-card-list) strong {
    font-size: 10px;
    letter-spacing: 0;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .scroll-story-mobile .scroll-panel {
    padding-bottom: 34px;
    padding-top: 28px;
  }

  .scroll-story-mobile .scroll-panel .scroll-panel-copy {
    gap: 12px;
  }

  .scroll-story-mobile .scroll-panel .scroll-mobile-phone-slot {
    margin-bottom: 4px;
  }

  .scroll-story-mobile .scroll-panel .scroll-phone {
    height: 220px;
    width: 126px;
  }

  .scroll-story-mobile .scroll-panel .scroll-phone-screen {
    border-radius: 18px;
    inset: 0 13px;
    padding: 25px 7px 18px;
  }

  .scroll-story-mobile .scroll-panel .scroll-phone-screen.lockscreen {
    padding: 28px 7px 0;
  }

  .scroll-story-mobile .scroll-panel .pass-heading {
    margin-bottom: 6px;
  }

  .scroll-story-mobile .scroll-panel .scroll-phone-screen[data-mode="loyalty"] .pass-heading {
    margin-bottom: 3px;
  }

  .scroll-story-mobile .scroll-panel .scroll-phone-screen[data-mode="loyalty"] .phone-offers-card {
    gap: 3px;
    margin-top: 16px;
  }

  .scroll-story-mobile .scroll-panel .scroll-phone-screen[data-mode="loyalty"] .phone-offer-item {
    padding: 3px 0;
  }

  .scroll-story-mobile .scroll-panel .scroll-phone-screen[data-mode="loyalty"] .phone-offer-vip {
    gap: 2px;
    margin-top: auto;
  }

  .scroll-story-mobile .scroll-panel .pass-heading > svg {
    height: 12px;
    width: 12px;
  }

  .scroll-story-mobile .scroll-panel .pass-heading small {
    font-size: 5px;
    letter-spacing: 0.5px;
  }

  .scroll-story-mobile .scroll-panel .pass-heading strong,
  .scroll-story-mobile .scroll-panel .loyalty-pass > strong {
    font-size: 8px;
    line-height: 1.1;
  }

  .scroll-story-mobile .scroll-panel .phone-offers-card {
    gap: 5px;
    margin-top: 3px;
  }

  .scroll-story-mobile .scroll-panel .phone-offer-item {
    gap: 4px;
    grid-template-columns: 14px 1fr 8px;
    padding: 4px 0;
  }

  .scroll-story-mobile .scroll-panel .phone-offer-icon {
    border-radius: 3px;
    height: 14px;
    width: 14px;
  }

  .scroll-story-mobile .scroll-panel .phone-offer-icon svg {
    height: 8px;
    width: 8px;
  }

  .scroll-story-mobile .scroll-panel .phone-offer-text strong {
    font-size: 5px;
    line-height: 1.05;
  }

  .scroll-story-mobile .scroll-panel .phone-offer-text span {
    font-size: 4px;
    line-height: 1.1;
  }

  .scroll-story-mobile .scroll-panel .phone-offer-item > svg {
    height: 8px;
    width: 8px;
  }

  .scroll-story-mobile .scroll-panel .phone-offer-vip {
    gap: 2px;
  }

  .scroll-story-mobile .scroll-panel .phone-offer-vip span {
    font-size: 4px;
  }

  .scroll-story-mobile .scroll-panel .phone-offer-progress {
    height: 2.5px;
  }

  .scroll-story-mobile .scroll-panel .scroll-phone-screen[data-mode="loyalty"] .phone-offer-text span,
  .scroll-story-mobile .scroll-panel .scroll-phone-screen[data-mode="notifications"] .phone-offer-text span,
  .scroll-story-mobile .scroll-panel .scroll-phone-screen[data-mode="single"] .phone-offer-text span {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow: hidden;
  }

  .scroll-story-mobile .scroll-panel .scroll-phone-screen[data-mode="notifications"] .phone-offer-text strong,
  .scroll-story-mobile .scroll-panel .scroll-phone-screen[data-mode="single"] .phone-offer-text strong {
    font-size: 4px;
    letter-spacing: -0.02em;
    white-space: nowrap;
  }

  .scroll-story-mobile .scroll-panel .loyalty-pass {
    border-radius: 9px;
    gap: 5px;
    min-height: 78px;
    padding: 8px 9px;
  }

  .scroll-story-mobile .scroll-panel .loyalty-pass.compact {
    margin-top: 18px;
    min-height: 80px;
  }

  .scroll-story-mobile .scroll-panel .stamp-grid {
    gap: 2px 3px;
  }

  .scroll-story-mobile .scroll-panel .stamp-grid > span {
    border-radius: 4px;
    height: 11px;
  }

  .scroll-story-mobile .scroll-panel .stamp-grid > span svg {
    height: 8px;
    width: 8px;
  }

  .scroll-story-mobile .scroll-panel .stamp-grid p,
  .scroll-story-mobile .scroll-panel .loyalty-pass small {
    font-size: 5px;
    line-height: 1.15;
  }

  .scroll-story-mobile .scroll-panel .loyalty-pass .compact-card-title {
    font-size: 4.75px;
  }

  .scroll-story-mobile .scroll-panel .loyalty-pass .compact-card-title span:last-child {
    font-size: 4.25px;
  }

  .scroll-story-mobile .scroll-panel .stamp-progress {
    height: 3px;
  }

  .scroll-story-mobile .scroll-panel .in-app-offers {
    gap: 4px;
    margin-top: 7px;
  }

  .scroll-story-mobile .scroll-panel .in-app-offers div {
    border-radius: 6px;
    font-size: 5px;
    line-height: 1.1;
    min-height: 18px;
    padding: 3px 5px;
  }

  .scroll-story-mobile .scroll-panel .in-app-offers b {
    font-size: 5px;
  }

  .scroll-story-mobile .scroll-panel .lock-time {
    font-size: 29px;
    line-height: 28px;
  }

  .scroll-story-mobile .scroll-panel .lock-date {
    font-size: 8px;
    margin: 3px 0 17px;
  }

  .scroll-story-mobile .scroll-panel .notification-stack {
    gap: 4px;
  }

  .scroll-story-mobile .scroll-panel .phone-notification {
    border-radius: 7px;
    gap: 2px;
    grid-template-columns: 15px minmax(0, 1fr) 14px;
    min-height: 31px;
    padding: 4px 2px 4px 5px;
  }

  .scroll-story-mobile .scroll-panel .phone-notification .notification-icon {
    height: 15px;
    width: 15px;
  }

  .scroll-story-mobile .scroll-panel .phone-notification .notification-icon svg {
    height: 12px;
    width: 12px;
  }

  .scroll-story-mobile .scroll-panel .phone-notification .notification-thumb {
    display: flex;
    height: 14px;
    margin: 0;
    width: 14px;
  }

  .scroll-story-mobile .scroll-panel .phone-notification .notification-thumb svg {
    height: 6px;
    width: 6px;
  }

  .scroll-story-mobile .scroll-panel .phone-notification b,
  .scroll-story-mobile .scroll-panel .phone-notification p,
  .scroll-story-mobile .scroll-panel .phone-notification small,
  .scroll-story-mobile .scroll-panel .phone-notification header small {
    font-size: 4.75px;
    line-height: 1.15;
  }

  .scroll-story-mobile .scroll-panel .phone-notification header {
    display: block;
  }

  .scroll-story-mobile .scroll-panel .phone-notification b {
    display: block;
    font-size: 4.25px;
    white-space: nowrap;
  }

  .scroll-story-mobile .scroll-panel .phone-notification header small {
    display: none;
  }

  .scroll-story-mobile .scroll-panel .simple-pass .wallet-download {
    bottom: -7px;
    gap: 4px;
    height: 22px;
    padding: 2px 5px;
    width: 78px;
  }

  .scroll-story-mobile .scroll-panel .simple-pass .wallet-download img {
    height: 12px;
    width: 12px;
  }

  .scroll-story-mobile .scroll-panel .simple-pass .wallet-download span {
    font-size: 4.5px;
    gap: 1px;
    line-height: 0.95;
  }

  .scroll-story-mobile .scroll-panel .simple-pass .wallet-download small {
    font-size: 3px;
    line-height: 1;
    margin: 0;
  }

  .scroll-story-mobile .scroll-panel .scroll-kicker {
    gap: 8px;
  }

  .scroll-story-mobile .scroll-panel .scroll-kicker svg {
    height: 26px;
    width: 26px;
  }

  .scroll-story-mobile .scroll-panel .scroll-kicker b {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .scroll-story-mobile .scroll-panel h2 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.05;
  }

  .scroll-story-mobile .scroll-panel .scroll-panel-copy > p {
    font-size: 14px;
    line-height: 1.45;
    max-width: 340px;
  }

  .scroll-story-mobile .scroll-panel .scroll-card-list {
    margin-top: 2px;
  }

  .scroll-story-mobile .scroll-panel .scroll-card-list > div {
    border-radius: 10px;
    min-height: 76px;
    padding: 8px 4px;
  }

  .scroll-story-mobile .scroll-panel .scroll-card-list strong {
    font-size: 9px;
    line-height: 1.18;
  }

  .scroll-story-mobile .scroll-panel .scroll-note {
    align-items: center;
    gap: 8px;
    min-height: 0;
    padding: 10px 12px;
  }

  .scroll-story-mobile .scroll-panel .scroll-note svg {
    flex: 0 0 auto;
    height: 18px;
    width: 18px;
  }

  .scroll-story-mobile .scroll-panel .scroll-note p {
    font-size: 11px;
    line-height: 1.35;
    text-align: left;
  }

  .comparison-card-list {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
  }

  .comparison-card-list > div {
    align-content: start;
    align-items: center;
    display: grid;
    gap: 6px;
    height: 100%;
    justify-items: center;
    margin: 0;
    min-height: 76px;
    padding: 8px 4px;
    text-align: center;
    width: 100%;
  }

  .comparison-card-list > div:hover {
    transform: none;
  }

  .comparison-card-list span {
    border-radius: 7px;
    height: 30px;
    width: 30px;
  }

  .comparison-card-list span svg {
    height: 16px;
    width: 16px;
  }

  .comparison-card-list strong {
    font-size: 9px;
    letter-spacing: 0;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .scroll-note {
    align-items: flex-start;
    padding: 12px 14px;
  }

  .form-section {
    min-height: auto;
    padding: 34px 14px 40px;
  }

  .strategy-card {
    border-radius: 14px;
    min-height: auto;
    padding: 26px 16px 20px;
  }

  .strategy-card:hover {
    transform: none;
  }

  .strategy-heading {
    margin-bottom: 22px;
    max-width: 340px;
  }

  .strategy-heading h2 {
    font-size: clamp(27px, 7.8vw, 32px);
    letter-spacing: 0;
    line-height: 1.05;
  }

  .strategy-heading p {
    font-size: 13px;
    line-height: 1.45;
    margin-top: 12px;
  }

  .strategy-form {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .strategy-form label,
  .strategy-field {
    gap: 6px;
  }

  .strategy-form label.full,
  .strategy-field.full,
  .strategy-form > button {
    grid-column: auto;
  }

  .strategy-form label > span,
  .strategy-field > span {
    font-size: 11px;
    letter-spacing: 0.5px;
    padding-left: 2px;
  }

  .strategy-form input,
  .strategy-select-trigger {
    border-radius: 9px;
    font-size: 14px;
    height: 48px;
    padding: 11px 13px;
  }

  .strategy-select-menu {
    border-radius: 10px;
    top: calc(100% + 5px);
  }

  .strategy-select-menu button {
    font-size: 14px;
    min-height: 40px;
    padding: 8px 11px;
  }

  .strategy-form > button {
    border-radius: 9px;
    font-size: 14px;
    height: auto;
    min-height: 50px;
    padding: 11px 14px;
  }

  .strategy-trust {
    align-items: start;
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
    padding-top: 16px;
  }

  .strategy-trust span {
    align-content: center;
    display: grid;
    font-size: 9px;
    gap: 4px;
    justify-content: center;
    justify-items: center;
    line-height: 1.2;
    min-height: 54px;
    padding: 7px 4px;
    text-align: center;
  }

  .strategy-trust svg {
    height: 17px;
    width: 17px;
  }

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

  .testimonial-section {
    padding: 38px 14px 44px;
  }

  .testimonial-heading {
    gap: 9px;
    margin-bottom: 22px;
  }

  .testimonial-heading .section-intro {
    gap: 8px;
  }

  .testimonial-heading .section-intro b {
    font-size: 10px;
    letter-spacing: 0.7px;
  }

  .testimonial-heading .section-intro span {
    width: 20px;
  }

  .testimonial-heading h2 {
    font-size: clamp(25px, 7vw, 30px);
    letter-spacing: 0;
    line-height: 1.08;
  }

  .testimonial-heading p {
    font-size: 13px;
    line-height: 1.45;
    max-width: 340px;
  }

  .testimonial-grid {
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-card {
    border-radius: 12px;
  }

  .testimonial-card:hover {
    transform: none;
  }

  .testimonial-card > header {
    gap: 5px;
    padding: 10px 10px 7px;
  }

  .testimonial-card > header svg {
    height: 17px;
    width: 17px;
  }

  .testimonial-card > header b {
    font-size: 8px;
    letter-spacing: 0.5px;
  }

  .testimonial-image {
    border-radius: 8px;
    height: 86px;
    margin: 0 9px;
  }

  .testimonial-body {
    gap: 5px;
    padding: 10px 10px 12px;
  }

  .stars {
    gap: 1px;
  }

  .stars svg {
    height: 10px;
    width: 10px;
  }

  .stars b {
    font-size: 9px;
    margin-left: 3px;
  }

  .testimonial-body blockquote {
    display: -webkit-box;
    font-size: 10px;
    line-height: 1.4;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
  }

  .testimonial-body blockquote::before {
    display: none;
  }

  .testimonial-body > strong {
    font-size: 10px;
    line-height: 1.25;
    padding-top: 3px;
  }

  .testimonial-body small {
    font-size: 8px;
    line-height: 1.25;
  }

  .testimonial-card footer {
    gap: 4px;
    padding: 7px 8px 9px;
  }

  .testimonial-card footer div {
    border-radius: 7px;
    min-height: 42px;
    padding: 6px 3px;
  }

  .testimonial-card footer b {
    font-size: 13px;
  }

  .testimonial-card footer span {
    font-size: 6px;
    letter-spacing: 0;
    line-height: 1.15;
  }

  .final-cta {
    gap: 14px;
    min-height: auto;
    padding: 46px 18px 50px;
  }

  .final-cta .cta-orb {
    filter: blur(24px);
    height: 220px;
    width: 220px;
  }

  .final-cta .cta-orb.one {
    right: -100px;
    top: -84px;
  }

  .final-cta .cta-orb.two {
    bottom: -100px;
    left: -100px;
  }

  .scale-pill {
    font-size: 10px;
    gap: 6px;
    padding: 7px 12px;
  }

  .scale-pill svg {
    height: 17px;
    width: 17px;
  }

  .final-cta h2 {
    font-size: clamp(31px, 8.7vw, 36px);
    line-height: 1.05;
    margin-top: 4px;
    max-width: 350px;
  }

  .final-cta p {
    font-size: 14px;
    line-height: 1.5;
    max-width: 330px;
  }

  .final-cta a {
    border-radius: 10px;
    font-size: 16px;
    gap: 8px;
    height: 52px;
    margin-top: 6px;
    width: min(100%, 216px);
  }

  .final-cta a svg {
    height: 20px;
    width: 20px;
  }

  .site-footer {
    padding: 0 18px;
  }

  .site-footer-inner {
    gap: 34px 26px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 38px 0 28px;
    width: 100%;
  }

  .footer-brand {
    display: block;
    grid-column: 1 / -1;
  }

  .footer-brand p {
    margin-bottom: 18px;
    max-width: 320px;
  }

  .footer-column h2 {
    margin-bottom: 15px;
  }

  .footer-column nav,
  .footer-column ul {
    gap: 10px;
  }

  .footer-explore nav {
    display: flex;
    gap: 10px;
    width: 100%;
  }

  .footer-partners ul {
    gap: 8px;
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-emails {
    grid-column: auto;
  }

  .footer-bottom {
    padding: 18px 0 20px;
    text-align: center;
  }

  .footer-bottom span {
    font-size: 11px;
    line-height: 1.4;
  }
}

@media (max-width: 520px) {
  .site-footer-inner {
    gap: 30px;
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-partners a {
    white-space: normal;
  }
}

@media (max-width: 380px) {
  .hero-visual {
    height: 300px;
  }

  .hero-device-stage {
    transform: scale(0.53);
  }

  .hero-wallet-badges {
    padding: 8px 9px;
  }

  .wallet-badge {
    font-size: 11px;
  }

  .wallet-badge + .wallet-badge {
    margin-left: 0;
    padding-left: 0;
  }

  .hero-left h1,
  .strategy-heading h2,
  .testimonial-heading h2,
  .final-cta h2 {
    font-size: 31px;
  }

  .hero-left h1 {
    font-size: clamp(23px, 6.5vw, 25px);
  }

  .qr-mockup {
    gap: 3px;
    margin-left: -8px;
    margin-right: -8px;
  }

  .qr-stand {
    width: 136px;
  }

  .qr-stand:hover {
    transform: rotate(-3deg) translateY(-3px);
  }

  .mini-phone {
    width: 128px;
  }
}
