:root {
  color-scheme: light;
  --design-offset: max(0px, calc((100vw - 1440px) / 2));
  --header-scale: 1;
  --ink: #000000;
  --muted: #686868;
  --paper: #ffffff;
  --soft: #ededed;
  --lavender: #f5ebfd;
  --violet: #870ae0;
  --violet-hot: #d107fb;
  --night: #000000;
  --plum: #180b21;
  --panel: #2b2d2f;
  --line: #ededed;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

body.modal-open {
  overflow: hidden;
}

.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;
}

.i18n-linebreak {
  white-space: pre-line;
}

body.language-ko {
  word-break: keep-all;
  line-break: strict;
}

body.language-zh {
  line-break: strict;
}

body.language-ar {
  word-break: normal;
  overflow-wrap: anywhere;
}

body.language-ko :where(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  li,
  blockquote,
  figcaption,
  dt,
  dd,
  .eyebrow,
  .section-lead,
  .hero-lead,
  .card-copy,
  .tile-copy,
  .blog-card,
  .blog-feature-card,
  .blog-detail-content,
  .blog-related-card,
  .support-card,
  .faq-item,
  .footer-column,
  .footer-contact,
  .download-hero-copy,
  .download-app-panel,
  .wallet-copy,
  .legal-card
) {
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
  text-wrap: pretty;
}

body.language-zh :where(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  li,
  blockquote,
  figcaption,
  dt,
  dd,
  .eyebrow,
  .section-lead,
  .hero-lead,
  .card-copy,
  .tile-copy,
  .footer-column,
  .footer-contact,
  .download-hero-copy,
  .download-app-panel,
  .wallet-copy,
  .legal-card
) {
  word-break: normal;
  overflow-wrap: break-word;
  line-break: strict;
  text-wrap: pretty;
}

body.language-ar :where(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  li,
  blockquote,
  figcaption,
  dt,
  dd,
  .eyebrow,
  .section-lead,
  .hero-lead,
  .card-copy,
  .tile-copy,
  .blog-card,
  .blog-feature-card,
  .blog-detail-content,
  .blog-related-card,
  .support-card,
  .faq-item,
  .footer-column,
  .footer-contact,
  .download-hero-copy,
  .download-app-panel,
  .wallet-copy,
  .legal-card
) {
  unicode-bidi: plaintext;
  text-wrap: pretty;
}

body.language-ko :where(
  .primary-nav a,
  .brand,
  .language-button,
  .language-option,
  .primary-button,
  .text-button,
  .product-compare-button,
  .referral-pill-button,
  .referral-link-button,
  .download-store-button,
  .blog-topics button,
  .footer-social-link,
  .modal-close
) {
  word-break: normal;
  overflow-wrap: normal;
}

body.language-zh :where(
  .primary-nav a,
  .brand,
  .language-button,
  .language-option,
  .primary-button,
  .text-button,
  .product-compare-button,
  .referral-pill-button,
  .referral-link-button,
  .download-store-button,
  .blog-topics button,
  .footer-social-link,
  .modal-close
) {
  word-break: normal;
  overflow-wrap: normal;
}

body.language-ar :where(
  .primary-nav a,
  .brand,
  .language-button,
  .language-option,
  .primary-button,
  .text-button,
  .product-compare-button,
  .referral-pill-button,
  .referral-link-button,
  .download-store-button,
  .blog-topics button,
  .footer-social-link,
  .modal-close
) {
  word-break: normal;
  overflow-wrap: normal;
}

@media (min-width: 1081px) {
  body.language-ko .referral-moments {
    height: 760px;
  }

  body.language-ko .referral-moments-title {
    top: 76px;
    width: min(840px, calc(100% - 40px));
    line-height: 1.18;
    white-space: normal;
  }

  body.language-ko .referral-section-copy {
    top: 254px;
  }

  body.language-ko .referral-moment-grid {
    top: 372px;
  }
}

body.language-ko .hero-card .hero-actions {
  margin-top: 58px;
}

body.language-ko .hero-card .hero-content > .primary-button {
  margin-top: 48px;
}

a,
button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

.site {
  min-height: 100vh;
  overflow-x: clip;
  overflow-y: visible;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  padding: 0;
  background: #f7eefd;
  border: 1px solid #ededed;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

body.is-scrolled .site-header {
  background: #f7eefd;
  border-color: #ededed;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img:first-child {
  width: 77px;
  height: 40px;
  object-fit: contain;
}

.brand img:last-child {
  width: 108px;
  height: 28px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 70px;
  color: #666666;
  font-size: 16px;
}

.primary-nav a {
  padding: 10px 0;
}

.primary-nav a.active,
.primary-nav a:hover {
  color: var(--violet);
  font-weight: 600;
}

.support-nav,
.header-actions.support-actions {
  display: none;
}

.support-nav {
  gap: 50px;
  margin-left: auto;
}

body[data-active-page="home"] .main-nav [data-route-link="home"].active {
  color: #666666;
  font-weight: 400;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-button,
.language-option,
.outline-cta,
.primary-button,
.product-compare-button,
.referral-pill-button,
.referral-link-button,
.text-button,
.circle-button,
.card-option,
.download-store-button,
.download-guide-switch button,
.blog-card,
.blog-read-more,
.post-actions button,
.support-card,
.faq-item {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.language-selector {
  position: relative;
  z-index: 30;
}

.language-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 10px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--muted);
  border-radius: 50px;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.language-button[aria-expanded="true"] {
  color: var(--violet);
  border-color: var(--violet);
  box-shadow: 0 12px 32px rgba(135, 10, 224, 0.12);
}

.language-button[aria-expanded="true"] .down-icon {
  transform: rotate(180deg);
}

.language-icon,
.down-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: block;
}

.down-icon {
  transition: transform 180ms ease;
}

.language-button span {
  line-height: normal;
}

.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: 338px;
  max-width: calc(100vw - 32px);
  padding: 16px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(13, 0, 26, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.language-selector.open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.language-menu-title h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.language-menu-title span {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  color: var(--violet);
  background: rgba(135, 10, 224, 0.08);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.language-search {
  display: block;
}

.language-search input {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  color: var(--ink);
  background: #f4f4f4;
  border: 1px solid #e7e7e7;
  border-radius: 999px;
  outline: 0;
  font: inherit;
  font-size: 14px;
}

.language-search input:focus {
  border-color: rgba(135, 10, 224, 0.52);
  box-shadow: 0 0 0 3px rgba(135, 10, 224, 0.12);
}

.language-options {
  display: grid;
  gap: 8px;
  max-height: 278px;
  margin-top: 12px;
  overflow-y: auto;
  padding-right: 2px;
}

.language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  padding: 8px 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  text-align: left;
}

.language-option:hover,
.language-option.active {
  color: var(--violet);
  background: rgba(135, 10, 224, 0.07);
  border-color: rgba(135, 10, 224, 0.45);
}

.language-option.is-coming-soon {
  opacity: 0.42;
  cursor: not-allowed;
}

.language-option.is-coming-soon:hover {
  color: var(--ink);
  background: #ffffff;
  border-color: #e8e8e8;
}

.language-option.is-coming-soon:hover .language-code {
  background: #111111;
}

.language-code {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  min-width: 38px;
  height: 26px;
  padding: 0 8px;
  color: #ffffff;
  background: #111111;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.language-option.active .language-code,
.language-option:hover .language-code {
  background: var(--violet);
}

.language-option strong,
.language-option small {
  display: block;
}

.language-option strong {
  font-size: 14px;
  line-height: 1.2;
}

.language-option small {
  margin-top: 2px;
  color: #888888;
  font-size: 11px;
  line-height: 1.2;
}

.language-option[hidden] {
  display: none;
}

.outline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  height: 44px;
  padding: 0 40px 0 12px;
  color: var(--violet);
  background: #ffffff;
  border: 1px solid var(--violet);
  border-radius: 33px;
  line-height: 1;
  white-space: nowrap;
}

.outline-cta-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  height: 100%;
  line-height: 1;
}

body.language-ko .outline-cta-label {
  transform: translateY(1px);
}

.support-help-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  height: 44px;
  padding: 0 28px;
  color: #ffffff;
  background: var(--violet);
  border-radius: 33px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 16px 36px rgba(135, 10, 224, 0.22);
}

@media (min-width: 1081px) {
  :root {
    --header-scale: clamp(0.751, calc(100vw / 1440px), 1);
  }

  .site-header {
    justify-content: initial;
    height: calc(84px * var(--header-scale));
  }

  .brand {
    position: absolute;
    left: calc(var(--design-offset) + (98px * var(--header-scale)));
    top: calc(22px * var(--header-scale));
    gap: calc(12px * var(--header-scale));
  }

  .brand img:first-child {
    width: calc(77px * var(--header-scale));
    height: calc(40px * var(--header-scale));
  }

  .brand img:last-child {
    width: calc(108.739px * var(--header-scale));
    height: calc(28px * var(--header-scale));
  }

  .main-nav {
    position: absolute;
    left: calc(var(--design-offset) + (452px * var(--header-scale)));
    top: calc(33px * var(--header-scale));
    margin-left: 0;
    gap: calc(22px * var(--header-scale));
    font-size: calc(16px * var(--header-scale));
    line-height: normal;
  }

  .support-nav {
    position: absolute;
    left: calc(var(--design-offset) + (746px * var(--header-scale)));
    top: calc(33px * var(--header-scale));
    margin-left: 0;
    gap: calc(34px * var(--header-scale));
    font-size: calc(16px * var(--header-scale));
    line-height: normal;
  }

  .primary-nav a {
    padding: 0;
    line-height: normal;
  }

  .main-actions {
    display: contents;
  }

  .language-selector {
    position: absolute;
    left: calc(var(--design-offset) + (1015px * var(--header-scale)));
    top: calc(20px * var(--header-scale));
    width: calc(124px * var(--header-scale));
    height: calc(44px * var(--header-scale));
  }

  .language-button {
    width: 100%;
    height: 100%;
    gap: calc(10px * var(--header-scale));
    padding: calc(10px * var(--header-scale));
    font-size: calc(16px * var(--header-scale));
  }

  .language-menu {
    width: calc(338px * var(--header-scale));
    min-width: 306px;
  }

  .language-icon,
  .down-icon {
    width: calc(24px * var(--header-scale));
    height: calc(24px * var(--header-scale));
  }

  .outline-cta {
    position: absolute;
    left: calc(var(--design-offset) + (1188px * var(--header-scale)));
    top: calc(20px * var(--header-scale));
    width: calc(154px * var(--header-scale));
    height: calc(44px * var(--header-scale));
    padding: 0 calc(40px * var(--header-scale)) 0 calc(12px * var(--header-scale));
    font-size: calc(16px * var(--header-scale));
  }

  .button-dot {
    position: absolute;
    right: calc(6px * var(--header-scale));
    top: calc(6px * var(--header-scale));
  }

  .header-actions.support-actions {
    position: absolute;
    left: calc(var(--design-offset) + (1188px * var(--header-scale)));
    top: calc(20px * var(--header-scale));
    margin-left: 0;
  }

  .support-help-button {
    width: calc(154px * var(--header-scale));
    min-width: calc(154px * var(--header-scale));
    height: calc(44px * var(--header-scale));
    padding: 0;
    font-size: calc(16px * var(--header-scale));
  }
}

.button-dot {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--violet);
  position: relative;
}

.button-dot::after {
  content: "";
  position: absolute;
  inset: 10px 9px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
}

@media (min-width: 1081px) {
  .outline-cta .button-dot {
    position: absolute;
    right: calc(6px * var(--header-scale));
    top: calc(6px * var(--header-scale));
    width: calc(32px * var(--header-scale));
    height: calc(32px * var(--header-scale));
  }

  .outline-cta .button-dot::after {
    inset: calc(10px * var(--header-scale)) calc(9px * var(--header-scale));
    border-top-width: calc(2px * var(--header-scale));
    border-right-width: calc(2px * var(--header-scale));
  }
}

.language-button:hover,
.outline-cta:hover,
.primary-button:hover,
.product-compare-button:hover,
.referral-pill-button:hover,
.referral-link-button:hover,
.text-button:hover,
.card-option:hover,
.blog-card:hover,
.blog-read-more:hover,
.post-actions button:hover,
.support-card:hover,
.faq-item:hover {
  transform: translateY(-2px);
}

.page {
  display: none;
}

.page.active {
  display: block;
}

.section {
  width: min(1276px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0;
}

.centered {
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--violet);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-title,
.hero h1,
.cta-band h2,
.support-hero h1 {
  margin: 0;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0;
}

.section-title span {
  color: var(--violet);
}

.section-copy,
.hero-content > p:not(.eyebrow),
.cta-band p {
  width: min(692px, 100%);
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0;
}

.hero {
  position: relative;
  min-height: 880px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.hero-bg::after,
.hero-bg img {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: "";
  background: rgba(0, 0, 0, 0.58);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  color: #ffffff;
  text-align: center;
}

.hero-content.left {
  margin-left: max(116px, calc((100vw - 1276px) / 2));
  text-align: left;
}

.hero h1 {
  font-size: clamp(46px, 5vw, 64px);
}

.hero-home .hero-content {
  top: clamp(0px, calc((100svh - 650px) * 0.52), 124px);
  width: min(1060px, calc(100% - 40px));
}

@media (min-width: 721px) {
  .hero-home,
  .hero-card {
    min-height: max(880px, 100svh);
  }
}

.hero-home .hero-content > p:not(.eyebrow) {
  width: min(760px, 100%);
  margin-top: 26px;
}

.hero-card .hero-content {
  top: 12px;
  width: min(560px, calc(100% - 40px));
}

.hero-card .hero-content > p:not(.eyebrow) {
  width: min(474px, 100%);
  margin-top: 28px;
}

.hero-card .hero-content > .primary-button {
  margin-top: 36px;
}

.product-hero {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  background: #f6f6f6;
  isolation: isolate;
}

@media (min-width: 1081px) {
  .product-hero {
    min-height: max(880px, 100svh);
  }
}

.product-hero-copy {
  position: absolute;
  z-index: 3;
  left: max(116px, calc((100vw - 1276px) / 2));
  top: 329px;
  width: min(570px, calc(100% - 40px));
  color: #000000;
}

.product-hero-copy h1 {
  margin: 0;
  font-size: 64px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}

.product-hero-copy p {
  width: min(549px, 100%);
  margin: 26px 0 0;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.product-hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 26px;
}

.product-hero .primary-button,
.product-compare-button {
  min-width: 208px;
  min-height: 48px;
  gap: 44px;
  padding: 0 8px 0 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  box-shadow: none;
}

.product-hero .primary-button span,
.product-compare-button span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  line-height: 1;
}

.product-compare-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  background: transparent;
  border: 1px solid #000000;
  border-radius: 33px;
}

.product-compare-button span {
  color: #ffffff;
  background: #000000;
}

.product-hero-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.product-hero-phone {
  position: absolute;
  left: calc(50% - 212px);
  top: 252px;
  width: 880px;
  max-width: none;
}

.product-hero-card {
  position: absolute;
  width: 366px;
  max-width: none;
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.22));
}

.product-card-a {
  left: calc(50% + 288px);
  top: 664px;
  transform: rotate(-30deg);
}

.product-card-b {
  left: calc(50% + 213px);
  top: 690px;
  transform: rotate(-45.14deg);
}

.product-card-c {
  left: calc(50% + 133px);
  top: 737px;
  transform: rotate(-44.23deg);
}

@media (min-width: 1081px) and (max-height: 760px) {
  .product-hero {
    min-height: max(760px, 100svh);
  }

  .product-hero-copy {
    top: clamp(238px, 45svh, 300px);
  }

  .product-hero-phone {
    left: calc(50% + 24px);
    top: clamp(122px, 19svh, 160px);
    width: clamp(480px, 38vw, 560px);
  }

  .product-hero-card {
    width: clamp(220px, 18vw, 290px);
  }

  .product-card-a {
    left: calc(50% + 318px);
    top: clamp(448px, 66svh, 500px);
  }

  .product-card-b {
    left: calc(50% + 268px);
    top: clamp(464px, 69svh, 518px);
  }

  .product-card-c {
    left: calc(50% + 214px);
    top: clamp(484px, 72svh, 540px);
  }
}

.product-x-section {
  position: relative;
  min-height: 919px;
  overflow: hidden;
  color: #ffffff;
  background: #000000;
  isolation: isolate;
}

.product-x-watermark {
  position: absolute;
  left: calc(var(--design-offset) + 97px);
  top: 136px;
  width: 1246px;
  height: 647.273px;
  max-width: none;
  opacity: 1;
  filter: none;
  pointer-events: none;
}

.product-x-section .reveal,
.product-x-section .reveal.in-view {
  opacity: 1;
  transform: none;
}

.product-preview-window {
  position: absolute;
  left: max(82px, calc((100vw - 1276px) / 2));
  top: 222px;
  width: 680px;
  height: 476px;
  background: #1e1e1e;
  border-radius: 12px;
}

.product-window-bar {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 48px;
}

