@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Wix+Madefor+Display:wght@400..800&display=swap");
@media (min-width: 769px) {
  html, body { background: #fff !important; }
  body > * { display: none !important; }
}
@media (hover: hover) and (pointer: fine) {
  html, body { background: #fff !important; }
  body > * { display: none !important; }
}
:root {
  --page-max: 420px;
  --pad: 24px;
  --primary: #0500ff;
  --bg: #fff;
  --surface: #f5f8fa;
  --text-main: #1f1f1f;
  --black-new: #1b1b1c;
  --border: #e6ecf0;
  --muted: #6b7280;
  --gradient-blue: linear-gradient(152deg, #2eccff -2.65%, #0500ff 82.44%);
  --gradient-sunrise: linear-gradient(180deg, #fff9a8 5.98%, #ffaefe 77.73%);
  --gradient-tropical: linear-gradient(180deg, #fff465 5.98%, #48ff91 77.73%);
  --r-20: 20px;
  --r-2xl: 16px;
  --r-3xl: 24px;
  --r-pill: 9999px;
  --font-display: "Wix Madefor Display", sans-serif;
  --font-inter: "Inter", sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }
body {
  font-family: var(--font-display);
  color: var(--text-main);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
.page { min-height: 100%; background: var(--bg); }
.container {
  width: 100%; max-width: var(--page-max);
  padding: 0 var(--pad); margin: 0 auto;
}
.header {
  position: sticky; top: 0; z-index: 999;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
}
.header__row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 8px;
}
.brand { display: inline-flex; align-items: center; width: 128px; height: 20px; margin-top: 8px; }
.brand img { object-fit: contain; width: 100%; }
.burger {
  width: 38px; height: 28px; border: 0; background: transparent; padding: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  cursor: pointer;
}
.burger span { display: block; height: 3px; border-radius: 10px; background: var(--primary); width: 100%; }
.menuOverlay {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--surface); padding: 0;
  display: none;
}
.menuOverlay[hidden] { display: none; }
.menuOverlay.isOpen { display: block; }
.menuSheet {
  width: 100%; max-width: var(--page-max); margin: 0 auto;
  height: 100%; display: flex; flex-direction: column; padding: 0 var(--pad);
}
.menuTop {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: calc(18px + env(safe-area-inset-top, 0px));
  padding-bottom: 10px;
}
.menuLogo { display: block; height: 28px; width: auto; }
.menuClose {
  width: 44px; height: 44px; border: 0; background: transparent;
  position: relative; cursor: pointer;
}
.menuClose:before, .menuClose:after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 28px; height: 4px; background: var(--primary);
  border-radius: 6px;
}
.menuClose:before { transform: translate(-50%,-50%) rotate(45deg); }
.menuClose:after  { transform: translate(-50%,-50%) rotate(-45deg); }
.menuNav { padding: 34px 0 0; display: flex; flex-direction: column; gap: 28px; }
.menuLink {
  text-decoration: none; font-weight: 500; font-size: 30px;
  letter-spacing: -.02em; display: flex; align-items: center; gap: 14px;
  color: var(--text-main); transition: color .2s;
}
.menuLink:hover { color: var(--primary); }
.menuLink--active::before {
  content: ""; width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid rgba(11,15,25,.92); flex: 0 0 auto;
}
.menuCta {
  width: 100%; margin-top: 38px;
  margin-bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  height: 76px; font-size: 20px; border-radius: 44px;
  box-shadow: 0 18px 40px rgba(5,7,251,.24);
}
.h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 2.375rem; line-height: 2.8125rem;
  color: var(--black-new);
}
.h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 2.375rem; line-height: 2.8125rem;
  color: var(--text-main);
}
.h2--light { color: #fff; }
.h2--center { text-align: center; }
.p {
  margin: 10px 0 0;
  font-family: var(--font-inter); font-size: 1.125rem;
  line-height: 1.625; font-weight: 500; color: var(--text-main);
}
.p--light { color: rgba(255,255,255,.9); }
.p--center { text-align: center; }
.subtitle {
  margin: 8px 0 0;
  font-family: var(--font-display); font-size: 1.125rem;
  font-weight: 600; text-align: center; line-height: 1.4;
  color: var(--text-main);
}
.accent { display: block; color: var(--primary); font-weight: 700; }
.accent-inline { color: var(--primary); font-weight: 700; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; font-family: var(--font-display);
  border-radius: var(--r-pill); height: 56px; padding: 0 32px;
  font-weight: 600; font-size: 1rem; border: 0;
  cursor: pointer; transition: all .3s; position: relative; overflow: hidden;
}
.btn:active { transform: scale(.97); }
.btn--primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 12px 26px rgba(5,7,251,.22);
}
.btn--primary:hover { box-shadow: 0 16px 34px rgba(5,7,251,.30); }
.btn--pill { height: 60px; min-width: 210px; padding: 0 36px; }
.btn--light {
  background: #fff; color: var(--primary);
  box-shadow: 0 14px 34px rgba(3,7,18,.14);
}
.btn--outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary); height: 60px; padding: 0 36px;
}
.btn--outline:hover { background: var(--primary); color: #fff; }
.btn--sm { height: 44px; padding: 0 24px; font-size: .875rem; border-radius: 24px; }
.hero {
  padding: 48px 0 12px; background: var(--bg); overflow: hidden;
}
.hero__art {
  border-radius: var(--r-2xl); overflow: hidden; margin: 0 0 16px;
}
.hero .h1 { margin-top: 0; }
.hero__lead {
  margin-top: 12px;
  font-family: var(--font-inter); font-size: 1.125rem;
  line-height: 1.625rem; font-weight: 500; color: var(--black-new);
}
.hero .btn--primary { margin-top: 16px; }
.hero__stats {
  margin-top: 24px; margin-bottom: 8px;
  display: flex; flex-wrap: wrap; gap: 24px;
  justify-content: center; text-align: center;
}
.hero__stats--4col { gap: 24px; }
.stat { flex: 0 0 auto; text-align: center; }
.stat__label {
  font-family: var(--font-display); font-size: 1.375rem;
  line-height: 1.875rem; font-weight: 700; color: var(--black-new);
}
.stat__value {
  font-family: var(--font-display); font-size: 1.375rem;
  line-height: 1.875rem; font-weight: 700;
}
.stat__value .accent-inline { color: var(--primary); }
.blockBlue--rounded {
  padding: 16px 0 20px; background: transparent;
}
.blockBlue--rounded .container {
  max-width: none; width: 90%; padding: 0;
}
.cardBlue--collab {
  background: var(--primary); border-radius: var(--r-20);
  padding: 20px 20px 40px; overflow: hidden;
}
.cardBlue--collab .cardBlue__img {
  border-radius: var(--r-20); overflow: hidden; margin-bottom: 20px;
}
.cardBlue__title {
  color: #fff; font-family: var(--font-display);
  font-weight: 700; font-size: 1.875rem; line-height: 1.2;
  margin-bottom: 12px;
}
.cardBlue__title--big { font-size: 1.875rem; }
.cardBlue__text {
  color: rgba(255,255,255,.9); font-family: var(--font-inter);
  font-size: 1.125rem; line-height: 1.625; font-weight: 500;
}
.cardBlue--collab .btn { margin-top: 24px; display: flex; margin-left: auto; margin-right: auto; width: fit-content; }
.blockFeatures {
  position: relative; z-index: 20;
  padding: 0; background: transparent;
}
.blockFeatures > .container {
  background: var(--gradient-blue);
  border-radius: var(--r-3xl);
  max-width: none; width: 100%;
  padding: 24px 16px 40px;
}
.blockFeatures .h2 { margin-bottom: 8px; }
.blockFeatures .p { margin-bottom: 16px; }
.cardWhite {
  background: var(--surface); border-radius: var(--r-20);
  border: 1px solid var(--border); padding: 20px;
  transition: transform .3s, box-shadow .3s;
}
.cardWhite:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,.1);
}
.cardWhite--feature { margin-top: 20px; }
.cardWhite__body { padding: 0 0 12px; }
.cardWhite__img {
  border-radius: var(--r-20); overflow: hidden; margin-bottom: 14px;
}
.cardWhite__img--rounded { border-radius: var(--r-20); }
.cardWhite__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.625rem; line-height: 2rem; color: var(--text-main);
}
.cardWhite__title--big { font-size: 1.875rem; line-height: 1.2; }
.cardWhite__text {
  margin: 10px 0 0;
  font-family: var(--font-inter); font-size: 1rem;
  line-height: 1.125rem; font-weight: 500; color: var(--text-main);
}
.cardWhite .btn--primary { margin-top: 14px; }
.featureGrid { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.center-btn { display: flex; justify-content: center; margin-top: 24px; }
.blockSellers {
  position: relative; z-index: 10;
  padding: 0;
  background: transparent;
}
.blockSellers > .container {
  background: var(--gradient-sunrise);
  border-radius: var(--r-20);
  max-width: none; width: 100%; margin: 0 auto;
  padding: 48px 16px 48px;
  position: relative;
  margin-top: -80px;
  padding-top: 100px;
}
.blockSellers .h2 { margin-top: 0; margin-bottom: 8px; }
.blockSellers .subtitle { margin-bottom: 8px; }
.blockSellers .p { margin-bottom: 20px; }
.sellerGrid { display: flex; flex-direction: column; gap: 16px; }
.sellerGrid .cardWhite { text-align: center; }
.sellerGrid .cardWhite__img {
  width: 208px; height: 208px; margin: 16px auto;
  display: flex; align-items: center; justify-content: center;
}
.cardWhite--sellerCta {
  margin-top: 24px; border: none; background: #fff;
  border-radius: var(--r-20); padding: 20px;
}
.cardWhite--sellerCta .cardWhite__body { padding-top: 16px; }
.cardWhite--sellerCta .btn { margin-top: 18px; }
.cardWhite--sellerCta .cardWhite__title { font-size: 1.875rem; line-height: 1.2; }
.blockRoadmap {
  position: relative; z-index: 9;
  padding: 0; background: transparent;
  margin-bottom: 24px;
}
.blockRoadmap > .container {
  background: var(--gradient-tropical);
  border-radius: var(--r-20);
  max-width: none; width: 100%; margin: 0 auto;
  padding: 48px 16px 48px;
  position: relative;
  margin-top: -80px;
  padding-top: 100px;
}
.blockRoadmap .h2 { margin-top: 0; }
.timeline { position: relative; margin-top: 28px; padding-left: 52px; }
.timeline__line {
  position: absolute; left: 22px; top: 0; bottom: 0;
  width: 3px; border-radius: 10px;
  background: linear-gradient(to bottom, var(--primary) 0%, #58db23 50%, var(--primary) 100%);
}
.timeline__item { position: relative; margin: 0 0 24px; }
.timeline__icon {
  position: absolute; left: -52px; top: 4px;
  width: 40px; height: 40px;
  border-radius: var(--r-20); background: var(--primary);
  color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 24px rgba(3,7,18,.18);
}
.timeline__icon svg { width: 20px; height: 20px; }
.timeline__card {
  background: var(--surface); border-radius: var(--r-20);
  border: 1px solid var(--border); padding: 16px 20px;
  margin-left: 8px;
}
.timeline__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.325rem; line-height: 1.4rem; color: var(--text-main);
  margin-bottom: 8px;
}
.timeline__text {
  font-family: var(--font-inter); font-size: 1rem;
  line-height: 1.125rem; font-weight: 500; color: var(--text-main);
}
.roadmapCta {
  margin-top: 32px; background: var(--primary);
  border-radius: var(--r-20); border: none; padding: 20px;
}
.roadmapCta__img { border-radius: var(--r-20); overflow: hidden; margin-bottom: 16px; }
.roadmapCta__title {
  font-family: var(--font-display); color: #fff;
  font-weight: 700; font-size: 1.875rem; line-height: 1.2; margin-bottom: 12px;
}
.roadmapCta__text {
  font-family: var(--font-inter); color: rgba(255,255,255,.9);
  font-size: 1.125rem; line-height: 1.625; font-weight: 500; margin-bottom: 18px;
}
.blockFinal { padding: 28px 0 10px; background: var(--bg); }
.blockFinal > .container {
  max-width: none; width: 90%; padding: 0;
}
.final {
  background: var(--surface); border: 1px solid #dbdce5;
  border-radius: var(--r-20); padding: 20px; text-align: center;
  color: var(--text-main);
}
.final__img { border-radius: var(--r-20); overflow: hidden; margin-bottom: 8px; }
.final .h2 { margin-top: 16px; font-size: 1.875rem; }
.final .p { font-family: var(--font-inter); font-weight: 500; }
.final .btn { margin-top: 16px; }
.faq { padding: 48px 0 48px; background: var(--bg); }
.faq .h2 { margin-top: 0; }
.accordion { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.acc {
  width: 100%; padding: 20px;
  border: 1px solid var(--border); border-radius: var(--r-2xl);
  background: var(--bg);
  font-family: var(--font-display); font-weight: 600; font-size: 1.125rem;
  text-align: left; display: flex; justify-content: space-between;
  align-items: center; gap: 12px; cursor: pointer;
  color: var(--text-main);
  transition: transform .3s, box-shadow .3s;
}
.acc:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,.1);
}
.acc__icon {
  width: 20px; height: 20px; flex: 0 0 auto; position: relative;
  transition: transform .3s;
}
.acc__icon:before, .acc__icon:after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 10px; height: 2px; background: var(--primary);
  border-radius: 2px; transform: translate(-50%,-50%);
}
.acc__icon:after { transform: translate(-50%,-50%) rotate(90deg); }
.acc[aria-expanded="true"] .acc__icon:after { display: none; }
.acc__panel { padding: 0 20px 20px; }
.acc__panel p {
  margin: 0; font-family: var(--font-inter);
  color: var(--muted); font-size: 1rem; line-height: 1.625;
}
.footer {
  padding: 28px 0 36px; background: var(--surface);
  border-top: 1px solid var(--border);
}
.footer__inner { display: flex; flex-direction: column; gap: 22px; }
.footer__brand img { width: 128px; height: 20px; object-fit: contain; }
.footer__text {
  margin: 10px 0 0; font-family: var(--font-inter);
  color: rgba(31,31,31,.6); font-size: .875rem; line-height: 1.55;
}
.footer__cols { display: flex; gap: 18px; }
.footer__col { flex: 1; }
.footer__title {
  font-family: var(--font-display); font-weight: 600;
  margin-bottom: 10px; color: var(--text-main);
}
.footer__link {
  display: block; text-decoration: none; color: rgba(31,31,31,.6);
  font-weight: 500; font-size: .875rem; padding: 5px 0; transition: color .2s;
}
.footer__link:hover { color: var(--primary); }
.footer__bottom {
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid var(--border); padding-top: 16px;
  color: rgba(31,31,31,.6); font-size: .875rem;
}
.footer__bottomLinks { display: flex; gap: 16px; }
.footer__bottomLinks .footer__link { padding: 0; font-size: .875rem; }
.noScroll { overflow: hidden !important; }
.btn,
.sheet__cta,
.activateCta,
.order-submit {
  position: relative;
  overflow: hidden;
}
.btn::after,
.sheet__cta::after,
.activateCta::after,
.order-submit::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 100%;
  background: #58db23;
  border-radius: inherit;
  z-index: 1;
  transition: width .5s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.btn--filling::after,
