/* Trust Wallet branding, wallet modal, cards page */

/* ── Video Section ─────────────────────────────────────────────────────── */
.tw-video-section {
  width: 100%;
  padding: 80px 0;
  background: var(--white);
}
.tw-video-section .shared_container__HLW1U {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.tw-video-section__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tw-video-section__title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
}
.tw-video-section__desc {
  font-size: 17px;
  color: var(--text-gray);
  max-width: 380px;
  line-height: 1.6;
  margin: 0;
}
.tw-video-section__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.tw-video-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 16px;
  background: #f0f2ff;
  color: var(--primary-blue);
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid rgba(5, 0, 255, 0.12);
}
.tw-video-section__media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tw-video-phone-wrap {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.tw-video-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 0, 255, 0.12) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.tw-video-phone-frame {
  position: relative;
  z-index: 1;
  width: 240px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(5, 0, 255, 0.18),
    0 8px 24px rgba(0, 0, 0, 0.12),
    inset 0 0 0 2px rgba(255,255,255,0.6);
  background: #000;
  aspect-ratio: 9/19.5;
}
.tw-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 36px;
}
@media (max-width: 1024px) {
  .tw-video-section .shared_container__HLW1U {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .tw-video-section__title { font-size: 36px; }
  .tw-video-section__desc { max-width: 100%; }
  .tw-video-section__badges { justify-content: center; }
  .tw-video-phone-frame { width: 200px; }
}
@media (max-width: 640px) {
  .tw-video-section { padding: 50px 0; }
  .tw-video-section__title { font-size: 30px; }
  .tw-video-phone-frame { width: 170px; border-radius: 28px; }
  .tw-video-player { border-radius: 28px; }
}

/* Get your card today — single composite PNG (replaces phone + card) */
.FeatureSection_block4__tnvSy .tw-getcard-hero {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(360px, 90%);
  height: auto;
  max-height: 95%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .FeatureSection_block4__tnvSy .tw-getcard-hero {
    width: min(300px, 88%);
  }
}
@media (max-width: 640px) {
  .FeatureSection_block4__tnvSy .tw-getcard-hero {
    width: min(260px, 85%);
  }
}

/* Hero hero-image: size + float live in tw-chat.css (loads last so they are not overridden) */

.Header_left__tzwQt {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  min-width: 0;
  overflow: visible;
}
.Header_right__K26RG {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}
.tw-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  min-width: 0;
}
.tw-brand__mark {
  display: block;
  height: auto;
  width: 160px;
  max-width: min(160px, 40vw);
  object-fit: contain;
  object-position: left center;
}
@media (max-width: 640px) {
  .tw-brand__mark {
    width: 120px;
    max-width: 32vw;
  }
}
.LanguageSelector_selector__ZpUQ0 {
  position: relative;
  flex-shrink: 0;
}

/* Legacy footer logo class — no longer used */

/* Modal uses .tw-wallet-modal — avoids clash with legacy .wallet-modal in fcc835 (transform broke centering). */

/* —— Wallet modal —— */
.tw-wallet-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: 0;
  overflow: visible;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}