.product-window-bar span {
  position: absolute;
  top: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.product-window-bar span:nth-child(1) {
  left: 20px;
  background: #ff5f57;
}

.product-window-bar span:nth-child(2) {
  left: 38px;
  background: #ffbd2e;
}

.product-window-bar span:nth-child(3) {
  left: 56px;
  background: #28c840;
}

.product-window-bar div {
  position: absolute;
  left: 202px;
  top: 16px;
  width: 299px;
  height: 16px;
  color: #ffffff;
  background: #686868;
  border-radius: 4px;
  font-size: 8px;
  line-height: 16px;
  text-align: center;
}

.product-x-phone {
  position: absolute;
  z-index: 2;
  left: 48px;
  top: -126px;
  width: 303px;
  max-width: none;
}

.product-dashboard-frame {
  position: absolute;
  z-index: 3;
  left: 376px;
  top: 43px;
  width: 256px;
  height: 433px;
  overflow: hidden;
  border: 1px solid #686868;
  border-radius: 4px;
}

.product-x-dashboard {
  position: absolute;
  left: 0;
  top: -6.33%;
  width: 100%;
  height: 128.26%;
  max-width: none;
  object-fit: cover;
}

.product-dashboard-frame span {
  position: absolute;
  left: 0;
  right: 0;
  top: 10px;
  color: #ffffff;
  font-size: 8px;
  line-height: 1;
  text-align: center;
}

.product-x-copy {
  position: absolute;
  left: calc(50% + 68px);
  top: 314px;
  width: min(570px, calc(100% - 40px));
}

.product-x-copy h2 {
  margin: 0;
  font-size: 64px;
  line-height: 1.2;
  font-weight: 600;
}

.product-x-copy p {
  width: min(570px, 100%);
  margin: 26px 0 0;
  color: var(--lavender);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.referral-page {
  background: #ffffff;
}

.referral-hero {
  position: relative;
  min-height: 880px;
  overflow: hidden;
  background: #ffffff;
}

.referral-hero-phone-shell {
  position: absolute;
  z-index: 1;
  left: calc(var(--design-offset) + 82px);
  top: 181px;
  width: 605.401px;
  height: 628.753px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.referral-hero-phone-frame {
  position: relative;
  width: 538px;
  height: 565px;
  overflow: hidden;
  transform: rotate(7.3deg);
  animation: float-soft 6.5s ease-in-out infinite;
}

.referral-hero-phone-frame img {
  position: absolute;
  left: -13.67%;
  top: -0.01%;
  width: 113.67%;
  height: 100.03%;
  max-width: none;
}

.referral-hero-copy {
  position: absolute;
  z-index: 2;
  left: calc(var(--design-offset) + 680px);
  top: 267px;
  width: 570px;
}

.referral-eyebrow {
  margin: 0 0 26px;
  color: var(--violet);
  font-size: 14px;
  line-height: normal;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.referral-hero-copy h1 {
  margin: 0;
  color: #000000;
  font-size: 64px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}

.referral-hero-copy p:not(.referral-eyebrow) {
  width: 549px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.referral-pill-button,
.referral-link-button {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  border-radius: 33px;
  line-height: 1;
}

.referral-pill-button {
  justify-content: space-between;
  width: 208px;
  height: 48px;
  margin-top: 26px;
  padding: 0 8px 0 16px;
  background: var(--violet);
  font-size: 16px;
}

.referral-pill-button span,
.referral-link-button span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  line-height: 1;
}

.referral-pill-button span {
  color: var(--violet);
  background: #ffffff;
}

.referral-link-button {
  gap: 16px;
  padding: 0;
  color: var(--violet);
  background: transparent;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.referral-link-button span {
  color: var(--violet);
  background: #ffffff;
  font-size: 16px;
}

.referral-rewards,
.referral-moments,
.referral-security {
  position: relative;
  overflow: hidden;
}

.referral-rewards {
  height: 1680px;
}

.referral-section-title {
  margin: 0;
  color: #000000;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}

.referral-rewards-title {
  position: absolute;
  left: 50%;
  top: 60px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.referral-card {
  position: absolute;
  overflow: hidden;
  background: var(--soft);
  border-radius: 32px;
}

.referral-card-copy {
  position: absolute;
  z-index: 2;
  left: 32px;
  top: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}

.referral-card-copy h3,
.referral-moment-card h3 {
  margin: 0;
  color: #000000;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}

.referral-card-copy p,
.referral-moment-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.referral-card-copy .referral-link-button {
  margin-top: 16px;
}

.referral-wide-card {
  left: calc(var(--design-offset) + 190px);
  width: 1060px;
  height: 388px;
}

.referral-invite-card {
  top: 178px;
}

.referral-analytics-card {
  top: 1232px;
}

.referral-wide-copy {
  left: 60px;
  top: 50%;
  width: 527px;
  transform: translateY(-50%);
}

.referral-wide-copy p {
  width: 399px;
}

.referral-half-card {
  top: 606px;
  width: 510px;
  height: 586px;
}

.referral-claim-card {
  left: calc(var(--design-offset) + 190px);
}

.referral-withdraw-card {
  left: calc(var(--design-offset) + 740px);
}

.referral-half-copy p {
  width: 446px;
}

.referral-phone {
  position: absolute;
  z-index: 1;
  max-width: none;
  pointer-events: none;
}

.referral-wide-phone {
  left: 693px;
  top: 20px;
  width: 277px;
  height: 575px;
  object-fit: cover;
  animation: float-soft 6.8s ease-in-out infinite;
}

.referral-half-phone {
  left: 50%;
  top: 250px;
  width: 259px;
  height: 537px;
  object-fit: cover;
  transform: translateX(-50%);
  filter: drop-shadow(0 -6px 67px rgba(0, 0, 0, 0.25));
}

.referral-moments {
  height: 652px;
}

.referral-moments-title {
  position: absolute;
  left: 50%;
  top: 100px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.referral-section-copy {
  position: absolute;
  left: 50%;
  top: 178px;
  width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  transform: translateX(-50%);
}

.referral-moment-grid {
  position: absolute;
  left: calc(var(--design-offset) + 190px);
  top: 286px;
  display: grid;
  grid-template-columns: repeat(3, 340px);
  gap: 20px;
}

.referral-moment-card {
  position: relative;
  width: 340px;
  height: 366px;
  overflow: hidden;
  background: var(--soft);
  border-radius: 32px;
  text-align: center;
}

.referral-icon {
  position: absolute;
  left: 139px;
  top: 40px;
  width: 60px;
  height: 60px;
}

.referral-icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.referral-icon img + img {
  inset: 14px;
  width: 32px;
  height: 32px;
}

.referral-moment-card h3 {
  position: absolute;
  left: 0;
  right: 0;
  top: 140px;
  font-size: 26px;
  white-space: nowrap;
}

.referral-moment-card:nth-child(3) h3 {
  font-size: 28px;
}

.referral-moment-card p {
  position: absolute;
  left: 50%;
  top: 190px;
  width: 228px;
  text-align: center;
  transform: translateX(-50%);
}

.referral-moment-card .referral-link-button {
  position: absolute;
  left: 50%;
  top: 294px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.referral-security {
  height: 1650px;
}

.referral-security-title {
  position: absolute;
  left: 50%;
  top: 160px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.referral-security-grid {
  position: absolute;
  left: calc(var(--design-offset) + 190px);
  top: 278px;
  display: grid;
  grid-template-columns: repeat(2, 510px);
  gap: 40px;
}

.referral-secure-card {
  position: relative;
  width: 510px;
  height: 586px;
}

.referral-secure-card .referral-card-copy p {
  width: 446px;
}

.referral-secure-phone {
  left: 50%;
  top: 202px;
  height: auto;
  object-fit: cover;
  transform: translateX(-50%);
}

.referral-track-phone {
  width: 313px;
  height: 649px;
}

.referral-protected-phone {
  width: 302px;
  height: 627px;
  filter: drop-shadow(0 -6px 67px rgba(0, 0, 0, 0.25));
}

.referral-updates-phone {
  left: 46px;
  top: 178px;
  width: 418px;
  height: 867px;
  object-fit: cover;
}

.referral-support-copy {
  gap: 16px;
}

.referral-support-copy .referral-link-button {
  margin-top: 16px;
}

.referral-support-art {
  position: absolute;
  left: 120px;
  top: 226px;
  width: 351px;
  height: 459px;
  overflow: hidden;
  pointer-events: none;
}

.referral-support-art img {
  position: absolute;
  left: -26.76%;
  top: -31.75%;
  width: 144.23%;
  height: 165.34%;
  max-width: none;
  object-fit: cover;
}

.referral-cta .section {
  padding: 102px 0 364px;
}

.referral-rewards-title.reveal,
.referral-moments-title.reveal,
.referral-section-copy.reveal,
.referral-security-title.reveal {
  transform: translateX(-50%) translateY(24px);
}

.referral-rewards-title.reveal.in-view,
.referral-moments-title.reveal.in-view,
.referral-section-copy.reveal.in-view,
.referral-security-title.reveal.in-view {
  transform: translateX(-50%) translateY(0);
}

.referral-moment-card .referral-link-button:hover {
  transform: translateX(-50%) translateY(-2px);
}

.blog-page {
  background: #ffffff;
}

.blog-hero {
  position: relative;
  height: 1159px;
  overflow: hidden;
  background: #ffffff;
}

.blog-title-block {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 204px;
  width: 760px;
  text-align: center;
  transform: translateX(-50%);
}

.blog-title-block h1 {
  margin: 0;
  color: #000000;
  font-size: 64px;
  line-height: 80px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.blog-title-block p {
  width: 980px;
  margin: 26px 0 0 50%;
  color: var(--muted);
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transform: translateX(-50%);
}

.blog-hero-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.blog-hero-phone-a,
.blog-hero-phone-b {
  position: absolute;
  display: block;
  opacity: 1;
  max-width: none;
  object-fit: cover;
}

.blog-hero-phone-a {
  z-index: 2;
  left: calc(var(--design-offset) + 98px);
  top: 467px;
  width: 569px;
  height: 526px;
}

.blog-hero-phone-b {
  z-index: 3;
  left: calc(var(--design-offset) + 424px);
  top: 597px;
  width: 436px;
  height: 403px;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.18));
}

.blog-topics {
  position: absolute;
  z-index: 3;
  left: calc(var(--design-offset) + 1030px);
  top: 487px;
  width: 328px;
  height: 672px;
  padding: 40px;
  text-align: left;
  background: #f5f5f5;
  border-radius: 16px;
}

.blog-topics h2 {
  margin: 0;
  color: var(--muted);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}

.blog-topics nav {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.blog-topics button {
  width: max-content;
  padding: 0;
  color: var(--violet);
  background: transparent;
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.blog-topics button.active {
  color: #000000;
  font-weight: 800;
}

.blog-topics button.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 4px;
  background: var(--violet);
  border-radius: 999px;
}

.blog-socials {
  position: absolute;
  left: 40px;
  bottom: 38px;
  display: grid;
  gap: 20px;
}

.blog-social-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 20px;
  align-items: center;
}

.blog-social-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--muted);
  border: 1px solid rgba(104, 104, 104, 0.4);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-social-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.blog-social-icon svg path,
.blog-social-icon svg rect,
.blog-social-icon svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-social-icon svg path {
  fill: currentColor;
  stroke: none;
}

.blog-socials p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.blog-feature-card {
  position: absolute;
  z-index: 3;
  left: calc(var(--design-offset) + 82px);
  top: 882px;
  width: 928px;
  height: 277px;
  padding: 40px 32px;
  text-align: left;
  background: #f5f5f5;
  border-radius: 16px;
}

.blog-feature-card h2 {
  margin: 0;
  color: #000000;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
}

.blog-feature-card > p {
  width: 863px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.blog-author > span {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 34%, #38df8a 0 16%, transparent 17%),
    radial-gradient(circle at 62% 34%, #ff774f 0 14%, transparent 15%),
    radial-gradient(circle at 45% 65%, #870ae0 0 22%, transparent 23%),
    #ffffff;
  box-shadow: inset 0 0 0 1px rgba(135, 10, 224, 0.18);
}

.blog-author strong,
.blog-author small {
  display: block;
}

.blog-author strong {
  color: #000000;
  font-size: 20px;
  line-height: normal;
  font-weight: 700;
}

.blog-author small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 16px;
  line-height: normal;
  font-weight: 500;
}

.blog-list-section {
  position: relative;
  height: var(--blog-list-height, 1993px);
  overflow: hidden;
  background: #ffffff;
}

.blog-card-grid {
  position: absolute;
  left: calc(var(--design-offset) + 82px);
  top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 402px);
  gap: 35px;
}

.blog-empty-state {
  grid-column: 1 / -1;
  display: grid;
  align-content: center;
  width: 1276px;
  min-height: 276px;
  padding: 56px;
  color: #000000;
  text-align: center;
  background: #f5f5f5;
  border-radius: 16px;
}

.blog-empty-state strong {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
}

.blog-empty-state p {
  width: min(100%, 560px);
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
}

.blog-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  width: 402px;
  height: 384px;
  padding: 8px 8px 0;
  color: #000000;
  font-size: 0;
  line-height: 0;
  text-align: left;
  background: #f5f5f5;
  border-radius: 16px;
  overflow: hidden;
}

.blog-card:hover {
  box-shadow: 0 20px 54px rgba(135, 10, 224, 0.12);
}

.blog-card-media {
  position: relative;
  display: block;
  width: 386px;
  height: 206px;
  overflow: hidden;
  background: #ffffff;
  border-radius: 12px;
}

.blog-media-tall {
  height: 208px;
}

.blog-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.blog-card-media .blog-thumb {
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transform: none !important;
}

.blog-media-cover img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-media-qr img {
  height: 100%;
  top: 0;
  object-position: center;
}

.blog-media-dashboard img {
  height: 100%;
  top: 0;
  object-position: center;
}

.blog-card > strong {
  display: block;
  margin: 26px 12px 0;
  color: #000000;
  font-size: 20px;
  line-height: normal;
  font-weight: 700;
  white-space: nowrap;
}

.blog-media-tall + strong {
  margin-top: 24px;
}

.blog-card > p {
  width: 362px;
  margin: 14px 12px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.blog-media-nft {
  background: #ffffff;
}

.blog-card-media img.blog-nft-a {
  inset: auto;
  left: 90px;
  top: 10px;
  width: 89px;
  height: 185px;
  object-fit: cover;
  filter: drop-shadow(0 0 34px rgba(0, 0, 0, 0.25));
}

.blog-card-media img.blog-nft-b {
  inset: auto;
  left: 161px;
  top: 16px;
  width: 173px;
  height: 190px;
  object-fit: cover;
}

.blog-media-phone-crop {
  background: #ffffff;
}

.blog-card-media img.blog-secure-phone {
  inset: auto;
  left: 35px;
  top: 15px;
  width: 416px;
  height: 442px;
  object-fit: cover;
}

.blog-card-media img.blog-payment-phone {
  inset: auto;
  left: 0;
  top: 11px;
  width: 394px;
  height: 412px;
  object-fit: cover;
}

.blog-card-media img.blog-asset-phone {
  inset: auto;
  left: -78px;
  top: -89px;
  width: 393px;
  height: 364px;
  object-fit: cover;
}

.blog-card-media img.blog-loyalty-phone {
  inset: auto;
  left: 50%;
  top: 16px;
  width: 147px;
  height: 304px;
  object-fit: cover;
  transform: translateX(-50%);
}

.blog-card-media img.blog-transfer-phone {
  inset: auto;
  left: 50%;
  top: 9px;
  width: 234px;
  height: 474px;
  object-fit: cover;
  transform: translateX(-50%);
}

.blog-media-coming img {
  inset: auto;
  left: 17px;
  top: 53px;
  width: 351px;
  height: 100px;
  object-fit: contain;
}

.blog-read-more {
  position: absolute;
  left: 50%;
  top: var(--blog-more-top, 1777px);
  width: 208px;
  height: 56px;
  color: #ffffff;
  background: var(--violet);
  border-radius: 33px;
  font-size: 18px;
  line-height: normal;
  font-weight: 500;
  transform: translateX(-50%);
}

.blog-read-more[hidden] {
  display: none;
}

.blog-read-more:hover {
  transform: translateX(-50%) translateY(-2px);
}

.blog-detail-page {
  background: #ffffff;
}

.blog-detail-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 144px 82px 120px;
  overflow-x: clip;
}

.blog-detail-back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-bottom: 36px;
  color: var(--violet);
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}

.blog-detail-back::before {
  content: "<-";
  margin-right: 10px;
}

.blog-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 488px;
  gap: 72px;
  align-items: center;
}

.blog-detail-copy {
  max-width: 740px;
  min-width: 0;
}

.blog-detail-copy .eyebrow,
.blog-detail-related .eyebrow {
  margin: 0 0 20px;
  color: var(--violet);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.blog-detail-copy h1 {
  margin: 0;
  color: #000000;
  font-size: 64px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.blog-detail-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.blog-detail-meta span {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 16px;
  color: var(--muted);
  background: #f5f5f5;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}

.blog-detail-figure {
  width: 488px;
  margin: 0;
  padding: 16px;
  background: #f5f5f5;
  border-radius: 16px;
}

.blog-detail-figure img {
  width: 100%;
  height: 278px;
  object-fit: cover;
  background: #ffffff;
  border-radius: 12px;
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: 286px minmax(0, 760px);
  gap: 96px;
  align-items: start;
  margin-top: 96px;
  min-width: 0;
}

.blog-detail-sidebar {
  position: sticky;
  top: 116px;
  padding: 28px;
  background: #f5f5f5;
  border-radius: 16px;
}

.blog-detail-sidebar h2 {
  margin: 0;
  color: #000000;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.blog-detail-sidebar nav {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.blog-detail-sidebar a {
  color: var(--muted);
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
}

.blog-detail-sidebar a:hover {
  color: var(--violet);
}

.blog-detail-content {
  color: #000000;
  min-width: 0;
}

.blog-detail-section {
  scroll-margin-top: 118px;
}

.blog-detail-section + .blog-detail-section {
  margin-top: 58px;
}

.blog-detail-section h2 {
  margin: 0 0 18px;
  color: #000000;
  font-size: 34px;
  line-height: 1.18;
  font-weight: 800;
}

.blog-detail-section p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
  overflow-wrap: break-word;
}

.blog-detail-section p + p {
  margin-top: 18px;
}

.blog-detail-content blockquote {
  margin: 64px 0 0;
  padding: 34px 38px;
  color: #000000;
  background: #f5f5f5;
  border-left: 6px solid var(--violet);
  border-radius: 16px;
  font-size: 24px;
  line-height: 36px;
  font-weight: 800;
}

.blog-detail-related {
  margin-top: 110px;
}

.blog-detail-related h2 {
  margin: 0;
  color: #000000;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
}

.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 34px;
}

.blog-related-card {
  display: grid;
  gap: 18px;
  padding: 12px 12px 22px;
  color: #000000;
  background: #f5f5f5;
  border-radius: 16px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.blog-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 54px rgba(135, 10, 224, 0.12);
}

.blog-related-card img {
  width: 100%;
  height: 154px;
  object-fit: cover;
  background: #ffffff;
  border-radius: 12px;
}

.blog-related-card strong,
.blog-related-card small {
  display: block;
  padding: 0 6px;
}

.blog-related-card strong {
  color: #000000;
  font-size: 18px;
  line-height: 24px;
  font-weight: 800;
}

.blog-related-card small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}

.hero-content > p:not(.eyebrow) {
  color: #ffffff;
}

.hero-content.left > p:not(.eyebrow) {
  margin-left: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 32px;
}

.hero-content.left .hero-actions {
  justify-content: flex-start;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 56px;
  padding: 0 18px 0 20px;
  color: #ffffff;
  background: var(--violet);
  border-radius: 33px;
  font-weight: 500;
  line-height: 1;
  box-shadow: 0 16px 36px rgba(135, 10, 224, 0.28);
}

.primary-button span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  color: var(--violet);
  background: #ffffff;
  border-radius: 50%;
  line-height: 1;
}

.text-button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: inherit;
  background: transparent;
  font-weight: 600;
  line-height: 1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin-top: 74px;
}

.feature-tile {
  position: relative;
  min-height: 752px;
  overflow: hidden;
  background: var(--soft);
  border-radius: 32px;
  text-align: left;
}

.feature-tile.image-tile > img:not(.premium-card) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.tile-shade.dark {
  background: rgba(0, 0, 0, 0.72);
}

.tile-copy {
  position: relative;
  z-index: 3;
  padding: 48px;
}

.tile-copy.light {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: #ffffff;
}

.tile-copy.top {
  top: 0;
  bottom: auto;
}

.tile-copy h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 36px);
  line-height: 1.2;
  font-weight: 700;
}

.tile-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.tile-copy.light p {
  color: #fcfcfc;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.chips span {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 12px;
  color: var(--violet);
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
  font-weight: 500;
}

.phone-stack {
  position: absolute;
  right: -24px;
  bottom: -96px;
  width: 520px;
  height: 620px;
}

.pixel-phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 460px;
  animation: float-soft 6s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  left: 12px;
  bottom: 220px;
  width: 258px;
  filter: drop-shadow(0 22px 32px rgba(0, 0, 0, 0.22));
  animation: float-card 5s ease-in-out infinite;
}

.card-fan {
  position: absolute;
  inset: auto 0 0;
  height: 520px;
}

.card-fan.compact {
  transform: scale(0.82);
  transform-origin: center bottom;
}

.card-shadow {
  position: absolute;
  right: 16px;
  bottom: 0;
  width: 515px;
  opacity: 0.42;
}

.fan-card {
  position: absolute;
  width: 366px;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.18));
}

.fan-one {
  right: 70px;
  bottom: 84px;
  transform: rotate(-30deg);
}

.fan-two {
  left: 32px;
  bottom: 8px;
  transform: rotate(-45deg);
}

.fan-three {
  left: -54px;
  bottom: -36px;
  transform: rotate(-44deg);
}

.tile-visual {
  position: absolute;
  left: 5%;
  bottom: -4%;
  width: 90%;
  max-height: 74%;
  object-fit: contain;
}

.home-infra-frame,
.home-protection-frame {
  position: absolute;
  overflow: hidden;
  pointer-events: none;
}

.home-infra-frame {
  left: 31px;
  top: 224px;
  width: 555px;
  height: 541px;
}

.home-infra-visual {
  position: absolute;
  left: -82.76%;
  top: 0;
  width: 264.83%;
  height: 180.92%;
  max-width: none;
  object-fit: fill;
}

.home-protection-frame {
  left: 62px;
  top: 189px;
  width: 493px;
  height: 563px;
}

.home-protection-visual {
  position: absolute;
  left: -81.06%;
  top: -14.13%;
  width: 213.93%;
  height: 124.73%;
  max-width: none;
  object-fit: fill;
}

.tile-visual.cover {
  left: -22%;
  width: 140%;
  max-height: none;
  height: 78%;
  object-fit: cover;
}

.premium-card {
  position: absolute;
  left: 17%;
  top: 21%;
  z-index: 2;
  width: 66%;
  filter: drop-shadow(0 0 74px rgba(135, 10, 224, 0.34));
}

.card-feature-section {
  padding-top: 189px;
  padding-bottom: 100px;
}

.card-feature-section .section-title {
  font-size: 48px;
  line-height: 1.2;
}

.card-feature-grid {
  margin-top: 60px;
}

.card-feature-section .section-button {
  margin-top: 56px;
}

.card-feature-img,
.card-global-img,
.card-premium-bg,
.card-secure-img {
  position: absolute;
  max-width: none;
  object-fit: fill;
  pointer-events: none;
}

.feature-tile.image-tile > img.card-global-img {
  left: -7.48%;
  top: 0;
  width: 114.95%;
  height: 104.92%;
}

.card-global-tile .tile-shade {
  background: rgba(0, 0, 0, 0.45);
}

.card-global-tile .tile-copy {
  padding: 58px 40px 0;
}

.card-rewards-img {
  left: -7.93%;
  top: -1.92%;
  width: 116.5%;
  height: 107.03%;
}

.card-tap-tile {
  background: #ededed;
}

.card-tap-img {
  left: -78.48%;
  top: 15.83%;
  width: 256.97%;
  height: 117.95%;
  mix-blend-mode: multiply;
}

.feature-tile.image-tile > img.card-premium-bg {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-premium-tile .tile-shade.dark {
  background: rgba(0, 0, 0, 0.8);
}

.card-premium-tile .tile-copy.light {
  top: 527px;
  bottom: auto;
  padding: 0 40px;
}

.card-premium-tile .tile-copy h3 {
  max-width: 522px;
}

.card-premium-tile .tile-copy p {
  max-width: 541px;
  margin-top: 24px;
}

.section-button {
  margin-top: 56px;
}

.dark-section {
  color: #ffffff;
  background: var(--night);
}

.dark-section .section-copy,
.dark-section .tile-copy p {
  color: var(--lavender);
}

.carousel-section {
  min-height: 230vh;
  padding: 0;
  background: #000000;
  overflow: visible;
}

.carousel-section > .section {
  position: sticky;
  top: calc(84px * var(--header-scale));
  width: 100%;
  height: calc(100vh - (84px * var(--header-scale)));
  min-height: 640px;
  padding: 0;
}

.card-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.card-carousel::before {
  content: "";
  position: absolute;
  left: 36%;
  top: 51%;
  z-index: 0;
  width: min(520px, 42vw);
  height: min(520px, 42vw);
  background:
    radial-gradient(circle at 48% 38%, rgba(135, 10, 224, 0.36), transparent 42%),
    radial-gradient(circle at 56% 62%, rgba(0, 214, 255, 0.28), transparent 40%);
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0.76;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: carousel-glow 5.2s ease-in-out infinite;
}

.carousel-track {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 0;
  transform-style: preserve-3d;
}

.carousel-track img {
  position: absolute;
  left: 50%;
  top: 49%;
  width: clamp(280px, 28vw, 390px);
  max-width: none;
  border-radius: 18px;
  opacity: 0;
  object-fit: contain;
  transform-origin: center;
  pointer-events: none;
  will-change: transform, opacity, filter;
  transition:
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 520ms ease,
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-track img[data-slot="0"] {
  z-index: 10;
  opacity: 1;
  filter:
    drop-shadow(0 0 48px rgba(135, 10, 224, 0.72))
    drop-shadow(0 0 72px rgba(0, 214, 255, 0.28));
  transform: translate(-50%, -50%) translateX(-150px) rotate(90deg) rotateY(0deg) scale(1.14);
}

.carousel-track img[data-slot="-1"] {
  z-index: 3;
  opacity: 0.58;
  filter: grayscale(0.5) brightness(0.82) drop-shadow(0 0 26px rgba(135, 10, 224, 0.18));
  transform: translate(-50%, -50%) translateX(-454px) rotate(90deg) rotateY(62deg) scale(0.56);
}

.carousel-track img[data-slot="1"] {
  z-index: 3;
  opacity: 0.58;
  filter: grayscale(0.5) brightness(0.82) drop-shadow(0 0 26px rgba(135, 10, 224, 0.18));
  transform: translate(-50%, -50%) translateX(454px) rotate(90deg) rotateY(-62deg) scale(0.56);
}

.carousel-track img[data-slot="-2"] {
  z-index: 2;
  opacity: 0.48;
  filter: brightness(0.72) blur(0.3px);
  transform: translate(-50%, -50%) translateX(36px) translateY(12px) rotate(90deg) scale(0.42);
}

.carousel-copy {
  position: absolute;
  left: 50%;
  top: 52%;
  z-index: 8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.carousel-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(40px, 4.1vw, 56px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.42);
  transition: opacity 240ms ease, transform 360ms ease;
}

.carousel-title.is-swapping {
  opacity: 0;
  transform: translateY(10px);
}

.carousel-action {
  min-width: 202px;
  height: 59px;
  padding: 0 34px;
  color: #111111;
  background: #ffffff;
  border-radius: 999px;
  font-size: 22px;
  font-weight: 500;
  pointer-events: auto;
  transition: transform 180ms ease, background 180ms ease;
}

.carousel-action:hover {
  transform: translateY(-2px);
  background: #f5f5f5;
}

.carousel-controls {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 9;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}

.circle-button {
  width: 68px;
  height: 32px;
  border-radius: 1440px;
  background: var(--violet);
  position: relative;
  opacity: 1;
}

.circle-button::before,
.circle-button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  background: transparent;
  transform: none;
}

.circle-button::before {
  content: none;
}

.circle-button::after {
  content: "\2190";
}

.circle-button.next {
  transform: none;
}

.circle-button.next::after {
  content: "\2192";
}

.circle-button.is-disabled {
  background: #7a351e;
}

.circle-button.next,
.circle-button.next.is-disabled,
.circle-button.next:disabled {
  background: #f7eefd;
}

.circle-button.next::after {
  color: var(--violet);
}

.circle-button:disabled {
  cursor: default;
}

@media (prefers-reduced-motion: reduce) {
  .card-carousel::before {
    animation: none;
  }

  .carousel-track img,
  .carousel-title {
    animation: none;
    transition: none;
  }

  .social-row {
    animation: none !important;
  }
}

.metric-section {
  padding: 92px 0 104px;
  background: #ffffff;
  text-align: center;
}

.metric-heading {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto 18px;
}

.metric-heading h2 {
  margin: 0;
  color: #000000;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: 0;
}

.metric {
  display: grid;
  justify-items: center;
  gap: 22px;
}

.metric strong {
  color: var(--violet);
  font-size: clamp(78px, 10vw, 154px);
  line-height: 1;
  font-weight: 800;
}

.metric span {
  color: #000000;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.2;
}

.card-metric-section {
  display: grid;
  place-items: center;
  min-height: 340px;
  color: #ffffff;
  background: #000000;
  text-align: center;
}

.card-metric {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.card-metric strong {
  color: var(--violet);
  font-size: 144px;
  line-height: 1;
  font-weight: 800;
}

.card-metric span {
  font-size: 32px;
  line-height: 1.22;
  font-weight: 500;
}

.architecture {
  padding: 92px 0;
}

.architecture-stage {
  position: relative;
  min-height: 660px;
  margin-top: 72px;
}

.architecture-phone {
  position: absolute;
  left: 50%;
  top: 42px;
  width: 376px;
  transform: translateX(-50%);
  filter: drop-shadow(-15px -11px 44px rgba(135, 10, 224, 0.24));
}

.layer-card {
  position: absolute;
  width: min(412px, 34vw);
  min-height: 124px;
  padding: 20px 24px 20px 74px;
  color: #000000;
  text-align: left;
  background: var(--lavender);
  border-radius: 16px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.3);
}

.layer-card:nth-of-type(1) {
  left: 8%;
  top: 120px;
}

.layer-card:nth-of-type(2) {
  left: 6%;
  top: 372px;
}

.layer-card:nth-of-type(3) {
  right: 5%;
  top: 86px;
}

.layer-card:nth-of-type(4) {
  right: 9%;
  top: 350px;
}

.layer-card strong {
  position: absolute;
  left: 0;
  bottom: -14px;
  color: rgba(135, 10, 224, 0.3);
  font-size: 64px;
  line-height: 1;
}

.layer-card h3 {
  margin: 0;
  font-size: 18px;
}

.layer-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.trust-grid {
  margin-top: 84px;
}

.exchange-tile {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  align-items: center;
  min-height: 340px;
  background: #f2f2f2;
}

.exchange-copy {
  padding: 58px 0 58px 64px;
}

.exchange-copy p {
  max-width: 390px;
}

.exchange-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 56px 64px 56px 24px;
}

