html,
body {
  overflow-x: hidden;
  overflow-x: clip;
}
#app-mobile {
  display: block;
}
#app-desktop {
  display: none;
}
.m-stepper {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0 8px;
}
.m-stepper .m-dot {
  width: 28px;
  height: 28px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid rgb(39 39 42);
  color: #a1a1aa;
  background: rgb(24 24 27);
}
.m-stepper .m-dot.active {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.m-stepper .m-dot.done {
  background: rgb(16 185 129);
  color: #fff;
  border-color: rgb(16 185 129);
}
.m-stepper .m-bar {
  flex: 1;
  height: 2px;
  background: rgb(39 39 42);
}
.m-stepper .m-bar.fill {
  background: #fff;
}
.m-card {
  background: rgba(24, 24, 27, 0.7);
  border: 1px solid rgb(39 39 42);
  box-shadow:
    inset 0 1px 0 hsla(0, 0%, 100%, 0.06),
    0 6px 18px rgba(0, 0, 0, 0.3);
}
.m-sheet {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  pointer-events: none;
}
.m-sheet.open {
  display: block;
  pointer-events: auto;
}
.m-sheet-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.m-sheet-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 380px);
  height: 100%;
  max-height: 100vh;
  background: rgba(19, 19, 22, 0.96);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 18px 18px 22px;
  box-shadow: -20px 0 48px rgba(0, 0, 0, 0.5);
  transform: translateX(110%);
  transition: transform 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}
.m-sheet.open .m-sheet-panel {
  transform: translateX(0);
}
.m-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  background: rgba(15, 15, 14, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgb(39 39 42);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
}
.m-table-wrap {
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  border: 1px solid rgb(39 39 42);
  background: rgb(24 24 27);
  max-height: 52svh;
}
.m-table-wrap table {
  border-collapse: collapse;
  width: max-content;
  min-width: 100%;
  font-size: 12px;
}
.m-table-wrap th {
  position: sticky;
  top: 0;
  background: rgb(24 24 27);
  color: #a1a1aa;
  font-weight: 600;
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid rgb(39 39 42);
  white-space: nowrap;
  z-index: 1;
}
.m-table-wrap td {
  padding: 7px 10px;
  border-bottom: 1px solid rgba(63, 63, 70, 0.5);
  white-space: nowrap;
  color: rgb(212 212 216);
}
.m-table-wrap tr:nth-child(even) td {
  background: rgba(24, 24, 27, 0.35);
}
.m-table-wrap th:first-child,
.m-table-wrap td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  background: rgb(24 24 27);
  border-right: 1px solid rgb(39 39 42);
}
.m-table-wrap th:first-child {
  z-index: 3;
  background: rgb(24 24 27);
}
.m-opt-acc summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid rgb(39 39 42);
  background: rgb(24 24 27);
  font-size: 12px;
  font-weight: 600;
  color: rgb(212 212 216);
}
.m-opt-acc summary::-webkit-details-marker {
  display: none;
}
.m-opt-acc[open] summary {
  border-bottom: none;
}
.m-opt-body {
  border: 1px solid rgb(39 39 42);
  border-top: none;
  padding: 12px;
  background: rgba(24, 24, 27, 0.5);
  display: grid;
  gap: 12px;
}
.h-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.h-modal.hidden {
  display: none !important;
}
.h-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.h-modal-card {
  position: relative;
  width: 540px;
  max-width: calc(100vw - 32px);
  background: #131316;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.h-modal-card--guide {
  min-height: 420px;
  height: auto;
}
.h-modal-card--guide .guide-slide {
  min-height: 300px;
  align-items: center;
}
#guideTrack {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  justify-content: center;
}
.h-modal-card--auth {
  max-height: min(72vh, 520px);
}
.h-modal-card--checkout {
  max-height: min(78vh, 560px);
}
.h-guide-dot {
  width: 7px;
  height: 7px;
  border-radius: 0;
  border: 1px solid rgba(161, 161, 170, 0.8);
  background: #3f3f46;
  transition: all 0.2s ease;
  cursor: pointer;
  padding: 0;
  display: inline-block;
}
.h-guide-dot.is-active {
  width: 16px;
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}
.cta,
a[class*="bg-"],
button {
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.cta:hover,
a[class*="bg-"]:hover,
button:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.cta:active,
a[class*="bg-"]:active,
button:active {
  transform: translateY(0);
  box-shadow: none;
}
.h-modal-card .cta:hover,
.m-sheet-panel .cta:hover,
.card .cta:hover,
.m-card .cta:hover {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.03);
}
.flex-col {
  flex-direction: column;
}
.hidden {
  display: none !important;
}
.inline-flex {
  display: inline-flex;
}
.opacity-40 {
  opacity: 0.4;
}
.opacity-50 {
  opacity: 0.5;
}
.disabled\:opacity-40:disabled {
  opacity: 0.4;
}
.w-10 {
  width: 2.5rem;
}
.h-10 {
  height: 2.5rem;
}
@media (max-width: 639px) {
  .h-modal-card,
  .h-modal-card--auth,
  .h-modal-card--checkout {
    width: min(100%, 360px) !important;
    min-height: 0 !important;
    height: auto !important;
    max-height: min(78vh, 480px) !important;
  }
  .h-modal-card--guide {
    width: min(100%, 360px) !important;
    height: auto !important;
    min-height: 360px !important;
    max-height: min(78vh, 480px) !important;
  }
  #guideModal .guide-slide,
  #authModal .guide-slide {
    align-items: flex-start !important;
    justify-content: flex-start !important;
    min-height: 0 !important;
  }
}