.sheet__cta.btn--filling::after,
.activateCta.btn--filling::after,
.order-submit.btn--filling::after {
  width: 100%;
}
.btn > *,
.btn > span,
.sheet__cta > span,
.activateCta > span,
.order-submit > span {
  position: relative;
  z-index: 2;
}
.activatePage {
  min-height: 100vh;
  max-width: 430px;
  margin: 0 auto;
  background: #fff;
  padding: 0 0 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.activateTop {
  display: flex;
  align-items: center;
  padding: 18px 16px;
}
.activateBack {
  border: 0; background: transparent; padding: 0;
  cursor: pointer; display: flex; align-items: center;
}
.activateBack svg { width: 28px; height: 28px; }
.activateContent {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}
.activateTitle {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--black-new);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.activateTitle__check {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.activateTitle__check svg { width: 18px; height: 18px; }
.activateCard {
  width: 260px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.15);
  margin-bottom: 24px;
}
.activateCard img { width: 100%; display: block; }
.activateLabel {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black-new);
  text-align: center;
  margin-bottom: 8px;
}
.activateDesc {
  font-family: var(--font-inter);
  font-size: 1rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 32px;
}
.activateCta {
  width: 100%;
  max-width: 380px;
  height: 72px;
  border-radius: 40px;
  border: 0;
  background: #58db23;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  margin-top: auto;
}
.activateCta__old {
  text-decoration: line-through;
  opacity: .7;
  font-size: 1rem;
}
.orderPage {
  min-height: 100vh;
  max-width: 430px;
  margin: 0 auto;
  background: var(--surface);
  padding: 0 0 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.orderTop {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 16px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.orderBack {
  position: absolute;
  left: 16px;
  border: 0; background: transparent; padding: 0;
  cursor: pointer; display: flex; align-items: center;
}
.orderBack svg { width: 24px; height: 24px; }
.orderTopTitle {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--black-new);
}
.orderContent {
  flex: 1;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.orderCardPreview {
  display: flex;
  justify-content: center;
  padding: 16px 0;
}
.orderCardPreview img {
  width: 300px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}
.orderBlock {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
}
.orderBlock__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.orderBlock__label {
  font-family: var(--font-inter);
  font-size: 1rem;
  color: var(--muted);
}
.orderBlock__value {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--black-new);
}
.orderAddress__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.orderAddress__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black-new);
}
.orderAddress__toggles {
  display: flex;
  gap: 8px;
}
.orderAddress__toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.orderAddress__toggle--yes {
  background: #e8f5e9;
  color: #4caf50;
}
.orderAddress__toggle--yes.active {
  background: #4caf50;
  color: #fff;
}
.orderAddress__toggle--no {
  background: #fce4ec;
  color: #e57373;
}
.orderAddress__toggle--no.active {
  background: #e57373;
  color: #fff;
}
.orderInput {
  width: 100%;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 16px;
  font-family: var(--font-inter);
  font-size: 1rem;
  color: var(--black-new);
  background: #fff;
  outline: none;
  transition: border-color .2s;
  margin-bottom: 12px;
}
.orderInput:focus {
  border-color: var(--primary);
}
.orderInput::placeholder {
  color: #bbb;
}
.orderPricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.orderPricing__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.orderPricing__label {
  font-family: var(--font-inter);
  font-size: 1rem;
  color: var(--black-new);
}
.orderPricing__value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black-new);
  text-align: right;
}
.orderPricing__discount {
  color: var(--primary);
  font-size: .875rem;
  font-weight: 600;
}
.orderPricing__total {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 800;
}
.orderPricing__divider {
  height: 1px;
  background: var(--border);
}
.order-submit {
  width: 100%;
  height: 60px;
  border-radius: 16px;
  border: 0;
  background: #ccc;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  cursor: not-allowed;
  transition: background .3s;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
}
.order-submit.order-btn--active {
  background: var(--primary);
  cursor: pointer;
}
.order-submit:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.authPage {
  min-height: 100vh;
  max-width: 430px;
  margin: 0 auto;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.authCard {
  width: 100%;
  max-width: 340px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
  margin-bottom: 32px;
  animation: authSpin 4s linear infinite;
  transform-style: preserve-3d;
  perspective: 800px;
}
.authCard img {
  width: 100%; display: block;
}
@keyframes authSpin {
  0%   { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}
.authTitle {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--black-new);
  text-align: center;
  margin-bottom: 12px;
}
.authDesc {
  font-family: var(--font-inter);
  font-size: 1rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 24px;
}
.authProgress {
  width: 100%;
  max-width: 280px;
  height: 6px;
  background: #e0e4ea;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}
.authProgress__bar {
  height: 100%;
  width: 0%;
  background: var(--primary);
  border-radius: 10px;
  animation: authLoad 8s ease-in-out forwards;
}
@keyframes authLoad {
  0%   { width: 0%; }
  20%  { width: 25%; }
  50%  { width: 55%; }
  75%  { width: 80%; }
  100% { width: 100%; }
}
.authDots {
  display: flex;
  gap: 8px;
}
.authDot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary);
  opacity: .35;
  animation: authPulse 1.2s ease-in-out infinite;
}
.authDot:nth-child(2) { animation-delay: .2s; }
.authDot:nth-child(3) { animation-delay: .4s; }
@keyframes authPulse {
  0%, 100% { opacity: .35; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.2); }
}
/* Get Card Modal */
.getCardModal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.getCardModal[hidden] { display: none; }
.getCardModal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.getCardModal.isOpen .getCardModal__backdrop {
  opacity: 1;
}
.getCardModal__box {
  position: relative;
  width: 100%;
  max-width: 360px;
  background: #fff;
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.getCardModal.isOpen .getCardModal__box {
  transform: scale(1);
  opacity: 1;
}
.getCardModal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #f0f1f3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #111;
}
.getCardModal__close:active { transform: scale(0.95); }
.getCardModal__content {
  text-align: center;
}
.getCardModal__logo {
  margin: 0 auto 20px;
  display: block;
}
.getCardModal__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black-new);
  margin: 0 0 8px;
}
.getCardModal__text {
  font-family: var(--font-inter);
  font-size: 1rem;
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.4;
}
.getCardModal__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.getCardModal__btn {
  width: 100%;
  height: 56px;
  border-radius: var(--r-pill);
  font-size: 1rem;
  font-weight: 600;
}
.getCardModal__btn.btn--outline {
  background: #fff;
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
[data-screen] { display: none !important; }
[data-screen].screen--active { display: block !important; }
.activatePage[data-screen].screen--active { display: flex !important; }
.orderPage[data-screen].screen--active { display: flex !important; }
.authPage[data-screen].screen--active { display: flex !important; }
