@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&display=swap");

@font-face {
  font-family: "MonMaterialIcons";
  src: url("assets/MaterialIcons-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: block;
}

:root {
  --ink: #212121;
  --ink-soft: #656b77;
  --app-background: #f4f6ff;
  --line: rgba(17, 18, 24, 0.08);
  --line-strong: rgba(17, 18, 24, 0.14);
  --card: #ffffff;
  --surface: #f5f6fa;
  --surface-2: #eef1fb;
  --mon-indigo: #6d7bff;
  --mon-violet: #7a5fff;
  --mon-indigo-deep: #29367f;
  --mon-pin-indigo: #1a237e;
  --mon-mist: #b9c2ff;
  --dashboard-gray: #2f2f38;
  --success: #64dfa3;
  --danger: #ff6b6b;
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --site-content-edge: calc(clamp(96px, 9vw, 176px) + clamp(96px, 8vw, 176px));
}

* {
  box-sizing: border-box;
}

html {
  background: var(--app-background);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--app-background);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

html.is-page-leaving body {
  opacity: 0 !important;
  transition: none !important;
}

html.is-page-leaving * {
  animation-play-state: paused !important;
}

h1,
h2,
h3 {
  font-weight: 600;
}

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

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
}

.site-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0;
  min-height: 52px;
  padding: 8px clamp(96px, 9vw, 176px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(244, 246, 255, 0.9);
  backdrop-filter: blur(14px);
  z-index: 20;
  transition: transform 420ms var(--ease-premium), box-shadow 420ms var(--ease-premium);
  will-change: transform;
}

.site-header.is-scroll-hidden {
  transform: translateY(calc(-100% - 2px));
  box-shadow: none;
  pointer-events: none;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  line-height: 0;
  transform: translateX(clamp(96px, 8vw, 176px));
  transform-origin: left center;
}

.brand-wordmark {
  display: block;
  height: 21.6px;
  width: auto;
}

.brand:hover {
  text-decoration: none;
}

nav {
  grid-column: 3;
  display: flex;
  gap: clamp(18px, 1.8vw, 30px);
  justify-content: center;
  justify-self: end;
  align-items: center;
  margin-left: 0;
  transform: translateX(calc(clamp(96px, 8vw, 176px) * -1));
}

nav a {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding: 6px 6px;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 650;
  font-size: 14px;
  letter-spacing: 0;
}

nav a.active,
nav a:hover,
nav a:focus-visible {
  background: rgba(109, 123, 255, 0.08);
  box-shadow: 0 10px 24px rgba(109, 123, 255, 0.16);
  text-decoration: none;
  color: var(--mon-indigo-deep);
}

nav a.download-app-link,
nav a.download-app-link:hover,
nav a.download-app-link:focus-visible {
  min-height: 38px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(33, 33, 33, 0.14);
  text-decoration: none;
}

[data-get-app] {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

[data-get-app]::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(
    108deg,
    rgba(255, 255, 255, 0) 28%,
    rgba(190, 197, 214, 0.04) 36%,
    rgba(244, 246, 252, 0.16) 44%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(220, 225, 238, 0.14) 57%,
    rgba(255, 255, 255, 0) 68%
  );
  opacity: 0;
  transform: translateX(-145%);
  filter: blur(1.5px);
  mix-blend-mode: screen;
  pointer-events: none;
  will-change: transform, opacity;
}

[data-get-app]:hover::after,
[data-get-app]:focus-visible::after {
  animation: cta-metal-sweep 1100ms cubic-bezier(0.22, 0.72, 0.2, 1) 1 both;
}

main {
  padding: clamp(28px, 5vw, 84px) var(--site-content-edge);
}

.home-page {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: clip;
}

.home-page .site-header {
  border-bottom-color: var(--line);
}

.home-page main > section + section {
  position: relative;
  margin-top: clamp(132px, 13vw, 208px);
}

.home-page main > section + section::before {
  content: "";
  position: absolute;
  top: calc(0px - clamp(66px, 6.5vw, 104px));
  left: 50%;
  width: 100vw;
  height: 12px;
  transform: translateX(-50%);
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(17, 18, 24, 0.025), 0 -1px 0 rgba(17, 18, 24, 0.025);
  pointer-events: none;
}

.hero {
  min-height: calc(100svh - 118px);
  display: grid;
  gap: clamp(18px, 3vw, 30px);
  place-items: center;
  padding-top: 0;
  transform: translateY(-11%);
  margin-bottom: clamp(-104px, -10svh, -64px);
}

.hero-visual {
  width: 100%;
  display: grid;
  place-items: center;
  margin-top: -54px;
}

.hero-stage {
  --pointer-x: 50%;
  --pointer-y: 50%;
  --light-x: 50%;
  --light-y: 22%;
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  --rotate-z: 0deg;
  --sheen-angle: 0deg;
  --glint-strength: 0.88;
  --parallax-x: 0px;
  --parallax-y: 0px;
  --hero-card-half-height: clamp(112px, 17.6vw, 186px);
  position: relative;
  width: min(100%, 1020px);
  min-height: clamp(360px, 50vw, 680px);
  display: grid;
  place-items: center;
  perspective: 2400px;
  transform-style: preserve-3d;
  isolation: isolate;
}

.hero-orb,
.hero-card-ghost,
.hero-float-chip,
.hero-float-sheet,
.hero-card-shadow,
.hero-card,
.hero-card::before,
.hero-card::after,
.hero-card__surface,
.hero-card__base,
.hero-card__band,
.hero-card__shade,
.hero-card__grain,
.hero-card__light,
.hero-card__copy,
.hero-card__copy-image,
.hero-card__sheen,
.hero-card__rim {
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  z-index: -3;
  animation: orb-pulse 11s ease-in-out infinite;
}

.hero-orb--left {
  width: min(34vw, 420px);
  height: min(34vw, 420px);
  left: 8%;
  bottom: 4%;
  background: radial-gradient(circle, rgba(109, 123, 255, 0.18) 0%, rgba(109, 123, 255, 0) 72%);
}

.hero-orb--right {
  width: min(42vw, 560px);
  height: min(42vw, 560px);
  right: 6%;
  top: 2%;
  background: radial-gradient(circle, rgba(122, 95, 255, 0.18) 0%, rgba(122, 95, 255, 0) 74%);
  animation-delay: -4s;
}

.hero-card-ghost {
  position: absolute;
  width: min(76vw, 780px);
  aspect-ratio: 1423 / 896;
  border-radius: clamp(30px, 3vw, 50px);
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: linear-gradient(135deg, rgba(109, 123, 255, 0.2), rgba(122, 95, 255, 0.18));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(14px);
}

.hero-card-ghost--rear {
  opacity: 0.28;
  transform: translate3d(-2%, 3%, -200px) rotateX(8deg) rotateY(-13deg) rotateZ(-9deg);
}

.hero-card-ghost--mid {
  opacity: 0.18;
  transform: translate3d(2%, -2%, -110px) rotateX(-4deg) rotateY(10deg) rotateZ(7deg);
}

.hero-float-chip,
.hero-float-sheet {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(244, 247, 255, 0.72));
  box-shadow: 0 26px 56px rgba(38, 44, 71, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(28px);
}

.hero-float-chip {
  --float-x: 0px;
  --float-y: 0px;
  --float-z: 120px;
  --float-drift: 10px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 10px 16px;
  border-radius: 24px;
  color: var(--mon-indigo-deep);
  z-index: 5;
  animation: float-chip 9s ease-in-out infinite;
}

.hero-chip-icon,
.hero-profile-icon,
.hero-inline-icon,
.hero-sheet-button-icon {
  display: grid;
  place-items: center;
  flex: none;
}

.hero-chip-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: #ffffff;
}

.hero-chip-icon--verified {
  background: linear-gradient(135deg, var(--mon-indigo), var(--mon-violet));
  box-shadow: 0 10px 18px rgba(109, 123, 255, 0.26);
}

.hero-chip-icon--wallet {
  background: linear-gradient(135deg, rgba(109, 123, 255, 0.16), rgba(122, 95, 255, 0.12));
  color: var(--mon-indigo-deep);
}

.hero-chip-icon svg,
.hero-profile-icon svg,
.hero-inline-icon svg,
.hero-sheet-button-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-chip-copy {
  display: grid;
  gap: 2px;
}

.hero-chip-copy strong {
  font-size: 13.5px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-chip-copy small {
  color: #6f7687;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-float-chip--verified {
  top: 11%;
  left: 10%;
  --float-x: calc(var(--parallax-x) * -1.2);
  --float-y: calc(var(--parallax-y) * -1.2);
  --float-z: 120px;
}

.hero-float-chip--wallet {
  top: 14%;
  right: 11%;
  --float-x: calc(var(--parallax-x) * 1.1);
  --float-y: calc(var(--parallax-y) * -1.1);
  --float-z: 105px;
  animation-delay: -3s;
}

.hero-float-sheet {
  --float-x: 0px;
  --float-y: 0px;
  --float-z: 90px;
  --float-drift: 12px;
  border-radius: 30px;
  padding: 18px;
  z-index: 2;
  animation: float-sheet 10s ease-in-out infinite;
}

.hero-float-sheet--profile {
  width: min(308px, 29vw);
  left: 6%;
  bottom: 8%;
  --float-x: calc(var(--parallax-x) * -1.8);
  --float-y: calc(var(--parallax-y) * 1.4);
  --float-z: 90px;
}

.hero-float-sheet--tier {
  width: min(286px, 26vw);
  right: 6%;
  bottom: 4%;
  --float-x: calc(var(--parallax-x) * 1.8);
  --float-y: calc(var(--parallax-y) * 1.2);
  --float-z: 85px;
  animation-delay: -5s;
}

.float-kicker {
  display: block;
  margin-bottom: 12px;
  color: #68708a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-profile-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hero-profile-icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--mon-indigo), var(--mon-violet));
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(109, 123, 255, 0.26);
}

.hero-profile-copy strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.hero-profile-copy p {
  margin: 4px 0 0;
  color: #666d7d;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.hero-profile-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 20px;
  background: rgba(109, 123, 255, 0.08);
  border: 1px solid rgba(109, 123, 255, 0.12);
}

.hero-inline-icon {
  width: 32px;
  height: 32px;
  border-radius: 11px;
  background: rgba(109, 123, 255, 0.16);
  color: var(--mon-indigo);
}

.hero-profile-row-copy {
  display: grid;
  gap: 2px;
}

.hero-profile-row-copy span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-profile-row-copy small {
  color: #6a7182;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}

.hero-sheet-button {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 14px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-sheet-button + .hero-sheet-button {
  margin-top: 10px;
}

.hero-sheet-button--primary {
  background: linear-gradient(135deg, var(--mon-indigo), var(--mon-violet));
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(109, 123, 255, 0.28);
}

.hero-sheet-button--secondary {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(239, 243, 255, 0.8));
  border: 1px solid rgba(109, 123, 255, 0.12);
  color: #2c3150;
}

.hero-sheet-button-icon {
  width: 32px;
  height: 32px;
  border-radius: 11px;
}

.hero-sheet-button-icon--primary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.hero-sheet-button-icon--secondary {
  background: rgba(109, 123, 255, 0.1);
  color: var(--mon-indigo-deep);
}

.hero-app-orbit {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 11%;
  height: clamp(210px, 25vw, 312px);
  pointer-events: none;
  transform-style: preserve-3d;
  transform: translate3d(calc(var(--parallax-x) * 0.32), calc(var(--parallax-y) * 0.18), -180px);
  z-index: 1;
}

.hero-app-orbit::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 8%;
  height: 34%;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(109, 123, 255, 0.1) 0%, rgba(109, 123, 255, 0) 72%);
  filter: blur(20px);
}

.hero-app-object {
  --app-x: 0px;
  --app-y: 0px;
  --app-z: -220px;
  --app-rx: 20deg;
  --app-ry: 0deg;
  --app-rz: 0deg;
  --launch-spin: 0deg;
  --app-delay: 0ms;
  --float-distance: 12px;
  --float-rot: 0deg;
  --float-side: 0px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform-style: preserve-3d;
  transform-origin: center top;
  opacity: 0;
  filter: blur(18px);
  animation: hero-app-throw 1550ms var(--ease-premium) both;
  animation-delay: var(--app-delay);
}

.hero-app-object__inner {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  transform-style: preserve-3d;
  animation: hero-app-hover 10s ease-in-out infinite;
  animation-delay: calc(var(--app-delay) + 1550ms);
}