.exchange-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 126px;
  padding: 26px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.06);
}

.exchange-logo-card img {
  width: min(176px, 100%);
  max-height: 74px;
  object-fit: contain;
}

.exchange-logo-card:nth-child(2) img {
  width: min(132px, 82%);
}

.exchange-logo-card-wide img {
  width: min(190px, 100%);
  max-height: 62px;
}

.exchange-logo-card-symbol img {
  width: min(86px, 72%);
  max-height: 86px;
}

.exchange-logo-card-dark {
  border-color: rgba(255, 255, 255, 0.08);
  background: #111111;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.12);
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: var(--plum);
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  width: 436px;
  height: 226px;
  border: 1px solid rgba(135, 10, 224, 0.38);
  border-radius: 48%;
  transform: rotate(-14deg);
}

.cta-band::before {
  right: -120px;
  top: 18px;
}

.cta-band::after {
  left: -120px;
  bottom: -60px;
}

.cta-band .section {
  position: relative;
  z-index: 1;
  padding: 116px 0;
}

.cta-band p {
  color: var(--lavender);
}

.cta-band .primary-button {
  margin-top: 40px;
}

.home-cta,
.product-cta,
.card-cta,
.referral-cta {
  background-color: #180b21;
  background-image: url("../public/assets/figma-ui/product-cta-bg.webp?v=20260607-referral-cta-bg1");
  background-position: center bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.home-cta::before,
.home-cta::after,
.product-cta::before,
.product-cta::after,
.card-cta::before,
.card-cta::after,
.referral-cta::before,
.referral-cta::after {
  display: none;
}

.home-cta .section,
.product-cta .section,
.card-cta .section,
.referral-cta .section {
  padding: 102px 0 364px;
}

.cta-logo-animation {
  position: absolute;
  left: 50%;
  bottom: 38px;
  width: min(286px, 68vw);
  transform: translateX(-50%);
  pointer-events: none;
}

.cta-logo-animation img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
}

.card-picker {
  padding-top: 94px;
  padding-bottom: 160px;
}

.card-picker .section-title {
  font-size: 48px;
  line-height: 1.2;
}

.card-picker-tabs {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-top: 42px;
}

.card-showcase {
  display: grid;
  grid-template-columns: 475px 1fr;
  gap: 0;
  align-items: stretch;
  width: 910px;
  min-height: 504px;
  margin: 48px auto 0;
  overflow: hidden;
  background: #ededed;
  border-radius: 22px;
}

.showcase-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 504px;
  overflow: hidden;
  background: #000000;
  border-radius: 22px 0 0 22px;
}

.showcase-card img {
  width: 400px;
  max-width: none;
  transform: rotate(90deg);
  filter: drop-shadow(0 0 74px rgba(135, 10, 224, 0.3));
  transition: opacity 220ms ease, transform 220ms ease;
}

.showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 40px 60px;
  text-align: left;
}

.showcase-copy h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

.showcase-copy p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.showcase-list {
  display: grid;
  gap: 20px;
  margin: 52px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 20px;
  font-weight: 500;
  list-style: none;
}

.showcase-list li {
  position: relative;
  padding-left: 36px;
}

.showcase-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 50%, var(--violet) 0) 50% 50% / 100% 100%,
    var(--violet);
  clip-path: polygon(14% 54%, 38% 78%, 88% 20%, 100% 32%, 40% 96%, 0 66%);
}

.card-picker-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 56px;
}

.card-picker-actions .text-button {
  gap: 10px;
  color: var(--violet);
  font-size: 18px;
}

.card-picker-actions .text-button span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  color: #ffffff;
  background: #ffffff;
  border-radius: 50%;
  line-height: 1;
}

.card-picker-actions .text-button span.button-label::before {
  display: none;
  content: none;
}

.card-picker-actions .text-button span.button-arrow {
  font-size: 0;
}

.card-picker-actions .text-button span.button-arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--violet);
  border-right: 2px solid var(--violet);
  transform: rotate(45deg);
}

.primary-button span.button-label,
.product-hero .primary-button span.button-label,
.product-compare-button span.button-label,
.referral-pill-button span.button-label,
.referral-link-button span.button-label,
.text-button span.button-label,
.card-picker-actions .text-button span.button-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  width: auto;
  height: auto;
  min-width: 0;
  color: inherit;
  background: transparent;
  border-radius: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.2;
}

body.language-ko .primary-button span.button-label,
body.language-ko .product-hero .primary-button span.button-label,
body.language-ko .product-compare-button span.button-label,
body.language-ko .referral-pill-button span.button-label,
body.language-ko .referral-link-button span.button-label,
body.language-ko .text-button span.button-label,
body.language-ko .card-picker-actions .text-button span.button-label {
  transform: translateY(1px);
}

.primary-button span.button-arrow,
.product-hero .primary-button span.button-arrow,
.product-compare-button span.button-arrow,
.referral-pill-button span.button-arrow,
.referral-link-button span.button-arrow,
.text-button span.button-arrow,
.card-picker-actions .text-button span.button-arrow {
  flex: 0 0 auto;
  line-height: 1;
}

.card-option {
  min-height: 31px;
  padding: 0 12px;
  color: #686868;
  background: #ffffff;
  border: 0;
  border-radius: 0;
  font-size: 16px;
}

.card-option.active {
  color: var(--violet);
  background: #ffffff;
  box-shadow: inset 0 -2px 0 var(--violet);
}

.social-section {
  overflow: hidden;
  padding: 80px 0 155px;
}

.social-section .section {
  padding: 0;
}

.social-stage {
  position: relative;
  width: 100vw;
  height: 708px;
  margin-top: 58px;
  margin-left: calc((100% - 100vw) / 2);
}

.social-row {
  position: absolute;
  display: flex;
  gap: 20px;
  align-items: stretch;
  width: max-content;
  transform: translate3d(var(--social-offset, 0px), 0, 0);
  will-change: transform;
}

.social-stage.is-marquee-ready .social-row {
  animation: social-marquee var(--social-duration, 54s) linear infinite;
}

.social-stage.is-marquee-ready .social-row-bottom {
  animation-name: social-marquee-reverse;
}

.social-row:hover {
  animation-play-state: paused;
}

.social-row-top {
  top: 0;
  left: 0;
  --social-duration: 58s;
}

.social-row-bottom {
  top: 364px;
  left: 0;
  --social-offset: -520px;
  --social-duration: 64s;
}

.post-card,
.social-photo {
  height: 344px;
  border-radius: 32px;
}

.post-card {
  flex: 0 0 555px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  text-align: left;
  background: var(--panel);
}

.post-user {
  display: flex;
  align-items: center;
  gap: 20px;
}

.post-user img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.post-user h3,
.post-user p,
.post-card > p {
  margin: 0;
}

.post-user h3 {
  font-size: 24px;
  line-height: 1.2;
}

.post-user p {
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.2;
}

.post-card > p {
  margin-top: 24px;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0.01em;
}

.post-actions {
  display: flex;
  gap: 24px;
  margin-top: auto;
}

.post-actions button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  min-height: 32px;
  padding: 0;
  color: #ffffff;
  background: transparent;
  border-radius: 0;
  font-size: 0;
}

.post-actions button::before {
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
}

.post-actions [data-action="like"]::before {
  content: "♥";
}

.post-actions [data-action="comment"]::before {
  content: "○";
}

.post-actions [data-action="share"]::before {
  content: "↗";
}

.post-actions button.active {
  background: transparent;
}

.post-actions button.active::before {
  color: var(--violet-soft);
}

.social-photo {
  position: relative;
  flex: 0 0 240px;
  overflow: hidden;
  margin: 0;
}

.social-photo img {
  position: absolute;
  max-width: none;
  object-fit: cover;
}

.social-photo-1 img {
  left: -23.61%;
  top: -0.87%;
  width: 147.22%;
  height: 102.89%;
}

.social-photo-2 img,
.social-photo-6 img {
  inset: 0;
  width: 100%;
  height: 100%;
}

.social-photo-3 img {
  left: -3.84%;
  top: -2.73%;
  width: 103.96%;
  height: 109.21%;
}

.social-photo-4 img {
  left: -2.17%;
  top: -6.44%;
  width: 104.34%;
  height: 117.78%;
}

.social-photo-5 img {
  left: -51.85%;
  top: 0;
  width: 228.7%;
  height: 100%;
}

.social-photo-6 img {
  object-position: center;
}

.card-standards {
  padding-top: 0;
  padding-bottom: 0;
}

.card-standards .section {
  padding-top: 120px;
  padding-bottom: 107px;
}

.card-standards .feature-grid {
  margin-top: 96px;
}

.card-secure-tile .tile-copy,
.card-mastercard-tile .tile-copy {
  color: var(--ink);
}

.card-secure-tile .tile-copy h3,
.card-mastercard-tile .tile-copy h3,
.card-page .card-standards .card-secure-tile .tile-copy h3,
.card-page .card-standards .card-mastercard-tile .tile-copy h3 {
  color: #101010 !important;
  text-shadow: none !important;
}

.card-secure-tile .tile-copy p,
.card-mastercard-tile .tile-copy p {
  color: #5f5f5f;
}

.card-secure-tile .tile-copy p,
.card-mastercard-tile .tile-copy p,
.card-page .card-standards .card-secure-tile .tile-copy p,
.card-page .card-standards .card-mastercard-tile .tile-copy p {
  color: #3f3f3f !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

.card-secure-img {
  left: 5.02%;
  top: 31px;
  width: 99.84%;
  height: 123.1%;
  object-fit: fill;
}

.card-mastercard-tile .card-fan {
  left: 0;
  right: auto;
  top: 126px;
  bottom: auto;
  width: 618px;
  height: 626px;
}

.card-mastercard-tile .card-fan.compact {
  transform: none;
}

.card-mastercard-tile .card-shadow {
  left: 78px;
  right: auto;
  top: 0;
  bottom: auto;
  width: 515px;
  height: 701px;
  object-fit: cover;
  opacity: 0.5;
}

.card-mastercard-tile .fan-card {
  width: 366px;
}

.card-mastercard-tile .fan-one {
  left: 105px;
  right: auto;
  top: 203px;
  bottom: auto;
}

.card-mastercard-tile .fan-two {
  left: 30px;
  top: 229px;
  bottom: auto;
}

.card-mastercard-tile .fan-three {
  left: -50px;
  top: 276px;
  bottom: auto;
}

.card-cta .section {
  padding: 102px 0 364px;
}

.blog-strip {
  padding-top: 104px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
  text-align: left;
}

.article-card {
  min-height: 260px;
  padding: 28px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(135, 10, 224, 0.36);
  box-shadow: 0 28px 80px rgba(135, 10, 224, 0.14);
}

.article-card span {
  color: var(--violet);
  font-size: 14px;
  font-weight: 800;
}

.article-card h3 {
  margin: 22px 0 12px;
  font-size: 24px;
  line-height: 1.25;
}

.article-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.download-page {
  background: #fbfbfb;
}

.download-hero {
  padding: 150px 0 96px;
  background:
    linear-gradient(90deg, rgba(135, 10, 224, 0.08), transparent 36%),
    #fbfbfb;
}

.download-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  width: min(1304px, calc(100% - 56px));
  margin: 0 auto;
  align-items: stretch;
}

.download-hero-copy {
  position: relative;
  max-width: 760px;
  min-height: 0;
  padding: 0;
  overflow: visible;
  color: var(--ink);
  background: transparent;
  border-radius: 0;
  isolation: auto;
}

.download-hero-copy::before,
.download-hero-copy::after {
  content: none;
}

.download-hero-copy::before {
  z-index: -2;
  background: url("../public/assets/figma-ui/home-hero.webp") 72% center / cover;
  filter: blur(2.4px) saturate(0.72);
  opacity: 0.68;
  transform: scale(1.035);
}

.download-hero-copy::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.86) 58%, rgba(0, 0, 0, 0.64) 100%),
    linear-gradient(180deg, rgba(135, 10, 224, 0.16), transparent 48%);
}

.download-hero-copy .eyebrow {
  color: var(--violet);
}

.download-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
}

.download-hero-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.56;
}

.download-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.download-app-card {
  position: relative;
  min-height: 560px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background:
    radial-gradient(circle at 62% 58%, rgba(135, 10, 224, 0.08), transparent 40%),
    #ffffff;
}

.download-app-card.user {
  color: #ffffff;
  background:
    radial-gradient(circle at 62% 54%, rgba(209, 7, 251, 0.18), transparent 42%),
    var(--plum);
  border-color: rgba(135, 10, 224, 0.24);
}

.download-app-card h2 {
  margin: 0 0 8px;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
}

.download-app-card p {
  max-width: 350px;
  margin: 0;
  color: #6b6b6b;
  font-size: 16px;
  line-height: 1.55;
}

.download-app-card.user p {
  color: rgba(255, 255, 255, 0.76);
}

.download-art {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 108px;
  height: 300px;
  min-height: 0;
  margin: 0;
}

.download-phone {
  position: absolute;
  left: 50%;
  top: 0;
  width: 242px;
  transform: translateX(-50%);
  filter: drop-shadow(0 20px 42px rgba(0, 0, 0, 0.24));
}

.download-card-img {
  position: absolute;
  left: 8%;
  top: 82px;
  width: 250px;
  max-width: none;
  transform: rotate(-14deg);
  filter: drop-shadow(0 18px 36px rgba(135, 10, 224, 0.22));
}

.download-app-card.store .download-card-img {
  left: auto;
  right: 4%;
  transform: rotate(13deg);
}

.download-actions {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 28px;
  z-index: 4;
  display: grid;
  gap: 10px;
  margin-top: 0;
}

.download-store-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 46px;
  padding: 0 16px;
  color: #101010;
  background: #f4f4f4;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.download-store-button:hover,
.download-guide-switch button:hover {
  transform: translateY(-2px);
}

.download-store-button > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  line-height: 1;
  transform: translateY(-1px);
}

.download-store-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--violet), var(--violet-hot));
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.download-store-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-store-button.primary {
  color: #ffffff;
  background: var(--violet);
}

.download-store-button.primary .download-store-icon {
  color: var(--violet);
  background: #ffffff;
}

.download-store-button.store-badge-button {
  position: relative;
  justify-content: flex-start;
  height: auto;
  min-height: 58px;
  padding: 9px 16px;
  overflow: hidden;
  color: #ffffff;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(180deg, #3b3b3b 0%, #050505 50%, #111111 100%);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.download-store-button.store-badge-button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -38%;
  width: 42%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  opacity: 0;
  pointer-events: none;
  transition: transform 320ms ease, opacity 220ms ease;
}

.download-store-button.store-badge-button:hover {
  transform: translateY(-4px) scale(1.012);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(135, 10, 224, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.download-store-button.store-badge-button:hover::after {
  transform: translateX(420%) rotate(18deg);
  opacity: 1;
}

.download-store-button.store-badge-button:active {
  transform: translateY(-1px) scale(0.995);
}

.store-badge-lockup {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.store-badge-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  color: #ffffff;
}

.store-badge-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.google-play-mark svg {
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.18));
}

.apple-mark svg {
  fill: currentColor;
}

.apk-mark {
  width: 34px;
  height: 34px;
}

.apk-mark svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.store-badge-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
  transform: translateY(-1px);
}

.store-badge-copy span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.store-badge-copy strong {
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  white-space: nowrap;
}

.download-page .store-badge-button {
  min-height: 52px;
  padding: 8px 14px;
}

.download-page .store-badge-lockup {
  gap: 12px;
}

.download-page .store-badge-icon {
  width: 31px;
  height: 31px;
}

.download-page .apk-mark {
  width: 30px;
  height: 30px;
}

.download-page .store-badge-copy span {
  font-size: 10px;
}

.download-page .store-badge-copy strong {
  font-size: 16px;
}

.ping-wallet-actions .store-badge-button {
  min-height: 72px;
  padding: 11px 18px;
  width: min(336px, 100%);
}

.ping-wallet-actions .store-badge-icon {
  width: 40px;
  height: 40px;
}

.ping-wallet-actions .apk-mark {
  width: 38px;
  height: 38px;
}

.ping-wallet-actions .store-badge-copy span {
  font-size: 12px;
}

.ping-wallet-actions .store-badge-copy strong {
  font-size: 22px;
}

.download-guide-section {
  display: grid;
  grid-template-columns: 338px 1fr;
  gap: 28px;
  width: min(1304px, calc(100% - 56px));
  margin: 0 auto;
  padding: 0 0 96px;
  background: #fbfbfb;
}

.download-guide-rail {
  padding: 34px;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  background: #ffffff;
}

.download-guide-rail h2 {
  margin: 0 0 28px;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

.download-guide-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 52px;
  padding: 5px;
  background: #f1f1f1;
  border: 1px solid #e1e1e1;
  border-radius: 999px;
}

.download-guide-switch button {
  color: #666666;
  background: transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
}

.download-guide-switch button.active {
  color: #ffffff;
  background: var(--violet);
  box-shadow: 0 12px 28px rgba(135, 10, 224, 0.25);
}

.download-guide-content {
  min-width: 0;
}

.download-guide-panel {
  display: none;
  min-height: 584px;
  padding: 34px;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  background: #ffffff;
}

.download-guide-panel.active {
  display: block;
}

.download-guide-blank {
  height: 100%;
  min-height: 516px;
  overflow: hidden;
  border: 1px solid #dfdfdf;
  border-radius: 8px;
  background: #fafafa;
}

.download-blank-bar {
  height: 50px;
  border-bottom: 1px solid #e5e5e5;
  background: #ffffff;
}

.download-blank-body {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 26px;
  padding: 30px;
}

.download-blank-column {
  min-height: 400px;
  border: 1px dashed #d5d5d5;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 39px, rgba(0, 0, 0, 0.035) 40px, transparent 41px),
    linear-gradient(0deg, transparent 39px, rgba(0, 0, 0, 0.035) 40px, transparent 41px),
    #ffffff;
  background-size: 40px 40px;
}

.ping-wallet-page {
  color: #f8fbff;
  background: #061015;
}

.ping-wallet-hero {
  position: relative;
  min-height: calc(100vh - (84px * var(--header-scale)));
  padding: calc(132px * var(--header-scale)) 0 84px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(49, 238, 211, 0.18), transparent 30%),
    radial-gradient(circle at 18% 84%, rgba(135, 10, 224, 0.2), transparent 34%),
    linear-gradient(135deg, #071014 0%, #0c1720 45%, #11091c 100%);
}

.ping-wallet-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background:
    linear-gradient(90deg, transparent 31px, rgba(255, 255, 255, 0.42) 32px, transparent 33px),
    linear-gradient(0deg, transparent 31px, rgba(255, 255, 255, 0.28) 32px, transparent 33px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 78%);
  pointer-events: none;
}

.ping-wallet-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: 64px;
  align-items: center;
  width: min(1220px, calc(100% - 56px));
  margin: 0 auto;
}

.ping-wallet-copy {
  max-width: 600px;
}

.ping-wallet-copy .eyebrow {
  color: #31eed3;
}

.ping-wallet-copy h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(52px, 5.4vw, 82px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

.ping-wallet-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(248, 251, 255, 0.74);
  font-size: 18px;
  line-height: 1.62;
}

.ping-wallet-actions {
  display: grid;
  gap: 14px;
  width: min(430px, 100%);
  margin-top: 34px;
}

.ping-wallet-actions .download-store-button {
  height: auto;
}

.ping-wallet-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 640px;
}

.ping-wallet-visual::before {
  content: "";
  position: absolute;
  width: min(520px, 82vw);
  aspect-ratio: 1;
  border: 1px solid rgba(49, 238, 211, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(49, 238, 211, 0.08), transparent 58%),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 0 90px rgba(49, 238, 211, 0.12);
}

.ping-wallet-phone {
  position: relative;
  z-index: 2;
  width: min(430px, 72vw);
  max-height: 650px;
  object-fit: contain;
  filter: drop-shadow(0 42px 70px rgba(0, 0, 0, 0.56));
  transform: rotate(-3deg);
}

.ping-wallet-orbit {
  position: absolute;
  border: 1px solid rgba(209, 7, 251, 0.26);
  border-radius: 999px;
}

.ping-wallet-orbit.one {
  width: 470px;
  height: 470px;
  transform: rotate(-18deg);
}

.ping-wallet-orbit.two {
  width: 600px;
  height: 190px;
  transform: rotate(17deg);
}

.wallet-floating-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 7px;
  min-width: 212px;
  padding: 18px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(7, 16, 20, 0.78);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.wallet-floating-card span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.wallet-floating-card strong {
  font-size: 17px;
  line-height: 1.25;
}

.wallet-balance {
  left: 2%;
  bottom: 19%;
}

.wallet-secure {
  right: 0;
  top: 18%;
}

.guide-page {
  background: #faf8ff;
}

.guide-frame-section {
  position: relative;
  width: 100%;
  margin: 0;
  padding: calc(84px * var(--header-scale)) 0 0;
  background: #faf8ff;
}

