
/* shell */
.section-1kj{ padding:var(--shell-pad,var(--section-gap,40px)) 0 0; }
.section-dense-1yi{ padding:var(--section-gap-dense,16px) 0 0; }
.container-qj{ width:min(var(--shell-cw,var(--container-w,1100px)),calc(100% - var(--space-5))); margin:0 auto; }
.section-1kj:not(.section-dense-1yi) > .container-qj{ background:var(--shell-bg,var(--skin-bg)); border-radius:var(--skin-r); box-shadow:var(--shell-shadow,var(--skin-shadow)); backdrop-filter:var(--shell-blur,blur(var(--skin-blur))); overflow:hidden; }
figure.shot-mobile{ max-width:360px; margin-left:auto; margin-right:auto; border-radius:12px; overflow:hidden; }
figure.shot-mobile img{ max-height:560px; width:100%; object-fit:cover; object-position:top; display:block; }
@media(max-width:600px){ .section-1kj{ padding:var(--shell-pad-mobile,var(--shell-pad)) 0 0; } .section-dense-1yi{ padding:var(--section-gap-dense-mobile,var(--section-gap-dense)) 0 0; } }

/* header J */
/* Header J — split panel: primary-bg brand zone extends to left viewport edge */

.hd-root-313 {
  position: var(--hd-position, relative);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: var(--hd-height, 60px);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s, height .25s;
}

.hd-root-313.hd-scrolled {
  height: calc(var(--hd-height, 60px) - 6px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .35);
  backdrop-filter: blur(10px);
}

.hdInner-at {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  height: 100%;
  /* No left padding: brand provides its own */
  padding: 0 var(--space-4) 0 0;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hd_brand-270 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  color: var(--bg);
  height: 100%;
  padding: 0 var(--space-5) 0 var(--space-4);
  background: var(--primary);
  flex-shrink: 0;
  z-index: 1;
}

/* Primary color band extending to the left viewport edge */
.hd_brand-270::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 0;
  bottom: 0;
  width: 100vw;
  background: var(--primary);
}

/* Diagonal cut between primary and surface zones */
.hd_brand-270::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  width: 22px;
  background: linear-gradient(to bottom right, var(--primary) 50%, transparent 50%);
  pointer-events: none;
}

.hd-logo-2fg { height: calc(var(--hd-height, 64px) - 24px); width: auto; display: block; filter: brightness(0) invert(1); }

.hd_nav-2c4 {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1;
  padding-left: var(--space-3);
}

.hd-nav-link-1ic {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
  white-space: nowrap;
}

.hd-nav-link-1ic:hover { color: var(--fg); }

.hd-cta-1hr {
  margin-left: auto;
  display: inline-block;
  padding: 8px 22px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: var(--radius-1);
  transition: opacity .2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.hd-cta-1hr:hover { opacity: .88; }

.h-actions-2ji {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
  margin-left: auto;
}

.hd-burger-2by {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hd-burger-2by span { display: block; width: 22px; height: 2px; background: var(--fg); border-radius: 2px; transition: transform .25s, opacity .25s; }
.hd-burger-2by.hd-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hd-burger-2by.hd-open span:nth-child(2) { opacity: 0; }
.hd-burger-2by.hd-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.h-mobilenav-2ey {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-4);
  background: var(--surface);
  border-top: 1px solid var(--border);
  gap: var(--space-2);
}

.h-mobilenav-2ey[hidden] { display: none !important; }
.h-mobilenav-2ey .hd-cta-1hr { margin-left: 0; margin-top: var(--space-2); text-align: center; }

@media (max-width: 768px) {
  /* On mobile: restore full-width layout, hide the diagonal pseudo-elements */
  .hdInner-at { padding: 0 var(--space-4) 0 0; }
  .hd_brand-270::before { display: none; }
  .hd_brand-270::after { display: none; }
  .hd_nav-2c4 { display: none; }
  .hd-burger-2by { display: flex; }
}


/* breadcrumbs A */
/* Breadcrumbs A */

.bc-root-118 {
  padding: var(--space-2) var(--space-5);
}

.bc-list-2dw {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.7;
}

.bc-item-14z {
  display: flex;
  align-items: center;
}

.bcLink-130 {
  color: var(--fg);
  text-decoration: none;
}

.bcLink-130:hover {
  color: var(--skin-ac);
}

.bc-sep-1co {
  color: var(--muted);
  margin: 0 6px;
  font-size: 11px;
}

.bc-current-16x {
  color: var(--fg);
}


/* banner C */
/* Banner C — carousel with dots */

.bnRoot-x0 {
  position: relative;
  width: calc(100% - var(--space-5) * 2);
  max-width: var(--container-w, 1100px);
  margin: var(--section-gap, 40px) auto 0;
  overflow: hidden;
  border-radius: var(--skin-r);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .45);
}