.hero-app-object__inner::before {
  content: "";
  position: absolute;
  inset: 16px 24px 34px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(109, 123, 255, 0.22) 0%, rgba(109, 123, 255, 0) 72%);
  filter: blur(16px);
  transform: translateZ(-24px);
}

.hero-app-object__image {
  position: relative;
  z-index: 1;
  display: block;
  width: clamp(92px, 8.4vw, 126px);
  height: auto;
  user-select: none;
  filter: drop-shadow(0 20px 30px rgba(75, 84, 170, 0.16)) drop-shadow(0 10px 16px rgba(18, 22, 52, 0.12));
}

.hero-app-object__label {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 7ch;
  color: var(--ink);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.045em;
  text-align: center;
  text-wrap: balance;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.92);
}

.hero-app-object__label--stacked {
  max-width: 5.4ch;
}

.hero-app-object--transfer {
  --app-x: -338px;
  --app-y: 86px;
  --app-z: -246px;
  --app-rx: 22deg;
  --app-ry: 16deg;
  --app-rz: -10deg;
  --launch-spin: -24deg;
  --app-delay: 60ms;
  --float-distance: 10px;
  --float-rot: -2.4deg;
  --float-side: -5px;
}

.hero-app-object--payments {
  --app-x: -118px;
  --app-y: 58px;
  --app-z: -184px;
  --app-rx: 14deg;
  --app-ry: 6deg;
  --app-rz: -4deg;
  --launch-spin: -12deg;
  --app-delay: 220ms;
  --float-distance: 14px;
  --float-rot: 1.2deg;
  --float-side: -3px;
}

.hero-app-object--request {
  --app-x: 116px;
  --app-y: 66px;
  --app-z: -194px;
  --app-rx: 16deg;
  --app-ry: -8deg;
  --app-rz: 5deg;
  --launch-spin: 14deg;
  --app-delay: 360ms;
  --float-distance: 12px;
  --float-rot: -1.6deg;
  --float-side: 4px;
}

.hero-app-object--add {
  --app-x: 336px;
  --app-y: 88px;
  --app-z: -252px;
  --app-rx: 22deg;
  --app-ry: -14deg;
  --app-rz: 10deg;
  --launch-spin: 24deg;
  --app-delay: 500ms;
  --float-distance: 10px;
  --float-rot: 2.2deg;
  --float-side: 5px;
}

.hero-card-shadow {
  position: absolute;
  width: min(62vw, 660px);
  height: clamp(86px, 9vw, 120px);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(25, 31, 56, 0.22) 0%, rgba(25, 31, 56, 0.08) 46%, rgba(25, 31, 56, 0) 76%);
  filter: blur(28px);
  transform: translate3d(0, 32%, -220px) rotateX(78deg) scale(1.05);
  animation: shadow-drift 9s ease-in-out infinite;
  display: none;
}

.hero-card {
  position: relative;
  width: min(55.72vw, 588px);
  aspect-ratio: 1428 / 901;
  border-radius: 0;
  overflow: visible;
  transform-style: preserve-3d;
  transform: rotateX(var(--rotate-x)) rotateY(var(--rotate-y)) rotateZ(var(--rotate-z));
  will-change: transform;
  z-index: 4;
  background: transparent;
  isolation: isolate;
  backface-visibility: hidden;
}

.hero-card-switch {
  position: absolute;
  left: 50%;
  top: calc(50% + var(--hero-card-half-height) + clamp(18px, 2vw, 28px));
  z-index: 7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.5vw, 18px);
  transform: translateX(-50%);
}

.hero-card-switch__option {
  min-width: clamp(96px, 9.5vw, 126px);
  min-height: clamp(38px, 3.6vw, 48px);
  padding: 0 clamp(18px, 2vw, 26px);
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 700;
  letter-spacing: -0.03em;
  cursor: pointer;
  transition:
    background-color 240ms var(--ease-premium),
    box-shadow 240ms var(--ease-premium),
    color 240ms var(--ease-premium),
    transform 240ms var(--ease-premium);
}

.hero-card-switch__option:hover,
.hero-card-switch__option:focus-visible,
.hero-card-switch__option.is-active {
  background: rgba(109, 123, 255, 0.08);
  box-shadow: 0 10px 24px rgba(109, 123, 255, 0.16);
  color: var(--mon-indigo-deep);
}

.hero-card-switch__option:focus-visible {
  outline: 2px solid rgba(109, 123, 255, 0.34);
  outline-offset: 3px;
}

.hero-card-switch__option:active {
  transform: scale(0.98);
}

.hero-card::before,
.hero-card::after {
  content: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.hero-card__face,
.hero-card__light {
  position: absolute;
  inset: 0;
}

.hero-card__face {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  backface-visibility: hidden;
  transform: translateZ(10px);
  image-rendering: auto;
  filter: saturate(1.02) contrast(1.03);
}

/* Infinity card image is a full rectangle — round its corners to match */
.hero-card__face--infinity {
  border-radius: 4.8% / 7.6%;
}

.hero-card__light {
  z-index: 2;
  mix-blend-mode: screen;
  -webkit-mask-image: url("assets/mon-card-hero.png");
  mask-image: url("assets/mon-card-hero.png");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-clip-path: inset(2px round 42px);
  clip-path: inset(2px round 42px);
}

.hero-card__light--ambient {
  background:
    radial-gradient(48% 60% at calc(var(--light-x) - 16%) calc(var(--light-y) - 22%), rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 25%, rgba(255, 255, 255, 0) 62%),
    radial-gradient(56% 86% at calc(var(--light-x) + 38%) calc(var(--light-y) + 42%), rgba(145, 114, 255, 0.16) 0%, rgba(145, 114, 255, 0.08) 22%, rgba(145, 114, 255, 0) 58%);
  opacity: calc(var(--glint-strength) * 0.88);
  transform: translate3d(calc(var(--parallax-x) * 0.14), calc(var(--parallax-y) * 0.14), 18px);
}

.hero-card__light--specular {
  background: radial-gradient(29% 36% at var(--light-x) var(--light-y), rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.2) 14%, rgba(255, 255, 255, 0.09) 24%, rgba(255, 255, 255, 0.03) 32%, rgba(255, 255, 255, 0) 58%);
  filter: blur(1px);
  opacity: calc(var(--glint-strength) * 0.94);
  transform: translate3d(calc(var(--parallax-x) * 0.24), calc(var(--parallax-y) * 0.24), 28px);
}

.hero-card__light--sheen {
  background: linear-gradient(calc(116deg + var(--sheen-angle)), rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.18) 31%, rgba(255, 255, 255, 0.08) 35%, rgba(255, 255, 255, 0) 41%, rgba(255, 255, 255, 0) 100%);
  opacity: calc(var(--glint-strength) * 0.76);
  transform: translate3d(calc(var(--parallax-x) * 0.16), calc(var(--parallax-y) * 0.16), 34px);
}

.hero-stage.is-entering .hero-card,
.hero-card.is-swapping {
  animation: hero-card-entry 1220ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-stage.is-entering .hero-card-shadow {
  animation: hero-card-shadow-entry 1220ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy {
  max-width: 760px;
  display: grid;
  gap: 18px;
  text-align: center;
}

.hero h1,
.plan-hero-heading {
  margin: 0;
  color: var(--ink);
  font-size: clamp(49px, 5.13vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.08em;
  font-weight: 600;
  text-wrap: balance;
}

.hero-title-shine {
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.hero-title-base {
  display: block;
}

.hero-title-period {
  display: inline-block;
  margin-left: -0.12em;
}

.hero-title-light {
  position: absolute;
  inset: 0 0 -0.18em;
  display: block;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-align: inherit;
  text-wrap: inherit;
  color: transparent;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(
      104deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 36%,
      rgba(172, 181, 205, 0.16) 42%,
      rgba(236, 240, 250, 0.76) 47%,
      rgba(255, 255, 255, 1) 50%,
      rgba(229, 234, 248, 0.82) 53%,
      rgba(142, 152, 181, 0.2) 59%,
      rgba(255, 255, 255, 0) 66%,
      rgba(255, 255, 255, 0) 100%
    );
  background-size: 360% 100%;
  background-position: 118% 0;
  background-repeat: no-repeat;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  will-change: opacity, background-position;
}

.hero-title-shine.is-shining .hero-title-light {
  opacity: 1;
  animation: headline-metal-sweep 3.15s cubic-bezier(0.25, 0.1, 0.25, 1) 1 both;
}

/* Metal-shine sweep on the plan eyeline (name + price) */
.plan-hero-eyeline--shine {
  position: relative;
  isolation: isolate;
}

.plan-hero-eyeline__light {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: baseline;
  gap: 18px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(
      104deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 36%,
      rgba(172, 181, 205, 0.16) 42%,
      rgba(236, 240, 250, 0.76) 47%,
      rgba(255, 255, 255, 1) 50%,
      rgba(229, 234, 248, 0.82) 53%,
      rgba(142, 152, 181, 0.2) 59%,
      rgba(255, 255, 255, 0) 66%,
      rgba(255, 255, 255, 0) 100%
    );
  background-size: 360% 100%;
  background-position: 118% 0;
  background-repeat: no-repeat;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  will-change: opacity, background-position;
}

.plan-hero-eyeline__light * {
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.plan-hero-eyeline--shine.is-shining .plan-hero-eyeline__light {
  opacity: 1;
  animation: headline-metal-sweep 3.15s cubic-bezier(0.25, 0.1, 0.25, 1) 1 both;
}

.hero-subtitle {
  margin: 0 auto;
  max-width: 100%;
  color: #59606f;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.hero-subtitle__line {
  display: block;
}

.hero-subtitle__line--primary {
  white-space: nowrap;
}

.get-app-button {
  width: min(100%, 184px);
  height: 46px;
  margin: 4px auto 0;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(33, 33, 33, 0.14);
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.015em;
  cursor: pointer;
}

.hero-copy > .get-app-button {
  width: auto;
  min-width: 0;
  height: 42px;
  padding-inline: 18px;
  justify-self: center;
  font-size: 15px;
  box-shadow: 0 6px 14px rgba(33, 33, 33, 0.12);
}

.section-heading {
  max-width: 760px;
  display: grid;
  gap: 10px;
}

.section-heading--center {
  margin: 0 auto;
  text-align: center;
}

.section-kicker {
  margin: 0;
  color: var(--mon-indigo);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 4.75vw, 61px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 600;
  text-wrap: balance;
}

.offer-shortcut-stage {
  position: relative;
  max-width: 980px;
  margin: clamp(36px, 4.6vw, 58px) auto 0;
  min-height: 0;
  padding: 18px 0 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 132px));
  justify-content: center;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  perspective: 2400px;
  perspective-origin: center 8%;
  isolation: isolate;
  transform: translateY(5%) scale(0.9);
  transform-origin: top center;
}

.offer-shortcut-stage::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 30px;
  height: 86px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(33, 39, 82, 0.06) 0%, rgba(33, 39, 82, 0.02) 44%, rgba(33, 39, 82, 0) 74%);
  filter: blur(18px);
}

.offer-shortcut-stage::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 12px;
  height: 20px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(17, 20, 35, 0.06) 0%, rgba(17, 20, 35, 0) 78%);
  filter: blur(8px);
  opacity: 0.56;
}

.offer-shortcut {
  --throw-x: 0px;
  --throw-y: -70px;
  --throw-z: 560px;
  --dismiss-x: 0px;
  --dismiss-y: -120px;
  --throw-ry: 0deg;
  --throw-rz: 0deg;
  --land-rx: 16deg;
  --land-ry: 0deg;
  --land-rz: 0deg;
  --land-y: 0px;
  --delay: 0ms;
  --exit-delay: 0ms;
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  opacity: 0;
  filter: none;
  transform-style: preserve-3d;
  transform-origin: center 62%;
  backface-visibility: hidden;
  will-change: transform, opacity, filter;
}

.offer-shortcut::before {
  content: "";
  position: absolute;
  top: 12px;
  width: clamp(80px, 6.3vw, 95px);
  height: clamp(80px, 6.3vw, 95px);
  border-radius: 36%;
  background: radial-gradient(circle at 50% 46%, rgba(67, 79, 151, 0.12) 0%, rgba(67, 79, 151, 0.05) 38%, rgba(67, 79, 151, 0) 70%);
  filter: blur(14px);
  opacity: 0;
  transform: translateZ(-50px) scale(0.72);
}