.guide-sidebar-shell {
  --guide-sidebar-offset: calc(84px * var(--header-scale));
  position: fixed;
  top: var(--guide-sidebar-offset);
  left: 0;
  bottom: 0;
  z-index: 15;
  display: flex;
  flex-direction: column;
  width: 288px;
  padding: 26px 14px 18px 18px;
  overflow-y: auto;
  overflow-x: hidden;
  color: #e8e1f7;
  background: linear-gradient(185deg, #1c1430 0%, #2b1b54 55%, #3b1d74 100%);
  scrollbar-width: thin;
  scrollbar-color: rgba(168, 85, 247, 0.78) rgba(255, 255, 255, 0.06);
  scrollbar-gutter: stable;
}

.guide-sidebar-shell:empty,
body:not([data-active-page="guide"]) .guide-sidebar-shell {
  display: none;
}

.guide-sidebar-shell::-webkit-scrollbar {
  width: 10px;
}

.guide-sidebar-shell::-webkit-scrollbar-track {
  margin: 14px 0;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.guide-sidebar-shell::-webkit-scrollbar-thumb {
  border: 2px solid #201337;
  border-radius: 999px;
  background: linear-gradient(180deg, #d107fb 0%, #a855f7 45%, #7c3aed 100%);
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.42);
}

.guide-sidebar-shell::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #e352ff 0%, #b96bff 42%, #8b3cf6 100%);
}

.guide-sidebar-shell .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  padding: 6px 8px 22px;
  min-width: 0;
}

.guide-sidebar-shell .logo-mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.5);
}

.guide-sidebar-shell .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.guide-sidebar-shell .brand-text strong {
  font-family: Poppins, Inter, sans-serif;
  font-size: 20px;
  letter-spacing: 0.3px;
}

.guide-sidebar-shell .brand-text small {
  color: #b8a9e0;
  font-size: 12px;
  font-weight: 500;
}

.guide-sidebar-shell .nav {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 4px;
  margin-top: 6px;
}

.guide-sidebar-shell .nav-group-title {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 12px 8px;
  color: #9d8ad0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.guide-sidebar-shell .nav-group-title .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a855f7;
}

.guide-sidebar-shell .nav a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 11px;
  color: #cabbe8;
  font-size: 14px;
  line-height: 1.45;
  transition: color 0.18s, background 0.18s, box-shadow 0.18s;
}

.guide-sidebar-shell .nav a .num {
  display: grid;
  place-items: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  color: #d8c9f5;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
}

.guide-sidebar-shell .nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
}

.guide-sidebar-shell .nav a.active {
  color: #ffffff;
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.guide-sidebar-shell .nav a.active .num {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.25);
}