.tw-wallet-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.tw-wallet-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.tw-wallet-modal__panel {
  position: relative;
  width: min(100%, 420px);
  max-height: min(92vh, 720px);
  overflow: auto;
  background: #fff;
  border-radius: 22px;
  box-shadow:
    0 24px 80px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  padding: 0 0 20px;
  animation: twModalIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes twModalIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.tw-wallet-modal__head {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  padding: 16px 12px 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.tw-wallet-modal__back {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: #f4f6f9;
  color: #334155;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}
.tw-wallet-modal__back:hover {
  background: #e8ecf2;
}
.tw-wallet-modal__title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  color: #0f172a;
}
/* Wallet modal steps — Trust-style horizontal row */
.wallet-steps {
  counter-reset: wallet-step-idx;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 8px;
  padding: 10px 16px 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 55%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.wallet-step-pill {
  counter-increment: wallet-step-idx;
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 12px 6px 14px;
  border-radius: 16px;
  border: 1px solid #eef2f6;
  background: #f8fafc;
  font-size: 0;
  font-weight: 600;
  color: #94a3b8;
  line-height: 1.35;
  letter-spacing: -0.01em;
  cursor: default;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}
.wallet-step-pill > span:not(.wallet-step-pill__dot) {
  display: block;
  width: 100%;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  color: inherit;
  hyphens: auto;
  word-wrap: break-word;
}
.wallet-step-pill__dot {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 2px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wallet-step-pill__dot::before {
  content: counter(wallet-step-idx);
  font-size: 11px;
  font-weight: 800;
  color: #94a3b8;
  line-height: 1;
}
/* Active step — Trust blue */
.wallet-step-pill.is-active {
  background: linear-gradient(135deg, rgba(5, 0, 255, 0.04) 0%, rgba(0, 148, 255, 0.06) 100%);
  border-color: rgba(5, 0, 255, 0.28);
  color: #0f172a;
  box-shadow:
    0 4px 20px rgba(5, 0, 255, 0.1),
    0 0 0 1px rgba(5, 0, 255, 0.06) inset;
}
.wallet-step-pill.is-active .wallet-step-pill__dot {
  background: linear-gradient(145deg, #0500ff 0%, #0094ff 100%);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(5, 0, 255, 0.35);
}
.wallet-step-pill.is-active .wallet-step-pill__dot::before {
  color: #fff;
}
/* Completed steps */
.wallet-step-pill.is-complete {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.06) 0%, rgba(255, 255, 255, 1) 100%);
  border-color: rgba(34, 197, 94, 0.22);
  color: #166534;
}
.wallet-step-pill.is-complete .wallet-step-pill__dot {
  background: linear-gradient(145deg, #22c55e 0%, #4ade80 100%);
  border-color: transparent;
  box-shadow: 0 3px 12px rgba(34, 197, 94, 0.3);
}
.wallet-step-pill.is-complete .wallet-step-pill__dot::before {
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}
.tw-wallet-modal__body {
  padding: 8px 20px 0;
}
.tw-wallet-modal__hint {
  margin: 12px 0 16px;
  font-size: 15px;
  color: #64748b;
  line-height: 1.45;
}
.wallet-net {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 18px;
  margin-bottom: 10px;
  border: 1px solid #e8ecf2;
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
}
.wallet-net:hover {
  border-color: rgba(5, 0, 255, 0.35);
  box-shadow: 0 8px 28px rgba(5, 0, 255, 0.08);
  transform: translateY(-1px);
}
.wallet-net:active {
  transform: translateY(0);
}
.wallet-net__icon {
  width: 48px;
  height: 48px;
  padding: 6px;
  box-sizing: border-box;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(145deg, #f8fafc 0%, #fff 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 2px 12px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.9);
}
.wallet-net__main {
  flex: 1;
  min-width: 0;
}
.wallet-net__name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}
.wallet-net__sub {
  display: block;
  font-size: 13px;
  color: #94a3b8;
  margin-top: 2px;
}
.wallet-net__chev {
  color: #cbd5e1;
  font-size: 18px;
  font-weight: 300;
}
.tw-wallet-modal__foot {
  margin: 20px 20px 0;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
  font-size: 13px;
  color: #94a3b8;
  text-align: center;
  line-height: 1.4;
}
.tw-wallet-modal__foot--trust {
  color: #64748b;
}

/* Trust Wallet–style first step: logo + consent checkboxes */
.tw-wallet-trust {
  padding-top: 4px;
  padding-bottom: 4px;
}
.tw-wallet-trust__brand {
  text-align: center;
  margin-bottom: 14px;
}
.tw-wallet-trust__logo {
  display: inline-block;
  height: 30px;
  width: auto;
  max-width: 148px;
  object-fit: contain;
}
.tw-wallet-trust__title {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
  color: #0500ff;
}
.tw-wallet-trust__intro {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.5;
  color: #64748b;
  text-align: center;
}
.tw-wallet-trust__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tw-wallet-trust__item {
  margin-bottom: 14px;
}
.tw-wallet-trust__item:last-of-type {
  margin-bottom: 0;
}
.tw-wallet-trust__label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.45;
  color: #334155;
}
.tw-wallet-trust__chk {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.tw-wallet-trust__box {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 7px;
  border: 2px solid #cbd5e1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}
.tw-wallet-trust__chk:focus-visible + .tw-wallet-trust__box {
  outline: 2px solid #0500ff;
  outline-offset: 2px;
}
.tw-wallet-trust__chk:checked + .tw-wallet-trust__box {
  background: linear-gradient(135deg, #0500ff 0%, #0094ff 100%);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(5, 0, 255, 0.25);
}
.tw-wallet-trust__chk:checked + .tw-wallet-trust__box::after {
  content: "";
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}
.tw-wallet-trust__text {
  flex: 1;
  min-width: 0;
}
.tw-wallet-trust__continue {
  width: 100%;
  margin-top: 20px;
  padding: 14px 18px;
  border: 0;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #0500ff 0%, #0094ff 100%);
  box-shadow: 0 8px 24px rgba(5, 0, 255, 0.22);
  transition:
    opacity 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}
.tw-wallet-trust__continue:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.tw-wallet-trust__continue:not(:disabled):hover {
  opacity: 0.96;
  transform: translateY(-1px);
}
@media (max-width: 400px) {
  .wallet-steps {
    gap: 6px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .wallet-step-pill {
    padding: 10px 4px 12px;
    gap: 6px;
    border-radius: 14px;
  }
  .wallet-step-pill > span:not(.wallet-step-pill__dot) {
    font-size: 9px;
    line-height: 1.25;
  }
  .wallet-step-pill__dot {
    width: 24px;
    height: 24px;
  }
  .wallet-step-pill__dot::before {
    font-size: 10px;
  }
}

.wallet-pending {
  text-align: center;
  padding: 24px 8px 8px;
}
.wallet-pending__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(5, 0, 255, 0.1), rgba(72, 230, 196, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
}
.wallet-pending__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 12px;
}
.wallet-pending h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}
.wallet-pending p,
#wallet-pending-line {
  margin: 0;
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}
body.wallet-modal-open {
  overflow: hidden;
}

/* —— Cards page —— */
.cards-page {
  min-height: 100vh;
  padding-top: 72px;
  padding-bottom: 100px;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(5, 0, 255, 0.07), transparent),
    radial-gradient(900px 500px at 100% 20%, rgba(72, 230, 196, 0.08), transparent),
    var(--white);
}
.cards-page__hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 80px 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cards-page__kicker {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.cards-page__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0c1222;
  line-height: 1.1;
}
.cards-showcase {
  max-width: 560px;
  margin: 0 auto 48px;
  padding: 0 24px;
}
.cards-showcase__shell {
  background: #fff;
  border-radius: 28px;
  padding: 20px 20px 28px;
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.04),
    0 24px 60px rgba(5, 0, 255, 0.09);
  border: 1px solid rgba(5, 0, 255, 0.06);
}
@media (min-width: 960px) {
  .cards-showcase {
    max-width: 1080px;
  }
  .cards-showcase__shell {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(340px, 1.12fr);
    grid-template-rows: auto 1fr;
    column-gap: 44px;
    row-gap: 16px;
    padding: 28px 36px 36px;
    align-items: start;
  }
  .cards-dots {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
  }
  .cards-visual {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 0;
  }
  .cards-detail {
    grid-column: 2;
    grid-row: 1 / -1;
    align-self: stretch;
  }
}
.cards-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.cards-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #e2e8f0;
  cursor: pointer;
  transition:
    width 0.25s,
    background 0.25s;
}
.cards-dots button.is-active {
  width: 28px;
  background: var(--primary-blue);
}
.cards-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
  background: linear-gradient(145deg, #0f172a, #1e3a5f);
}
.cards-visual img,
.cards-preview-img {
  width: 100%;
  max-width: min(440px, 92vw);
  max-height: min(340px, 48vh);
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 18px 36px rgba(15, 23, 42, 0.12));
}
.cards-visual__nav {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.cards-visual__nav:hover {
  transform: translateY(-50%) scale(1.05);
}
.cards-visual__nav--prev {
  left: 10px;
  right: auto;
}
.cards-slide-img {
  display: none;
}
.cards-slide-img.is-active {
  display: block;
}
.cards-detail .cards-slide {
  display: none;
}
.cards-detail .cards-slide.is-active {
  display: block;
}
.cards-slide__name {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
  color: #0c1222;
  letter-spacing: -0.02em;
}
.cards-slide__price {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
}
.cards-info {
  background: #f8fafc;
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 12px;
  border: 1px solid #eef2f7;
}
.cards-info strong {
  display: block;
  font-size: 14px;
  color: #0f172a;
  margin-bottom: 6px;
}
.cards-info p {
  margin: 0;
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}
.cards-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin: 0 0 20px;
}
.cards-promo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  padding: 13px 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, #101827 0%, #4c1d95 48%, #16a34a 100%);
  color: #fff;
  box-shadow: 0 16px 38px rgba(76, 29, 149, 0.24);
  overflow: hidden;
}
.cards-promo__badge {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.8px;
}
.cards-promo__logos {
  display: inline-flex;
  gap: 6px;
  flex-shrink: 0;
}
.cards-promo__logos img {
  width: 30px;
  height: 30px;
  padding: 5px;
  border-radius: 11px;
  background: #fff;
  object-fit: contain;
}
.cards-promo__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}
.cards-promo__copy strong {
  font-size: 14px;
  font-weight: 900;
}
.cards-promo__copy small {
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 700;
}
.cards-issue {
  width: 100%;
  padding: 16px 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #0500ff, #4f46e5);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 20px;
  box-shadow: 0 12px 32px rgba(5, 0, 255, 0.35);
  transition:
    transform 0.15s,
    box-shadow 0.2s;
}
.cards-issue:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(5, 0, 255, 0.4);
}
.cards-limits {
  border: 1px solid #eef2f7;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.cards-limits__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border: 0;
  background: #f8fafc;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
}
.cards-limits__trigger span:last-child {
  transition: transform 0.25s;
  color: #94a3b8;
}
.cards-limits.is-open .cards-limits__trigger span:last-child {
  transform: rotate(180deg);
}
.cards-limits__panel {
  display: none;
  padding: 0 18px 16px;
  border-top: 1px solid #eef2f7;
}
.cards-limits.is-open .cards-limits__panel {
  display: block;
}
.cards-limits ul {
  list-style: none;
  margin: 0;
  padding: 12px 0 0;
}
.cards-limits li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 14px;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
}
.cards-limits li:last-child {
  border-bottom: 0;
}
.cards-limits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #22c55e
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='white' stroke-width='2' d='M2 6l3 3 5-5'/%3E%3C/svg%3E")
    center/10px no-repeat;
}
.cards-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.cards-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e8ecf2;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}
.cards-badge img {
  width: 20px;
  height: 20px;
}
.cards-footnote {
  margin-top: 16px;
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.45;
}
@media (max-width: 1024px) {
  .cards-page__hero {
    padding: 24px 24px 16px;
  }
}
@media (max-width: 640px) {
  .cards-page {
    padding-top: 68px;
  }
  .cards-showcase__shell {
    padding: 16px 14px 22px;
    border-radius: 22px;
  }
}