.offer-shortcut::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 42px;
  width: clamp(66px, 5.45vw, 78px);
  height: 20px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(20, 24, 45, 0.13) 0%, rgba(20, 24, 45, 0.05) 48%, rgba(20, 24, 45, 0) 78%);
  transform: translateX(-50%) translateZ(-80px) scale(0.56);
  filter: blur(8px);
  opacity: 0;
}

.offer-shortcut-stage.is-landed .offer-shortcut {
  animation:
    offer-shortcut-sheet-in 560ms cubic-bezier(0.22, 0.9, 0.3, 1.08) both,
    offer-shortcut-sheet-fade-in 560ms cubic-bezier(0.42, 0, 1, 1) both;
  animation-delay: var(--delay), var(--delay);
}

.offer-shortcut-stage.is-landed .offer-shortcut::before {
  animation: offer-shortcut-halo 560ms cubic-bezier(0.22, 0.9, 0.3, 1.08) both;
  animation-delay: var(--delay);
}

.offer-shortcut-stage.is-landed .offer-shortcut::after {
  animation: offer-shortcut-shadow 560ms cubic-bezier(0.22, 0.9, 0.3, 1.08) both;
  animation-delay: var(--delay);
}

.offer-shortcut-stage.is-leaving .offer-shortcut {
  animation:
    offer-shortcut-sheet-out 220ms cubic-bezier(0.4, 0, 1, 1) both,
    offer-shortcut-sheet-fade-out 220ms cubic-bezier(0.4, 0, 1, 1) both;
  animation-delay: var(--exit-delay), var(--exit-delay);
}

.offer-shortcut-stage.is-leaving .offer-shortcut::before {
  animation: offer-shortcut-halo-dismiss 220ms cubic-bezier(0.4, 0, 1, 1) both;
  animation-delay: var(--exit-delay);
}

.offer-shortcut-stage.is-leaving .offer-shortcut::after {
  animation: offer-shortcut-shadow-dismiss 220ms cubic-bezier(0.4, 0, 1, 1) both;
  animation-delay: var(--exit-delay);
}

.offer-shortcut__tile {
  position: relative;
  width: clamp(77px, 5.95vw, 88px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: clamp(20px, 1.7vw, 26px);
  overflow: hidden;
  background: linear-gradient(148deg, #7581ff 0%, #6470f6 56%, #735eff 100%);
  box-shadow: 0 18px 28px rgba(42, 48, 95, 0.16), 0 8px 12px rgba(27, 31, 66, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.32), inset 0 -8px 12px rgba(72, 48, 156, 0.12);
  transform-style: preserve-3d;
}

.offer-shortcut__tile::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0) 32%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.offer-shortcut__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 38%);
  pointer-events: none;
}