.guide-sidebar-shell .sidebar-foot {
  flex: 0 0 auto;
  margin-top: 22px;
  padding: 16px 12px 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.guide-sidebar-shell .ver {
  color: #9d8ad0;
  font-size: 12px;
}

.guide-frame {
  display: block;
  width: 100%;
  height: calc(100vh - (84px * var(--header-scale)));
  min-height: calc(100vh - (84px * var(--header-scale)));
  overflow: hidden;
  background: #faf8ff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

@media (min-width: 1081px) and (max-height: 760px) {
  .download-hero {
    padding-top: 118px;
    padding-bottom: 52px;
  }

  .download-app-card {
    min-height: 520px;
    padding: 30px;
  }

  .download-art {
    bottom: 98px;
    height: 270px;
  }

  .download-phone {
    width: 220px;
  }

  .download-card-img {
    top: 74px;
    width: 226px;
  }

  .download-store-button {
    height: 42px;
  }
}

.support-hero {
  padding-top: 84px;
  background: rgba(135, 10, 224, 0.04);
  overflow: hidden;
}

@media (min-width: 1081px) {
  .support-hero {
    padding-top: calc(84px * var(--header-scale));
  }
}

.support-hero .section {
  min-height: 640px;
  position: relative;
  display: block;
  padding: 0;
}

.support-hero-copy {
  position: absolute;
  top: 70px;
  left: 50%;
  z-index: 2;
  width: min(760px, calc(100% - 120px));
  transform: translateX(-50%);
}

.support-hero-copy .eyebrow {
  margin-bottom: 12px;
}

.support-hero-copy p:not(.eyebrow) {
  width: min(640px, 100%);
  margin: 16px auto 0;
  color: #3f3948;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

.support-decor {
  position: absolute;
  z-index: 1;
  width: 77px;
  height: 40px;
  object-fit: contain;
  pointer-events: none;
}

.decor-one {
  left: 85px;
  top: 131px;
}

.decor-two {
  left: 1309px;
  top: 97px;
  filter: grayscale(1) brightness(0.28);
}

.decor-three {
  left: 1048px;
  top: 421px;
}

.decor-four {
  left: 85px;
  top: 549px;
}

.search-box {
  position: absolute;
  top: 326px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(710px, 100%);
  height: 72px;
  margin: 0;
  padding: 0 20px;
  background: #ffffff;
  border-radius: 110px;
  box-shadow: var(--shadow);
}

.search-box img {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  overflow: hidden;
  object-fit: contain;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  font-size: 18px;
}

.support-note {
  width: min(931px, 100%);
  margin: 0 auto 56px;
}

.support-page > .section {
  padding-top: 68px;
}

.support-note h2 {
  margin: 0;
  font-size: 28px;
}

.support-note p {
  margin: 16px auto 0;
  width: min(860px, 100%);
  color: var(--muted);
  line-height: 1.65;
}

.support-note a,
.support-note button {
  color: var(--violet);
  background: transparent;
  padding: 0;
  font-weight: 700;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.support-card {
  min-height: 154px;
  padding: 22px;
  color: var(--violet);
  background: #ffffff;
  border: 1px solid var(--violet);
  border-radius: 12px;
  font-size: 24px;
  font-weight: 700;
}

.support-card.is-hidden {
  display: none;
}

.support-page .support-card.reveal {
  opacity: 1;
  transform: none;
}

.support-empty {
  margin: 28px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.faq-list {
  width: min(860px, 100%);
  margin: 72px auto 0;
  text-align: left;
}

.faq-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 64px;
  color: var(--ink);
  background: #ffffff;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.faq-panel {
  display: none;
  padding: 0 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-item.open + .faq-panel {
  display: block;
}

.legal-page {
  background: #fbfbfb;
}

.legal-hero {
  padding: calc(84px * var(--header-scale)) 0 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(135, 10, 224, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

.legal-hero .section {
  padding-top: 92px;
  padding-bottom: 58px;
  text-align: left;
}

.legal-hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(52px, 6vw, 86px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

.legal-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.legal-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
  padding-top: 38px;
  padding-bottom: 104px;
}

.legal-side {
  position: sticky;
  top: calc((84px * var(--header-scale)) + 28px);
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.04);
}

.legal-side span {
  color: var(--violet);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.legal-side a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--ink);
  border-radius: 8px;
  background: #f5f5f6;
  font-weight: 700;
}

.legal-side a[aria-current="page"] {
  color: #ffffff;
  background: var(--violet);
}

.legal-side p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.legal-document {
  padding: 44px;
  color: #111111;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.05);
}

.legal-document header {
  padding-bottom: 30px;
  border-bottom: 1px solid #ececec;
}

.legal-document header p {
  margin: 0 0 10px;
  color: var(--violet);
  font-size: 14px;
  font-weight: 800;
}

.legal-document h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

.legal-document section {
  padding: 30px 0;
  border-bottom: 1px solid #f0f0f0;
}

.legal-document section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.legal-document h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.24;
  letter-spacing: 0;
}

.legal-document h4 {
  margin: 22px 0 10px;
  font-size: 18px;
  line-height: 1.3;
}

.legal-document p,
.legal-document li {
  color: #4f5962;
  font-size: 16px;
  line-height: 1.74;
}

.legal-document p {
  margin: 0;
}

.legal-document p + p,
.legal-document ul + p {
  margin-top: 14px;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.legal-document a {
  color: var(--violet);
  font-weight: 700;
}

.footer {
  color: #ffffff;
  background: #000000;
}

.footer-inner {
  position: relative;
  width: min(1276px, calc(100% - 40px));
  min-height: 518px;
  margin: 0 auto;
}

.footer p,
.footer h2 {
  color: #ffffff;
  margin: 0;
}

.footer .brand {
  position: absolute;
  left: 0;
  top: 82px;
}

.footer-tagline {
  position: absolute;
  left: 0;
  top: 178px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

.footer-social {
  position: absolute;
  left: 0;
  top: 250px;
  display: grid;
  gap: 13px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

.footer-social > span {
  color: rgba(255, 255, 255, 0.82);
}

.footer-social > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-link {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.footer-social-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #d92bff 0%, #8a05ef 54%, #4b00d8 100%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.footer-social-link svg {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: #ffffff;
  border-color: rgba(217, 43, 255, 0.75);
  box-shadow: 0 12px 30px rgba(135, 10, 224, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transform: translateY(-3px);
}

.footer-social-link:hover::before,
.footer-social-link:focus-visible::before {
  opacity: 1;
}

.footer-contact {
  position: absolute;
  left: 0;
  top: 343px;
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
}

.footer-column {
  position: absolute;
  top: 102px;
  display: grid;
  align-content: start;
  gap: 26px;
  min-width: 120px;
}

.footer-column h2 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}

.footer-column a,
.footer-column button {
  color: #ffffff;
  background: transparent;
  padding: 0;
  text-align: left;
  font-size: 16px;
  line-height: 19px;
  font-weight: 500;
}

.footer-product {
  left: 559px;
}

.footer-company {
  left: 805px;
}

.footer-resources {
  left: 1055px;
}

.footer-bottom {
  position: absolute;
  left: 0;
  right: 0;
  top: 414px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.62);
}

.footer-bottom p,
.footer-bottom a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.footer-bottom nav {
  display: flex;
  gap: 56px;
  align-items: center;
}

.app-modal {
  width: min(460px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.app-modal::backdrop {
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(8px);
}

.app-modal form {
  position: relative;
  padding: 36px;
}

.app-modal h2 {
  margin: 0;
  font-size: 32px;
}

.app-modal p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  color: var(--muted);
  background: var(--soft);
  border-radius: 50%;
}

.modal-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 40;
  max-width: min(420px, calc(100% - 32px));
  padding: 14px 18px;
  color: #ffffff;
  background: #000000;
  border-radius: 999px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, 18px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

body .page.active .reveal.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.product-hero-art.reveal,
.product-hero-art.reveal.in-view {
  opacity: 1 !important;
  transform: none !important;
}

.referral-hero .reveal,
.referral-hero .reveal.in-view {
  opacity: 1 !important;
  transform: none !important;
}

.referral-rewards-title.reveal,
.referral-moments-title.reveal,
.referral-section-copy.reveal,
.referral-security-title.reveal {
  transform: translateX(-50%) translateY(24px);
}

.referral-rewards-title.reveal.in-view,
.referral-moments-title.reveal.in-view,
.referral-section-copy.reveal.in-view,
.referral-security-title.reveal.in-view {
  transform: translateX(-50%) translateY(0);
}

body .page.active .referral-rewards-title.reveal.in-view,
body .page.active .referral-moments-title.reveal.in-view,
body .page.active .referral-section-copy.reveal.in-view,
body .page.active .referral-security-title.reveal.in-view {
  transform: translateX(-50%) translateY(0) !important;
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-14px) rotate(2deg);
  }
}

@keyframes carousel-glow {
  0%,
  100% {
    opacity: 0.62;
    transform: translate(-50%, -50%) scale(0.96);
  }
  50% {
    opacity: 0.88;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes social-marquee {
  from {
    transform: translate3d(var(--social-offset, 0px), 0, 0);
  }
  to {
    transform: translate3d(calc(var(--social-offset, 0px) - 50%), 0, 0);
  }
}

@keyframes social-marquee-reverse {
  from {
    transform: translate3d(calc(var(--social-offset, 0px) - 50%), 0, 0);
  }
  to {
    transform: translate3d(var(--social-offset, 0px), 0, 0);
  }
}

@media (max-width: 1080px) {
  .site-header {
    padding-inline: 20px;
  }

  .primary-nav {
    display: none;
  }

  .feature-grid,
  .card-showcase,
  .support-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .download-hero {
    padding-top: 124px;
  }

  .download-hero-grid,
  .download-guide-section {
    grid-template-columns: 1fr;
    width: min(900px, calc(100% - 48px));
  }

  .download-guide-section {
    gap: 24px;
  }

  .ping-wallet-hero {
    padding-top: 126px;
  }

  .ping-wallet-inner {
    grid-template-columns: 1fr;
    gap: 38px;
    width: min(860px, calc(100% - 48px));
  }

  .ping-wallet-copy {
    max-width: 760px;
  }

  .ping-wallet-visual {
    min-height: 560px;
  }

  .wallet-balance {
    left: 3%;
  }

  .wallet-secure {
    right: 3%;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-side {
    position: static;
  }

  .social-stage {
    width: 100%;
    height: auto;
    margin-left: 0;
  }

  .social-row {
    position: relative;
    top: auto;
    left: auto;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    transform: none;
    animation: none !important;
  }

  .social-row + .social-row {
    margin-top: 20px;
  }

  .is-social-clone {
    display: none;
  }

  .post-card,
  .social-photo {
    width: 100%;
    flex-basis: auto;
  }

  .feature-tile {
    min-height: 640px;
  }

  .product-hero {
    min-height: 820px;
  }

  .product-hero-copy {
    left: 28px;
    top: 156px;
    width: min(500px, calc(100% - 56px));
  }

  .product-hero-copy h1,
  .product-x-copy h2 {
    font-size: 52px;
  }

  .product-hero-art {
    transform: scale(0.78);
    transform-origin: right top;
  }

  .product-hero-phone {
    left: calc(50% - 80px);
    top: 230px;
  }

  .product-x-section {
    min-height: 1100px;
  }

  .product-preview-window {
    left: 28px;
    width: min(680px, calc(100% - 56px));
  }

  .product-x-copy {
    left: 28px;
    top: 720px;
  }

  .referral-hero {
    min-height: 900px;
  }

  .referral-hero-copy {
    left: 28px;
    top: 128px;
    width: min(570px, calc(100% - 56px));
  }

  .referral-hero-copy h1,
  .referral-section-title {
    font-size: 52px;
  }

  .referral-hero-copy p:not(.referral-eyebrow) {
    width: min(549px, 100%);
  }

  .referral-hero-phone-shell {
    left: max(28px, calc((100vw - 605px) / 2));
    top: 390px;
    width: min(605px, calc(100vw - 56px));
    height: auto;
    aspect-ratio: 605.401 / 628.753;
  }

  .referral-hero-phone-frame {
    width: 89%;
    height: auto;
    aspect-ratio: 538 / 565;
  }

  .referral-rewards,
  .referral-moments,
  .referral-security {
    height: auto;
    padding: 82px 28px;
  }

  .referral-rewards-title,
  .referral-moments-title,
  .referral-security-title,
  .referral-section-copy {
    position: static;
    width: min(100%, 680px);
    margin: 0 auto;
    white-space: normal;
    transform: none;
  }

  .referral-rewards-title.reveal,
  .referral-moments-title.reveal,
  .referral-section-copy.reveal,
  .referral-security-title.reveal {
    transform: translateY(24px);
  }

  .referral-rewards-title.reveal.in-view,
  .referral-moments-title.reveal.in-view,
  .referral-section-copy.reveal.in-view,
  .referral-security-title.reveal.in-view {
    transform: translateY(0);
  }

  .referral-section-copy {
    margin-top: 18px;
  }

  .referral-card,
  .referral-wide-card,
  .referral-half-card,
  .referral-secure-card,
  .referral-moment-card {
    position: relative;
    left: auto;
    top: auto;
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .referral-wide-card,
  .referral-half-card,
  .referral-secure-card {
    height: 620px;
  }

  .referral-invite-card,
  .referral-claim-card,
  .referral-withdraw-card,
  .referral-analytics-card {
    margin-top: 32px;
  }

  .referral-card-copy,
  .referral-wide-copy,
  .referral-half-copy {
    left: 32px;
    top: 34px;
    width: calc(100% - 64px);
    transform: none;
  }

  .referral-card-copy p,
  .referral-wide-copy p,
  .referral-half-copy p,
  .referral-secure-card .referral-card-copy p {
    width: min(100%, 446px);
  }

  .referral-wide-phone,
  .referral-half-phone,
  .referral-secure-phone,
  .referral-updates-phone {
    left: 50%;
    top: 228px;
    width: min(277px, 62vw);
    height: auto;
    transform: translateX(-50%);
  }

  .referral-updates-phone {
    width: min(320px, 70vw);
  }

  .referral-moment-grid,
  .referral-security-grid {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: min(100%, 620px);
    margin: 42px auto 0;
  }

  .referral-moment-card {
    height: 366px;
  }

  .referral-icon {
    left: 50%;
    transform: translateX(-50%);
  }

  .referral-support-art {
    left: 50%;
    top: 232px;
    width: min(351px, 74vw);
    height: 360px;
    transform: translateX(-50%);
  }

  .blog-hero {
    height: auto;
    min-height: 0;
    padding: 140px 28px 72px;
  }

  .blog-title-block,
  .blog-hero-art,
  .blog-topics,
  .blog-feature-card {
    position: relative;
    left: auto;
    top: auto;
    width: min(100%, 760px);
    margin: 0 auto;
    transform: none;
  }

  .blog-title-block h1 {
    font-size: 52px;
    line-height: 1.18;
  }

  .blog-title-block p {
    width: min(100%, 760px);
    margin: 20px auto 0;
    transform: none;
  }

  .blog-hero-art {
    height: 480px;
    margin-top: 48px;
  }

  .blog-hero-phone-a {
    left: 0;
    top: 0;
    width: min(520px, 74vw);
    height: auto;
  }

  .blog-hero-phone-b {
    left: min(320px, 42vw);
    top: 120px;
    width: min(360px, 52vw);
    height: auto;
  }

  .blog-topics {
    height: auto;
    margin-top: 36px;
  }

  .blog-topics nav {
    grid-template-columns: repeat(2, minmax(0, max-content));
    column-gap: 28px;
  }

  .blog-socials {
    position: static;
    margin-top: 42px;
  }

  .blog-feature-card {
    height: auto;
    margin-top: 36px;
  }

  .blog-feature-card > p {
    width: min(100%, 863px);
  }

  .blog-list-section {
    height: auto;
    padding: 72px 28px 120px;
  }

  .blog-card-grid {
    position: relative;
    left: auto;
    top: auto;
    grid-template-columns: repeat(2, minmax(0, 402px));
    justify-content: center;
  }

  .blog-empty-state {
    width: 100%;
  }

  .blog-card {
    width: 100%;
  }

  .blog-card-media {
    width: 100%;
  }

  .blog-card > p {
    width: calc(100% - 16px);
  }

  .blog-read-more {
    position: relative;
    left: auto;
    top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 56px auto 0;
    transform: none;
  }

  .blog-read-more:hover {
    transform: translateY(-2px);
  }

  .blog-detail-shell {
    padding: 128px 28px 96px;
  }

  .blog-detail-hero {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .blog-detail-copy,
  .blog-detail-copy > p:not(.eyebrow) {
    max-width: 820px;
  }

  .blog-detail-copy h1 {
    font-size: 52px;
  }

  .blog-detail-figure {
    width: min(100%, 620px);
  }

  .blog-detail-layout {
    grid-template-columns: 1fr;
    gap: 44px;
    margin-top: 72px;
  }

  .blog-detail-sidebar {
    position: relative;
    top: auto;
  }

  .blog-detail-sidebar nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .blog-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .architecture-stage {
    display: grid;
    gap: 18px;
    min-height: 0;
  }

  .architecture-phone,
  .layer-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    transform: none;
  }

  .architecture-phone {
    width: min(360px, 80%);
    margin: 0 auto;
  }

  .footer-inner {
    display: grid;
    gap: 34px;
    min-height: 0;
    padding: 56px 0;
  }

  .footer .brand,
  .footer-tagline,
  .footer-social,
  .footer-contact,
  .footer-column,
  .footer-bottom {
    position: static;
  }

  .footer-brand-block {
    display: grid;
    gap: 24px;
  }

  .footer-column {
    gap: 16px;
  }

  .footer-column h2 {
    margin-bottom: 2px;
  }

  .footer-bottom {
    display: grid;
    gap: 18px;
    padding-top: 28px;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
    gap: 22px;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 68px;
  }

  .brand img:first-child {
    width: 52px;
    height: 28px;
  }

  .brand img:last-child {
    width: 86px;
    height: 22px;
  }

  .header-actions {
    position: absolute;
    top: 12px;
    right: 16px;
  }

  .language-selector {
    display: block;
  }

  .language-button {
    width: 44px;
    min-width: 44px;
    padding: 0;
    gap: 0;
    background: #ffffff;
  }

  .language-button .language-label,
  .language-button .down-icon {
    display: none;
  }

  .language-button .language-icon {
    width: 24px;
    height: 24px;
  }

  .ping-wallet-hero {
    min-height: auto;
    padding: 104px 0 58px;
  }

  .ping-wallet-inner {
    width: min(calc(100% - 32px), 540px);
    gap: 28px;
  }

  .ping-wallet-copy h1 {
    font-size: 46px;
    line-height: 1.02;
  }

  .ping-wallet-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .ping-wallet-actions {
    width: 100%;
  }

  .ping-wallet-visual {
    min-height: 430px;
    overflow: hidden;
  }

  .ping-wallet-phone {
    width: min(300px, 74vw);
  }

  .ping-wallet-orbit.one {
    width: 320px;
    height: 320px;
  }

  .ping-wallet-orbit.two {
    width: 410px;
    height: 130px;
  }

  .wallet-floating-card {
    min-width: 168px;
    padding: 14px;
  }

  .wallet-floating-card strong {
    font-size: 14px;
  }

  .wallet-balance {
    left: 0;
    bottom: 11%;
  }

  .wallet-secure {
    right: 0;
    top: 10%;
  }

  .legal-hero .section {
    padding-top: 72px;
    padding-bottom: 42px;
  }

  .legal-hero h1 {
    font-size: 44px;
  }

  .legal-layout {
    padding-top: 24px;
    padding-bottom: 64px;
  }

  .legal-document {
    padding: 24px;
  }

  .legal-document h2 {
    font-size: 30px;
  }

  .legal-document h3 {
    font-size: 21px;
  }

  .legal-document p,
  .legal-document li {
    font-size: 15px;
  }

  .legal-document ul {
    padding-left: 18px;
  }

  .language-menu {
    position: fixed;
    top: 66px;
    right: 16px;
    width: calc(100vw - 32px);
    max-width: 360px;
  }

  .outline-cta {
    width: 44px;
    padding: 0;
    font-size: 0;
    background: var(--violet);
    border-color: var(--violet);
    box-shadow: 0 12px 26px rgba(135, 10, 224, 0.28);
  }

  .outline-cta .button-dot {
    margin: 0 auto;
    background: #ffffff;
  }

  .outline-cta .button-dot::after {
    border-color: var(--violet);
  }

  .hero {
    min-height: 720px;
  }

  .hero-content,
  .hero-content.left {
    width: calc(100% - 32px);
    max-width: 358px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-actions,
  .hero-content.left .hero-actions {
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }

  .referral-hero {
    min-height: 820px;
  }

  .referral-hero-copy {
    left: 16px;
    top: 104px;
    width: calc(100% - 32px);
  }

  .referral-eyebrow {
    margin-bottom: 14px;
  }

  .referral-hero-copy h1,
  .referral-section-title {
    font-size: 38px;
    line-height: 1.16;
  }

  .referral-hero-copy p:not(.referral-eyebrow) {
    margin-top: 18px;
    font-size: 15px;
    line-height: 24px;
  }

  .referral-hero-phone-shell {
    left: 16px;
    top: 390px;
    width: calc(100vw - 32px);
  }

  .referral-rewards,
  .referral-moments,
  .referral-security {
    padding: 68px 16px;
  }

  .referral-wide-card,
  .referral-half-card,
  .referral-secure-card {
    height: 590px;
  }

  .referral-card-copy h3,
  .referral-moment-card h3 {
    font-size: 28px;
    white-space: normal;
  }

  .referral-card-copy {
    left: 24px;
    width: calc(100% - 48px);
  }

  .referral-moment-card h3,
  .referral-moment-card:nth-child(3) h3 {
    font-size: 24px;
  }

  .referral-support-art {
    height: 330px;
  }

  .blog-hero {
    padding: 104px 16px 60px;
  }

  .blog-title-block h1 {
    font-size: 38px;
    line-height: 1.16;
    letter-spacing: 0;
  }

  .blog-title-block p {
    font-size: 14px;
    line-height: 23px;
  }

  .blog-hero-art {
    height: 360px;
    margin-top: 34px;
  }

  .blog-hero-phone-a {
    width: 78vw;
  }

  .blog-hero-phone-b {
    left: 35vw;
    top: 118px;
    width: 58vw;
  }

  .download-hero {
    padding: 104px 0 44px;
    overflow: hidden;
  }

  .download-hero-grid,
  .download-guide-section {
    width: min(358px, calc(100% - 32px));
    max-width: min(358px, calc(100% - 32px));
    margin-inline: 16px auto;
    gap: 20px;
  }

  .download-hero-copy {
    min-height: 0;
    padding: 0;
    min-width: 0;
  }

  .download-hero-copy h1 {
    max-width: 100%;
    font-size: 38px;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .download-hero-copy p:not(.eyebrow) {
    max-width: 100%;
    font-size: 15px;
    line-height: 25px;
    overflow-wrap: break-word;
  }

  .download-board,
  .download-blank-body {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .download-app-card {
    min-height: 536px;
    padding: 24px;
    min-width: 0;
  }

  .download-art {
    bottom: 106px;
    height: 270px;
    min-height: 0;
  }

  .download-phone {
    width: 198px;
  }

  .download-card-img {
    left: -2px;
    top: 76px;
    width: 186px;
  }

  .download-app-card.store .download-card-img {
    right: -2px;
  }

  .download-app-card h2,
  .download-app-card p {
    overflow-wrap: break-word;
  }

  .download-store-button {
    min-width: 0;
  }

  .download-store-button > span:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .download-guide-section {
    padding: 0 0 64px;
  }

  .download-guide-rail {
    padding: 24px;
    min-width: 0;
  }

  .download-guide-rail h2 {
    font-size: 30px;
  }

  .download-guide-panel {
    min-height: 520px;
    padding: 18px;
  }

  .download-guide-blank {
    min-height: 480px;
  }

  .download-blank-body {
    gap: 18px;
    padding: 18px;
  }

  .download-blank-column {
    min-height: 180px;
  }

  .guide-frame-section {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 84px 0 0;
  }

  .guide-sidebar-shell {
    display: none !important;
  }

  .guide-frame {
    height: calc(100vh - 84px);
    min-height: calc(100vh - 84px);
  }

  .blog-topics,
  .blog-feature-card {
    padding: 28px 22px;
  }

  .blog-topics h2 {
    font-size: 24px;
  }

  .blog-topics nav {
    grid-template-columns: 1fr;
  }

  .blog-feature-card h2 {
    font-size: 26px;
  }

  .blog-author strong {
    font-size: 16px;
    white-space: normal;
  }

  .blog-author small {
    font-size: 14px;
  }

  .blog-list-section {
    padding: 56px 16px 96px;
  }

  .blog-card-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-card {
    height: auto;
    min-height: 384px;
  }

  .blog-card > strong {
    white-space: normal;
  }

  .blog-detail-shell {
    width: 100%;
    padding: 96px 16px 82px;
  }

  .blog-detail-back {
    margin-bottom: 24px;
  }

  .blog-detail-hero {
    width: 100%;
    max-width: calc(100vw - 48px);
    gap: 30px;
  }

  .blog-detail-copy,
  .blog-detail-content,
  .blog-detail-section,
  .blog-detail-sidebar,
  .blog-detail-related {
    width: 320px;
    max-width: calc(100vw - 48px);
    min-width: 0;
  }

  .blog-detail-copy h1 {
    width: 320px;
    max-width: calc(100vw - 48px);
    font-size: 32px;
    line-height: 1.16;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .blog-detail-copy > p:not(.eyebrow) {
    width: 320px;
    max-width: calc(100vw - 48px);
    font-size: 16px;
    line-height: 26px;
    overflow-wrap: anywhere;
  }

  .blog-detail-meta {
    gap: 8px;
  }

  .blog-detail-meta span {
    height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .blog-detail-figure {
    width: min(100%, calc(100vw - 48px));
    max-width: calc(100vw - 48px);
    padding: 8px;
  }

  .blog-detail-figure img {
    height: 220px;
  }

  .blog-detail-layout {
    margin-top: 52px;
  }

  .blog-detail-sidebar {
    padding: 22px;
  }

  .blog-detail-sidebar nav,
  .blog-related-grid {
    grid-template-columns: 1fr;
  }

  .blog-detail-section h2 {
    width: 320px;
    max-width: calc(100vw - 48px);
    font-size: 28px;
    overflow-wrap: anywhere;
  }

  .blog-detail-section p {
    width: 320px;
    max-width: calc(100vw - 48px);
    font-size: 16px;
    line-height: 28px;
    overflow-wrap: anywhere;
  }

  .blog-detail-content blockquote {
    padding: 26px;
    font-size: 20px;
    line-height: 31px;
  }

  .blog-detail-related {
    margin-top: 74px;
  }

  .blog-detail-related h2 {
    font-size: 30px;
  }

  .section {
    width: min(100% - 28px, 1276px);
    padding: 82px 0;
  }

  .section-title,
  .hero h1,
  .cta-band h2,
  .support-hero h1 {
    font-size: 34px;
    overflow-wrap: break-word;
  }

  .support-hero .section {
    min-height: 560px;
  }

  .support-hero-copy {
    top: 54px;
    width: calc(100% - 34px);
  }

  .support-hero-copy p:not(.eyebrow) {
    width: min(330px, 100%);
    font-size: 14px;
    line-height: 1.55;
  }

  .search-box {
    top: 306px;
    width: min(358px, calc(100% - 32px));
    height: 62px;
  }

  .metric-section {
    padding: 64px 0 74px;
  }

  .metric-heading {
    width: min(358px, calc(100% - 32px));
    margin-bottom: 14px;
  }

  .metric-heading h2 {
    font-size: 24px;
    line-height: 1.2;
    overflow-wrap: break-word;
  }

  .metric strong {
    font-size: clamp(48px, 14.8vw, 68px);
  }

  .metric {
    gap: 18px;
  }

  .metric span {
    max-width: calc(100% - 32px);
    font-size: 18px;
    line-height: 1.25;
  }

  .hero-content > p:not(.eyebrow) {
    max-width: 32ch;
    font-size: 14px;
  }

  .product-hero {
    min-height: 780px;
  }

  .product-hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: calc(100% - 32px);
    margin: 0 auto;
    padding-top: 138px;
  }

  .product-hero-copy h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  .product-hero-copy p,
  .product-x-copy p {
    font-size: 14px;
    line-height: 1.55;
  }

  .product-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .product-hero .primary-button,
  .product-compare-button {
    min-width: 208px;
  }

  .product-hero-art {
    transform: scale(0.54);
    transform-origin: right bottom;
  }

  .product-hero-phone {
    left: calc(50% - 120px);
    top: 420px;
  }

  .product-card-a {
    left: calc(50% + 220px);
    top: 735px;
  }

  .product-card-b {
    left: calc(50% + 165px);
    top: 760px;
  }

  .product-card-c {
    left: calc(50% + 105px);
    top: 800px;
  }

  .product-x-section {
    min-height: 980px;
  }

  .product-preview-window {
    left: 14px;
    top: 120px;
    width: calc(100% - 28px);
    height: 420px;
  }

  .product-window-bar div {
    left: 30%;
    width: 44%;
  }

  .product-x-phone {
    left: 20px;
    top: -34px;
    width: 190px;
  }

  .product-dashboard-frame {
    left: 42%;
    top: 92px;
    width: 46%;
    height: 280px;
  }

  .product-x-watermark {
    left: 18%;
    top: 180px;
    width: 520px;
  }

  .product-x-copy {
    left: 16px;
    top: 610px;
    width: calc(100% - 32px);
  }

  .product-x-copy h2 {
    font-size: 42px;
  }

  .feature-grid {
    gap: 20px;
    margin-top: 42px;
  }

  .feature-tile {
    min-height: 560px;
    border-radius: 24px;
  }

  .exchange-tile {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .exchange-copy {
    padding: 34px 34px 0;
  }

  .exchange-logo-grid {
    padding: 30px 34px 38px;
  }

  .tile-copy {
    padding: 28px;
  }

  .home-infra-frame {
    left: 5%;
    top: 210px;
    width: 90%;
    height: auto;
    aspect-ratio: 555 / 541;
  }

  .home-protection-frame {
    left: 10%;
    top: 174px;
    width: 80%;
    height: auto;
    aspect-ratio: 493 / 563;
  }

  .phone-stack {
    right: -122px;
    bottom: -122px;
    transform: scale(0.78);
  }

  .card-fan {
    transform: scale(0.74);
    transform-origin: center bottom;
  }

  .carousel-section {
    min-height: 220vh;
  }

  .carousel-section > .section {
    top: 68px;
    height: calc(100vh - 68px);
    min-height: 560px;
  }

  .card-carousel::before {
    left: 50%;
    top: 45%;
    width: 340px;
    height: 340px;
  }

  .carousel-track img {
    top: 44%;
    width: clamp(200px, 58vw, 270px);
    border-radius: 14px;
  }

  .carousel-track img[data-slot="0"] {
    transform: translate(-50%, -50%) translateX(-70px) rotate(90deg) scale(0.9);
  }

  .carousel-track img[data-slot="-1"] {
    opacity: 0.48;
    transform: translate(-50%, -50%) translateX(-226px) rotate(90deg) rotateY(62deg) scale(0.42);
  }

  .carousel-track img[data-slot="1"] {
    opacity: 0.48;
    transform: translate(-50%, -50%) translateX(226px) rotate(90deg) rotateY(-62deg) scale(0.42);
  }

  .carousel-track img[data-slot="-2"] {
    transform: translate(-50%, -50%) translateX(0) translateY(10px) rotate(90deg) scale(0.32);
  }

  .carousel-copy {
    top: 48%;
    gap: 18px;
  }

  .carousel-title {
    font-size: 34px;
  }

  .carousel-action {
    min-width: 156px;
    height: 48px;
    font-size: 16px;
  }

  .carousel-controls {
    bottom: 20px;
  }

  .circle-button {
    width: 52px;
  }

  .social-photo,
  .post-card {
    min-height: 260px;
  }

  .social-photo {
    height: 300px;
  }

  .support-card {
    min-height: 112px;
    font-size: 20px;
  }

  .modal-actions,
  .footer nav {
    flex-wrap: wrap;
  }
}

.download-page {
  background: #08080d;
}

.download-page .download-hero {
  min-height: calc(100vh - (84px * var(--header-scale)));
  padding: calc(112px * var(--header-scale)) 0 88px;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 74% 14%, rgba(135, 10, 224, 0.44), transparent 34%),
    radial-gradient(circle at 16% 84%, rgba(49, 238, 211, 0.16), transparent 34%),
    linear-gradient(135deg, #071014 0%, #12061c 46%, #08080d 100%);
}

.download-page .download-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(620px, 1.08fr);
  gap: 58px;
  align-items: center;
  width: min(1258px, calc(100% - 56px));
  min-height: 680px;
  margin: 0 auto;
}

.download-page .download-hero-copy {
  max-width: 610px;
  color: #ffffff;
}

.download-page .download-hero-copy .eyebrow {
  color: var(--violet-hot);
}

.download-page .download-hero-copy h1 {
  max-width: 620px;
  color: #ffffff;
  font-size: clamp(54px, 5.8vw, 86px);
  line-height: 0.98;
}

body.language-ko .download-page .download-hero-copy h1 {
  font-size: clamp(48px, 4.8vw, 68px);
  line-height: 1.08;
}

.download-page .download-hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.62;
}

.download-stage {
  position: relative;
  min-height: 630px;
}

.download-stage-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.download-stage-art::before {
  content: "";
  position: absolute;
  right: 54px;
  top: 78px;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(135, 10, 224, 0.2), transparent 62%),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 120px rgba(135, 10, 224, 0.24);
}

.download-stage-phone {
  position: absolute;
  right: 210px;
  top: 22px;
  z-index: 2;
  width: 320px;
  filter: drop-shadow(0 32px 60px rgba(0, 0, 0, 0.48));
}

.download-stage-card {
  position: absolute;
  right: 46px;
  top: 246px;
  z-index: 1;
  width: 296px;
  transform: rotate(12deg);
  filter: drop-shadow(0 30px 46px rgba(255, 138, 42, 0.28));
}

.download-page .download-board {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.download-page .download-app-card,
.download-page .download-app-card.user {
  min-height: auto;
  padding: 24px;
  overflow: visible;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    #ffffff;
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.download-page .download-app-card h2 {
  color: var(--ink);
  font-size: 30px;
}

.download-page .download-app-card p,
.download-page .download-app-card.user p {
  min-height: 48px;
  color: #5e5968;
  font-size: 15px;
}

.download-page .download-art {
  display: none;
}

.download-page .download-actions {
  position: static;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.download-page .store-badge-button {
  min-height: 54px;
  padding: 8px 14px;
  border-radius: 14px;
}

.download-page .store-badge-copy strong {
  font-size: 17px;
}

@media (max-width: 1080px) {
  .download-page .download-hero {
    min-height: auto;
    padding: 118px 0 72px;
  }

  .download-page .download-hero-grid {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 40px));
    min-height: 0;
    gap: 42px;
  }

  .download-stage {
    min-height: 860px;
  }

  .download-stage-phone {
    right: 32%;
    width: 300px;
  }

  .download-stage-card {
    right: 10%;
    width: 260px;
  }

  .download-page .download-board {
    bottom: 0;
  }
}

@media (max-width: 720px) {
  .download-page .download-hero {
    padding: 104px 0 56px;
  }

  .download-page .download-hero-grid {
    width: min(358px, calc(100% - 32px));
    margin-inline: 16px auto;
    gap: 28px;
  }

  .download-page .download-hero-copy h1 {
    font-size: 42px;
    line-height: 1.04;
  }

  body.language-ko .download-page .download-hero-copy h1 {
    font-size: 38px;
    line-height: 1.12;
  }

  .download-page .download-hero-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 25px;
  }

  .download-stage {
    min-height: 1020px;
  }

  .download-stage-art::before {
    right: -92px;
    top: 58px;
    width: 360px;
    height: 360px;
  }

  .download-stage-phone {
    right: 54px;
    top: 0;
    width: 238px;
  }

  .download-stage-card {
    right: -34px;
    top: 190px;
    width: 210px;
  }

  .download-page .download-board {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .download-page .download-app-card,
  .download-page .download-app-card.user {
    padding: 22px;
    border-radius: 24px;
  }
}

/* Public responsive hardening: admin pages do not load this stylesheet. */
.site-header .support-nav,
.site-header .support-actions {
  display: none !important;
}

.site-header .main-nav,
.site-header .main-actions {
  display: flex;
}

.page {
  overflow-x: clip;
}

.section,
.download-page .download-hero-grid,
.ping-wallet-inner,
.legal-layout,
.blog-detail-shell {
  max-width: 100%;
}

.primary-button,
.product-compare-button,
.text-button,
.carousel-action,
.download-store-button,
.store-badge-button,
.outline-cta,
.support-help-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.primary-button .button-label,
.product-compare-button .button-label,
.outline-cta-label {
  display: inline-flex;
  align-items: center;
  min-height: 1em;
  line-height: 1;
}

@media (max-width: 1080px) {
  :root {
    --responsive-header-h: 118px;
  }

  html,
  body {
    width: 100%;
    overflow-x: clip;
  }

  [id] {
    scroll-margin-top: calc(var(--responsive-header-h) + 18px);
  }

  .site-header {
    height: var(--responsive-header-h);
    align-items: flex-start;
    padding: 14px 18px 0;
  }

  .site-header .brand {
    position: static;
    margin: 0;
  }

  .site-header .main-actions {
    position: absolute;
    top: 14px;
    right: 18px;
    margin: 0;
    gap: 12px;
  }

  .site-header .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex !important;
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 0 18px 12px;
    overflow-x: auto;
    overflow-y: hidden;
    color: #666666;
    font-size: 15px;
    white-space: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .site-header .main-nav::-webkit-scrollbar {
    display: none;
  }

  .site-header .main-nav a {
    flex: 0 0 auto;
    padding: 9px 0;
  }

  .language-menu {
    max-height: min(620px, calc(100svh - 88px));
    overflow-y: auto;
  }

  .hero,
  .hero-card,
  .product-hero,
  .referral-hero,
  .blog-hero,
  .support-hero,
  .legal-hero,
  .download-page .download-hero,
  .ping-wallet-hero,
  .guide-frame-section {
    padding-top: calc(var(--responsive-header-h) + 32px);
  }

  .hero-home {
    min-height: calc(100svh - var(--responsive-header-h));
    padding-bottom: 128px;
  }

  .hero-content {
    width: min(820px, calc(100% - 48px));
  }

  .hero-content h1,
  .hero-card .hero-content h1,
  .support-hero h1,
  .cta-band h2 {
    max-width: 100%;
    text-wrap: balance;
  }

  .feature-grid,
  .trust-grid,
  .card-feature-grid,
  .card-benefit-grid,
  .support-grid,
  .article-grid,
  .blog-card-grid,
  .blog-related-grid,
  .legal-layout {
    width: min(900px, calc(100% - 48px));
    margin-inline: auto;
  }

  .feature-tile,
  .card-feature-card,
  .support-card,
  .article-card,
  .legal-document {
    max-width: 100%;
  }

  .feature-tile {
    min-height: 560px;
  }

  .card-carousel {
    width: min(100%, 860px);
    min-height: 660px;
    overflow: hidden;
  }

  .carousel-track img {
    max-width: 56vw;
  }

  .product-hero {
    min-height: auto;
    padding-bottom: 560px;
    background: #f3f3f3;
  }

  .product-hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: min(640px, calc(100% - 48px));
    margin: 0 auto;
  }

  .product-hero-copy h1,
  .product-x-copy h2,
  .referral-hero-copy h1,
  .blog-title-block h1,
  .blog-detail-copy h1 {
    font-size: clamp(42px, 7vw, 60px);
    line-height: 1.08;
  }

  .product-hero-art {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 0;
    top: auto;
    width: min(760px, 100%);
    height: 560px;
    transform: translateX(-50%) scale(0.82);
    transform-origin: center bottom;
  }

  .product-hero-phone {
    left: 50%;
    top: 36px;
    width: min(520px, 82vw);
    transform: translateX(-34%);
  }

  .product-card-a,
  .product-card-b,
  .product-card-c {
    max-width: 260px;
  }

  .product-x-section {
    min-height: auto;
    padding: 86px 24px;
  }

  .product-preview-window,
  .product-x-copy {
    position: relative;
    left: auto;
    top: auto;
    width: min(760px, 100%);
    margin-inline: auto;
  }

  .product-x-copy {
    margin-top: 42px;
  }

  .referral-hero {
    min-height: auto;
    padding-bottom: 640px;
  }

  .referral-hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: min(680px, calc(100% - 48px));
    margin: 0 auto;
  }

  .referral-hero-phone-shell {
    top: auto;
    bottom: 48px;
  }

  .card-feature-grid {
    grid-template-columns: 1fr;
  }

  .card-feature-img {
    max-height: 520px;
    object-fit: contain;
  }

  .cta-band {
    min-height: 480px;
    padding-block: 90px;
  }

  .cta-band .section {
    width: min(900px, calc(100% - 48px));
    padding-block: 0;
  }

  .cta-logo-animation {
    width: min(300px, 48vw);
  }

  .download-page .download-hero {
    min-height: auto;
    padding-top: calc(var(--responsive-header-h) + 34px);
  }

  .download-stage {
    min-height: 760px;
  }

  .ping-wallet-visual {
    width: min(700px, 100%);
    margin-inline: auto;
  }

  .support-hero .section {
    min-height: auto;
    padding-bottom: 86px;
  }

  .support-hero-copy {
    position: relative;
    z-index: 2;
  }

  .support-hero-copy p:not(.eyebrow) {
    color: #57515e;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.76);
  }

  .support-search {
    position: relative;
    z-index: 3;
  }

  .guide-frame-section {
    height: auto;
    min-height: 100svh;
  }

  .guide-frame {
    height: calc(100svh - var(--responsive-header-h));
    min-height: 760px;
  }

  .footer-inner {
    width: min(900px, calc(100% - 48px));
  }
}

@media (max-width: 720px) {
  :root {
    --responsive-header-h: 112px;
  }

  .site-header {
    height: var(--responsive-header-h);
    padding: 12px 14px 0;
  }

  .site-header .brand {
    gap: 8px;
  }

  .site-header .brand img:first-child {
    width: 52px;
    height: 28px;
  }

  .site-header .brand img:last-child {
    width: 86px;
    height: 22px;
  }

  .site-header .main-actions {
    top: 12px;
    right: 14px;
    gap: 8px;
  }

  .site-header .main-nav {
    gap: 17px;
    padding: 0 14px 10px;
    font-size: 13.5px;
  }

  .language-menu {
    top: 60px;
    right: 12px;
    width: calc(100vw - 24px);
  }

  .hero,
  .hero-card,
  .product-hero,
  .referral-hero,
  .blog-hero,
  .support-hero,
  .legal-hero,
  .download-page .download-hero,
  .ping-wallet-hero,
  .guide-frame-section {
    padding-top: calc(var(--responsive-header-h) + 24px);
  }

  .hero-home {
    min-height: calc(100svh - var(--responsive-header-h));
  }

  .hero-content {
    width: min(100% - 32px, 430px);
  }

  .hero-content h1,
  .hero-card .hero-content h1,
  .support-hero h1,
  .cta-band h2 {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 1.08;
  }

  body.language-ko .hero-content h1,
  body.language-ko .hero-card .hero-content h1,
  body.language-ko .cta-band h2 {
    font-size: clamp(32px, 9.6vw, 43px);
    line-height: 1.15;
  }

  .hero-content p,
  .hero-card .hero-content > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 14.5px;
    line-height: 1.58;
  }

  .hero-actions,
  .product-hero-actions,
  .card-picker-actions,
  .download-actions,
  .ping-wallet-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }

  .primary-button,
  .product-compare-button {
    min-height: 48px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-card .hero-content > .primary-button {
    margin-top: 36px;
  }

  body.language-ko .hero-card .hero-content > .primary-button {
    margin-top: 42px;
  }

  .section,
  .feature-grid,
  .trust-grid,
  .card-feature-grid,
  .card-benefit-grid,
  .support-grid,
  .article-grid,
  .blog-card-grid,
  .blog-related-grid,
  .legal-layout,
  .footer-inner {
    width: min(100% - 32px, 430px);
  }

  .section {
    padding-block: 58px;
  }

  .section-title,
  .legal-document h2,
  .blog-detail-section h2 {
    font-size: clamp(28px, 8.5vw, 38px);
    line-height: 1.18;
  }

  .feature-tile {
    min-height: 440px;
    border-radius: 22px;
  }

  .exchange-tile {
    min-height: 0;
  }

  .exchange-copy {
    width: auto;
    padding: 28px 24px 0;
  }

  .exchange-logo-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px;
  }

  .exchange-logo-card {
    min-height: 96px;
    border-radius: 18px;
  }

  .exchange-logo-card img {
    max-height: 58px;
  }

  .tile-copy,
  .card-feature-copy {
    width: calc(100% - 40px);
    left: 20px;
    right: 20px;
  }

  .card-carousel {
    min-height: 600px;
  }

  .carousel-track img {
    max-width: 72vw;
  }

  .carousel-copy {
    width: min(100% - 32px, 390px);
  }

  .carousel-title {
    font-size: clamp(34px, 11vw, 54px);
  }

  .carousel-controls {
    bottom: 22px;
  }

  .product-hero {
    padding-bottom: 420px;
  }

  .product-hero-copy {
    width: min(100% - 32px, 430px);
  }

  .product-hero-copy h1,
  .product-x-copy h2,
  .referral-hero-copy h1,
  .blog-title-block h1,
  .blog-detail-copy h1 {
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1.14;
  }

  body.language-ko .product-hero-copy h1 {
    font-size: clamp(34px, 9.2vw, 43px);
  }

  .product-hero-copy p {
    font-size: 14px;
    line-height: 1.62;
  }

  .product-hero-art {
    height: 420px;
    transform: translateX(-50%) scale(0.72);
  }

  .product-hero-phone {
    top: 24px;
    width: min(400px, 92vw);
    transform: translateX(-32%);
  }

  .product-card-a,
  .product-card-b,
  .product-card-c {
    max-width: 188px;
  }

  .product-x-section {
    padding: 64px 16px;
  }

  .product-preview-window {
    min-height: 430px;
    overflow: hidden;
  }

  .product-x-copy {
    width: min(100%, 430px);
  }

  .referral-hero {
    padding-bottom: 490px;
  }

  .referral-hero-copy {
    width: min(100% - 32px, 430px);
  }

  .referral-hero-copy p:not(.referral-eyebrow) {
    font-size: 14px;
    line-height: 1.62;
  }

  .referral-hero-phone-shell {
    bottom: 36px;
    width: min(430px, calc(100vw - 32px));
  }

  .referral-rewards,
  .referral-moments,
  .referral-security {
    padding: 62px 16px;
  }

  .referral-section-title {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.18;
  }

  .referral-wide-card,
  .referral-half-card,
  .referral-secure-card {
    min-height: 520px;
    height: auto;
  }

  .blog-hero,
  .blog-list-section {
    padding-inline: 16px;
  }

  .blog-hero-art {
    height: 340px;
  }

  .blog-topics nav {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .blog-topics nav::-webkit-scrollbar {
    display: none;
  }

  .blog-card-grid,
  .blog-related-grid {
    grid-template-columns: 1fr;
  }

  .blog-detail-shell {
    padding-inline: 16px;
    padding-bottom: 72px;
  }

  .blog-detail-meta,
  .footer-bottom nav {
    flex-wrap: wrap;
  }

  .download-page .download-hero-grid {
    width: min(100% - 32px, 430px);
    margin-inline: auto;
  }

  .download-page .download-hero-copy h1,
  body.language-ko .download-page .download-hero-copy h1 {
    font-size: clamp(38px, 10.4vw, 48px);
    line-height: 1.14;
  }

  .download-stage {
    min-height: 940px;
  }

  .download-page .download-board {
    position: relative;
    margin-top: 360px;
  }

  .download-page .download-app-card,
  .download-page .download-app-card.user {
    min-width: 0;
  }

  .store-badge-button {
    width: 100%;
  }

  .ping-wallet-copy h1 {
    font-size: clamp(40px, 11vw, 54px);
  }

  .ping-wallet-actions {
    display: grid;
  }

  .ping-wallet-actions .store-badge-button {
    min-width: 0;
  }

  .support-hero {
    overflow: hidden;
  }

  .support-hero .section {
    width: min(100% - 32px, 430px);
    padding-bottom: 70px;
  }

  .support-hero-copy p:not(.eyebrow) {
    margin-top: 18px;
    color: #4f4857;
    font-size: 15px;
    line-height: 1.56;
  }

  .support-search {
    width: 100%;
    margin-top: 28px;
  }

  .support-logos {
    opacity: 0.34;
    transform: scale(0.72);
  }

  .legal-document {
    padding: 24px 20px;
  }

  .legal-document p,
  .legal-document li {
    overflow-wrap: anywhere;
  }

  .cta-band {
    min-height: 520px;
    padding-block: 70px 92px;
  }

  .cta-band .section {
    width: min(100% - 32px, 430px);
  }

  .cta-band p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.58;
  }

  .cta-logo-animation {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(338px, 84vw);
    margin: 48px auto 0;
    transform: none;
  }

  .footer {
    overflow: hidden;
  }

  .footer-inner {
    padding-block: 48px;
  }

  .guide-frame {
    height: calc(100svh - var(--responsive-header-h));
    min-height: 720px;
  }
}

@media (max-width: 420px) {
  .site-header .brand img:first-child {
    width: 46px;
  }

  .site-header .brand img:last-child {
    width: 76px;
  }

  .site-header .main-actions {
    gap: 6px;
  }

  .language-button,
  .outline-cta {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }

  .site-header .main-nav {
    gap: 15px;
    font-size: 13px;
  }

  .primary-button,
  .product-compare-button {
    width: 100%;
    max-width: 268px;
  }

  .hero-actions,
  .product-hero-actions,
  .card-picker-actions {
    width: 100%;
  }

  .download-stage {
    min-height: 980px;
  }
}

@media (max-width: 1080px) {
  .product-hero {
    display: grid;
    gap: 40px;
    padding-bottom: 0;
  }

  .product-hero-art {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(820px, 100%);
    height: 560px;
    margin: 0 auto;
    transform: none;
  }

  .product-hero-phone {
    left: 52%;
    top: 8px;
    width: min(520px, 68vw);
    transform: translateX(-30%);
  }

  .product-card-a {
    left: 58%;
    top: 330px;
  }

  .product-card-b {
    left: 72%;
    top: 374px;
  }

  .product-card-c {
    left: 48%;
    top: 404px;
  }
}

@media (max-width: 720px) {
  .product-hero {
    gap: 26px;
  }

  .product-hero-art {
    height: 390px;
  }

  .product-hero-phone {
    left: 56%;
    top: 0;
    width: min(360px, 84vw);
    transform: translateX(-34%);
  }

  .product-card-a,
  .product-card-b,
  .product-card-c {
    max-width: 166px;
  }

  .product-card-a {
    left: 54%;
    top: 230px;
  }

  .product-card-b {
    left: 66%;
    top: 260px;
  }

  .product-card-c {
    left: 42%;
    top: 278px;
  }
}

/* Home architecture: keep mobile layer cards readable above the product image. */
@media (max-width: 1080px) {
  .architecture-stage {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
    justify-items: center;
    margin-top: 48px;
    overflow: visible;
  }

  .architecture-phone {
    order: 5;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    z-index: 1;
    width: min(340px, 82vw);
    margin: 18px auto 0;
    transform: none;
  }

  .layer-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    z-index: 2;
    width: min(100%, 560px);
    margin-inline: auto;
    transform: none;
  }

  .architecture-stage .layer-card:nth-of-type(1) {
    order: 1;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .architecture-stage .layer-card:nth-of-type(2) {
    order: 2;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .architecture-stage .layer-card:nth-of-type(3) {
    order: 3;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .architecture-stage .layer-card:nth-of-type(4) {
    order: 4;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }
}

@media (max-width: 720px) {
  .architecture {
    padding: 72px 0;
  }

  .architecture-stage {
    gap: 16px;
    margin-top: 40px;
  }

  .layer-card {
    width: calc(100vw - 40px);
    min-height: 116px;
    padding: 20px 20px 20px 78px;
    border-radius: 18px;
  }

  .layer-card strong {
    left: 18px;
    top: 50%;
    bottom: auto;
    font-size: 54px;
    transform: translateY(-50%);
  }

  .architecture-phone {
    width: min(330px, 84vw);
    margin-top: 24px;
  }
}

/* Mobile polish pass: keep decorative layers from competing with content. */
@media (max-width: 720px) {
  .hero-card {
    align-items: end;
    min-height: 720px;
    padding-bottom: 76px;
  }

  .hero-card .hero-bg img {
    object-position: 76% center;
  }

  .hero-card .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.82) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.26) 100%);
  }

  .hero-card .hero-content,
  .hero-card .hero-content.left {
    width: min(calc(100% - 40px), 390px);
    margin-inline: auto;
    text-align: left;
  }

  .hero-card .hero-content h1 {
    max-width: 318px;
    text-align: left;
  }

  .hero-card .hero-content > p:not(.eyebrow) {
    width: min(330px, 100%);
    margin-inline: 0;
    text-align: left;
  }

  .hero-card .hero-content > .primary-button {
    margin-top: 38px;
  }

  body.language-ko .hero-card .hero-content > .primary-button {
    margin-top: 46px;
  }

  .support-hero {
    padding-top: var(--responsive-header-h);
  }

  .support-hero .section {
    min-height: 448px;
    padding: 56px 16px 48px;
  }

  .support-hero-copy {
    position: relative;
    top: auto;
    left: auto;
    z-index: 3;
    width: min(100%, 430px);
    margin-inline: auto;
    transform: none;
  }

  .support-hero h1 {
    font-size: clamp(40px, 10vw, 48px);
    line-height: 1.14;
  }

  body.language-ko .support-hero h1 {
    font-size: clamp(34px, 9.2vw, 42px);
    line-height: 1.18;
  }

  .support-decor,
  .decor-one,
  .decor-two,
  .decor-three,
  .decor-four {
    display: none;
  }

  .search-box {
    position: relative;
    top: auto;
    left: auto;
    z-index: 3;
    width: min(100%, 430px);
    height: 58px;
    margin: 30px auto 0;
    transform: none;
  }

  .support-note h2 {
    font-size: clamp(28px, 8.3vw, 36px);
    line-height: 1.2;
    text-wrap: balance;
  }

  .support-note p {
    font-size: 15px;
    line-height: 1.65;
  }

  .download-stage {
    min-height: 920px;
  }

  .download-stage-phone {
    right: 48px;
    width: 224px;
  }

  .download-stage-card {
    right: 0;
    width: 190px;
  }

  .download-page .download-board {
    margin-top: 330px;
  }

  .blog-topics {
    overflow: hidden;
  }
}

@media (max-width: 420px) {
  .support-hero .section {
    padding-inline: 18px;
  }

  .support-hero h1 {
    max-width: 320px;
    margin-inline: auto;
  }

  .support-hero-copy p:not(.eyebrow) {
    max-width: 320px;
    margin-inline: auto;
  }

  .hero-card .hero-content,
  .hero-card .hero-content.left {
    width: calc(100% - 34px);
  }

  .download-stage-phone {
    right: 60px;
    width: 214px;
  }

  .download-stage-card {
    right: 8px;
    width: 178px;
  }
}

/* Home card preview: separate copy from product art on mobile. */
@media (max-width: 720px) {
  #home-card-preview.feature-grid,
  #home-card-preview .feature-grid {
    width: 100vw;
    max-width: 100vw;
    margin-inline: calc(50% - 50vw);
    gap: 18px;
  }

  #home-card-preview .feature-tile {
    width: 100%;
    border-radius: 0;
  }

  #home-card-preview .feature-tile.image-tile > img:not(.premium-card) {
    border-radius: 0;
  }

  #home-card-preview .feature-grid > .feature-tile:nth-child(2) {
    display: grid;
    grid-template-rows: auto auto;
    align-content: start;
    min-height: auto;
    overflow: hidden;
  }

  #home-card-preview .feature-grid > .feature-tile:nth-child(2) .tile-copy {
    padding: 34px 28px 0;
  }

  #home-card-preview .feature-grid > .feature-tile:nth-child(2) .chips {
    margin-top: 26px;
  }

  #home-card-preview .feature-grid > .feature-tile:nth-child(2) .phone-stack {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 360px);
    height: 560px;
    margin: 24px auto 0;
    transform: none;
  }

  #home-card-preview .feature-grid > .feature-tile:nth-child(2) .pixel-phone {
    right: -10px;
    bottom: -4px;
    width: min(330px, calc(100% - 8px));
  }

  #home-card-preview .feature-grid > .feature-tile:nth-child(2) .floating-card {
    left: -22px;
    bottom: 214px;
    width: min(218px, 62vw);
  }
}