.Header_nav__NNkX_ a.cards-nav-active {
  color: var(--primary-blue);
}

.LandingPage_page__Py6p3 {
  background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 28%, #ffffff 100%);
}

/* ── Community section ── */
.tw-community-section {
  padding: 80px 0 60px;
  background: #fff;
}
.tw-community-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: #0b1019;
  margin: 0 0 12px;
  line-height: 1.2;
}
.tw-community-sub {
  font-size: 15px;
  color: #64748b;
  margin: 0 0 40px;
  max-width: 480px;
}
.tw-community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tw-community-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.tw-community-img-wrap {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 16px;
  position: relative;
}
.tw-community-img-wrap--blue::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #0500ff;
  opacity: .55;
  mix-blend-mode: screen;
  pointer-events: none;
}
.tw-community-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.tw-community-card strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #0b1019;
  margin-bottom: 4px;
}
.tw-community-card p {
  font-size: 14px;
  color: #0b1019;
  margin: 0;
  line-height: 1.55;
}
.tw-community-cta {
  margin-top: 40px;
  text-align: center;
}
.tw-community-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0500ff;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity .2s;
}
.tw-community-btn:hover { opacity: .85; }
@media (max-width: 900px) {
  .tw-community-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .tw-community-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .tw-community-section { padding: 48px 0 40px; }
}