.offer-shortcut__icon {
  position: relative;
  z-index: 1;
  width: clamp(35px, 2.75vw, 43px);
  height: clamp(35px, 2.75vw, 43px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "MonMaterialIcons";
  font-size: clamp(35px, 2.75vw, 43px);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, 0.96);
  transform: translateZ(34px);
  overflow: visible;
  filter: drop-shadow(0 3px 5px rgba(27, 31, 77, 0.14));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.offer-shortcut__label {
  margin: 0;
  width: clamp(77px, 5.95vw, 88px);
  max-width: none;
  color: var(--ink);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-align: center;
  text-wrap: balance;
  justify-self: center;
}

.offer-shortcut__label--stacked {
  width: max-content;
  min-width: clamp(77px, 5.95vw, 88px);
  display: grid;
  justify-items: center;
  justify-self: center;
  text-align: center;
}

.offer-shortcut--transfer {
  --delay: 0ms;
  --exit-delay: 0ms;
}

.offer-shortcut--payments {
  --delay: 0ms;
  --exit-delay: 16ms;
}

.offer-shortcut--request {
  --delay: 0ms;
  --exit-delay: 32ms;
}

.offer-shortcut--add {
  --delay: 0ms;
  --exit-delay: 48ms;
}

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

.offer-section {
  scroll-margin-top: 96px;
  padding-top: clamp(8px, 1.6vw, 18px);
}

.offer-section .section-heading {
  max-width: 640px;
}

.offer-section .section-heading h2 {
  font-size: clamp(32px, 3.8vw, 49px);
  line-height: 1.02;
}

.message-showcase {
  width: min(100%, 760px);
  margin: clamp(64px, 7vw, 96px) auto 0;
  display: grid;
  justify-items: center;
}

.message-showcase__heading h2 {
  display: grid;
  gap: 0;
  justify-items: center;
}

.message-showcase__heading h2 span {
  display: block;
}

[data-scroll-reveal] {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 620ms cubic-bezier(0.22, 0.72, 0.2, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-scroll-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.get-app-button--offer {
  width: min(100%, 132px);
  height: 42px;
  margin: 0;
  padding: 0 18px;
  font-size: 15px;
  box-shadow: 0 6px 14px rgba(33, 33, 33, 0.12);
}

.offer-bottom-row {
  width: min(100%, 720px);
  margin: clamp(58px, 7vw, 96px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}

.offer-bottom-row .get-app-button--offer {
  justify-self: center;
}

.offer-card,
.experience-panel,
.plan-card {
  border-radius: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 44px rgba(22, 28, 46, 0.04);
}

.offer-card {
  padding: 28px;
}

.offer-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(109, 123, 255, 0.1);
  color: var(--mon-indigo-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-card h3 {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: clamp(23px, 1.9vw, 29px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.offer-card p {
  margin: 0;
  color: #5f6674;
  font-size: 15px;
  line-height: 1.55;
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 18px;
  margin-top: 28px;
}

.experience-section {
  scroll-margin-top: 96px;
}

.experience-note {
  margin: 2px auto 0;
  max-width: 24ch;
  color: #61697a;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.34;
  letter-spacing: -0.04em;
}

.experience-section {
  padding-top: clamp(8px, 1.4vw, 18px);
}

.experience-section .section-heading h2 {
  font-size: clamp(32px, 3.8vw, 49px);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.experience-storyline {
  width: min(100%, 1120px);
  margin: clamp(40px, 4.8vw, 64px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: start;
  gap: clamp(40px, 5vw, 84px);
}

.experience-storyline--single {
  width: min(100%, 620px);
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
}

.experience-module {
  margin: 0;
  display: grid;
  gap: 18px;
}

.experience-module--balance {
  padding-top: clamp(16px, 2vw, 28px);
}

.experience-module--offer-balance {
  width: min(100%, 480px);
  margin: 0;
  padding-top: 0;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  justify-items: center;
}

.experience-module__balance-stack {
  width: 100%;
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: clamp(68px, 6.8vw, 104px);
}

.experience-module__balance-stack .get-app-button--offer {
  margin-top: clamp(42px, 5vw, 78px);
}

.experience-module__intro {
  width: 100%;
  min-width: 0;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.experience-module--offer-balance .experience-module__intro {
  width: 100vw;
  margin-inline: calc((100% - 100vw) / 2);
}

.experience-module__intro strong {
  width: max-content;
  max-width: calc(100vw - 32px);
  justify-self: center;
  color: var(--ink);
  font-size: clamp(32px, 3.8vw, 49px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.experience-module__intro span {
  color: #61697a;
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.experience-module--request {
  padding-top: clamp(74px, 9vw, 118px);
}

.experience-storyline--single .experience-module--request {
  width: 100%;
  padding-top: 0;
}

.experience-module__frame {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.experience-module__frame--balance {
  width: 85%;
  aspect-ratio: 832 / 304;
  margin: 0 auto;
  border-radius: 28px;
  border: 0;
  background: transparent;
  box-shadow: none;
  isolation: auto;
  clip-path: inset(0 round 28px);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  transform: translateZ(0);
}

.experience-module__frame--balance[data-scroll-reveal] {
  opacity: 0;
  transform: perspective(1800px) translate3d(0, 140px, -620px) rotateX(24deg) scale(0.78);
  filter: blur(18px) saturate(0.88);
  transform-origin: center 30%;
  transition:
    opacity 780ms cubic-bezier(0.22, 0.72, 0.2, 1),
    transform 1240ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 980ms cubic-bezier(0.16, 1, 0.3, 1);
}

.experience-module__frame--balance[data-scroll-reveal].is-visible {
  opacity: 1;
  transform: perspective(1800px) translate3d(0, 0, 0) rotateX(0deg) scale(1);
  filter: blur(0) saturate(1.03);
}

.experience-module__frame--balance::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background: var(--app-background);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.experience-module__frame--balance::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  box-shadow: 0 0 0 32px var(--app-background);
  pointer-events: none;
}

.experience-module__frame--balance .experience-module__video {
  z-index: 1;
  border-radius: inherit;
  clip-path: inset(0 round 28px);
  -webkit-clip-path: inset(0 round 28px);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mix-blend-mode: multiply;
  filter: contrast(1.07) saturate(1.03);
}

.experience-module__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
  filter: contrast(1.06) saturate(1.03);
  pointer-events: none;
}

.experience-module__frame--request {
  width: min(100%, 392px);
  aspect-ratio: 1.95 / 1;
  margin: 0 auto;
  border-radius: 28px;
  background: linear-gradient(180deg, #1d2235 0%, #171c2d 100%);
  box-shadow: 0 20px 42px rgba(18, 22, 39, 0.1);
}

.experience-module__frame--request::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 36%),
    radial-gradient(circle at top left, rgba(109, 123, 255, 0.14) 0%, rgba(109, 123, 255, 0) 38%);
  pointer-events: none;
}

.experience-module__frame--request::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.experience-module__request-image {
  position: absolute;
  inset: -1% -6%;
  width: 112%;
  height: 106%;
  object-fit: cover;
  object-position: center 46%;
  display: block;
}

.experience-module__copy {
  display: grid;
  gap: 8px;
  max-width: 30ch;
  padding-left: clamp(12px, 2vw, 18px);
}

.experience-module__copy--request {
  padding-left: clamp(10px, 1vw, 14px);
}

.experience-module__copy--balance {
  max-width: none;
  padding-left: 0;
  justify-items: start;
  text-align: left;
}

.experience-module__copy--balance p {
  font-size: clamp(17px, 1.45vw, 21px);
}

.experience-module__eyebrow {
  color: var(--mon-indigo);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.experience-module__copy p {
  margin: 0;
  color: #59606f;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.16;
  letter-spacing: -0.045em;
  font-weight: 500;
}

.experience-message-stage {
  position: relative;
  width: min(100%, 560px);
  min-height: clamp(280px, 27vw, 336px);
  margin: clamp(36px, 4.6vw, 58px) auto 0;
  display: grid;
  place-items: center;
  perspective: 1600px;
  transform-style: preserve-3d;
  isolation: isolate;
}

.experience-message-stage::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 13%;
  height: 42px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(42, 48, 94, 0.16), rgba(42, 48, 94, 0));
  filter: blur(18px);
  opacity: 0.52;
  transform: translate3d(0, 34px, -160px);
  pointer-events: none;
}

.experience-message-stage[data-scroll-reveal] {
  opacity: 0;
  transform: perspective(1600px) translate3d(0, 150px, -560px) rotateX(28deg) scale(0.78);
  filter: blur(18px) saturate(0.88);
  transition:
    opacity 760ms cubic-bezier(0.22, 0.72, 0.2, 1),
    transform 1180ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 920ms cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center 28%;
}

.experience-message-stage[data-scroll-reveal].is-visible {
  opacity: 1;
  transform: perspective(1600px) translate3d(0, 0, 0) rotateX(0deg) scale(1);
  filter: blur(0) saturate(1);
}

.message-sheet {
  --x: 0px;
  --y: 0px;
  --z: 0px;
  --rx: 0deg;
  --rz: 0deg;
  --scale: 1;
  --start-x: 0px;
  --stack-y: 0px;
  --stack-z: 0px;
  --stack-scale: 1;
  --start-y: 132px;
  --start-z: -640px;
  --start-rx: 42deg;
  --start-rz: 0deg;
  --delay: 0ms;
  grid-area: 1 / 1;
  position: relative;
  z-index: 2;
  width: min(100%, 510px);
  min-height: 78px;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05)),
    linear-gradient(135deg, rgba(40, 45, 82, 0.78), rgba(78, 85, 142, 0.52));
  box-shadow:
    0 30px 70px rgba(70, 82, 180, 0.22),
    0 10px 28px rgba(109, 123, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(25px) saturate(1.2);
  -webkit-backdrop-filter: blur(25px) saturate(1.2);
  opacity: 0.96;
  transform: translate3d(var(--x), var(--y), var(--z)) rotateX(var(--rx)) rotateZ(var(--rz)) scale(var(--scale));
  transform-style: preserve-3d;
  transition:
    opacity 720ms cubic-bezier(0.22, 0.72, 0.2, 1) var(--delay),
    transform 1120ms cubic-bezier(0.16, 1, 0.3, 1) var(--delay),
    filter 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--delay);
  will-change: opacity, transform, filter;
}

.experience-message-stage:not(.is-visible) .message-sheet {
  opacity: 0;
  filter: blur(16px) saturate(0.82);
  transform: translate3d(var(--start-x), var(--start-y), var(--start-z)) rotateX(var(--start-rx)) rotateZ(var(--start-rz)) scale(0.72);
}

.message-sheet::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 38%),
    radial-gradient(circle at 16% 0%, rgba(109, 123, 255, 0.22), rgba(109, 123, 255, 0) 38%);
  pointer-events: none;
}

.message-sheet__icon {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-family: "MonMaterialIcons";
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: normal;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.message-sheet__body {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  gap: 2px;
}

.message-sheet__body strong {
  font-size: 16px;
  line-height: 1.12;
  font-weight: 700;
}

.message-sheet__body span {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.22;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.message-sheet__action {
  position: relative;
  z-index: 1;
  padding: 8px 14px;
  border-radius: 12px;
  background: rgba(109, 123, 255, 0.3);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.message-sheet--support {
  --x: 0px;
  --y: -84px;
  --z: 0px;
  --rx: 0deg;
  --rz: 0deg;
  --scale: 0.96;
  --stack-y: -14px;
  --stack-z: -80px;
  --stack-scale: 0.9;
  --start-x: 0px;
  --start-y: 106px;
  --start-z: -700px;
  --start-rx: 46deg;
  --start-rz: -3deg;
  --delay: 60ms;
  z-index: 1;
}

.message-sheet--request {
  --x: 0px;
  --y: 0px;
  --z: 86px;
  --rx: 0deg;
  --rz: 0deg;
  --scale: 1;
  --stack-y: 0px;
  --stack-z: 0px;
  --stack-scale: 1;
  --start-x: 0px;
  --start-y: 126px;
  --start-z: -620px;
  --start-rx: 44deg;
  --start-rz: 0deg;
  --delay: 140ms;
  z-index: 3;
}

.message-sheet--verification {
  --x: 0px;
  --y: 84px;
  --z: 0px;
  --rx: 0deg;
  --rz: 0deg;
  --scale: 0.96;
  --stack-y: 14px;
  --stack-z: -150px;
  --stack-scale: 0.84;
  --start-x: 0px;
  --start-y: 146px;
  --start-z: -760px;
  --start-rx: 48deg;
  --start-rz: 3deg;
  --delay: 220ms;
  grid-template-columns: 38px minmax(0, 1fr);
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05)),
    linear-gradient(135deg, rgba(40, 45, 82, 0.78), rgba(78, 85, 142, 0.52));
  box-shadow:
    0 30px 70px rgba(70, 82, 180, 0.22),
    0 10px 28px rgba(109, 123, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.message-sheet--verification .message-sheet__icon {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

.experience-grid--solo {
  width: min(100%, 1080px);
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
}

.experience-grid--paired {
  width: min(100%, 1100px);
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.84fr);
  align-items: start;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: clamp(34px, 4vw, 52px);
  gap: clamp(36px, 5vw, 74px);
}

.experience-panel {
  padding: 28px;
}

.experience-grid--real {
  align-items: start;
}

.experience-panel--real {
  display: grid;
  gap: 18px;
}

.experience-panel--real-solo {
  width: 100%;
  padding: 0;
  gap: 16px;
  justify-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.experience-panel--surface {
  padding: 0;
  gap: 18px;
  justify-items: start;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.experience-panel--balance-engine {
  padding-top: clamp(22px, 3vw, 44px);
}

.experience-panel--real-dashboard {
  background:
    radial-gradient(circle at top left, rgba(109, 123, 255, 0.24) 0%, rgba(109, 123, 255, 0) 38%),
    linear-gradient(180deg, #1d2130 0%, #121725 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 36px 74px rgba(17, 22, 39, 0.18);
}

.experience-panel--real-balance {
  background: linear-gradient(180deg, rgba(246, 247, 252, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.experience-media-shell {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 30px;
  border: 1px solid rgba(109, 123, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(243, 245, 252, 0.96) 100%);
  box-shadow: 0 28px 54px rgba(22, 28, 46, 0.08);
  isolation: isolate;
}

.experience-media-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.44);
  pointer-events: none;
}

.experience-media-shell--dashboard {
  width: min(100%, 390px);
  aspect-ratio: 400 / 832;
  margin: 0 auto;
  border-radius: 40px;
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(248, 249, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  box-shadow: 0 38px 72px rgba(10, 14, 27, 0.32);
}

.experience-media-shell--balance {
  width: min(100%, 600px);
  aspect-ratio: 832 / 304;
  align-self: start;
  margin: 0 auto;
  border-color: rgba(109, 123, 255, 0.04);
  background: linear-gradient(180deg, rgba(250, 251, 255, 0.98) 0%, rgba(248, 249, 255, 0.98) 100%);
  box-shadow: 0 24px 54px rgba(22, 28, 46, 0.04);
}

.experience-media-shell--balance::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(248, 249, 255, 1) 0%, rgba(248, 249, 255, 0.62) 14%, rgba(248, 249, 255, 0) 30%, rgba(248, 249, 255, 0) 70%, rgba(248, 249, 255, 0.72) 88%, rgba(248, 249, 255, 1) 100%),
    linear-gradient(90deg, rgba(248, 249, 255, 0.94) 0%, rgba(248, 249, 255, 0) 14%, rgba(248, 249, 255, 0) 86%, rgba(248, 249, 255, 0.94) 100%);
  pointer-events: none;
}

.experience-request-stage {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1.72 / 1;
  overflow: hidden;
  border-radius: 38px;
  background: linear-gradient(180deg, #1e2338 0%, #181c2d 100%);
  box-shadow: 0 26px 56px rgba(17, 22, 39, 0.12);
  isolation: isolate;
}

.experience-request-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at top left, rgba(109, 123, 255, 0.14) 0%, rgba(109, 123, 255, 0) 36%);
  pointer-events: none;
}

.experience-panel--request {
  padding-top: clamp(0px, 1vw, 8px);
  transform: translateY(-24px);
}

.experience-request-image {
  position: absolute;
  inset: -8% -15%;
  display: block;
  width: 130%;
  height: 122%;
  object-fit: cover;
  object-position: center 47%;
}

.experience-app-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.experience-app-video--dashboard {
  object-position: center top;
}

.experience-app-video--balance {
  object-position: center center;
  transform: scale(1.18);
  transform-origin: center center;
}

.experience-caption {
  display: grid;
  gap: 6px;
  padding: 0 6px;
}

.experience-caption__eyebrow {
  color: var(--mon-indigo);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.experience-caption p {
  margin: 0;
  color: #60697a;
  font-size: 14px;
  line-height: 1.45;
}

.experience-caption--center {
  justify-items: start;
  text-align: left;
}

.experience-caption--light .experience-caption__eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.experience-caption--light p {
  color: rgba(255, 255, 255, 0.8);
}

.experience-panel--dashboard {
  background:
    radial-gradient(circle at top left, rgba(109, 123, 255, 0.24) 0%, rgba(109, 123, 255, 0) 34%),
    linear-gradient(180deg, #353540 0%, #26262f 100%);
  border-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: 0 36px 70px rgba(29, 34, 52, 0.18);
}

.panel-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.panel-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(109, 123, 255, 0.18);
  color: #dce0ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.panel-balance {
  margin-top: 24px;
  font-size: clamp(48px, 6vw, 74px);
  line-height: 0.92;
  letter-spacing: -0.08em;
  font-weight: 700;
}

.panel-currency {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.panel-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.panel-actions span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--mon-indigo), var(--mon-violet));
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(109, 123, 255, 0.28);
}

.panel-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.panel-list div {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-list strong {
  font-size: 15px;
  font-weight: 600;
}

.panel-list span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.experience-panel--sheet {
  background: linear-gradient(180deg, rgba(245, 246, 250, 0.96) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.sheet-preview {
  border-radius: 28px;
  border: 1px solid rgba(109, 123, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(242, 244, 252, 0.96) 100%);
  box-shadow: 0 28px 48px rgba(26, 32, 56, 0.06);
  padding: 24px;
}

.sheet-handle {
  width: 74px;
  height: 6px;
  border-radius: 999px;
  background: rgba(17, 18, 24, 0.08);
  margin: 0 auto 20px;
}

.sheet-kicker {
  margin: 0 0 8px;
  color: #737b88;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sheet-preview h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(27px, 2.85vw, 34px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.sheet-button {
  margin-top: 22px;
  min-height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--mon-indigo), var(--mon-violet));
  box-shadow: 0 14px 28px rgba(109, 123, 255, 0.28);
  font-size: 14px;
  font-weight: 600;
}

.sheet-chip-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.sheet-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 16px;
  background: rgba(109, 123, 255, 0.08);
  color: var(--mon-indigo-deep);
  font-size: 12px;
  font-weight: 600;
}

.sheet-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: #677080;
  font-size: 13px;
  line-height: 1.5;
}

.sheet-note-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success), var(--mon-indigo));
  flex: none;
}

.plans-section {
  scroll-margin-top: 96px;
  padding-top: clamp(8px, 1.4vw, 18px);
}

.plans-section .section-heading {
  max-width: 780px;
}

.plans-section .section-heading h2 {
  font-size: clamp(36px, 4.75vw, 61px);
}

.plans-section__intro {
  max-width: 600px;
  margin: 12px auto 0;
  color: #646b7a;
  font-size: clamp(15px, 1.45vw, 19px);
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.plan-grid {
  width: min(100%, 1120px);
  margin: clamp(46px, 5.4vw, 68px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(16px, 1.8vw, 22px);
  perspective: 1800px;
}

.plan-card {
  --plan-delay: 0ms;
  position: relative;
  min-height: clamp(250px, 23vw, 310px);
  padding: clamp(28px, 2.5vw, 34px);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  border-radius: clamp(28px, 2.8vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  box-shadow: 0 24px 58px rgba(22, 28, 46, 0.1);
  transition:
    opacity 620ms cubic-bezier(0.22, 0.72, 0.2, 1) var(--plan-delay),
    transform 820ms var(--ease-premium) var(--plan-delay),
    filter 720ms var(--ease-premium) var(--plan-delay),
    box-shadow 420ms var(--ease-premium);
  transform-origin: center 20%;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 28%, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, 0.06));
  pointer-events: none;
}

.plan-card > * {
  position: relative;
  z-index: 1;
}

.plan-card--standard {
  background:
    radial-gradient(circle at 14% -8%, rgba(222, 225, 255, 0.38), rgba(222, 225, 255, 0) 36%),
    linear-gradient(145deg, #8994ff 0%, #6558f3 50%, #35267e 100%);
  box-shadow: 0 28px 64px rgba(81, 73, 190, 0.2);
}

.plan-card--infinity {
  --plan-delay: 80ms;
  color: #17191e;
  border-color: rgba(69, 74, 83, 0.16);
  background:
    radial-gradient(circle at 16% -10%, rgba(255, 244, 214, 0.16), rgba(255, 244, 214, 0) 34%),
    linear-gradient(118deg, #f4f5f6 0%, #b7bbc3 24%, #eef0f2 50%, #a7acb5 73%, #e4e6e9 100%);
  box-shadow: 0 30px 72px rgba(10, 10, 12, 0.22);
}

.plan-card[data-scroll-reveal] {
  opacity: 0;
  transform: perspective(1800px) translate3d(0, 64px, -140px) rotateX(8deg) scale(0.96);
  filter: blur(7px) saturate(0.92);
}

.plan-card[data-scroll-reveal].is-visible {
  opacity: 1;
  transform: perspective(1800px) translate3d(0, 0, 0) rotateX(0deg) scale(1);
  filter: blur(0) saturate(1);
}

.plan-card:not([data-scroll-reveal]):hover,
.plan-card:not([data-scroll-reveal]):focus-within,
.plan-card[data-scroll-reveal].is-visible:hover,
.plan-card[data-scroll-reveal].is-visible:focus-within {
  transform: perspective(1800px) translate3d(0, -5px, 10px) rotateX(0deg) scale(1.005);
  box-shadow: 0 34px 76px rgba(22, 28, 46, 0.16);
}

.plan-card h3 {
  margin: 0;
  font-size: clamp(36px, 3.8vw, 50px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.plan-card--standard h3 {
  font-size: clamp(34px, 3.45vw, 46px);
  letter-spacing: -0.055em;
}

.plan-price {
  margin: 20px 0 0;
  color: inherit;
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.plan-price small {
  margin-left: 5px;
  font-size: 0.72em;
  font-weight: 500;
  letter-spacing: -0.02em;
  opacity: 0.74;
}

.plan-card__description {
  max-width: 30ch;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 500;
  line-height: 1.52;
  letter-spacing: -0.025em;
}

.plan-card--infinity .plan-card__description {
  color: rgba(23, 25, 30, 0.66);
}

.plan-link {
  width: 50px;
  height: 50px;
  margin-top: auto;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.11);
  color: inherit;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  transition: transform 320ms var(--ease-premium), background 320ms var(--ease-premium);
}

.plan-card--infinity .plan-link {
  background: rgba(23, 25, 30, 0.08);
}

.plan-link:hover,
.plan-link:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transform: translateX(4px);
}

.plan-card--infinity .plan-link:hover,
.plan-card--infinity .plan-link:focus-visible {
  background: rgba(23, 25, 30, 0.14);
}

.home-page main :where(h1, h2, h3, p, a, figcaption, small, strong),
.home-page main :where(.section-kicker, .experience-module__eyebrow, .plan-tier, .plan-feature-list span),
.home-page .site-footer :where(p, a, strong) {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.015em;
}

.section-title {
  margin: 74px 0 20px;
  font-size: clamp(32px, 3.8vw, 53px);
  line-height: 1;
}

.legal-hero {
  max-width: 1080px;
  margin: 0 auto 44px;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(42px, 5.7vw, 78px);
  line-height: 0.94;
}

.doc-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
  color: var(--ink-soft);
  font-weight: 700;
}

button {
  border: 0;
  background: #111;
  color: #fff;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
}

.legal-doc {
  max-width: 1080px;
  margin: 0 auto;
  font-size: 20px;
}

.legal-doc a {
  color: inherit;
  font-weight: inherit;
  text-decoration: underline;
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.14em;
}

.legal-doc a:hover,
.legal-doc a:focus-visible {
  color: var(--mon-violet);
}

.doc-section {
  border-top: 1px solid var(--line);
  padding: 34px 0;
}

.doc-section h2 {
  font-size: clamp(29px, 2.85vw, 42px);
  line-height: 1.05;
  margin: 0 0 18px;
}

.doc-section h3 {
  font-size: 23px;
  margin: 28px 0 10px;
}

.doc-section p {
  margin: 0 0 16px;
  color: var(--ink);
}

.doc-section li {
  margin: 8px 0;
}

main:has(.legal-doc) .legal-hero h1 {
  font-size: clamp(33px, 4.53vw, 62.46px);
}

main:has(.legal-doc) .legal-hero .kicker,
main:has(.legal-doc) .legal-hero .lead,
main:has(.legal-doc) .doc-meta {
  font-size: 0.795em;
}

main:has(.legal-doc) .legal-doc {
  font-size: 15.9px;
}

main:has(.legal-doc) .doc-section h2 {
  font-size: clamp(22.66px, 2.28vw, 32.93px);
}

main:has(.legal-doc) .doc-section h3 {
  font-size: 18.17px;
}

main:has(.legal-doc) th {
  font-size: 12.49px;
}

.notice {
  padding: 24px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  margin: 22px 0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  margin: 18px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  text-align: left;
  vertical-align: top;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

th {
  background: var(--surface);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

tr:last-child td {
  border-bottom: 0;
}

.plan-pricing-table tbody td:not(:first-child) {
  color: var(--ink);
  font-weight: 600;
}

.site-footer {
  border-top: 0;
  padding: 0 var(--site-content-edge) 44px;
  color: var(--ink-soft);
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(220px, auto);
  gap: clamp(32px, 5vw, 84px);
  align-items: start;
}

.site-footer .plans-section {
  grid-column: 1 / -1;
  position: relative;
  margin: 0;
  padding: clamp(76px, 8vw, 128px) 0 clamp(96px, 9vw, 148px);
}

.site-footer .plans-section::before,
.site-footer .plans-section::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  height: 12px;
  transform: translateX(-50%);
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(17, 18, 24, 0.025), 0 -1px 0 rgba(17, 18, 24, 0.025);
  pointer-events: none;
}

.site-footer .plans-section::before {
  top: 0;
}

.site-footer .plans-section::after {
  bottom: 0;
}

.site-footer > div:first-of-type {
  display: block;
  min-width: 0;
  padding-right: 0;
}

.site-footer strong {
  color: var(--ink);
  display: block;
}

.home-page .site-footer strong {
  color: var(--mon-indigo-deep);
}

.site-footer p {
  margin: 8px 0;
  max-width: 960px;
}

.site-footer .footer-powered {
  display: block;
  position: static;
  margin: 6px 0 0;
  font-size: clamp(0.86rem, 0.82rem + 0.18vw, 1rem);
  line-height: 1.35;
  white-space: nowrap;
  color: color-mix(in srgb, var(--ink-soft) 84%, transparent);
}

.site-footer .footer-company {
  display: block;
  position: static;
  margin: clamp(128px, 12vw, 176px) 0 0;
  white-space: nowrap;
  color: var(--ink-soft);
}

.site-footer .footer-legal-note {
  display: block;
  position: static;
  font-size: clamp(0.66rem, 0.61rem + 0.15vw, 0.76rem);
  line-height: 1.5;
  letter-spacing: -0.006em;
  margin: 0;
  width: calc(100vw - (var(--site-content-edge) * 2));
  max-width: none;
  color: color-mix(in srgb, var(--ink-soft) 74%, transparent);
}

.site-footer .footer-company + .footer-legal-note {
  margin-top: 8px;
}

.footer-inline-logo {
  display: inline-block;
  height: auto;
  object-fit: contain;
  vertical-align: -0.40em;
}

.footer-inline-logo--visa {
  height: 2em;
  margin-left: 0.28em;
  opacity: 0.96;
  filter:
    contrast(1.06)
    brightness(1.01)
    drop-shadow(0 0.5px 0 rgba(255, 255, 255, 0.45))
    drop-shadow(0 2px 4px rgba(37, 42, 56, 0.13));
}

.footer-links {
  display: grid;
  gap: 8px;
  align-content: start;
  justify-self: end;
}

.legal-list {
  display: grid;
  gap: 14px;
  max-width: 1080px;
  margin: 34px auto 0;
}

.legal-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.legal-row:hover,
.legal-row:focus-visible {
  text-decoration: none;
}

.legal-row span {
  color: var(--ink-soft);
}

.legal-row strong {
  font-size: 24px;
}

.arrow {
  font-size: 28px;
  line-height: 1;
}

.help-page main {
  padding-top: clamp(46px, 6vw, 92px);
}

.help-page :where(h1, h2, h3, p, a, button, input, li, span, strong, em) {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.help-hero {
  max-width: 980px;
  margin: 0 auto clamp(54px, 6vw, 82px);
  text-align: center;
}

.help-hero h1 {
  margin: 0;
  font-size: clamp(46px, 6.8vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.help-search {
  width: min(100%, 760px);
  min-height: 68px;
  margin: clamp(28px, 3.2vw, 42px) auto 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 0 26px 0 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(17, 18, 24, 0.04);
  box-shadow: 0 22px 60px rgba(39, 47, 82, 0.08);
}

.help-search__label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.help-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 500;
}

.help-search input::placeholder {
  color: rgba(33, 33, 33, 0.48);
}

.help-search__icon {
  font-family: "MonMaterialIcons";
  color: var(--ink);
  font-size: 32px;
  line-height: 1;
}

.help-pill {
  width: max-content;
  margin: 28px auto 0;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: inset 0 0 0 1px rgba(17, 18, 24, 0.04);
}

.help-pill span {
  min-width: 180px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 700;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(37, 45, 82, 0.06);
}

.help-shell {
  width: min(100%, 1180px);
  margin: 0 auto clamp(72px, 8vw, 120px);
  display: grid;
  grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 82px);
  align-items: start;
}

.help-topics {
  position: sticky;
  top: 88px;
}

.help-topics p,
.help-breadcrumb {
  margin: 0 0 18px;
  color: var(--ink);
  font-weight: 700;
  font-size: 17px;
}

.help-topic-list {
  display: grid;
  gap: 8px;
}

.help-topic-button {
  width: 100%;
  min-height: 46px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  font-size: 17px;
  font-weight: 500;
  text-align: left;
}

.help-topic-button:hover,
.help-topic-button:focus-visible,
.help-topic-button.is-active {
  color: var(--mon-indigo-deep);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(39, 47, 82, 0.07);
}

.help-content__header {
  margin-bottom: 24px;
}

.help-content__header h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.help-content__header p:last-child {
  max-width: 66ch;
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.help-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.help-card {
  min-height: 162px;
  padding: clamp(24px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(17, 18, 24, 0.045);
  box-shadow: 0 18px 48px rgba(39, 47, 82, 0.055);
  transition:
    transform 420ms var(--ease-premium),
    box-shadow 420ms var(--ease-premium),
    border-color 420ms var(--ease-premium);
}

.help-card:hover,
.help-card:focus-visible {
  text-decoration: none;
  transform: perspective(1400px) translate3d(0, -5px, 10px) scale(1.004);
  border-color: rgba(109, 123, 255, 0.18);
  box-shadow: 0 26px 68px rgba(39, 47, 82, 0.1);
}

.help-card__topic {
  margin-bottom: 12px;
  color: var(--mon-indigo-deep);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

.help-card strong {
  color: var(--ink);
  font-size: clamp(23px, 2.45vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.help-card span:not(.help-card__topic) {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 16px;
}

.help-card em {
  margin-top: 16px;
  color: color-mix(in srgb, var(--ink-soft) 76%, transparent);
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
}

.help-article {
  padding: clamp(30px, 3.5vw, 44px);
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid rgba(17, 18, 24, 0.045);
  box-shadow: 0 22px 62px rgba(39, 47, 82, 0.06);
}

.help-page.help-sheet-open {
  overflow: hidden;
}

.help-sheet-backdrop:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: block;
  padding: 0;
  border-radius: 0;
  background: rgba(244, 246, 255, 0.58);
  backdrop-filter: blur(18px);
  box-shadow: none;
  cursor: default;
}

.help-page.help-sheet-open .help-article:not([hidden]) {
  position: fixed;
  left: 50%;
  bottom: clamp(18px, 3vw, 38px);
  z-index: 50;
  width: min(calc(100vw - 32px), 860px);
  max-height: min(82svh, 760px);
  overflow: auto;
  overscroll-behavior: contain;
  border-radius: clamp(28px, 3vw, 40px);
  box-shadow:
    0 34px 110px rgba(31, 39, 70, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.76) inset;
  transform: translateX(-50%);
  animation: help-sheet-enter 460ms var(--ease-premium) both;
}

.help-sheet-close {
  position: sticky;
  top: 0;
  float: right;
  width: 42px;
  height: 42px;
  margin: -10px -10px 8px 18px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(17, 18, 24, 0.08);
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  box-shadow: none;
  z-index: 1;
}

.help-sheet-close:hover,
.help-sheet-close:focus-visible {
  background: rgba(17, 18, 24, 0.13);
}

.help-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--mon-indigo-deep);
  font-weight: 800;
}

.help-back:hover,
.help-back:focus-visible {
  text-decoration: none;
}

.help-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.help-article__meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(109, 123, 255, 0.08);
  color: var(--mon-indigo-deep);
  font-weight: 800;
  font-size: 13px;
}

.help-article h3 {
  margin: 28px 0 12px;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -0.02em;
}

.help-article ol {
  margin: 0;
  padding-left: 24px;
}

.help-article li,
.help-article p {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.62;
}

.help-article li + li {
  margin-top: 10px;
}

.help-inline-app-icon {
  width: 28px;
  height: 28px;
  margin: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: -6px;
  border-radius: 9px;
  background: rgba(239, 241, 251, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(109, 123, 255, 0.08),
    0 4px 12px rgba(27, 31, 77, 0.06);
}

.help-inline-app-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  overflow: visible;
  fill: none;
  stroke: var(--mon-indigo);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.help-inline-app-icon .help-material-icon {
  font-family: "MonMaterialIcons";
  font-size: 18px;
  line-height: 1;
  color: var(--mon-indigo);
  display: block;
  font-weight: normal;
  font-style: normal;
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.help-note {
  margin-top: 34px;
  padding: 22px;
  display: grid;
  gap: 6px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 0%, rgba(109, 123, 255, 0.12), transparent 34%),
    var(--surface);
  color: var(--ink-soft);
}

.help-note strong {
  color: var(--ink);
}

@keyframes help-sheet-enter {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(34px) scale(0.97);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes orb-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.82;
  }
}

@keyframes shadow-drift {
  0%,
  100% {
    opacity: 0.92;
    transform: translate3d(0, 32%, -220px) rotateX(78deg) scale(1.05);
  }
  50% {
    opacity: 0.72;
    transform: translate3d(0, 35%, -220px) rotateX(78deg) scale(1.12);
  }
}

@keyframes hero-card-entry {
  0% {
    opacity: 0;
    transform: translate3d(0, var(--hero-entry-drop, -320px), 0) scale(0.985) rotateX(4.6deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(var(--rotate-x)) rotateY(var(--rotate-y)) rotateZ(var(--rotate-z));
  }
}

@keyframes hero-card-shadow-entry {
  0% {
    opacity: 0;
    transform: translate3d(0, 8%, -220px) rotateX(78deg) scale(0.92);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 32%, -220px) rotateX(78deg) scale(1.05);
  }
}

@keyframes headline-metal-sweep {
  0% {
    background-position: 118% 0;
  }

  96% {
    opacity: 1;
    background-position: -18% 0;
  }

  100% {
    opacity: 0;
    background-position: -18% 0;
  }
}

@keyframes cta-metal-sweep {
  0% {
    opacity: 0;
    transform: translateX(-145%);
  }

  14% {
    opacity: 1;
  }

  84% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(145%);
  }
}

@keyframes float-chip {
  0%,
  100% {
    transform: translate3d(var(--float-x), var(--float-y), var(--float-z));
  }
  50% {
    transform: translate3d(var(--float-x), calc(var(--float-y) - var(--float-drift)), var(--float-z));
  }
}

@keyframes float-sheet {
  0%,
  100% {
    transform: translate3d(var(--float-x), var(--float-y), var(--float-z));
  }
  50% {
    transform: translate3d(var(--float-x), calc(var(--float-y) - var(--float-drift)), var(--float-z));
  }
}

@keyframes hero-app-throw {
  0% {
    opacity: 0;
    filter: blur(18px) saturate(0.84);
    transform: translate3d(0, 140px, -460px) rotateX(74deg) rotateY(-18deg) rotateZ(var(--launch-spin)) scale(0.38);
  }
  28% {
    opacity: 1;
  }
  72% {
    filter: blur(0) saturate(1);
    transform: translate3d(calc(var(--app-x) * 0.9), calc(var(--app-y) - 18px), calc(var(--app-z) + 72px)) rotateX(calc(var(--app-rx) - 8deg)) rotateY(calc(var(--app-ry) * 1.12)) rotateZ(calc(var(--app-rz) + 3deg)) scale(1.05);
  }
  100% {
    opacity: 1;
    filter: blur(0) saturate(1);
    transform: translate3d(var(--app-x), var(--app-y), var(--app-z)) rotateX(var(--app-rx)) rotateY(var(--app-ry)) rotateZ(var(--app-rz)) scale(1);
  }
}

@keyframes hero-app-hover {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateZ(0deg);
  }
  50% {
    transform: translate3d(var(--float-side), calc(var(--float-distance) * -1), 18px) rotateZ(var(--float-rot));
  }
}

@keyframes offer-shortcut-sheet-in {
  0% {
    transform: translate3d(0, 22px, 0) scale(0.72);
  }
  72% {
    transform: translate3d(0, -2px, 0) scale(1.035);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes offer-shortcut-sheet-out {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(0, 16px, 0) scale(0.76);
  }
}

@keyframes offer-shortcut-sheet-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes offer-shortcut-sheet-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes offer-shortcut-halo {
  0% {
    opacity: 0;
    transform: translateZ(-40px) scale(0.68);
  }
  72% {
    opacity: 0.28;
    transform: translateZ(-40px) scale(1.04);
  }
  100% {
    opacity: 0.22;
    transform: translateZ(-40px) scale(1);
  }
}

@keyframes offer-shortcut-halo-dismiss {
  0% {
    opacity: 0.22;
    transform: translateZ(-40px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateZ(-40px) scale(0.76);
  }
}

@keyframes offer-shortcut-shadow {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateZ(-80px) scale(0.48);
  }
  72% {
    opacity: 0.14;
    transform: translateX(-50%) translateZ(-80px) scale(1.04);
  }
  100% {
    opacity: 0.12;
    transform: translateX(-50%) translateZ(-80px) scale(1);
  }
}

@keyframes offer-shortcut-shadow-dismiss {
  0% {
    opacity: 0.12;
    transform: translateX(-50%) translateZ(-80px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateZ(-80px) scale(0.56);
  }
}

@media (max-width: 1080px) {
  .offer-shortcut-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
    row-gap: 42px;
  }

  .experience-storyline {
    width: min(100%, 760px);
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .experience-message-stage {
    width: min(100%, 540px);
    min-height: 330px;
  }

  .message-sheet {
    width: min(100%, 480px);
  }

  .experience-module--balance,
  .experience-module--request {
    padding-top: 0;
  }

  .experience-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .plan-grid {
    width: min(100%, 680px);
    gap: 24px;
  }

  .plan-card {
    min-height: 360px;
  }

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

  .experience-media-shell--dashboard {
    width: min(100%, 360px);
  }

  .experience-grid--paired {
    width: min(100%, 760px);
    gap: 34px;
  }

  .experience-request-stage {
    width: min(100%, 420px);
  }

  .experience-panel--balance-engine {
    padding-top: 0;
  }

  .experience-panel--request {
    transform: none;
  }

  .hero-stage {
    min-height: clamp(360px, 62vw, 660px);
  }

  .hero-float-sheet {
    width: min(280px, 34vw);
  }

  .hero-app-orbit {
    left: 2%;
    right: 2%;
    bottom: 8%;
  }

  .hero-app-object--transfer {
    --app-x: -258px;
  }

  .hero-app-object--payments {
    --app-x: -88px;
  }

  .hero-app-object--request {
    --app-x: 90px;
  }

  .hero-app-object--add {
    --app-x: 260px;
  }
}

@media (max-width: 900px) {
  :root {
    --site-content-edge: clamp(24px, 5vw, 36px);
  }

  .site-header,
  .site-footer {
    grid-template-columns: 1fr;
  }

  /* Disclosure text drops below the links on mobile */
  .site-footer > div:first-of-type {
    padding-right: 0;
    order: 2;
  }

  .site-footer .footer-company {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }

  .footer-links {
    order: 1;
    width: 100%;
    margin-top: 4px;
    justify-self: stretch;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* Revolut-style rows: full width, divider, and a down chevron */
  .footer-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 2px;
  }

  .footer-links a::after {
    content: "›";
    flex: none;
    margin-left: 12px;
    color: var(--ink-soft);
    font-size: 22px;
    line-height: 1;
  }

  .site-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 12px;
    column-gap: 16px;
    padding: 10px clamp(20px, 5vw, 36px);
  }

  /* Let the nav's links + CTA lay out directly in the header */
  nav {
    display: contents;
  }

  .brand {
    transform: none;
    margin-right: auto; /* pushes the CTA to the right of row 1 */
  }

  /* Row 1: brand (left) + Download app (right) */
  nav a.download-app-link {
    order: 1;
    min-height: 40px;
    white-space: nowrap;
  }

  /* Force a line break so the text links drop to row 2 */
  .site-header::after {
    content: "";
    order: 2;
    flex-basis: 100%;
    height: 0;
  }

  /* Row 2: the text links, left-aligned */
  nav a:not(.download-app-link) {
    order: 3;
    padding: 7px 12px;
    white-space: nowrap;
  }

  nav a {
    padding: 7px 11px;
    font-size: 14px;
    flex: none;
  }

  .hero {
    min-height: auto;
    transform: none;
    margin-bottom: 0;
  }

  .hero-visual {
    margin-top: 0;
  }

  .hero-stage {
    --hero-card-half-height: clamp(86px, 15.3vw, 138px);
    --hero-entry-drop: -110px; /* short, clean drop on mobile (not from behind the header) */
    min-height: clamp(300px, 82vw, 480px);
  }

  .hero-card {
    width: min(69.45vw, 436px);
  }

  .hero-card-switch {
    top: calc(50% + var(--hero-card-half-height) + 18px);
  }

  .hero-card-switch__option {
    min-width: clamp(86px, 18vw, 112px);
    min-height: 40px;
    font-size: 15px;
  }

  .offer-shortcut-stage {
    gap: 20px;
  }

  .offer-shortcut__tile {
    width: 118px;
  }

  .hero-app-orbit {
    left: -4%;
    right: -4%;
    bottom: -12%;
    transform: translate3d(0, 0, -180px) scale(0.8);
    transform-origin: center bottom;
  }

  .hero-app-object__image {
    width: 102px;
  }

  .hero-float-chip--verified {
    left: 6%;
    top: 12%;
  }

  .hero-float-chip--wallet {
    right: 5%;
    top: 14%;
  }

  .hero-float-sheet--profile {
    left: 4%;
    bottom: 10%;
  }

  .hero-float-sheet--tier {
    right: 4%;
    bottom: 6%;
  }

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

  .legal-row .arrow {
    display: inline-flex;
    align-items: center;
    align-self: flex-end;
    gap: 6px;
    margin-top: 14px;
    color: var(--mon-indigo-deep);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
  }

  .legal-row .arrow::before {
    content: "See all";
  }

  .experience-message-stage {
    width: min(100%, 500px);
  }

  .message-sheet--support {
    --x: 0px;
    --y: -90px;
  }

  .message-sheet--verification {
    --x: 0px;
    --y: 96px;
  }
}

@media (max-width: 640px) {
  main {
    padding-left: var(--site-content-edge);
    padding-right: var(--site-content-edge);
  }

  nav {
    flex-wrap: wrap;
    white-space: normal;
    overflow: visible;
  }

  nav a {
    font-size: 13px;
  }

  .hero {
    gap: 24px;
  }

  .hero-stage {
    --hero-card-half-height: clamp(58px, 20.4vw, 84px);
    min-height: clamp(220px, 66vw, 310px);
  }

  .hero-card {
    width: min(64.6vw, 267px);
  }

  .hero-card-switch {
    top: calc(50% + var(--hero-card-half-height) + 14px);
    gap: 8px;
  }

  .hero-card-switch__option {
    min-width: 76px;
    min-height: 36px;
    padding: 0 15px;
    font-size: 13px;
  }

  .hero-card-ghost,
  .hero-float-chip,
  .hero-float-sheet,
  .hero-app-orbit {
    display: none;
  }

  .hero h1 {
    font-size: clamp(44px, 10.45vw, 61px);
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-subtitle__line--primary {
    white-space: normal;
  }

  .offer-shortcut-stage {
    grid-template-columns: 1fr 1fr;
    gap: 18px 12px;
    margin-top: 38px;
  }

  .offer-shortcut__tile {
    width: min(27vw, 105px);
  }

  .offer-shortcut__icon {
    width: 35px;
    height: 35px;
    font-size: 35px;
  }

  .offer-shortcut__label {
    font-size: 17px;
  }

  .offer-bottom-row {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .experience-module--offer-balance {
    width: min(100%, 420px);
    justify-self: center;
  }

  .experience-storyline {
    gap: 34px;
  }

  .experience-message-stage {
    width: min(100%, 360px);
    min-height: 360px;
    margin-top: 38px;
  }

  .message-sheet {
    width: min(100%, 332px);
    min-height: 72px;
    padding: 9px 12px;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 10px;
    border-radius: 24px;
  }

  .message-sheet__icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    font-size: 20px;
  }

  .message-sheet__body strong {
    font-size: 14px;
  }

  .message-sheet__body span {
    font-size: 11.5px;
  }

  .message-sheet__action {
    padding: 7px 10px;
    border-radius: 10px;
    font-size: 12px;
  }

  .message-sheet--support {
    --x: 0px;
    --y: -106px;
    --scale: 0.9;
  }

  .message-sheet--request {
    --scale: 0.96;
  }

  .message-sheet--verification {
    --x: 0px;
    --y: 108px;
    --scale: 0.88;
  }

  .experience-module__intro strong {
    font-size: clamp(26px, 7.2vw, 36px);
  }

  .experience-module__frame--balance {
    border-radius: 24px;
  }

  .experience-module__frame--request {
    width: min(100%, 360px);
    border-radius: 24px;
  }

  .experience-module__copy,
  .experience-module__copy--request {
    max-width: none;
    padding-left: 0;
    justify-items: center;
    text-align: center;
  }

  .experience-module__copy p {
    font-size: clamp(18px, 6vw, 24px);
  }

  .section-heading h2 {
    font-size: clamp(32px, 10.45vw, 48px);
  }

  .plans-section__intro {
    max-width: 32ch;
  }

  .plan-grid {
    margin-top: 42px;
    gap: 18px;
  }

  .plan-card {
    min-height: 330px;
    border-radius: 28px;
  }

  .plan-card h3 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .plan-card__description {
    margin-top: 24px;
  }

  .plan-link {
    width: 46px;
    height: 46px;
  }

  .experience-request-stage {
    width: min(100%, 340px);
    border-radius: 30px;
  }

  .experience-request-image {
    inset: -6% -14%;
    width: 128%;
    height: 118%;
  }

  .experience-caption--center {
    justify-items: center;
    text-align: center;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .panel-actions span {
    min-height: 46px;
    padding: 0 16px;
  }

  .plan-card,
  .offer-card,
  .experience-panel {
    padding: 24px;
  }

  .experience-media-shell {
    border-radius: 26px;
  }

  .experience-media-shell--dashboard {
    width: min(100%, 332px);
    border-radius: 34px;
  }

  .experience-caption p {
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .help-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .help-topics,
  .help-content {
    min-width: 0;
  }

  .help-topics {
    position: static;
  }

  .help-topic-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .help-topic-button {
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .help-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .help-search {
    min-height: 58px;
    padding: 0 18px 0 20px;
    border-radius: 20px;
  }

  .help-pill span {
    min-width: 140px;
  }

  .help-card,
  .help-article {
    border-radius: 24px;
  }

  .help-article li,
  .help-article p {
    font-size: 16px;
  }
}

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

  .offer-shortcut,
  .offer-shortcut::after,
  .hero-orb,
  .hero-float-chip,
  .hero-float-sheet,
  .hero-card-shadow {
    animation: none;
  }

  .offer-shortcut {
    opacity: 1;
    filter: none;
    transform: none;
  }

  [data-scroll-reveal] {
    opacity: 1;
    transition: none;
    transform: none;
  }

  .offer-shortcut::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }

  .hero-app-object,
  .hero-app-object__inner,
  .plan-link,
  .offer-card,
  .experience-panel,
  .plan-card {
    transition: none;
  }

  .site-header {
    transition: none;
  }

  [data-get-app]::after {
    animation: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .doc-meta button {
    display: none;
  }

  main {
    padding: 0;
  }

  body {
    color: #000;
  }

  .legal-doc,
  .legal-hero {
    max-width: none;
  }
}

/* Membership plan pages */
.plan-grid {
  width: min(100%, 720px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 2.8vw, 36px);
}

.plan-card {
  text-decoration: none;
}

.plan-card:hover,
.plan-card:focus-visible {
  text-decoration: none;
}

.plan-card h3,
.plan-price,
.plan-card__description {
  letter-spacing: 0;
}

.plan-page {
  overflow-x: clip;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.plan-detail-main {
  padding-top: 30px;
}

.plan-detail-hero,
.plan-detail-section,
.plan-switch-band {
  width: min(100%, 1120px);
  margin-left: auto;
  margin-right: auto;
}

.plan-detail-hero {
  min-height: 640px;
  padding: 12px 0 92px;
}

.plan-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.plan-detail-back:hover,
.plan-detail-back:focus-visible {
  color: var(--mon-indigo-deep);
  text-decoration: none;
}

.plan-detail-hero__inner {
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 72px;
  align-items: center;
}

.plan-detail-hero__copy {
  max-width: 580px;
}

.plan-detail-kicker {
  margin: 0 0 18px;
  color: var(--mon-indigo-deep);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.plan-detail-hero h1,
.plan-detail-heading h2 {
  letter-spacing: 0;
}

.plan-detail-hero h1 {
  margin: 0;
  max-width: 700px;
  font-size: 68px;
  font-weight: 700;
  line-height: 1;
}

.plan-detail-price {
  margin: 28px 0 0;
  color: var(--ink);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0;
}

.plan-detail-price small {
  margin-left: 7px;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 600;
}

.plan-detail-lead {
  max-width: 530px;
  margin: 24px 0 30px;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: 0;
}

.plan-detail-card-visual {
  width: 100%;
  margin: 0;
  transform: rotate(5deg);
  filter: drop-shadow(0 34px 44px rgba(46, 51, 98, 0.24));
}

.plan-detail-card-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1.585 / 1;
  object-fit: contain;
}

.plan-detail-card-visual--infinity {
  transform: rotate(-4deg);
  filter: drop-shadow(0 32px 42px rgba(46, 51, 98, 0.18));
}

.plan-detail-card-visual--infinity img {
  border-radius: 5.2% / 8.2%;
  clip-path: inset(1.4% 0.9% round 4.8% / 7.8%);
}

.plan-detail-hero--infinity {
  min-height: 0;
  padding-bottom: 76px;
}

.plan-detail-hero__inner--centered {
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-top: 36px;
  text-align: center;
}

.plan-detail-hero__title {
  width: min(100%, 760px);
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: baseline;
  column-gap: 24px;
  text-align: center;
}

.plan-detail-hero__title h1 {
  grid-column: 2;
  max-width: none;
  margin: 0;
  font-size: clamp(32px, 2.6vw, 40px);
  font-weight: 600;
  line-height: 1.1;
}

.plan-detail-title-price {
  grid-column: 3;
  justify-self: start;
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  color: var(--ink);
  white-space: nowrap;
}

.plan-detail-title-price span {
  font-size: clamp(19px, 1.55vw, 22px);
  font-weight: 600;
}

.plan-detail-title-price small {
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 500;
}

.plan-detail-hero__inner--centered .plan-detail-card-visual {
  width: min(100%, 300px);
  margin: 0 auto;
}

.plan-detail-hero__inner--centered .plan-detail-card-visual--infinity {
  transform: none;
}

.plan-detail-snapshot {
  width: 100%;
  margin-top: 46px;
  text-align: left;
}

.plan-detail-snapshot__group {
  padding: 34px 0;
  border-top: 1px solid var(--line-strong);
}

.plan-detail-snapshot__group:last-child {
  padding-bottom: 0;
}

.plan-detail-snapshot__header {
  position: relative;
  margin-bottom: 20px;
}

.plan-detail-snapshot__header .plan-detail-kicker {
  position: static;
  transform: none;
  margin: 0;
}

.plan-detail-snapshot__header h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
  text-align: center;
}

.plan-rate-list--snapshot {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.plan-rate-list--snapshot > div {
  padding: 0 22px;
}

.plan-rate-list--snapshot > div:nth-child(odd) {
  padding-left: 0;
  border-right: 1px solid var(--line-strong);
}

.plan-rate-list--snapshot > div:nth-child(even) {
  padding-right: 0;
}

.plan-detail-snapshot__footer {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.plan-detail-snapshot__footer .plan-detail-note,
.plan-detail-snapshot__footer .plan-text-link {
  margin-top: 0;
}

.plan-detail-hero__copy--centered {
  width: min(100%, 720px);
  margin-top: 30px;
  text-align: center;
}

.plan-detail-hero__copy--centered h2 {
  margin: 0;
  color: #1f2024;
  font-size: clamp(34px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.plan-detail-hero__copy--centered .plan-detail-price {
  justify-content: center;
  margin-top: 34px;
}

.plan-detail-hero__copy--centered .plan-detail-lead {
  max-width: 580px;
  margin: 18px auto 26px;
  font-size: 16px;
  line-height: 1.45;
}

.plan-detail-card-visual[data-scroll-reveal] {
  opacity: 0;
  transform: perspective(1800px) translate3d(0, 68px, -120px) rotateX(7deg) scale(0.96);
  filter: blur(7px) drop-shadow(0 28px 38px rgba(46, 51, 98, 0.12));
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 980ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 820ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.plan-detail-card-visual[data-scroll-reveal].is-visible {
  opacity: 1;
  transform: perspective(1800px) translate3d(0, 0, 0) rotateX(0) scale(1);
  filter: blur(0) drop-shadow(0 32px 42px rgba(46, 51, 98, 0.18));
}

.plan-detail-section {
  padding: 60px 0;
  border-top: 1px solid var(--line-strong);
}

.plan-detail-section--limits-first {
  padding-top: 54px;
}

.plan-detail-heading {
  max-width: 700px;
  margin-bottom: 32px;
}

.plan-detail-heading h2 {
  margin: 0;
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.06;
}

.plan-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.plan-feature-grid article {
  min-width: 0;
  padding: 24px 24px 26px 0;
  border-right: 1px solid var(--line-strong);
}

.plan-feature-grid article:not(:first-child) {
  padding-left: 24px;
}

.plan-feature-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.plan-feature-icon {
  display: block;
  margin-bottom: 20px;
  color: var(--mon-indigo-deep);
  font-family: "MonMaterialIcons";
  font-size: 27px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.plan-feature-grid h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.plan-feature-grid p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0;
}

.plan-detail-section--rates {
  width: min(100%, 940px);
}

.plan-rate-list {
  margin: 0;
  border-top: 1px solid var(--line-strong);
}

.plan-rate-list > div {
  min-height: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line-strong);
}

.plan-rate-list dt,
.plan-rate-list dd {
  margin: 0;
  letter-spacing: 0;
}

.plan-rate-list dt {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.plan-rate-list dd {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  text-align: right;
}

.plan-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: var(--mon-indigo-deep);
  font-size: 16px;
  font-weight: 800;
}

.plan-text-link:hover,
.plan-text-link:focus-visible {
  text-decoration: none;
}

.plan-limit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.plan-limit-grid > div {
  min-width: 0;
  padding: 24px 20px;
  border-right: 1px solid var(--line-strong);
}

.plan-limit-grid > div:first-child {
  padding-left: 0;
}

.plan-limit-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.plan-limit-grid span,
.plan-limit-grid small,
.plan-limit-grid strong {
  display: block;
  letter-spacing: 0;
}

.plan-limit-grid span {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.plan-limit-grid strong {
  margin-top: 14px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}

.plan-limit-grid small {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 13px;
}

.plan-detail-note {
  max-width: 800px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0;
}

.plan-switch-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 108px;
  margin-top: 20px;
  margin-bottom: 82px;
  padding: 28px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--surface-2);
  color: var(--ink);
  border-radius: 20px;
}

/* Match the plan card's glossy diagonal sheen */
.plan-switch-band::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 28%, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, 0.06));
  pointer-events: none;
}

.plan-switch-band > * {
  position: relative;
  z-index: 1;
}

/* Standard page banner links to Infinity -> wears the Infinity metallic gradient */
.plan-page--standard .plan-switch-band {
  background:
    radial-gradient(circle at 16% -10%, rgba(255, 244, 214, 0.16), rgba(255, 244, 214, 0) 34%),
    linear-gradient(118deg, #f4f5f6 0%, #b7bbc3 24%, #eef0f2 50%, #a7acb5 73%, #e4e6e9 100%);
  box-shadow:
    inset 0 0 0 1px rgba(69, 74, 83, 0.12),
    0 16px 26px -22px rgba(10, 10, 12, 0.30);
  color: #17191e;
}

.plan-page--standard .plan-switch-band p {
  color: #17191e;
}

.plan-page--standard .plan-switch-band a {
  color: var(--mon-indigo-deep);
}

/* Infinity page banner links to Standard -> wears the Standard purple gradient */
.plan-page--infinity .plan-switch-band {
  background:
    radial-gradient(circle at 14% -8%, rgba(222, 225, 255, 0.38), rgba(222, 225, 255, 0) 36%),
    linear-gradient(145deg, #8994ff 0%, #6558f3 50%, #35267e 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 16px 26px -22px rgba(53, 38, 126, 0.42);
  color: #ffffff;
}

.plan-page--infinity .plan-switch-band p,
.plan-page--infinity .plan-switch-band a {
  color: #ffffff;
}

.plan-switch-band p {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.plan-switch-band a {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mon-indigo-deep);
  font-size: 16px;
  font-weight: 800;
  transition: gap 200ms var(--ease-premium);
}

.plan-switch-band a span {
  transition: transform 200ms var(--ease-premium);
}

.plan-switch-band a:hover span,
.plan-switch-band a:focus-visible span {
  transform: translateX(4px);
}

.plan-switch-band a:hover,
.plan-switch-band a:focus-visible {
  text-decoration: none;
}

@media (max-width: 1080px) and (min-width: 901px) {
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-detail-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 44px;
  }

  .plan-detail-hero h1 {
    font-size: 56px;
  }

  .plan-feature-grid,
  .plan-limit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-feature-grid article:nth-child(2),
  .plan-limit-grid > div:nth-child(2) {
    border-right: 0;
  }

  .plan-feature-grid article:nth-child(-n + 2),
  .plan-limit-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-strong);
  }
}

@media (max-width: 900px) {
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .plan-detail-hero {
    min-height: auto;
    padding-bottom: 70px;
  }

  .plan-detail-hero__inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 52px;
    padding-top: 58px;
  }

  .plan-detail-hero h1 {
    font-size: 54px;
  }

  .plan-detail-card-visual {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .plan-detail-hero--infinity {
    padding-bottom: 64px;
  }

  .plan-detail-hero__inner--centered {
    padding-top: 32px;
  }

  .plan-detail-hero__title {
    margin-bottom: 22px;
  }

  .plan-detail-hero__copy--centered {
    margin-top: 28px;
  }

  .plan-detail-snapshot {
    margin-top: 38px;
  }

  .plan-feature-grid,
  .plan-limit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-feature-grid article:nth-child(2),
  .plan-limit-grid > div:nth-child(2) {
    border-right: 0;
  }

  .plan-feature-grid article:nth-child(-n + 2),
  .plan-limit-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-strong);
  }
}

@media (max-width: 640px) {
  .plan-detail-main {
    padding-top: 20px;
  }

  .plan-detail-hero__inner {
    padding-top: 44px;
    gap: 42px;
  }

  .plan-detail-hero h1 {
    font-size: 43px;
  }

  .plan-detail-lead {
    font-size: 17px;
  }

  .plan-detail-card-visual,
  .plan-detail-card-visual--infinity {
    transform: none;
  }

  .plan-detail-hero--infinity {
    padding-bottom: 54px;
  }

  .plan-detail-hero__inner--centered {
    padding-top: 26px;
  }

  .plan-detail-hero__title {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .plan-detail-hero__title h1 {
    font-size: 34px;
  }

  .plan-detail-title-price {
    margin: 0;
  }

  .plan-detail-hero__copy--centered {
    margin-top: 26px;
  }

  .plan-detail-snapshot {
    margin-top: 32px;
  }

  .plan-detail-snapshot__group {
    padding: 28px 0;
  }

  .plan-detail-snapshot__header {
    margin-bottom: 18px;
  }

  .plan-detail-snapshot__header .plan-detail-kicker {
    position: static;
    transform: none;
    margin: 0;
  }

  .plan-detail-snapshot__header h2 {
    font-size: 27px;
    text-align: center;
  }

  .plan-rate-list--snapshot {
    grid-template-columns: 1fr;
  }

  .plan-rate-list--snapshot > div,
  .plan-rate-list--snapshot > div:nth-child(odd),
  .plan-rate-list--snapshot > div:nth-child(even) {
    padding: 0;
    border-right: 0;
  }

  .plan-detail-snapshot__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .plan-detail-hero__copy--centered h2 {
    font-size: 34px;
  }

  .plan-detail-section {
    padding: 52px 0;
  }

  .plan-detail-heading {
    margin-bottom: 28px;
  }

  .plan-detail-heading h2 {
    font-size: 36px;
  }

  .plan-feature-grid,
  .plan-limit-grid {
    grid-template-columns: 1fr;
  }

  .plan-feature-grid article,
  .plan-feature-grid article:not(:first-child),
  .plan-limit-grid > div,
  .plan-limit-grid > div:first-child,
  .plan-limit-grid > div:last-child {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .plan-feature-grid article:last-child,
  .plan-limit-grid > div:last-child {
    border-bottom: 0;
  }

  .plan-feature-icon {
    margin-bottom: 18px;
  }

  .plan-rate-list > div {
    min-height: 54px;
    gap: 18px;
  }

  .plan-rate-list dt,
  .plan-rate-list dd {
    font-size: 14px;
  }

  .plan-limit-grid strong {
    font-size: 31px;
  }

  .plan-switch-band {
    margin-bottom: 64px;
    padding: 24px 22px;
    align-items: flex-start;
    flex-direction: column;
  }

  .plan-switch-band p {
    font-size: 22px;
  }
}

/* ============================================================
   Infinity plan — redesigned hierarchy (Apple-level)
   Scoped to new classes so standard.html is untouched.
   ============================================================ */

/* Hero head: eyebrow -> name -> price, cleanly stacked */
.plan-hero-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
  text-align: center;
}

.plan-hero-head .plan-detail-kicker {
  margin: 0;
}

.plan-hero-head h1 {
  margin: 0;
  max-width: none;
  color: var(--ink);
  font-size: clamp(46px, 5.2vw, 66px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.plan-hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 2px 0 0;
}

.plan-hero-price__amount {
  color: var(--ink);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.plan-hero-price__amount--muted {
  color: var(--ink-soft);
}

.plan-hero-price__period {
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 500;
}

/* Constrain the snapshot to a comfortable reading measure */
.plan-detail-hero--infinity .plan-detail-snapshot {
  width: min(100%, 900px);
  margin-left: auto;
  margin-right: auto;
}

/* Snapshot blocks (Limits, Key rates) */
.plan-snapshot-block {
  padding: 40px 0;
  border-top: 1px solid var(--line-strong);
}

.plan-snapshot-block:last-child {
  padding-bottom: 0;
}

.plan-snapshot-title {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-align: left;
}

/* Limits: two categories, each with daily + monthly.
   Label appears once; the number is the hero. */
.plan-limits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.plan-limit-cat:first-child {
  padding-right: 44px;
  border-right: 1px solid var(--line-strong);
}

.plan-limit-cat:last-child {
  padding-left: 44px;
}

.plan-limit-cat__label {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
}

.plan-limit-cat__values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.plan-limit-stat {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.plan-limit-stat strong {
  color: var(--ink);
  font-size: clamp(27px, 2.6vw, 34px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
}

.plan-limit-stat span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
}

/* Key rates footer */
.plan-snapshot-foot {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.plan-snapshot-foot .plan-detail-note,
.plan-snapshot-foot .plan-text-link {
  margin-top: 0;
}

/* Tablet */
@media (max-width: 900px) {
  .plan-hero-head {
    margin-bottom: 30px;
  }

  .plan-limit-cat:first-child {
    padding-right: 30px;
  }

  .plan-limit-cat:last-child {
    padding-left: 30px;
  }
}

/* Mobile: stack the two limit categories, keep day/month side by side */
@media (max-width: 640px) {
  .plan-snapshot-block {
    padding: 32px 0;
  }

  .plan-snapshot-title {
    margin-bottom: 22px;
    font-size: 24px;
  }

  .plan-limits {
    grid-template-columns: 1fr;
  }

  .plan-limit-cat:first-child {
    padding: 0 0 26px;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .plan-limit-cat:last-child {
    padding: 26px 0 0;
  }

  .plan-snapshot-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* Centered-hero snapshot: cap to a comfortable measure on any plan
   page that uses the centered layout (Infinity + Standard) */
.plan-detail-hero__inner--centered .plan-detail-snapshot {
  width: min(100%, 900px);
  margin-left: auto;
  margin-right: auto;
}

/* Standard card in the centered hero: sit flat and centered
   (no infinity-specific rotation / clip-path) */
.plan-detail-hero__inner--centered .plan-detail-card-visual--standard {
  transform: none;
}

.plan-detail-card-visual--standard[data-scroll-reveal].is-visible {
  transform: perspective(1800px) translate3d(0, 0, 0) rotateX(0) scale(1);
}

/* Infinity product hero: editorial copy on the left, card on the right. */
.plan-hero-product {
  width: 100%;
  min-height: clamp(440px, 57vh, 580px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  align-items: center;
  gap: clamp(52px, 7vw, 104px);
  text-align: left;
}

.plan-hero-copy {
  min-width: 0;
}

.plan-hero-eyeline {
  margin: 0 0 38px;
  display: flex;
  align-items: baseline;
  gap: 18px;
  color: var(--ink);
  white-space: nowrap;
}

.plan-hero-name {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 600;
  line-height: 1.1;
}

.plan-hero-copy .plan-hero-price {
  margin: 0;
  gap: 6px;
}

.plan-hero-copy .plan-hero-price__amount {
  font-size: clamp(19px, 1.8vw, 24px);
}

.plan-hero-copy .plan-hero-price__period {
  font-size: 15px;
}

.plan-hero-copy .plan-hero-heading {
  max-width: 690px;
  font-size: clamp(42px, 4.36vw, 61px);
  line-height: 1.04;
}

.plan-hero-heading .hero-title-period {
  margin-left: -0.04em;
}

.plan-hero-heading .hero-title-separated-line {
  display: block;
  margin-top: 0.12em;
}

.plan-hero-join {
  width: fit-content;
  height: 42px;
  margin-top: 34px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(33, 33, 33, 0.12);
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.015em;
  cursor: default;
}

.plan-detail-hero__inner--centered .plan-hero-product .plan-detail-card-visual {
  width: min(100%, 420px);
  margin: 0;
  justify-self: end;
}

.plan-hero-product .plan-detail-card-visual[data-scroll-reveal] {
  transform: translate3d(0, 32px, 0) scale(0.98);
}

.plan-hero-product .plan-detail-card-visual[data-scroll-reveal].is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.plan-detail-heading--compact {
  max-width: none;
  margin-bottom: 26px;
}

.plan-detail-heading--compact h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

@media (max-width: 1100px) {
  .plan-hero-product {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 18px;
  }

  .plan-hero-copy {
    width: min(100%, 680px);
  }

  .plan-hero-copy h1 {
    max-width: 620px;
  }

  .plan-detail-hero__inner--centered .plan-hero-product .plan-detail-card-visual {
    width: min(82vw, 420px);
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .plan-hero-product {
    gap: 34px;
    padding-top: 12px;
  }

  .plan-hero-eyeline {
    margin-bottom: 26px;
    flex-wrap: wrap;
    gap: 8px 14px;
    white-space: normal;
  }

  .plan-hero-copy h1 {
    font-size: clamp(37px, 11.05vw, 49px);
  }

  .plan-hero-join {
    margin-top: 28px;
  }

  .plan-detail-hero__inner--centered .plan-hero-product .plan-detail-card-visual {
    width: min(88vw, 390px);
  }
}

/* ===== Two-sided 3D card with 360° spin on page open (Standard + Infinity) ===== */
.plan-page .plan-detail-card-visual {
  perspective: 1600px;
  filter: none; /* a filter here would flatten the 3D scene */
}
/* Card reveal: fade only — a 3D transform/filter on the figure would flatten the flip */
.plan-page .plan-detail-card-visual[data-scroll-reveal] {
  opacity: 0;
  transform: none;
  filter: none;
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.3, 1);
}
.plan-page .plan-detail-card-visual[data-scroll-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}
.card-flip {
  position: relative;
  width: 100%;
  aspect-ratio: 1.585 / 1;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
}
.card-flip .card-flip__face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.card-flip .card-flip__front {
  filter: drop-shadow(0 30px 40px rgba(46, 51, 98, 0.20));
}
.card-flip .card-flip__back {
  transform: rotateY(180deg);
}
@keyframes plan-card-open-spin {
  0%   { transform: rotateY(0deg) scale(0.9); }
  100% { transform: rotateY(360deg) scale(1); }
}
@media (prefers-reduced-motion: no-preference) {
  .plan-page .card-flip {
    animation: plan-card-open-spin 0.81s cubic-bezier(0.55, 0, 0.45, 1) 0.15s both;
    will-change: transform;
  }
}

/* Inline link inside Help "Good to know" (e.g. Fees & Limits page) */
.help-link {
  color: var(--mon-indigo-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.help-link:hover,
.help-link:focus-visible {
  text-decoration: none;
}