/* Mobile audit pass 2026-06-09: reduce dead space and keep CTA artwork proportional. */
@media (max-width: 720px) {
  .home-cta,
  .product-cta,
  .card-cta,
  .referral-cta {
    background-size: auto 100%;
    background-position: right bottom;
  }

  .home-cta .section,
  .product-cta .section,
  .card-cta .section,
  .referral-cta .section {
    padding-top: 74px;
    padding-bottom: 98px;
  }

  .cta-band {
    min-height: 0;
    padding-block: 0;
  }

  .cta-band .primary-button {
    margin-top: 32px;
    margin-bottom: 34px;
  }

  .cta-logo-animation {
    width: min(360px, 90vw);
    margin-top: 12px;
  }

  .section-button {
    display: none !important;
  }

  #home-card-preview.section {
    padding-top: 44px;
    padding-bottom: 34px;
  }

  #home-card-preview .feature-grid {
    gap: 8px;
    margin-top: 34px;
  }

  #home-card-preview .feature-tile {
    min-height: auto;
  }

  #home-card-preview .feature-tile.image-tile {
    min-height: 520px;
  }

  #home-card-preview .feature-tile.image-tile > img:not(.premium-card) {
    height: 100%;
    object-fit: cover;
  }

  #home-card-preview .feature-tile.image-tile .tile-copy.light {
    bottom: 34px;
    padding: 0 28px;
  }

  #home-card-preview .feature-grid > .feature-tile:nth-child(2),
  #home-card-preview .feature-grid > .feature-tile:nth-child(3) {
    border-radius: 0;
  }

  #home-card-preview .feature-grid > .feature-tile:nth-child(3) {
    display: grid;
    grid-template-rows: auto auto;
    align-content: start;
    overflow: hidden;
  }

  #home-card-preview .feature-grid > .feature-tile:nth-child(3) .tile-copy {
    padding: 34px 28px 0;
  }

  #home-card-preview .feature-grid > .feature-tile:nth-child(3) .card-fan {
    position: relative;
    inset: auto;
    width: 100%;
    height: 420px;
    margin-top: 20px;
    transform: scale(0.86);
    transform-origin: center top;
  }

  .section.centered:has(.trust-grid) {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .trust-grid {
    width: 100vw;
    max-width: 100vw;
    gap: 10px;
    margin-inline: calc(50% - 50vw);
    margin-top: 34px;
  }

  .trust-grid .feature-tile {
    min-height: 500px;
    border-radius: 22px;
  }

  .trust-grid .tile-copy {
    padding: 34px 28px 0;
  }

  .home-infra-frame {
    left: 4%;
    top: 216px;
    width: 92%;
  }

  .home-protection-frame {
    left: 5%;
    top: 202px;
    width: 90%;
  }
}

@media (max-width: 420px) {
  .home-cta .section,
  .product-cta .section,
  .card-cta .section,
  .referral-cta .section {
    padding-top: 68px;
    padding-bottom: 92px;
  }

  body.language-ko .cta-band h2 {
    font-size: clamp(32px, 9.4vw, 38px);
    line-height: 1.18;
  }

  .cta-band p {
    font-size: 13.5px;
  }

  .cta-logo-animation {
    width: min(342px, 88vw);
  }

  #home-card-preview .feature-tile.image-tile {
    min-height: 500px;
  }

  .trust-grid {
    width: calc(100vw - 10px);
  }
}