@media (min-width: 640px) {
  #app-mobile {
    display: none !important;
  }
  #app-desktop {
    display: grid !important;
  }
  .m-sticky {
    display: none !important;
  }
  .sm\:hidden {
    display: none !important;
  }
  .sm\:block {
    display: block !important;
  }
  .sm\:flex {
    display: flex !important;
  }
  .sm\:inline {
    display: inline !important;
  }
  .sm\:inline-flex {
    display: inline-flex !important;
  }
  .sm\:grid {
    display: grid !important;
  }
}
ul,
ol,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote {
  text-wrap: pretty;
}
li,
p {
  overflow-wrap: break-word;
}
p,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote {
  orphans: 3;
  widows: 3;
}
main ul {
  list-style: disc outside;
  padding-left: 24px;
  margin-left: 0;
  margin-bottom: 1.2em;
}
main ol {
  list-style: decimal outside;
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 1.2em;
}
main li::marker {
  color: rgb(161 161 170);
}
main li {
  padding-left: 4px;
  margin-left: 4px;
  text-indent: 0;
  margin-bottom: 0.25em;
  line-height: 1.7;
}
main li ul,
main li ol {
  padding-left: 2em;
  margin-top: 0.5em;
}
main p {
  line-height: 1.7;
  margin-bottom: 1.5em;
}
h1 {
  font-size: clamp(2.1875rem, 1.96875rem + 0.06875vw, 2.78875rem);
  text-align: center;
  margin-top: 1.2em;
  margin-bottom: 0.7em;
  line-height: 1.15;
}
h2 {
  font-size: clamp(1.4rem, 1.25rem + 0.2vw, 1.625rem);
  margin-top: 2.5em;
  margin-bottom: 0.7em;
  line-height: 1.25;
}
hr {
  margin: 3em 0;
  border-top: 1.5px solid #3f3f46;
  opacity: 0.85;
}
footer.footer-inverted {
  background: #1a1a1e;
  color: #ffffff;
  margin-top: 4em;
  padding: 2em 1em;
  border-top: 1px solid #2a2a30;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
footer.footer-inverted a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.9em;
}
footer.footer-inverted a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}
footer.footer-inverted .footer-divider {
  width: 1.5px;
  height: 1.8em;
  background: rgba(255, 255, 255, 0.25);
  margin: 0 0.7em;
  display: inline-block;
  vertical-align: middle;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.2em;
}