/* ── Footer (1:1 copy of trustwallet.com) ── */
.tw-ft {
  max-width: 1280px;
  margin: 0 auto 40px;
  border: 1px solid #dde4f0;
  border-radius: 30px;
  background: #f8fafe;
  padding: 48px 80px 48px;
  display: grid;
  grid-template-columns: auto 2fr 1fr;
  grid-template-rows: repeat(3, auto);
  gap: 32px 0;
}

/* Child 1 — Stay Connected (auto-placed → col 3, row 2+) */
.tw-ft-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 14px;
  margin-left: 24px;
}
.tw-ft-social h5 {
  font-size: 16px;
  font-weight: 700;
  color: #0b1019;
  margin: 0;
}
.tw-ft-socials { display: flex; gap: 6px; flex-wrap: wrap; }
.tw-ft-socials a { display: flex; color: #0b1019; transition: color .15s; }
.tw-ft-socials a:hover { color: #0500ff; }

/* Child 2 — Nav + ISO (cols 2-3, row 1) */
.tw-ft-nav {
  grid-column: 2 / 4;
  grid-row: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  justify-self: start;
}
.tw-ft-col {
  min-width: 0;
}
.tw-ft-col strong {
  font-size: 14px;
  font-weight: 700;
  color: #0b1019;
  display: block;
  margin-bottom: 12px;
}
.tw-ft-col nav {
  display: grid;
  gap: 8px;
}
.tw-ft-col a {
  font-size: 14px;
  color: #0b1019;
  text-decoration: none;
  line-height: 1.5;
  transition: color .15s;
}
.tw-ft-col a:hover { text-decoration: underline; }
.tw-ft-iso {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: center;
}
.tw-ft-iso img { width: 58px; height: auto; }

/* Child 3 — Download (col 2, rows 2-3) */
.tw-ft-dl {
  grid-column: 2;
  grid-row: 2 / 4;
  text-align: left;
}
.tw-ft-dl strong { font-size: 14px; font-weight: 700; color: #0b1019; display: block; }
.tw-ft-dl > p { font-size: 13px; color: #0b1019; margin: 4px 0 16px; }
.tw-ft-dl-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 420px;
}
.tw-ft-dl-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: #0500ff;
  border: 1.5px solid #0500ff; border-radius: 999px; padding: 8px 20px;
  height: 36px;
  text-decoration: none; background: transparent; transition: background .2s, color .2s;
  white-space: nowrap;
  min-width: 0;
}
.tw-ft-dl-btn:hover { background: #0500ff; color: #fff; }
.tw-ft-dl-btn svg, .tw-ft-dl-btn img { flex-shrink: 0; height: 18px; width: auto; }

/* Child 4 — Brand (col 1, rows 1-3) */
.tw-ft-brand {
  grid-column: 1;
  grid-row: 1 / 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-right: 40px;
  width: 180px;
}
.tw-ft-brand-text {
  width: 130px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.tw-ft-brand-shield {
  width: 140px;
  height: auto;
  margin: 8px auto 0;
  display: block;
}

/* Mobile / tablet */
@media (max-width: 1024px) {
  .tw-ft {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    border-radius: 20px;
    padding: 32px 24px;
    margin: 0 16px 32px;
    gap: 32px;
  }
  .tw-ft-social,
  .tw-ft-nav,
  .tw-ft-dl,
  .tw-ft-brand {
    grid-column: 1;
    grid-row: auto;
  }
  .tw-ft-brand { order: -1; flex-direction: column; align-items: center; gap: 0; padding-right: 0; width: auto; }
  .tw-ft-brand-text { width: 110px; }
  .tw-ft-brand-shield { width: 110px; margin-top: 6px; }
  .tw-ft-nav { grid-template-columns: repeat(3, 1fr); gap: 20px 16px; }
  .tw-ft-social { margin-left: 0; align-items: center; }
  .tw-ft-dl { text-align: center; }
  .tw-ft-dl-grid { max-width: 100%; }
  .tw-ft-col a { word-break: break-word; overflow-wrap: anywhere; }
}
@media (max-width: 640px) {
  .tw-ft-nav { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .tw-ft-dl-grid { flex-direction: column; }
  .tw-ft-dl-btn { width: 100%; white-space: normal; text-align: center; line-height: 1.3; height: auto; min-height: 36px; padding: 8px 14px; }
  .tw-ft-col a { word-break: break-word; overflow-wrap: anywhere; }
  .tw-ft-socials { justify-content: center; }
}

/* ── Header mobile fix: logo must not be covered by buttons ── */
@media (max-width: 640px) {
  .Header_header__xuTiO {
    grid-template-columns: auto 1fr auto;
    gap: 6px;
  }
  /* Logo: fixed size, never shrinks */
  .Header_left__tzwQt {
    flex-shrink: 0;
    min-width: 0;
    width: auto;
  }
  .Header_left__tzwQt .tw-brand__mark {
    width: 90px;
    height: auto;
  }
  /* Right side: don't overflow */
  .Header_right__K26RG {
    flex-shrink: 1;
    min-width: 0;
    gap: 6px;
    justify-content: flex-end;
  }
  /* Language button: show only globe icon, hide "Language" text */
  .LanguageSelector_trigger__ncDxy {
    padding: 0 10px;
    min-height: 36px;
    gap: 4px;
    min-width: 36px;
  }
  .LanguageSelector_trigger__ncDxy .LanguageSelector_code__8ojbC {
    display: none;
  }
  /* CTA button: compact */
  .Header_cta__Hu23Q {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
    white-space: nowrap;
  }
}

@media (max-width: 380px) {
  .Header_left__tzwQt .tw-brand__mark {
    width: 72px;
  }
  .Header_cta__Hu23Q {
    padding: 0 10px;
    font-size: 11px;
  }
}

/* =========================================================
   Issue Card modal (3 steps: issue → review → connect)
   ========================================================= */
.iss-modal .iss-panel {
  width: min(100%, 460px);
  max-height: min(94vh, 760px);
  padding: 0 0 18px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
}
.iss-head {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  padding: 16px 16px 14px;
  border-bottom: 0;
  position: sticky;
  top: 0;
  background: #fff;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  z-index: 2;
}
.iss-icon-btn {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #0f172a;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease;
}
.iss-icon-btn:hover {
  background: #f1f5f9;
}
.iss-icon-btn[hidden] {
  visibility: hidden;
  display: inline-flex;
}
.iss-title {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  text-align: center;
  color: #0f172a;
  letter-spacing: -0.01em;
}
.iss-step {
  padding: 6px 20px 8px;
  overflow-y: auto;
}
.iss-subtitle {
  margin: 4px 4px 16px;
  font-size: 14px;
  color: #64748b;
  text-align: center;
  line-height: 1.5;
}

/* —— Step 1: card options —— */
.iss-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.iss-opt {
  position: relative;
  display: grid;
  grid-template-columns: 88px 1fr 28px;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1.5px solid #eef2f6;
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.iss-opt:hover {
  border-color: rgba(5, 0, 255, 0.25);
}
.iss-opt.is-selected {
  border-color: #4f46e5;
  background: #f6f5ff;
  box-shadow: 0 6px 24px rgba(79, 70, 229, 0.08);
}
.iss-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.iss-card {
  position: relative;
  display: block;
  width: 88px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
  font-family: "Wix Madefor Display", system-ui, sans-serif;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}
.iss-card--white {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  color: #0f172a;
  border: 1px solid #e2e8f0;
}
.iss-card--white .iss-card__brand,
.iss-card--white .iss-card__num {
  color: #0f172a;
}
.iss-card--white .iss-card__sub {
  color: #475569;
  opacity: 0.85;
}
.iss-card--white .iss-card__chip {
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  border-color: rgba(15, 23, 42, 0.15);
}
.iss-card--blue {
  background: linear-gradient(135deg, #4f46e5 0%, #312e81 100%);
}
.iss-card--metal {
  background: linear-gradient(135deg, #1f2937 0%, #0f172a 100%);
}
.iss-card__brand {
  position: absolute;
  top: 7px;
  left: 8px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: flex;
  align-items: baseline;
  gap: 3px;
  color: #fff;
}
.iss-card__sub {
  font-size: 6px;
  font-weight: 500;
  opacity: 0.78;
  letter-spacing: 0.6px;
}
.iss-card__chip {
  position: absolute;
  left: 8px;
  bottom: 18px;
  width: 14px;
  height: 10px;
  border-radius: 2px;
  background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0.15));
  border: 1px solid rgba(255,255,255,0.35);
}
.iss-card__num {
  position: absolute;
  bottom: 6px;
  left: 8px;
  font-size: 8px;
  letter-spacing: 1.2px;
  font-weight: 600;
  color: #fff;
  opacity: 0.92;
}
.iss-opt__info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.iss-opt__name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
}
.iss-opt__badge {
  font-size: 12px;
  font-weight: 700;
  color: #4f46e5;
}
.iss-opt__desc {
  font-size: 13px;
  line-height: 1.4;
  color: #64748b;
}
.iss-opt__radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid #cbd5e1;
  background: #fff;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.iss-opt.is-selected .iss-opt__radio {
  background: #4f46e5;
  border-color: #4f46e5;
}
.iss-opt.is-selected .iss-opt__radio::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* —— Card image thumbnail in modal —— */
.iss-card-img {
  width: 88px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f1f5f9;
}
.iss-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.iss-opt__price {
  font-size: 14px;
  font-weight: 800;
  color: #4f46e5;
  background: #ede9fe;
  padding: 2px 10px;
  border-radius: 999px;
}

/* —— Promo banner (Spotify + Netflix) —— */
.iss-promo {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, #111827 0%, #4c1d95 48%, #16a34a 100%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 18px 42px rgba(76, 29, 149, 0.28);
  overflow: hidden;
}
.iss-promo::after {
  content: "PROMO";
  position: absolute;
  top: 8px;
  right: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.9px;
}
.iss-promo__icons {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.iss-promo__icons img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  padding: 5px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}
.iss-promo__text {
  padding-right: 52px;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
}

/* —— Primary CTA button (used on all 3 steps) —— */
.iss-primary {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 14px 20px;
  margin-top: 8px;
  border: 0;
  border-radius: 999px;
  background: #2400ff;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(36, 0, 255, 0.28);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.iss-primary:hover {
  background: #1a00d9;
  box-shadow: 0 16px 36px rgba(36, 0, 255, 0.32);
  transform: translateY(-1px);
}
.iss-primary:active {
  transform: translateY(0);
}
.iss-primary__arrow {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
}

/* —— Step 2: review —— */
.iss-ready {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 6px auto 4px;
  width: 100%;
  justify-content: center;
}
.iss-ready__title {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}
.iss-ready__sub {
  margin: 0 0 16px;
  font-size: 14px;
  color: #64748b;
  text-align: center;
}
.iss-summary {
  margin: 0 0 18px;
  padding: 6px 16px;
  border: 1px solid #eef2f6;
  border-radius: 16px;
  background: #fff;
}
.iss-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 15px;
}
.iss-summary__row:last-child {
  border-bottom: 0;
}
.iss-summary__row dt {
  margin: 0;
  color: #64748b;
  font-weight: 500;
}
.iss-summary__row dd {
  margin: 0;
  color: #0f172a;
  font-weight: 700;
}
.iss-summary__free {
  color: #10b981 !important;
}
.iss-perks-title {
  margin: 0 0 10px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: #94a3b8;
}
.iss-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.iss-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 12px;
  border: 1px solid #e8eef6;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  color: #0f172a;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}
.iss-perk--promo {
  border-color: rgba(34, 197, 94, 0.45);
  background: linear-gradient(135deg, #ecfdf5 0%, #f5f3ff 100%);
  box-shadow: 0 12px 28px rgba(34, 197, 94, 0.12);
}
.iss-perk__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  line-height: 1.2;
}
.iss-perk__copy strong {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
}
.iss-perk__copy small {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
}
.iss-perk__icon {
  font-size: 16px;
  line-height: 1;
}

/* —— Step 3: connect wallet —— */
.iss-stages {
  list-style: none;
  margin: 4px 0 14px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.iss-stages__item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  justify-content: center;
}
.iss-stages__item.is-active {
  background: #ede9fe;
  color: #4f46e5;
}
.iss-stages__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.iss-wallet-hero {
  position: relative;
  width: 84px;
  height: 84px;
  margin: 18px auto 12px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ede9fe 0%, #f5f3ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(91, 61, 245, 0.12);
}
.iss-wallet-hero__signal {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #5b3df5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(91, 61, 245, 0.4);
}
.iss-connect-desc {
  margin: 0 0 18px;
  text-align: center;
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}
.iss-connect-foot {
  margin: 12px 0 0;
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
}

/* —— Adaptive: tablet/mobile —— */
@media (max-width: 480px) {
  .iss-modal { padding: 12px; }
  .iss-modal .iss-panel {
    width: 100%;
    max-height: 96vh;
    border-radius: 20px;
  }
  .iss-head { padding: 14px 12px 10px; }
  .iss-title { font-size: 17px; }
  .iss-step { padding: 4px 14px 6px; }
  .iss-subtitle { font-size: 13px; }
  .iss-opt {
    grid-template-columns: 72px 1fr 24px;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
  }
  .iss-card { width: 72px; height: 46px; }
  .iss-card__brand { font-size: 7px; top: 5px; left: 6px; }
  .iss-card__sub { font-size: 5px; }
  .iss-card__chip { width: 12px; height: 8px; left: 6px; bottom: 16px; }
  .iss-card__num { font-size: 7px; left: 6px; bottom: 5px; }
  .iss-opt__name { font-size: 15px; }
  .iss-opt__desc { font-size: 12px; }
  .iss-perks { grid-template-columns: 1fr; }
  .iss-primary {
    min-height: 50px;
    font-size: 15px;
    padding: 12px 18px;
  }
  .iss-summary__row { font-size: 14px; padding: 10px 0; }
  .iss-stages__item { font-size: 11px; padding: 7px 8px; }
}
@media (max-width: 360px) {
  .iss-opt {
    grid-template-columns: 1fr 22px;
    grid-template-areas:
      "card radio"
      "info info";
  }
  .iss-opt .iss-card { grid-area: card; width: 76px; }
  .iss-opt .iss-opt__radio { grid-area: radio; align-self: start; margin-top: 4px; }
  .iss-opt .iss-opt__info { grid-area: info; }
  .iss-stages__item span:last-child {
    display: none;
  }
  .iss-stages__item {
    justify-content: center;
  }
  .iss-stages__item.is-active span:last-child { display: inline; }
}

/* ── Global: prevent horizontal overflow on mobile ── */
.LandingPage_page__Py6p3,
.LandingPage_main__b5hGS {
  overflow-x: hidden;
}
.CtaFooterSection_wrapper__e20ie,
.tw-ft {
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

/* ── CTA section mobile fixes ── */
@media (max-width: 640px) {
  .CtaFooterSection_box__qN6_7 {
    padding: 28px 16px;
    gap: 24px;
  }
  .CtaFooterSection_title__gyN7q {
    font-size: 22px;
    word-break: break-word;
  }
  .CtaFooterSection_description__omH5t {
    font-size: 14px;
    word-break: break-word;
  }
  .CtaFooterSection_image__3DojY img {
    max-width: 100%;
    height: auto;
  }
  .tw-ft {
    padding: 24px 16px;
    margin: 0 8px 24px;
    border-radius: 16px;
  }
  .tw-ft-brand-text { width: 90px; }
  .tw-ft-brand-shield { width: 90px; }
  .tw-ft-social h5 { font-size: 14px; text-align: center; }
  .tw-ft-socials { justify-content: center; }
}

@media (max-width: 380px) {
  .CtaFooterSection_box__qN6_7 {
    padding: 20px 12px;
  }
  .CtaFooterSection_title__gyN7q {
    font-size: 20px;
  }
  .tw-ft {
    padding: 20px 12px;
    margin: 0 4px 20px;
  }
  .tw-ft-nav { grid-template-columns: 1fr; gap: 16px; }
  .tw-ft-dl-btn { font-size: 12px; padding: 6px 10px; }
}

/* ── Hero: desktop — 3 children in 2-col grid ── */
.tw-hero-container.shared_container__HLW1U {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 32px 60px;
  align-items: center;
}
.tw-hero-text {
  grid-column: 1;
  grid-row: 1;
}
.HeroSection_media__aqBSh {
  grid-column: 2;
  grid-row: 1 / 3;
}
.tw-hero-desc {
  grid-column: 1;
  grid-row: 2;
}
.tw-hero-promo {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 14px 18px 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 22px;
  background: linear-gradient(135deg, #101827 0%, #4c1d95 48%, #16a34a 100%);
  color: #fff;
  line-height: 1.25;
  box-shadow: 0 22px 55px rgba(76, 29, 149, 0.28);
  overflow: hidden;
}
.tw-hero-promo::before {
  content: "";
  position: absolute;
  inset: -45% auto auto 35%;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  pointer-events: none;
}
.tw-hero-promo__badge {
  position: relative;
  z-index: 1;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
}
.tw-hero-promo__logos,
.tw-hero-payments__logos {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tw-hero-promo__logos {
  position: relative;
  z-index: 1;
}
.tw-hero-promo__logos img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  padding: 5px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}
.tw-hero-promo__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tw-hero-promo__copy strong {
  font-size: 14px;
  font-weight: 900;
}
.tw-hero-promo__copy small {
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 700;
}
.tw-hero-payments {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
}
.tw-hero-payments__logos img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  padding: 7px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}
.tw-hero-video {
  display: block;
  max-width: 100%;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.24);
  object-fit: cover;
  overflow: hidden;
}
.iss-perk__logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

/* ── Hero mobile reorder: title+button → video → description ── */
@media (max-width: 1024px) {
  .tw-hero-container.shared_container__HLW1U {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    padding-top: 25px;
  }
  /* 1. Title + issue button */
  .tw-hero-text {
    order: 1;
    text-align: center;
    width: 100%;
  }
  .tw-hero-promo {
    justify-content: center;
    width: 100%;
    border-radius: 22px;
    margin-bottom: 16px;
    text-align: left;
  }
  .tw-hero-promo__badge {
    display: none;
  }
  .tw-hero-payments {
    align-items: center;
    margin-top: 16px;
  }
  .tw-hero-payments__logos {
    justify-content: center;
    flex-wrap: wrap;
  }
  /* 2. Video */
  .HeroSection_media__aqBSh {
    order: 2;
    width: 100%;
  }
  /* 3. Description under video */
  .tw-hero-desc {
    order: 3;
    max-width: 100%;
    text-align: center;
  }
  /* Hide buttons block on mobile (only video CTA remains in header) */
  .tw-hero-text .HeroSection_actions___d9Iz {
    display: none;
  }
}