/* Mobile stabilization pass 2026-06-09: remove late-stage oversize artifacts. */
@media (max-width: 720px) {
  .product-hero {
    min-height: auto;
    padding-top: calc(var(--responsive-header-h) + 40px);
    padding-bottom: 0;
    gap: 18px;
  }

  .product-hero-copy {
    padding-top: 0;
  }

  .product-hero-art {
    height: 380px;
    margin-top: 0;
  }

  .card-feature-section {
    padding-top: 58px;
    padding-bottom: 48px;
  }

  .card-feature-section .section-title {
    font-size: clamp(30px, 8.8vw, 38px);
  }

  .card-feature-grid {
    width: 100vw;
    max-width: 100vw;
    margin-inline: calc(50% - 50vw);
    gap: 10px;
  }

  .card-feature-grid .feature-tile {
    border-radius: 0;
  }

  .card-feature-img,
  .card-global-img,
  .card-premium-bg,
  .card-secure-img {
    max-width: 100%;
  }

  .card-tap-img {
    left: 50%;
    top: 230px;
    width: min(112vw, 440px);
    height: auto;
    transform: translateX(-50%);
    object-fit: contain;
  }

  .card-metric-section {
    min-height: 220px;
    padding: 42px 16px;
  }

  .card-metric {
    width: 100%;
    max-width: 100%;
  }

  .card-metric strong {
    width: 100%;
    font-size: clamp(44px, 14vw, 66px);
    overflow-wrap: anywhere;
  }

  .card-metric span {
    width: 100%;
    font-size: 18px;
  }

  .card-showcase {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    min-height: 0;
  }

  .showcase-card {
    min-height: 310px;
    border-radius: 22px 22px 0 0;
  }

  .showcase-card img {
    width: min(320px, 82vw);
  }

  .showcase-copy {
    padding: 30px 24px 34px;
  }

  .showcase-list {
    gap: 14px;
    margin-top: 28px;
    font-size: 16px;
  }

  .blog-topics nav {
    display: flex;
    gap: 14px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .blog-topics button {
    flex: 0 0 auto;
    font-size: 18px;
  }
}

/* Blog and guide mobile cleanup 2026-06-09. */
.guide-frame-section {
  min-height: 0 !important;
}

.guide-frame {
  min-height: 0 !important;
}

@media (max-width: 1080px) {
  .guide-frame-section {
    height: auto !important;
    min-height: 0 !important;
  }

  .guide-frame {
    min-height: 0 !important;
  }
}

/* Logo ratio guard 2026-06-09. */
.brand img {
  display: block;
  flex: 0 0 auto;
  max-width: none;
  object-fit: contain;
  object-position: center;
}

.brand img:first-child {
  aspect-ratio: 77 / 40;
}

.brand img:last-child {
  aspect-ratio: 108.739 / 28;
}

@media (max-width: 720px) {
  .site-header .brand,
  .footer .brand {
    align-items: center;
    flex: 0 0 auto;
  }

  .site-header .brand img:first-child,
  .footer .brand img:first-child {
    width: 52px;
    height: auto;
  }

  .site-header .brand img:last-child,
  .footer .brand img:last-child {
    width: 86px;
    height: auto;
  }
}

@media (max-width: 420px) {
  .site-header .brand img:first-child {
    width: 46px;
    height: auto;
  }

  .site-header .brand img:last-child {
    width: 76px;
    height: auto;
  }
}

@media (max-width: 720px) {
  .guide-frame-section {
    padding-top: var(--responsive-header-h) !important;
  }

  .blog-hero {
    padding-inline: 0 !important;
    overflow: hidden;
  }

  .blog-title-block,
  .blog-hero-art {
    width: min(100% - 32px, 430px);
    max-width: min(100% - 32px, 430px);
    margin-inline: auto;
  }

  .blog-topics,
  .blog-feature-card {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-inline: calc(50% - 50vw) !important;
    border-radius: 0;
    overflow: hidden;
  }

  .blog-feature-card {
    display: block;
    padding: 30px 20px 34px !important;
  }

  .blog-topics {
    padding: 28px 20px !important;
  }

  .blog-feature-card h2,
  .blog-feature-card > p,
  .blog-author {
    max-width: 100%;
  }

  .blog-author {
    overflow: hidden;
  }

  .blog-author > span {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 420px) {
  .product-hero {
    padding-top: calc(var(--responsive-header-h) + 34px);
  }

  .product-hero-copy h1 {
    font-size: clamp(34px, 9.5vw, 40px);
  }

  .product-hero-actions .primary-button,
  .product-hero-actions .product-compare-button {
    max-width: 252px;
  }

  .card-feature-grid,
  .trust-grid {
    width: 100vw;
  }
}

/* Product/card mobile audit 2026-06-09: full-width cards and stable mobile CTA layouts. */
@media (max-width: 720px) {
  .home-cta,
  .product-cta,
  .card-cta,
  .referral-cta {
    background-color: #180b21;
    background-image: url("../public/assets/figma-ui/product-cta-bg.webp?v=20260607-referral-cta-bg1");
    background-position: center bottom;
    background-size: cover;
  }

  .home-cta .section,
  .product-cta .section,
  .card-cta .section,
  .referral-cta .section {
    width: min(100% - 32px, 430px);
    padding-top: calc(var(--responsive-header-h) + 34px);
    padding-bottom: 104px;
  }

  .cta-band h2 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.14;
  }

  .cta-band .primary-button {
    max-width: 280px;
    margin-top: 34px;
    margin-bottom: 0;
  }

  .cta-logo-animation {
    display: none;
  }

  .product-hero {
    display: grid;
    min-height: 0;
    padding-top: calc(var(--responsive-header-h) + 18px);
    padding-bottom: 0;
    gap: 4px;
  }

  .product-hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: min(100% - 32px, 430px);
    margin: 0 auto;
    padding: 0;
  }

  .product-hero-copy h1 {
    font-size: clamp(38px, 10vw, 48px);
    line-height: 1.14;
  }

  body.language-ko .product-hero-copy h1 {
    font-size: clamp(34px, 9.2vw, 42px);
    line-height: 1.16;
  }

  .product-hero-copy p {
    margin-top: 22px;
  }

  .product-hero-actions {
    margin-top: 28px;
  }

  .product-hero-art {
    position: relative;
    inset: auto;
    width: 100%;
    height: 350px;
    margin: 0 auto;
    overflow: hidden;
    transform: none;
  }

  .product-hero-phone {
    left: 58%;
    top: 0;
    width: min(350px, 88vw);
    transform: translateX(-34%);
  }

  .product-card-a,
  .product-card-b,
  .product-card-c {
    max-width: 154px;
  }

  .product-card-a {
    left: 54%;
    top: 218px;
  }

  .product-card-b {
    left: 66%;
    top: 246px;
  }

  .product-card-c {
    left: 42%;
    top: 262px;
  }

  .card-feature-section {
    width: 100%;
    padding-top: 48px;
    padding-bottom: 36px;
    overflow: hidden;
  }

  .card-feature-section .section-title {
    width: calc(100% - 32px);
    margin-inline: auto;
  }

  .card-feature-grid {
    width: 100vw;
    max-width: 100vw;
    margin-inline: calc(50% - 50vw);
    gap: 10px;
  }

  .card-feature-grid .feature-tile {
    width: 100%;
    min-height: 540px;
    border-radius: 0;
  }

  .feature-tile.image-tile > img.card-global-img {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .card-rewards-tile,
  .card-tap-tile {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    align-content: start;
    overflow: hidden;
    background: #f2f2f2;
  }

  .card-rewards-tile .tile-copy,
  .card-tap-tile .tile-copy {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    z-index: 2;
    width: auto;
    padding: 34px 28px 0;
  }

  .card-rewards-img,
  .card-tap-img {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 100%;
    height: 360px;
    margin-top: 12px;
    transform: none;
    object-fit: contain;
    mix-blend-mode: multiply;
  }

  .card-tap-img {
    height: 388px;
    margin-top: 0;
    object-fit: cover;
    object-position: center bottom;
  }

  .card-metric-section {
    min-height: 0;
    padding: 58px 16px;
    overflow: hidden;
  }

  .card-metric {
    width: 100%;
    max-width: 100%;
  }

  .card-metric strong {
    display: block;
    width: 100%;
    font-size: clamp(40px, 15vw, 62px);
    line-height: 1.02;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .card-metric span {
    width: 100%;
    font-size: 18px;
  }

  .card-picker {
    width: 100%;
    padding: 58px 0 74px;
    overflow: hidden;
  }

  .card-picker .section-title {
    font-size: clamp(34px, 9vw, 42px);
    line-height: 1.16;
  }

  .card-picker > .section-title,
  .card-picker > .section-copy,
  .card-picker-tabs,
  .card-picker-actions {
    width: calc(100% - 32px);
    margin-inline: auto;
  }

  .card-picker-tabs {
    justify-content: space-between;
    gap: 0;
  }

  .card-showcase {
    grid-template-columns: 1fr;
    width: 100vw;
    max-width: 100vw;
    min-height: 0;
    margin-inline: calc(50% - 50vw);
    overflow: hidden;
    border-radius: 0;
  }

  .showcase-card {
    min-height: 330px;
    border-radius: 0;
  }

  .showcase-card img {
    width: min(260px, 70vw);
    max-width: 70vw;
  }

  .showcase-copy {
    padding: 30px 28px 38px;
    overflow: hidden;
  }

  .showcase-copy h2,
  .showcase-copy p:not(.eyebrow),
  .showcase-list {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .showcase-list {
    gap: 14px;
    margin-top: 30px;
    font-size: 16px;
  }

  .card-picker-actions {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 36px;
  }

  .card-picker-actions .primary-button {
    max-width: 300px;
  }

  .social-section {
    padding: 72px 0 86px;
    overflow: hidden;
  }

  .social-section .section {
    width: 100%;
  }

  .social-section .section-title {
    width: calc(100% - 32px);
    margin-inline: auto;
    text-align: center;
  }

  .social-stage {
    display: flex;
    width: 100vw;
    height: auto;
    margin-top: 38px;
    margin-inline: calc(50% - 50vw);
    padding: 0 16px 12px;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .social-row {
    position: static;
    display: flex;
    flex: 0 0 auto;
    width: auto;
    gap: 16px;
    transform: none !important;
    animation: none !important;
  }

  .social-row + .social-row {
    margin-top: 0;
  }

  .post-card,
  .social-photo {
    flex: 0 0 min(82vw, 330px);
    width: min(82vw, 330px);
    height: 360px;
    border-radius: 28px;
    scroll-snap-align: center;
  }

  .post-card {
    padding: 26px;
  }

  .post-user img {
    width: 76px;
    height: 76px;
  }

  .post-user h3 {
    font-size: 23px;
  }

  .post-user p {
    font-size: 18px;
  }

  .post-card > p {
    font-size: 18px;
    line-height: 1.38;
  }

  .social-photo img {
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
  }

  .card-standards {
    padding: 0;
    overflow: hidden;
  }

  .card-standards .section {
    width: 100%;
    padding: 74px 0 78px;
  }

  .card-standards .section-title,
  .card-standards .section-copy {
    width: calc(100% - 32px);
    margin-inline: auto;
  }

  .card-standards .feature-grid {
    width: 100vw;
    max-width: 100vw;
    margin-inline: calc(50% - 50vw);
    gap: 10px;
  }

  .card-standards .feature-tile {
    min-height: 540px;
    border-radius: 0;
  }

  .card-secure-img {
    left: 50%;
    top: 188px;
    width: min(96vw, 430px);
    height: auto;
    transform: translateX(-50%);
    object-fit: contain;
  }

  .card-mastercard-tile {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    align-content: start;
    background: #f2f2f2;
    overflow: hidden;
  }

  .card-mastercard-tile .tile-copy {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    padding: 34px 28px 0;
  }

  .card-mastercard-tile .card-fan {
    position: relative;
    left: 50%;
    top: auto;
    width: min(118vw, 520px);
    height: 360px;
    margin-top: 16px;
    transform: translateX(-50%) scale(0.78);
    transform-origin: center top;
  }
}

@media (max-width: 420px) {
  .product-hero {
    padding-top: calc(var(--responsive-header-h) + 10px);
  }

  .product-hero-art {
    height: 328px;
  }

  .product-hero-phone {
    width: min(326px, 88vw);
  }

  .card-feature-grid .feature-tile,
  .card-standards .feature-tile {
    min-height: 520px;
  }

  .card-rewards-img {
    height: 340px;
  }

  .card-tap-img {
    height: 360px;
  }

  .showcase-card {
    min-height: 300px;
  }

  .card-metric strong {
    font-size: clamp(38px, 14vw, 58px);
  }

  .post-card,
  .social-photo {
    flex-basis: 84vw;
    width: 84vw;
  }
}

/* Referral mobile audit 2026-06-09: prevent clipped headings and fill card width. */
@media (max-width: 720px) {
  .referral-page {
    overflow-x: hidden;
  }

  .referral-hero-copy,
  .referral-rewards-title,
  .referral-moments-title,
  .referral-security-title,
  .referral-section-copy {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    margin-inline: auto;
    overflow: visible;
    text-align: center;
    white-space: normal;
  }

  .referral-hero-copy {
    left: 50%;
    transform: translateX(-50%);
  }

  .referral-hero-copy h1,
  .referral-section-title {
    max-width: 100%;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .referral-security-title {
    font-size: clamp(30px, 8.6vw, 38px);
    line-height: 1.16;
  }

  .referral-rewards,
  .referral-moments,
  .referral-security {
    padding-left: 0;
    padding-right: 0;
  }

  .referral-rewards-title,
  .referral-moments-title,
  .referral-security-title,
  .referral-section-copy {
    padding-inline: 16px;
  }

  .referral-wide-card,
  .referral-half-card {
    width: 100vw;
    max-width: 100vw;
    margin-inline: calc(50% - 50vw);
    border-radius: 0;
  }

  .referral-moment-grid,
  .referral-security-grid {
    width: 100vw;
    max-width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding-inline: 0;
    gap: 12px;
  }

  .referral-moment-card,
  .referral-secure-card {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    border-radius: 0;
  }

  .referral-card-copy,
  .referral-wide-copy,
  .referral-half-copy {
    left: 24px;
    width: calc(100% - 48px);
  }
}

/* Footer mobile audit 2026-06-09: arrange footer navigation in three compact columns. */
@media (max-width: 720px) {
  .footer-inner {
    width: 100%;
    padding: 40px 16px 34px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 28px;
  }

  .footer-brand-block,
  .footer-bottom {
    grid-column: 1 / -1;
  }

  .footer-brand-block {
    gap: 18px;
  }

  .footer .brand {
    justify-content: center;
  }

  .footer-tagline,
  .footer-social,
  .footer-contact {
    text-align: center;
    justify-items: center;
  }

  .footer-social > div {
    justify-content: center;
  }

  .footer-column {
    gap: 10px;
    min-width: 0;
    align-content: start;
  }

  .footer-column h2 {
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 1.2;
    text-transform: none;
  }

  .footer-column a,
  .footer-column button {
    width: 100%;
    min-width: 0;
    font-size: 12px;
    line-height: 1.28;
    overflow-wrap: anywhere;
    word-break: keep-all;
  }

  .footer-bottom {
    margin-top: 4px;
    padding-top: 24px;
    text-align: center;
    justify-items: center;
  }

  .footer-bottom nav {
    justify-content: center;
    gap: 14px;
  }

  .footer-bottom p,
  .footer-bottom a {
    font-size: 13px;
    line-height: 1.45;
  }
}

/* Home mobile spacing audit 2026-06-09: remove blank bands between content blocks. */
@media (max-width: 720px) {
  #home-card-preview.section {
    padding-bottom: 0;
  }

  #home-card-preview .feature-grid {
    gap: 0;
    margin-bottom: 0;
  }

  #home-card-preview .feature-tile {
    margin: 0;
  }

  .carousel-section {
    min-height: 640px;
  }

  .carousel-section > .section {
    position: relative;
    top: auto;
    height: 640px;
    min-height: 640px;
  }

  .card-carousel {
    min-height: 640px;
  }

  .carousel-track img {
    top: 41%;
  }

  .carousel-copy {
    top: 46%;
  }
}

/* Product X mobile image guard 2026-06-09: keep the phone preview from being clipped. */
@media (max-width: 720px) {
  .product-x-section {
    padding-top: 42px;
    overflow: hidden;
  }

  .product-preview-window {
    display: block;
    min-height: 520px;
    padding-top: 0;
    overflow: visible;
  }

  .product-x-phone {
    left: clamp(18px, 6vw, 28px);
    top: 18px;
    width: min(58vw, 230px);
  }

  .product-dashboard-frame {
    left: 43%;
    top: 168px;
    width: 51%;
    height: 276px;
  }

  .product-window-bar {
    display: none;
  }

  .product-x-watermark {
    top: 284px;
  }

  .product-x-copy {
    margin-top: 50px;
  }
}

@media (max-width: 420px) {
  .product-preview-window {
    min-height: 504px;
  }

  .product-x-phone {
    width: min(60vw, 220px);
  }

  .product-dashboard-frame {
    top: 158px;
    height: 270px;
  }
}

@media (max-width: 420px) {
  .carousel-section {
    min-height: 600px;
  }

  .carousel-section > .section,
  .card-carousel {
    height: 600px;
    min-height: 600px;
  }
}

/* Mobile gap and CTA restore 2026-06-09: keep card blocks flush without removing CTA artwork. */
@media (max-width: 720px) {
  #home-card-preview .feature-tile.reveal,
  #home-card-preview .feature-tile.reveal.in-view,
  .trust-grid .feature-tile.reveal,
  .trust-grid .feature-tile.reveal.in-view,
  .card-feature-grid .feature-tile.reveal,
  .card-feature-grid .feature-tile.reveal.in-view,
  .card-standards .feature-tile.reveal,
  .card-standards .feature-tile.reveal.in-view,
  .article-grid .article-card.reveal,
  .article-grid .article-card.reveal.in-view,
  .blog-card-grid .blog-card.reveal,
  .blog-card-grid .blog-card.reveal.in-view {
    opacity: 1 !important;
    transform: none !important;
    transition: opacity 180ms ease !important;
  }

  #home-card-preview.section {
    padding-bottom: 0 !important;
  }

  #home-card-preview .feature-grid {
    gap: 0 !important;
    margin-bottom: 0 !important;
  }

  #home-card-preview .feature-tile {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .home-cta,
  .product-cta,
  .card-cta,
  .referral-cta {
    background-color: #180b21 !important;
    background-image: url("../public/assets/figma-ui/product-cta-bg.webp?v=20260607-referral-cta-bg1") !important;
    background-repeat: no-repeat !important;
    background-position: center bottom !important;
    background-size: 100% auto !important;
  }

  .home-cta .section,
  .product-cta .section,
  .card-cta .section,
  .referral-cta .section {
    width: min(100% - 32px, 430px);
    padding-top: 72px;
    padding-bottom: 372px;
  }

  .cta-band .primary-button {
    margin-top: 34px;
    margin-bottom: 0;
  }

  .cta-logo-animation {
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    bottom: 42px !important;
    width: min(304px, 78vw) !important;
    margin: 0 !important;
    transform: translateX(-50%) !important;
  }
}

@media (max-width: 420px) {
  .home-cta .section,
  .product-cta .section,
  .card-cta .section,
  .referral-cta .section {
    padding-top: 68px;
    padding-bottom: 348px;
  }

  .cta-logo-animation {
    bottom: 36px !important;
    width: min(292px, 76vw) !important;
  }
}

/* Card page mobile gap pass 2026-06-09: remove scroll-created and grid-created spacing. */
@media (max-width: 720px) {
  .page[data-page="card"] .reveal,
  .page[data-page="card"] .reveal.in-view {
    opacity: 1 !important;
    transform: none !important;
    transition: opacity 180ms ease !important;
  }

  .page[data-page="card"] .feature-grid,
  .card-feature-grid,
  .card-standards .feature-grid {
    gap: 0 !important;
    row-gap: 0 !important;
    column-gap: 0 !important;
  }

  .card-feature-section {
    padding-bottom: 0 !important;
  }

  .card-feature-grid .feature-tile,
  .card-standards .feature-tile {
    margin: 0 !important;
    border-radius: 0 !important;
  }

  .card-feature-grid .feature-tile.image-tile,
  .card-standards .feature-tile.image-tile {
    height: min(126vw, 560px);
    min-height: 0 !important;
  }

  .card-rewards-tile,
  .card-tap-tile,
  .card-secure-tile,
  .card-mastercard-tile {
    min-height: 0 !important;
    background: #f2f2f2 !important;
  }

  .card-rewards-tile,
  .card-tap-tile {
    padding-bottom: 0;
  }

  .card-rewards-img,
  .card-tap-img {
    margin-bottom: 0;
  }

  .card-standards .section {
    padding-bottom: 0;
  }

  .card-standards .section-title,
  .card-standards .section-copy {
    margin-bottom: 0;
  }

  .card-standards .feature-grid {
    margin-top: 40px;
  }

  .card-secure-tile {
    display: grid;
    grid-template-rows: auto auto;
    align-content: start;
    overflow: hidden;
  }

  .card-secure-tile .tile-copy {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    padding: 34px 28px 0;
  }

  .card-secure-img {
    position: relative;
    left: 50%;
    top: auto;
    width: min(100vw, 430px);
    max-width: 100vw;
    height: min(86vw, 360px);
    margin: 10px 0 0;
    transform: translateX(-50%);
    object-fit: contain;
  }

  .card-mastercard-tile {
    grid-template-rows: auto auto;
    min-height: 0 !important;
  }

  .card-mastercard-tile .tile-copy {
    padding-bottom: 0;
  }

  .card-mastercard-tile .card-fan {
    position: relative;
    left: 50%;
    top: auto;
    width: min(100vw, 430px);
    height: min(86vw, 348px);
    margin: 0;
    transform: translateX(-50%);
    transform-origin: center top;
  }

  .card-mastercard-tile .card-shadow {
    left: 50%;
    right: auto;
    top: 18px;
    bottom: auto;
    width: min(92vw, 380px);
    height: auto;
    transform: translateX(-50%);
    object-fit: contain;
  }

  .card-mastercard-tile .fan-card {
    width: min(58vw, 238px);
  }

  .card-mastercard-tile .fan-one {
    left: 49%;
    right: auto;
    top: 112px;
    bottom: auto;
    transform: translateX(-10%) rotate(-8deg);
  }

  .card-mastercard-tile .fan-two {
    left: 50%;
    top: 92px;
    bottom: auto;
    transform: translateX(-50%) rotate(7deg);
  }

  .card-mastercard-tile .fan-three {
    left: 48%;
    top: 126px;
    bottom: auto;
    transform: translateX(-86%) rotate(-15deg);
  }

  .card-picker {
    padding-bottom: 0;
  }

  .card-picker + .social-section,
  .social-section + .card-standards,
  .card-standards + .card-cta {
    margin-top: 0 !important;
  }
}

@media (max-width: 420px) {
  .card-feature-grid .feature-tile.image-tile,
  .card-standards .feature-tile.image-tile {
    height: min(126vw, 528px);
  }

  .card-secure-img {
    height: min(86vw, 338px);
  }

  .card-mastercard-tile .card-fan {
    height: min(84vw, 326px);
  }

  .card-mastercard-tile .fan-card {
    width: min(58vw, 224px);
  }

  .card-mastercard-tile .fan-one {
    top: 102px;
  }

  .card-mastercard-tile .fan-two {
    top: 84px;
  }

  .card-mastercard-tile .fan-three {
    top: 116px;
  }
}

/* Card page mobile hardening 2026-06-09: prevent blank bands inside card detail tiles. */
@media (max-width: 720px) {
  .page[data-page="card"] .section,
  .page[data-page="card"] .card-feature-section,
  .page[data-page="card"] .card-picker,
  .page[data-page="card"] .card-standards .section {
    margin-bottom: 0 !important;
  }

  .page[data-page="card"] .feature-grid,
  .page[data-page="card"] .card-feature-grid,
  .page[data-page="card"] .card-standards .feature-grid {
    gap: 0 !important;
    row-gap: 0 !important;
  }

  .card-feature-grid .feature-tile,
  .card-standards .feature-tile {
    min-height: auto !important;
  }

  .card-rewards-tile,
  .card-tap-tile,
  .card-secure-tile,
  .card-mastercard-tile {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    min-height: auto !important;
    padding-bottom: 0 !important;
  }

  .card-rewards-tile .tile-copy,
  .card-tap-tile .tile-copy,
  .card-secure-tile .tile-copy,
  .card-mastercard-tile .tile-copy {
    flex: 0 0 auto;
    padding: 34px 28px 16px !important;
  }

  .card-rewards-img,
  .card-tap-img {
    flex: 0 0 auto;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 !important;
    object-fit: contain !important;
  }

  .card-secure-img {
    flex: 0 0 auto;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 360px !important;
    margin: 0 auto !important;
    transform: none !important;
    object-fit: contain !important;
  }

  .card-mastercard-tile .card-fan {
    flex: 0 0 auto;
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    height: clamp(278px, 78vw, 344px) !important;
    margin: -8px 0 0 !important;
    transform: none !important;
    overflow: hidden;
  }

  .card-mastercard-tile .card-shadow {
    top: 0 !important;
    width: min(92vw, 376px) !important;
  }

  .card-mastercard-tile .fan-one {
    top: 94px !important;
  }

  .card-mastercard-tile .fan-two {
    top: 76px !important;
  }

  .card-mastercard-tile .fan-three {
    top: 110px !important;
  }

  .card-feature-grid .feature-tile.image-tile,
  .card-standards .feature-tile.image-tile {
    height: auto !important;
    min-height: 0 !important;
  }

  .card-feature-grid .image-tile > img,
  .card-standards .image-tile > img {
    position: relative !important;
    inset: auto !important;
    display: block;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    object-fit: cover !important;
  }

  .card-feature-grid .image-tile .tile-copy,
  .card-standards .image-tile .tile-copy {
    position: absolute !important;
  }
}

@media (max-width: 420px) {
  .card-secure-img {
    max-height: 338px !important;
  }

  .card-mastercard-tile .card-fan {
    height: clamp(262px, 76vw, 318px) !important;
  }

  .card-mastercard-tile .fan-one {
    top: 88px !important;
  }

  .card-mastercard-tile .fan-two {
    top: 70px !important;
  }

  .card-mastercard-tile .fan-three {
    top: 102px !important;
  }
}

/* Card premium tile guard 2026-06-09: preserve layered artwork after gap fixes. */
@media (max-width: 720px) {
  .card-feature-grid .card-premium-tile {
    height: clamp(430px, 120vw, 560px) !important;
    min-height: 0 !important;
  }

  .card-feature-grid .card-premium-tile .card-premium-bg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .card-feature-grid .card-premium-tile .premium-card {
    position: absolute !important;
    left: 17% !important;
    top: 21% !important;
    width: 66% !important;
    height: auto !important;
    transform: none !important;
  }

  .card-feature-grid .card-premium-tile .tile-copy {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    bottom: 0 !important;
    padding: 0 28px 34px !important;
  }
}