.bnRoot-x0::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 */
}

.bn-slide-6x {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}

.bn-slide-6x[data-active] {
  opacity: 1;
  pointer-events: auto;
}

.bnImg-1tn {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.bn-overlay-2u4 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  padding: var(--space-4);
  padding-bottom: 52px; /* room for dots */
  text-align: center;
}

.bn-slide-6x[data-dark="light"]  .bn-overlay-2u4 { background: linear-gradient(to bottom, rgba(0, 0, 0, .12), rgba(0, 0, 0, .28)); }
.bn-slide-6x[data-dark="medium"] .bn-overlay-2u4 { background: linear-gradient(to bottom, rgba(0, 0, 0, .3),  rgba(0, 0, 0, .5));  }
.bn-slide-6x[data-dark="dark"]   .bn-overlay-2u4 { background: linear-gradient(to bottom, rgba(0, 0, 0, .5),  rgba(0, 0, 0, .75)); }

.bn-overlay-2u4[data-align="left"]   { align-items: flex-start; text-align: left; }
.bn-overlay-2u4[data-align="center"] { align-items: center;     text-align: center; }
.bn-overlay-2u4[data-align="right"]  { align-items: flex-end;   text-align: right; }

.b-title-21u {
  margin: 0;
  font-size: clamp(22px, 3.5vw, 46px);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
  line-height: 1.2;
}

.bnLabel-1qq {
  display: inline-block;
  padding: 4px 14px;
  background: var(--skin-btn-bg);
  color: var(--skin-btn-c);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--skin-r);
}

.bnBadge-1sv {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 12px;
  background: var(--skin-btn-bg);
  color: var(--skin-btn-c);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--skin-r);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}