/* Card mobile social slider 2026-06-09: autoplay cards and use SVG-mask action icons. */
@media (max-width: 720px) {
  .social-section {
    padding: 68px 0 80px;
  }

  .social-stage {
    position: relative !important;
    display: block !important;
    width: 100vw !important;
    height: 404px !important;
    margin-top: 34px !important;
    margin-inline: calc(50% - 50vw) !important;
    padding: 0 !important;
    overflow: hidden !important;
    scroll-snap-type: none !important;
  }

  .social-stage::before,
  .social-stage::after {
    content: "";
    position: absolute;
    top: 0;
    z-index: 4;
    width: 30px;
    height: 100%;
    pointer-events: none;
  }

  .social-stage::before {
    left: 0;
    background: linear-gradient(90deg, #000000, rgba(0, 0, 0, 0));
  }

  .social-stage::after {
    right: 0;
    background: linear-gradient(270deg, #000000, rgba(0, 0, 0, 0));
  }

  .social-row {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    display: flex !important;
    align-items: stretch !important;
    gap: 14px !important;
    width: max-content !important;
    transform: translate3d(0, 0, 0);
    animation: social-mobile-marquee 46s linear infinite !important;
    will-change: transform;
  }

  .social-row-bottom {
    display: none !important;
  }

  .social-row:hover {
    animation-play-state: running !important;
  }

  .post-card,
  .social-photo {
    flex: 0 0 min(78vw, 314px) !important;
    width: min(78vw, 314px) !important;
    height: 386px !important;
    border-radius: 26px !important;
    scroll-snap-align: none !important;
  }

  .post-card {
    padding: 22px !important;
    overflow: hidden !important;
  }

  .post-user {
    gap: 14px;
    min-width: 0;
  }

  .post-user img {
    flex: 0 0 66px;
    width: 66px !important;
    height: 66px !important;
    object-fit: cover;
  }

  .post-user div {
    min-width: 0;
  }

  .post-user h3 {
    max-width: 100%;
    overflow: hidden;
    font-size: 20px !important;
    line-height: 1.18;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .post-user p {
    overflow: hidden;
    font-size: 15px !important;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .post-card > p {
    display: -webkit-box;
    margin-top: 22px !important;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px !important;
    line-height: 1.38 !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
  }

  .post-actions {
    flex: 0 0 34px;
    align-items: center;
    gap: 18px !important;
    min-height: 34px;
    margin-top: auto !important;
    padding-top: 12px;
    overflow: visible;
  }

  .post-actions button {
    display: inline-grid;
    place-items: center;
    flex: 0 0 34px;
    width: 34px !important;
    height: 34px !important;
    min-height: 34px !important;
    overflow: visible !important;
    color: #ffffff;
    line-height: 1;
  }

  .post-actions button::before {
    content: "" !important;
    display: block;
    width: 21px;
    height: 21px;
    background: currentColor;
    -webkit-mask: var(--post-action-icon) center / contain no-repeat;
    mask: var(--post-action-icon) center / contain no-repeat;
  }

  .post-actions [data-action="like"] {
    --post-action-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 21s-7-4.35-9.45-8.4C.55 9.29 2.56 5 6.42 5c2.04 0 3.41 1.08 4.14 2.03C11.29 6.08 12.66 5 14.7 5c3.86 0 5.87 4.29 3.87 7.6C19.13 16.65 12 21 12 21z'/%3E%3C/svg%3E");
  }

  .post-actions [data-action="comment"] {
    --post-action-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3C6.48 3 2 6.86 2 11.6c0 2.56 1.31 4.86 3.38 6.44L4.5 22l4.28-2.12c1.01.28 2.09.43 3.22.43 5.52 0 10-3.86 10-8.71S17.52 3 12 3zm0 2c4.42 0 8 2.96 8 6.6s-3.58 6.71-8 6.71c-1.17 0-2.27-.21-3.25-.59l-.42-.16-1.02.51.23-1.04-.86-.65C5.01 15.12 4 13.38 4 11.6 4 7.96 7.58 5 12 5z'/%3E%3C/svg%3E");
  }

  .post-actions [data-action="share"] {
    --post-action-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14 3h7v7h-2V6.41l-9.29 9.3-1.42-1.42 9.3-9.29H14V3zM5 5h6v2H7v10h10v-4h2v6H5V5z'/%3E%3C/svg%3E");
  }

  .post-actions button.active::before {
    background: var(--violet-soft);
  }

  .social-photo {
    overflow: hidden !important;
    background: #1e1e1e;
  }

  .social-photo img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 720px) {
  .social-row {
    animation: none !important;
  }

  .social-stage {
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
  }

  .post-card,
  .social-photo {
    scroll-snap-align: center !important;
  }
}

@keyframes social-mobile-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* CTA card art scale 2026-06-09: keep the product/card/referral bottom-right cards visible. */
.product-cta,
.card-cta,
.referral-cta {
  background-size: max(1580px, 138vw) auto !important;
  background-position: right bottom !important;
}

@media (min-width: 1600px) {
  .product-cta,
  .card-cta,
  .referral-cta {
    background-size: max(1920px, 124vw) auto !important;
  }
}

@media (max-width: 720px) {
  .product-cta,
  .card-cta,
  .referral-cta {
    background-size: max(900px, 245vw) auto !important;
    background-position: right bottom !important;
  }
}

@media (max-width: 420px) {
  .product-cta,
  .card-cta,
  .referral-cta {
    background-size: max(860px, 255vw) auto !important;
    background-position: right bottom !important;
  }
}

/* Card mobile detail pass 2026-06-09: unify tap tile, hide picker CTA, and center secure art. */
@media (max-width: 720px) {
  .page[data-page="card"] .card-tap-tile {
    overflow: hidden !important;
    background: #f4f5f6 !important;
  }

  .page[data-page="card"] .card-tap-tile .tile-copy {
    margin: 0 !important;
    padding: 34px 28px 22px !important;
    background: #f4f5f6 !important;
  }

  .page[data-page="card"] .card-tap-img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    background: #f4f5f6 !important;
    object-fit: contain !important;
    object-position: center top !important;
  }

  .page[data-page="card"] .card-picker-actions {
    display: none !important;
  }

  .page[data-page="card"] .card-picker {
    padding-bottom: 48px !important;
  }

  .page[data-page="card"] .card-secure-tile {
    overflow: hidden !important;
    background: #f2f2f2 !important;
  }

  .page[data-page="card"] .card-secure-img {
    display: block !important;
    position: relative !important;
    inset: auto !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: none !important;
    height: min(96vw, 430px) !important;
    max-height: none !important;
    margin: 14px 0 0 !important;
    transform: none !important;
    object-fit: cover !important;
    object-position: center 44% !important;
  }
}

@media (max-width: 420px) {
  .page[data-page="card"] .card-secure-img {
    height: min(108vw, 430px) !important;
    margin-top: 8px !important;
  }
}

/* Referral mobile spacing pass 2026-06-09: remove reserved gaps and scroll-shift reveals. */
@media (max-width: 720px) {
  .page[data-page="referral"] {
    overflow-x: hidden;
  }

  .page[data-page="referral"] .reveal,
  .page[data-page="referral"] .reveal.in-view {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .page[data-page="referral"] .referral-hero {
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
    height: auto !important;
    padding: calc(var(--responsive-header-h) + 24px) 0 0 !important;
    overflow: hidden !important;
  }

  .page[data-page="referral"] .referral-hero-copy {
    order: 1 !important;
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: calc(100vw - 32px) !important;
    max-width: 430px !important;
    margin: 0 auto !important;
    transform: none !important;
    text-align: center !important;
  }

  .page[data-page="referral"] .referral-hero-phone-shell {
    order: 2 !important;
    position: relative !important;
    left: 50% !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: min(100vw, 430px) !important;
    max-width: 100vw !important;
    height: auto !important;
    aspect-ratio: 605.401 / 628.753 !important;
    margin: 28px 0 0 !important;
    transform: translateX(-50%) !important;
  }

  .page[data-page="referral"] .referral-hero-phone-frame {
    width: 100% !important;
    height: 100% !important;
  }

  .page[data-page="referral"] .referral-rewards,
  .page[data-page="referral"] .referral-moments,
  .page[data-page="referral"] .referral-security {
    height: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .page[data-page="referral"] .referral-rewards-title,
  .page[data-page="referral"] .referral-moments-title,
  .page[data-page="referral"] .referral-security-title {
    position: static !important;
    width: calc(100vw - 32px) !important;
    max-width: 430px !important;
    margin: 0 auto !important;
    padding: 30px 16px 20px !important;
    transform: none !important;
    text-align: center !important;
  }

  .page[data-page="referral"] .referral-section-copy {
    position: static !important;
    width: calc(100vw - 32px) !important;
    max-width: 430px !important;
    margin: -8px auto 24px !important;
    padding: 0 16px !important;
    transform: none !important;
    text-align: center !important;
  }

  .page[data-page="referral"] .referral-rewards > .referral-card,
  .page[data-page="referral"] .referral-rewards > .referral-card + .referral-card {
    margin-top: 0 !important;
  }

  .page[data-page="referral"] .referral-wide-card,
  .page[data-page="referral"] .referral-half-card,
  .page[data-page="referral"] .referral-secure-card,
  .page[data-page="referral"] .referral-moment-card {
    width: 100vw !important;
    max-width: 100vw !important;
    min-height: 0 !important;
    margin-inline: calc(50% - 50vw) !important;
    border-radius: 0 !important;
  }

  .page[data-page="referral"] .referral-wide-card,
  .page[data-page="referral"] .referral-half-card,
  .page[data-page="referral"] .referral-secure-card {
    height: 520px !important;
  }

  .page[data-page="referral"] .referral-moment-grid,
  .page[data-page="referral"] .referral-security-grid {
    position: static !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 calc(50% - 50vw) !important;
    padding: 0 !important;
  }

  .page[data-page="referral"] .referral-moment-card {
    height: 366px !important;
  }

  .page[data-page="referral"] .referral-cta {
    margin-top: 0 !important;
  }
}

/* Referral mobile hero alignment pass 2026-06-09: keep the main copy optically centered. */
@media (max-width: 720px) {
  .page[data-page="referral"] .referral-hero-copy {
    width: calc(100vw - 48px) !important;
    max-width: 380px !important;
    margin-inline: auto !important;
  }

  .page[data-page="referral"] .referral-hero-copy h1 {
    width: 100% !important;
    max-width: 360px !important;
    margin-inline: auto !important;
    font-size: clamp(34px, 9vw, 40px) !important;
    line-height: 1.13 !important;
    text-align: center !important;
  }

  .page[data-page="referral"] .referral-hero-copy .hero-actions,
  .page[data-page="referral"] .referral-hero-copy .referral-actions {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin-inline: auto !important;
  }

  .page[data-page="referral"] .referral-hero-copy a,
  .page[data-page="referral"] .referral-hero-copy button {
    margin-inline: auto !important;
  }
}

/* Referral mobile title clipping pass 2026-06-09: override legacy centered reveal transforms. */
@media (max-width: 720px) {
  body .page[data-page="referral"].active .referral-section-title,
  body .page[data-page="referral"].active .referral-section-title.reveal,
  body .page[data-page="referral"].active .referral-section-title.reveal.in-view,
  body .page[data-page="referral"].active .referral-rewards-title,
  body .page[data-page="referral"].active .referral-rewards-title.reveal,
  body .page[data-page="referral"].active .referral-rewards-title.reveal.in-view,
  body .page[data-page="referral"].active .referral-moments-title,
  body .page[data-page="referral"].active .referral-moments-title.reveal,
  body .page[data-page="referral"].active .referral-moments-title.reveal.in-view,
  body .page[data-page="referral"].active .referral-security-title,
  body .page[data-page="referral"].active .referral-security-title.reveal,
  body .page[data-page="referral"].active .referral-security-title.reveal.in-view,
  body .page[data-page="referral"].active .referral-section-copy,
  body .page[data-page="referral"].active .referral-section-copy.reveal,
  body .page[data-page="referral"].active .referral-section-copy.reveal.in-view {
    left: auto !important;
    right: auto !important;
    transform: none !important;
    translate: none !important;
    width: calc(100vw - 48px) !important;
    max-width: 380px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    text-align: center !important;
  }

  body .page[data-page="referral"].active .referral-section-title {
    font-size: clamp(34px, 9vw, 40px) !important;
    line-height: 1.13 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* CTA left logo restoration 2026-06-09: keep left ornament visible while right card art stays enlarged. */
.product-cta,
.card-cta,
.referral-cta {
  isolation: isolate;
}

.product-cta::before,
.card-cta::before,
.referral-cta::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  right: auto !important;
  top: auto !important;
  bottom: 0 !important;
  z-index: 0 !important;
  width: min(540px, 42vw) !important;
  height: 280px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background-image: url("../public/assets/figma-ui/product-cta-bg.webp?v=20260607-referral-cta-bg1") !important;
  background-repeat: no-repeat !important;
  background-position: left bottom !important;
  background-size: 1440px auto !important;
  opacity: 1 !important;
  pointer-events: none !important;
  transform: none !important;
}

.product-cta .section,
.card-cta .section,
.referral-cta .section {
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  .product-cta::before,
  .card-cta::before,
  .referral-cta::before {
    width: min(330px, 58vw) !important;
    height: 174px !important;
    background-size: 900px auto !important;
  }
}

@media (max-width: 420px) {
  .product-cta::before,
  .card-cta::before,
  .referral-cta::before {
    width: min(300px, 62vw) !important;
    height: 158px !important;
    background-size: 860px auto !important;
  }
}

/* Final mobile card/CTA pass 2026-06-09: lock requested card tile color, restore CTA left ornament, and keep social slider moving. */
.product-cta::before,
.card-cta::before,
.referral-cta::before {
  left: clamp(-48px, -3vw, 0px) !important;
  bottom: -8px !important;
  width: min(660px, 48vw) !important;
  height: 372px !important;
  background-image: url("../public/assets/figma-ui/cta-left-logo-outline.svg?v=20260610-cta-left-logo3") !important;
  background-size: 660px auto !important;
  background-position: left bottom !important;
  opacity: 0.78 !important;
}

@media (max-width: 720px) {
  .product-cta::before,
  .card-cta::before,
  .referral-cta::before {
    left: -68px !important;
    bottom: 18px !important;
    width: min(360px, 70vw) !important;
    height: 204px !important;
    background-size: 360px auto !important;
    opacity: 0.72 !important;
  }

  .page[data-page="card"] .card-tap-tile,
  .page[data-page="card"] .card-tap-tile .tile-copy,
  .page[data-page="card"] .card-tap-img {
    background-color: #e7e7e7 !important;
    background: #e7e7e7 !important;
  }

  .page[data-page="card"] .card-picker {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .page[data-page="card"] .card-picker + .social-section {
    margin-top: 0 !important;
    padding-top: 56px !important;
  }

  .page[data-page="card"] .social-stage {
    display: block !important;
    overflow: hidden !important;
    width: 100vw !important;
    height: 404px !important;
    margin-inline: calc(50% - 50vw) !important;
    scroll-snap-type: none !important;
  }

  .page[data-page="card"] .social-row {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    display: flex !important;
    grid-template-columns: none !important;
    gap: 14px !important;
    width: max-content !important;
    margin: 0 !important;
    transform: translate3d(0, 0, 0);
    animation: social-mobile-marquee 46s linear infinite !important;
    will-change: transform;
  }

  .page[data-page="card"] .social-stage.is-marquee-ready .social-row {
    animation: social-mobile-marquee 46s linear infinite !important;
  }

  .page[data-page="card"] .social-row-bottom {
    display: none !important;
  }

  .page[data-page="card"] .social-row-top .is-social-clone {
    display: flex !important;
  }

  .page[data-page="card"] .social-row-top .is-social-clone.social-photo {
    display: block !important;
  }

  .page[data-page="card"] .post-card,
  .page[data-page="card"] .social-photo {
    flex: 0 0 min(78vw, 314px) !important;
    width: min(78vw, 314px) !important;
    height: 386px !important;
  }
}

@media (max-width: 420px) {
  .product-cta::before,
  .card-cta::before,
  .referral-cta::before {
    left: -78px !important;
    bottom: 14px !important;
    width: min(330px, 74vw) !important;
    height: 188px !important;
    background-size: 330px auto !important;
  }

  .page[data-page="card"] .card-picker + .social-section {
    padding-top: 48px !important;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 720px) {
  .page[data-page="card"] .social-stage.is-marquee-ready .social-row {
    animation: social-mobile-marquee 62s linear infinite !important;
  }
}

/* Firefox-safe desktop header geometry.
   Firefox can invalidate CSS calc multiplication/division in the earlier
   desktop header rules, which leaves absolute-positioned header controls at
   their static origin. These equivalent clamp() values keep the Figma-scaled
   header layout without CSS Values Level 4 math. */
@media (min-width: 1081px) {
  .site-header {
    justify-content: initial;
    height: clamp(63.084px, 5.833333vw, 84px);
  }

  .site-header .brand {
    position: absolute;
    left: calc(var(--design-offset) + clamp(73.598px, 6.805556vw, 98px));
    top: clamp(16.522px, 1.527778vw, 22px);
    gap: clamp(9.012px, 0.833333vw, 12px);
  }

  .site-header .brand img:first-child {
    width: clamp(57.827px, 5.347222vw, 77px);
    height: clamp(30.04px, 2.777778vw, 40px);
  }

  .site-header .brand img:last-child {
    width: clamp(81.662px, 7.551319vw, 108.739px);
    height: clamp(21.028px, 1.944444vw, 28px);
  }

  .site-header .main-nav {
    position: absolute;
    left: calc(var(--design-offset) + clamp(339.452px, 31.388889vw, 452px));
    top: clamp(24.783px, 2.291667vw, 33px);
    margin-left: 0;
    gap: clamp(16.522px, 1.527778vw, 22px);
    font-size: clamp(12.016px, 1.111111vw, 16px);
    line-height: normal;
  }

  .site-header .support-nav {
    position: absolute;
    left: calc(var(--design-offset) + clamp(560.246px, 51.805556vw, 746px));
    top: clamp(24.783px, 2.291667vw, 33px);
    margin-left: 0;
    gap: clamp(25.534px, 2.361111vw, 34px);
    font-size: clamp(12.016px, 1.111111vw, 16px);
    line-height: normal;
  }

  .site-header .primary-nav a {
    padding: 0;
    line-height: normal;
  }

  .site-header .main-actions {
    display: contents;
  }

  .site-header .language-selector {
    position: absolute;
    left: calc(var(--design-offset) + clamp(762.265px, 70.486111vw, 1015px));
    top: clamp(15.02px, 1.388889vw, 20px);
    width: clamp(93.124px, 8.611111vw, 124px);
    height: clamp(33.044px, 3.055556vw, 44px);
  }

  .site-header .language-button {
    width: 100%;
    height: 100%;
    gap: clamp(7.51px, 0.694444vw, 10px);
    padding: clamp(7.51px, 0.694444vw, 10px);
    font-size: clamp(12.016px, 1.111111vw, 16px);
  }

  .site-header .language-menu {
    width: clamp(306px, 23.472222vw, 338px);
    min-width: 306px;
  }

  .site-header .language-icon,
  .site-header .down-icon {
    width: clamp(18.024px, 1.666667vw, 24px);
    height: clamp(18.024px, 1.666667vw, 24px);
  }

  .site-header .outline-cta {
    position: absolute;
    left: calc(var(--design-offset) + clamp(892.188px, 82.5vw, 1188px));
    top: clamp(15.02px, 1.388889vw, 20px);
    width: clamp(115.654px, 10.694444vw, 154px);
    min-width: clamp(115.654px, 10.694444vw, 154px);
    height: clamp(33.044px, 3.055556vw, 44px);
    padding: 0 clamp(30.04px, 2.777778vw, 40px) 0 clamp(9.012px, 0.833333vw, 12px);
    font-size: clamp(12.016px, 1.111111vw, 16px);
  }

  .site-header .outline-cta .button-dot {
    position: absolute;
    right: clamp(4.506px, 0.416667vw, 6px);
    top: clamp(4.506px, 0.416667vw, 6px);
    width: clamp(24.032px, 2.222222vw, 32px);
    height: clamp(24.032px, 2.222222vw, 32px);
  }

  .site-header .outline-cta .button-dot::after {
    inset: clamp(7.51px, 0.694444vw, 10px) clamp(6.759px, 0.625vw, 9px);
    border-top-width: clamp(1.502px, 0.138889vw, 2px);
    border-right-width: clamp(1.502px, 0.138889vw, 2px);
  }

  .site-header .header-actions.support-actions {
    position: absolute;
    left: calc(var(--design-offset) + clamp(892.188px, 82.5vw, 1188px));
    top: clamp(15.02px, 1.388889vw, 20px);
    margin-left: 0;
  }

  .site-header .support-help-button {
    width: clamp(115.654px, 10.694444vw, 154px);
    min-width: clamp(115.654px, 10.694444vw, 154px);
    height: clamp(33.044px, 3.055556vw, 44px);
    padding: 0;
    font-size: clamp(12.016px, 1.111111vw, 16px);
  }
}

/* CTA animation restore 2026-06-10.
   Keep the original GIF motion, but blend away its dark canvas so the
   decorative PingPay outline remains continuous behind it. */
.product-cta,
.card-cta,
.referral-cta {
  overflow: hidden !important;
  isolation: isolate;
}

.product-cta::before,
.card-cta::before,
.referral-cta::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: -52px !important;
  right: auto !important;
  top: auto !important;
  bottom: -34px !important;
  z-index: 0 !important;
  width: min(780px, 57vw) !important;
  height: 438px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background-image: url("../public/assets/figma-ui/cta-left-logo-outline.svg?v=20260610-cta-left-logo4") !important;
  background-repeat: no-repeat !important;
  background-position: left bottom !important;
  background-size: min(780px, 57vw) auto !important;
  opacity: 0.78 !important;
  pointer-events: none !important;
  transform: none !important;
}

.product-cta .section,
.card-cta .section,
.referral-cta .section {
  position: relative;
  z-index: 1;
}

.cta-logo-animation {
  display: block !important;
  position: absolute !important;
  left: 50% !important;
  right: auto !important;
  bottom: 44px !important;
  z-index: 2 !important;
  width: min(292px, 22vw) !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  transform: translateX(-50%) !important;
  overflow: visible !important;
  pointer-events: none !important;
}

.cta-logo-animation::before,
.cta-logo-animation::after {
  content: none !important;
  display: none !important;
}

.cta-logo-animation img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
  background: transparent !important;
  mix-blend-mode: screen !important;
}

@media (max-width: 720px) {
  .product-cta::before,
  .card-cta::before,
  .referral-cta::before {
    left: -86px !important;
    bottom: 34px !important;
    width: min(430px, 112vw) !important;
    height: 238px !important;
    background-size: min(430px, 112vw) auto !important;
    opacity: 0.76 !important;
  }

  .cta-logo-animation {
    bottom: 54px !important;
    width: min(304px, 78vw) !important;
  }
}

@media (max-width: 420px) {
  .product-cta::before,
  .card-cta::before,
  .referral-cta::before {
    left: -92px !important;
    bottom: 38px !important;
    width: min(390px, 116vw) !important;
    height: 218px !important;
    background-size: min(390px, 116vw) auto !important;
  }

  .cta-logo-animation {
    bottom: 58px !important;
    width: min(292px, 76vw) !important;
  }
}

/* Card page pass 2026-06-09: unify tap tile stage and hide spend metric. */
.page[data-page="card"] .card-tap-tile,
.page[data-page="card"] .card-tap-tile .tile-copy {
  background-color: #f5f6f8 !important;
  background: #f5f6f8 !important;
}

.page[data-page="card"] .card-tap-img {
  background-color: #f5f6f8 !important;
  background: #f5f6f8 !important;
  mix-blend-mode: normal !important;
}

.page[data-page="card"] .card-metric-section {
  display: none !important;
}

/* Card social mobile autoplay 2026-06-09: keep Join the Revolution moving on mobile. */
@media (max-width: 720px) {
  .page[data-page="card"] .social-stage,
  .page[data-page="card"] .social-stage.is-mobile-marquee {
    position: relative !important;
    display: block !important;
    overflow: hidden !important;
    overflow-x: hidden !important;
    width: 100vw !important;
    height: 404px !important;
    margin-inline: calc(50% - 50vw) !important;
    padding: 0 !important;
    scroll-snap-type: none !important;
    -webkit-overflow-scrolling: auto !important;
  }

  .page[data-page="card"] .social-stage.is-mobile-marquee .social-row-top {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    display: flex !important;
    align-items: stretch !important;
    gap: 14px !important;
    width: max-content !important;
    margin: 0 !important;
    animation: none !important;
    will-change: transform !important;
  }

  .page[data-page="card"] .social-stage.is-mobile-marquee .social-row-bottom {
    display: none !important;
  }

  .page[data-page="card"] .social-stage.is-mobile-marquee .is-social-clone {
    display: flex !important;
  }

  .page[data-page="card"] .social-stage.is-mobile-marquee .is-social-clone.social-photo {
    display: block !important;
  }

  .page[data-page="card"] .social-stage.is-mobile-marquee .post-actions {
    overflow: visible !important;
  }
}

/* Link CTA visibility pass 2026-06-11: temporarily hide referral shortcut labels/arrows. */
.page[data-page="referral"] .referral-link-button {
  display: none !important;
}

/* Footer overlap guard 2026-06-11: keep address, copyright, and legal links on separate rows. */
@media (min-width: 1081px) {
  .footer-inner {
    min-height: 582px !important;
  }

  .footer-contact {
    top: 336px !important;
    max-width: 410px !important;
    line-height: 1.6 !important;
    white-space: normal !important;
  }

  .footer-bottom {
    top: 456px !important;
    align-items: flex-start !important;
  }

  .footer-bottom p {
    max-width: 460px !important;
    margin: 0 !important;
    overflow-wrap: anywhere !important;
  }

  .footer-bottom nav {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 1080px) {
  .footer-contact {
    max-width: 100% !important;
    line-height: 1.6 !important;
    white-space: normal !important;
  }

  .footer-bottom {
    align-items: flex-start !important;
  }

  .footer-bottom p {
    margin: 0 !important;
    overflow-wrap: anywhere !important;
  }
}

@media (max-width: 720px) {
  .footer-bottom nav {
    flex-wrap: wrap !important;
  }
}