.bnSubtitle-1nk {
  margin: 0;
  font-size: clamp(13px, 1.8vw, 19px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
  line-height: 1.4;
}

.bn-btn-24k {
  display: inline-block;
  padding: 13px 34px;
  background: var(--skin-btn-bg);
  color: var(--skin-btn-c);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: var(--skin-r);
  transition: opacity .2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
}

.bn-btn-24k:hover { opacity: .9; }

.bn-btn-secondary-2dq {
  display: inline-block;
  padding: 10px 24px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: var(--skin-r);
  border: 2px solid rgba(255, 255, 255, 0.65);
  transition: background .2s, border-color .2s;
}

.bn-btn-secondary-2dq:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

.bn-dots-e0 {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.bn-dot-9n {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
  transition: background .25s, transform .25s;
}

.bn-dot-9n[data-active] {
  background: #fff;
  transform: scale(1.35);
}

@media (max-width: 768px) {
  .b-title-21u { font-size: clamp(18px, 3vw, 36px); }
}

@media (max-width: 600px) {
  .bnRoot-x0::before { padding-top: 90%; }
  .b-title-21u { font-size: clamp(17px, 5vw, 26px); }
  .bn-btn-24k { padding: 10px 24px; font-size: 14px; }
  .bn-btn-secondary-2dq { padding: 8px 18px; font-size: 12px; }
  .bnBadge-1sv { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .bn-dot-9n { width: 8px; height: 8px; }
}


/* hero F */
/* Hero F — two-column grid: split title left, intro right */

.hero-root-26c {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.hero_titlemain-2az {
  margin: 0 0 8px;
  font-weight: 900;
  font-size: clamp(26px, 4.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.hero-title-sub-io {
  margin: 0;
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--primary);
}

.heroIntro-2p2 {
  margin: 0;
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.75;
  color: var(--text);
  align-self: center;
}

@media (max-width: 600px) {
  .hero-root-26c { grid-template-columns: 1fr; gap: 16px; }
  .hero_titlemain-2az { font-size: 24px; margin-bottom: 4px; }
  .hero-title-sub-io { font-size: 15px; }
}


/* overview D */
/* Overview D — prose + inline tag badges */

.ovRoot-ku {
  padding: var(--card-pad);
}

.ov-title-a4 {
  margin: 0 0 var(--space-2);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.ov_body-1ku {
  margin: 0 0 var(--space-3);
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.ovTags-2eb {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.ov-tag-11e {
  display: inline-block;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(var(--primary-rgb), .08);
  border: 1px solid rgba(var(--primary-rgb), .18);
  border-radius: var(--radius-1);
  line-height: 1.4;
}


/* bonus A */
/* bonus A — table with accent top bar and primary-colored values */

.btRoot-3h {
  padding: var(--card-pad);
  position: relative;
  overflow: hidden;
}

.btRoot-3h::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  position: absolute;
  top: 0; left: 0; right: 0;
  border-radius: var(--radius-2) var(--radius-2) 0 0;
}

.bt_title-2lt {
  margin: var(--space-2) 0 var(--space-3);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.b-table-s7 {
  width: 100%;
  border-collapse: collapse;
}

.bt-row-1zn:first-child .bt-label-1xh,
.bt-row-1zn:first-child .bt-value-2o2 {
  padding-top: var(--space-3);
}

.bt-row-1zn + .bt-row-1zn .bt-label-1xh,
.bt-row-1zn + .bt-row-1zn .bt-value-2o2 {
  border-top: 1px solid var(--border);
}

.bt-row-1zn:hover .bt-label-1xh,
.bt-row-1zn:hover .bt-value-2o2 {
  background: color-mix(in srgb, var(--primary) 6%, transparent);
}

.bt-label-1xh,
.bt-value-2o2 {
  padding: var(--space-2) 0;
  font-size: 14px;
  line-height: 1.5;
  vertical-align: middle;
  transition: background .15s;
}

.bt-label-1xh {
  color: var(--muted);
  font-weight: 500;
  padding-right: var(--space-3);
  white-space: nowrap;
}

.bt-value-2o2 {
  color: var(--primary);
  font-weight: 700;
  text-align: right;
}

@media (max-width: 600px) {
  .bt-label-1xh, .bt-value-2o2 { font-size: 13px; }
}

.bt_screenshot-195 {
  margin: 28px 0;
  border-radius: var(--radius-1);
  overflow: hidden;
  line-height: 0;
}
.bt_screenshot-195 img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: top;
  display: block;
}


/* prose B */
/* Prose B — wide, generous spacing */

.pr-root-2oc {
  padding: var(--card-pad) calc(var(--card-pad) * 1.5) 0;
}

.pr-h2-ju {
  margin: 0 0 var(--space-4);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--skin-title);
  border-bottom: 2px solid var(--skin-ac);
  padding-bottom: var(--space-2);
}

.p-h3-v1 {
  margin: var(--space-5) 0 var(--space-3);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.pr-p-2ck {
  margin: 0 0 var(--space-4);
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

.prList-2ec {
  margin: 0 0 var(--space-4);
  padding-left: var(--space-5);
}

.pr-li-ez {
  margin-bottom: var(--space-2);
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.pr_table-gg {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 var(--space-4);
  font-size: 15px;
}

.pr_thead-1ii {
  background: color-mix(in srgb, var(--primary) 15%, transparent);
}

.pr-th-1qo {
  padding: var(--space-3);
  text-align: left;
  font-weight: 700;
  color: var(--text);
}

.pr-td-2b8 {
  padding: var(--space-3);
  border-top: 1px solid var(--border);
  color: var(--text);
  line-height: 1.6;
}

.pr-image-321 {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-1);
  margin: var(--space-4) 0;
}


/* providers B */
/* Providers B — horizontal directory rows (logo + bold name) */

.pvRoot-2fy {
  padding: var(--card-pad);
}

.pvTitle-qk {
  margin: 0 0 var(--space-2);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.pv-intro-ms {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.pv-grid-2cy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  overflow: hidden;
}

.p-card-2n4 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-3);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background .15s;
}

.p-card-2n4:nth-child(even) { border-right: none; }
.p-card-2n4:nth-last-child(-n+2) { border-bottom: none; }
.p-card-2n4:hover { background: rgba(var(--primary-rgb), .05); }

.pv-logo-2cd {
  width: 72px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(.9);
}

.pv-name-7l {
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 600px) {
  .pv-grid-2cy { grid-template-columns: 1fr; }
  .p-card-2n4 { border-right: none !important; }
  .p-card-2n4:last-child { border-bottom: none; }
}


/* payments B */
/* Payments B — cards grid */

.p-root-2hm {
  padding: var(--card-pad);
}

.pm_title-1ns {
  margin: 0 0 var(--space-2);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.pmIntro-14 {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.pm-grid-2mu {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-3);
}

.pm-card-vw {
  padding: var(--space-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  background: var(--bg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px var(--space-2);
  align-items: start;
}

.pm-method-2hv {
  grid-column: 1 / -1;
  margin: 0 0 var(--space-1);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.pm-label-hw {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.pmValue-2hb {
  font-size: 13px;
  font-weight: 600;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  text-align: right;
  min-width: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* sticky-banner C */
/* Variant C — тонкий однорядковий sticky банер з таймером
   HTML: bnRoot > bnInner(relative, flex row) > bnLabel + bnTitle + bnTimer + bnCta + bnClose(absolute) */

@keyframes bnSlideUp   { from { transform: translateY(100%); opacity: 0 } to { transform: translateY(0); opacity: 1 } }
@keyframes bnSlideDown { from { transform: translateY(0); opacity: 1 } to { transform: translateY(100%); opacity: 0 } }
@keyframes bnFadeOut   { from { opacity: 1 } to { opacity: 0 } }
@keyframes bnWipeIn  { from { clip-path: inset(0 100% 0 0); opacity: .5 } to { clip-path: inset(0 0 0 0); opacity: 1 } }
@keyframes bnWipeOut { from { clip-path: inset(0 0 0 0); opacity: 1 } to { clip-path: inset(0 100% 0 0); opacity: 0 } }

.bn-root-kd {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
}
.bn-root-kd[hidden] { display: none; }

.bnInner-an {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 48px 10px 16px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-sizing: border-box;
  width: 100%;
}

.b-close-a3 {
  position: absolute;
  top: 50%; right: 12px;
  transform: translateY(-50%);
  background: transparent; border: 0;
  cursor: pointer; color: var(--muted);
  font-size: 16px;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: var(--skin-r);
  transition: color .15s, background .15s;
  line-height: 1;
}
.b-close-a3:hover { color: var(--text); background: rgba(255,255,255,.08); }

.bn-label-bp {
  font-size: 11px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 2px 8px; border-radius: var(--skin-r);
}
.bn_title-h { font-weight: 700; font-size: 14px; }
.bn-timer-2mi {
  font-weight: 800; font-size: 14px;
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
  padding: 1px 8px; border-radius: var(--skin-r);
}
.bn-cta-1e9 {
  padding: 6px 16px; border-radius: var(--skin-r);
  background: var(--skin-btn-bg); color: var(--skin-btn-c);
  font-weight: 800; font-size: 13px;
  text-decoration: none; white-space: nowrap; cursor: pointer;
}

@media (max-width: 600px) {
  .bnInner-an { padding: 10px 42px 10px 12px; gap: 8px; }
  .bn-label-bp { display: none; }
  .bn_title-h { font-size: 13px; }
  .bn-timer-2mi { font-size: 13px; }
  .bn-cta-1e9   { font-size: 12px; padding: 6px 10px; }
  .b-close-a3 { right: 8px; width: 28px; height: 28px; font-size: 16px; }
}


/* mobile B */
/* Mobile B — platform cards (name + badge header + feature bullet list) */

.mb-root-z5 {
  padding: var(--card-pad);
}

.m-title-rp {
  margin: 0 0 var(--space-2);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.mbIntro-k5 {
  margin: 0 0 var(--space-4);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* cards grid */
.mb-cards-1hk {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-3);
}

.mb-card-2zv {
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  background: var(--bg);
  overflow: hidden;
}

.mb-card-head-1dd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding: 10px 14px;
  background: rgba(var(--primary-rgb), .05);
  border-bottom: 1px solid var(--border);
}

.m-platname-2uz {
  font-size: 14px;
  font-weight: 800;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.mb-badge-2ks {
  flex-shrink: 0;
  display: inline-block;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--primary);
  background: rgba(var(--primary-rgb), .12);
  border-radius: 99px;
}

.mb_featurelist-1y5 {
  list-style: none;
  margin: 0;
  padding: var(--space-2) var(--space-3) var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mb-feature-item-2y {
  font-size: 13px;
  color: var(--text);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}

.mb-feature-item-2y::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}


/* support A */
/* Support A — full table */

.s-root-mf {
  padding: var(--card-pad);
}

.sp-title-2bv {
  margin: 0 0 var(--space-2);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.spIntro-xj {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.sp-table-231 {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.sp_thead-2jf {
  border-bottom: 2px solid var(--border);
}

.sp_th-21r {
  text-align: left;
  padding: var(--space-2) var(--space-2);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
}

.s-td-4r {
  padding: var(--space-2);
  color: var(--text);
  line-height: 1.5;
}

.sp-row-1n5 + .sp-row-1n5 .s-td-4r {
  border-top: 1px solid var(--border);
}

.sp-channel-4i {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

@media (max-width: 580px) {
  .sp-table-231, .sp_thead-2jf, .sp-row-1n5, .s-td-4r, .sp_th-21r {
    display: block;
    width: 100%;
  }
  .sp_thead-2jf { display: none; }
  .sp-row-1n5 + .sp-row-1n5 { margin-top: var(--space-2); }
  .sp-row-1n5 + .sp-row-1n5 .s-td-4r { border-top: none; }
  .sp-row-1n5 { border: 1px solid var(--border); border-radius: var(--radius-1); padding: var(--space-2); }
  .s-td-4r { padding: 2px 0; }
  .s-td-4r::before { font-size: 11px; color: var(--muted); text-transform: uppercase; display: block; }
  .sp-row-1n5 .s-td-4r:nth-child(2)::before { content: "Languages"; }
  .sp-row-1n5 .s-td-4r:nth-child(3)::before { content: "Hours"; }
}

.sp_screenshot-ev {
  margin: 28px 0;
  border-radius: var(--radius-1);
  overflow: hidden;
  line-height: 0;
}
.sp_screenshot-ev img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: top;
  display: block;
}


/* security B */
/* Security B — compact inline banner */

.sc-root-nm {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: rgba(var(--primary-rgb), .06);
  border: 1px solid rgba(var(--primary-rgb), .18);
  border-radius: var(--radius-2);
}

.sc-badge-1rx {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--bg);
  background: var(--primary);
  border-radius: 999px;
  line-height: 1.4;
}

.sc-title-1o0 {
  font-size: 14px;
  font-weight: 700;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.sc-body-322 {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}


/* license B */
/* License B — cards grid */

.lcRoot-248 {
  padding: var(--card-pad);
}

.lc-title-1di {
  margin: 0 0 var(--space-2);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.lcIntro-342 {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.l-grid-1lc {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-3);
}

.lc-card-2wu {
  padding: var(--space-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  background: var(--bg);
}

.lc-reg-2iy {
  display: block;
  margin: 0 0 var(--space-1);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.l-country-gq {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: var(--space-2);
}

.lc-label-hq {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  margin-bottom: 2px;
}

.lcNum-rk {
  font-size: 13px;
  color: var(--text);
  font-family: monospace;
}


/* loyalty F */
/* Loyalty F — split layout (name left, details right) */

.loy-root-1ea {
  padding: var(--card-pad);
}

.loy-title-20g {
  margin: 0 0 var(--space-2);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.loy-intro-334 {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.l-list-wi {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.loy-item-it {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-top: 1px solid var(--border);
  align-items: start;
}

.loy_name-2jp {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.loy_details-2nw {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.l-entry-2la {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.loyPerks-1bf {
  margin: 0;
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

@media (max-width: 600px) {
  .loy-item-it { grid-template-columns: 1fr; gap: 4px; }
  .loy_name-2jp { font-size: 16px; }
}


/* registration B */
/* Registration B — table layout */

.ht-root-1dt {
  padding: var(--card-pad);
}

.h-title-yd {
  margin: 0 0 var(--space-2);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.h-intro-285 {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.ht-table-1f7 {
  width: 100%;
  border-collapse: collapse;
}

.h-row-11z {
  border-bottom: 1px solid var(--border);
}

.h-row-11z:last-child { border-bottom: none; }

.ht-num-2vr {
  width: 40px;
  padding: var(--space-2);
  text-align: center;
  font-weight: 800;
  font-size: 18px;
  color: var(--primary);
  vertical-align: top;
}

.ht-heading-19d {
  padding: var(--space-2);
  font-size: 14px;
  font-weight: 700;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  vertical-align: top;
  white-space: nowrap;
}

.ht-body-32h {
  padding: var(--space-2);
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  vertical-align: top;
}

@media (max-width: 600px) {
  .h-row-11z { display: flex; flex-wrap: wrap; padding: var(--space-2) 0; }
  .ht-num-2vr { width: auto; padding: 0 var(--space-1); }
  .ht-heading-19d { padding: 0 var(--space-1); white-space: normal; }
  .ht-body-32h { padding: var(--space-1); flex-basis: 100%; }
}


/* faq B */
.faq-root-fc {
  padding: var(--card-pad);
  position: relative;
  overflow: hidden;
}

.faq-root-fc>* {
  position: relative;
}

.faq-title-2va {
  margin: 0 0 var(--space-2);
  font-size: clamp(18px, 2.4vw, 26px);
}

.faq-subtitle-2c4 {
  margin: 0 0 var(--space-3);
  color: var(--muted);
}

.faq_list-1o8 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-3);
}

.faqQ-lv {
  margin: 0 0 var(--space-2);
  font-size: 16px;
}

.faq-a-2f7 {
  margin: 0;
  color: var(--muted);
}

.faq_item-14v {
  transition: transform .14s ease, border-color .14s ease, background .14s ease, box-shadow .14s ease;
}

/* disclaimer C */
/* Disclaimer C — compact inline paragraph */

.dc-root-1hp {
  padding: var(--space-2) var(--space-3);
  background: rgba(var(--primary-rgb), .04);
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}

.dc-text-13q {
  margin: 0;
}

.dc-link-2y9 {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.dc-link-2y9:hover {
  text-decoration: none;
}

@media (max-width: 480px) {
  .dc-root-1hp { font-size: 11px; padding: var(--space-2); }
}


/* rg E */
/* RG E — 18+ badge + title, chips, helpline */

.rg-root-2c6 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  font-size: 13px;
  color: var(--muted);
}

.rg_badge-2g9 {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), .12);
  color: var(--primary);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: -.02em;
}

.rg-title-p0 {
  flex: 1 1 100%;
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.rg-sites-za {
  flex: 1 1 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 2px;
}

.rg-sitelink-tx {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid rgba(var(--primary-rgb), .35);
  border-radius: var(--radius-3);
  text-decoration: none;
  transition: background .15s;
}

.rg-sitelink-tx:hover {
  background: rgba(var(--primary-rgb), .08);
}

.rg-helpline-h3 {
  flex: 1 1 100%;
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}


/* footer D */
/* Footer D — minimal: nav top row, brand + copyright bottom */

.ft-root-107 {
  margin-top: var(--space-5);
  width: 100%;
  background: var(--bg);
  padding: var(--space-4) 0 var(--space-3);
}

.ft-nav-1as {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  padding: 0 var(--space-4) var(--space-3);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.ft_navlink-1gk {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color .2s;
  white-space: nowrap;
}

.ft_navlink-1gk:hover { color: var(--fg); }

.ft-inner-1x {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  padding: var(--space-3) var(--space-4) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.ftBrand-34s {
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
}

.ftLogo-ek {
  height: 36px;
  width: auto;
  display: block;
}

.ftCopy-16q {
  font-size: 12px;
  color: var(--muted);
}

.ftDisclaimer-2mk {
  max-width: var(--container-w, 1100px);
  margin: var(--space-3) auto 0;
  padding: 0 var(--space-4);
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
}

