
/* shell */
.section-2qy{ padding:var(--shell-pad,var(--section-gap,40px)) 0 0; }
.s-dense-1o1{ padding:var(--section-gap-dense,16px) 0 0; }
.container-8a{ width:min(var(--shell-cw,var(--container-w,1100px)),calc(100% - var(--space-5))); margin:0 auto; }
.section-2qy:not(.s-dense-1o1) > .container-8a{ 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-2qy{ padding:var(--shell-pad-mobile,var(--shell-pad)) 0 0; } .s-dense-1o1{ padding:var(--section-gap-dense-mobile,var(--section-gap-dense)) 0 0; } }

/* header I */
/* Header I — top crown: 3px primary bar at top, nav links with slide-in underline */

.hdRoot-2fp {
  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;
}

.hdRoot-2fp.hd-scrolled {
  height: calc(var(--hd-height, 60px) - 6px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
}

.h-inner-on {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--space-4);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: var(--space-4);
}

.hdBrand-26e {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 19px;
  font-weight: 800;
  color: var(--fg);
  flex-shrink: 0;
}

.hdLogo-dm { height: calc(var(--hd-height, 64px) - 24px); width: auto; display: block; }

.hd-nav-20y {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.hd-nav-link-122 {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: color .2s;
}

/* Slide-in underline aligned with header bottom border */
.hd-nav-link-122::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform .22s ease;
}

.hd-nav-link-122:hover { color: var(--fg); }
.hd-nav-link-122:hover::after { transform: scaleX(1); }

.hdCta-1p5 {
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 0;
  margin: 8px 0;
  border-radius: var(--radius-1);
  transition: opacity .2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.hdCta-1p5:hover { opacity: .88; }

.hd_actions-32s {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

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

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

.hd_mobilenav-pk {
  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);
}

.hd_mobilenav-pk[hidden] { display: none !important; }
.hd_mobilenav-pk .hd-nav-link-122::after { display: none; }
.hd_mobilenav-pk .hdCta-1p5 { margin: var(--space-2) 0 0; text-align: center; border-radius: var(--radius-1); }

@media (max-width: 768px) {
  .hd-nav-20y { display: none; }
  .hd-burger-2rk { display: flex; }
}


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

.bn-root-1cl {
  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);
}

.bn-root-1cl::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 */
}

.bnSlide-19y {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}

.bnSlide-19y[data-active] {
  opacity: 1;
  pointer-events: auto;
}

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

.bn-overlay-1cj {
  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;
}

.bnSlide-19y[data-dark="light"]  .bn-overlay-1cj { background: linear-gradient(to bottom, rgba(0, 0, 0, .12), rgba(0, 0, 0, .28)); }
.bnSlide-19y[data-dark="medium"] .bn-overlay-1cj { background: linear-gradient(to bottom, rgba(0, 0, 0, .3),  rgba(0, 0, 0, .5));  }
.bnSlide-19y[data-dark="dark"]   .bn-overlay-1cj { background: linear-gradient(to bottom, rgba(0, 0, 0, .5),  rgba(0, 0, 0, .75)); }

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

.bnTitle-321 {
  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-17x {
  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-1uw {
  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-289 {
  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;
}

.bnBtn-1yf {
  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);
}

.bnBtn-1yf:hover { opacity: .9; }

.bn_btnsecondary-1dv {
  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_btnsecondary-1dv:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

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

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

.b-dot-2k0[data-active] {
  background: #fff;
  transform: scale(1.35);
}

@media (max-width: 768px) {
  .bnTitle-321 { font-size: clamp(18px, 3vw, 36px); }
}

@media (max-width: 600px) {
  .bn-root-1cl::before { padding-top: 90%; }
  .bnTitle-321 { font-size: clamp(17px, 5vw, 26px); }
  .bnBtn-1yf { padding: 10px 24px; font-size: 14px; }
  .bn_btnsecondary-1dv { padding: 8px 18px; font-size: 12px; }
  .bnBadge-1uw { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .b-dot-2k0 { width: 8px; height: 8px; }
}


/* hero E */
/* Hero E — h1 + intro as bullet list (compact, scannable) */

.hero_root-yg {}

.hero-title-2om {
  margin: 0 0 20px;
  font-weight: 800;
  font-size: clamp(22px, 3.5vw, 36px);
  line-height: 1.2;
  letter-spacing: -.015em;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.hero-list-1ig {
  margin: 0;
  padding: 0 0 0 1.2em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero_item-cv {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.6;
  color: var(--text);
}

.hero_item-cv::marker {
  color: var(--primary);
}

@media (max-width: 600px) {
  .hero-title-2om { font-size: 20px; margin-bottom: 14px; }
  .hero-list-1ig { gap: 6px; }
}


/* overview B */
/* Overview B — prose only */

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

.ovTitle-1w1 {
  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-7h {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}


/* bonus D */
/* bonus D — stripe rows: bold zebra, first row hero, primary values */

.bt-root-2bx {
  overflow: hidden;
}

.bt-title-15t {
  padding: var(--card-pad) var(--card-pad) var(--space-3);
  margin: 0;
  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);
  border-bottom: 1px solid var(--border);
}

.bt-stripes-291 {
  display: flex;
  flex-direction: column;
}

.btRow-16r {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2) var(--card-pad);
  gap: var(--space-3);
  transition: background .15s;
}

.btRow-16r:nth-child(even) {
  background: var(--bg);
}

.btRow-16r:first-child {
  background: linear-gradient(90deg,
    color-mix(in srgb, var(--primary) 15%, var(--surface)),
    var(--surface));
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
}

.btRow-16r:first-child .btLabel-2t1 {
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  font-weight: 700;
  font-size: 15px;
}

.btRow-16r:first-child .b-value-1f6 {
  font-size: 17px;
  color: var(--primary);
}

.btRow-16r:hover {
  background: color-mix(in srgb, var(--primary) 8%, transparent);
}

.btLabel-2t1 {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
}

.b-value-1f6 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-align: right;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .bt-title-15t { padding: var(--space-3); }
  .btLabel-2t1, .b-value-1f6 { font-size: 13px; }
  .btRow-16r { padding-left: var(--space-3); padding-right: var(--space-3); }
}


/* promo E */
/* Promo E — definition list */

.prRoot-1rz {
  padding: var(--card-pad);
}

.pr-title-oj {
  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);
}

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

.p-dl-2wb {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 var(--space-3);
  align-items: baseline;
}

.p-dt-283 {
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border);
}

.pr-dd-er {
  margin: 0;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 480px) {
  .p-dl-2wb { grid-template-columns: 1fr; }
  .p-dt-283 { border-bottom: none; padding-bottom: 0; }
  .pr-dd-er { padding-top: 2px; }
}


/* lobby H */
/* Lobby H — carousel with prev/next arrows, badge pills, hover play+demo overlay */

.lb-root-7z {
  padding: var(--card-pad);
  overflow: hidden;
}

/* ── Header ── */
.lb-header-z6 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.lb-header-left-2pr {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.lb-icon-11e {
  height: 28px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.l-title-1sj {
  margin: 0;
  font-size: clamp(calc(14px * var(--title-scale)), 2vw, calc(22px * var(--title-scale)));
  font-weight: 800;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lb-header-right-1v4 {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.l-ctalink-1wb {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  color: var(--fg-muted, rgba(255,255,255,.5));
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .18s, color .18s;
}

.l-ctalink-1wb:hover { border-color: var(--primary); color: var(--primary); }

.l-prev-vi,
.lb_next-56 {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-2, rgba(255,255,255,.06));
  color: var(--fg-muted, rgba(255,255,255,.6));
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s, border-color .15s;
  flex-shrink: 0;
}

.l-prev-vi:hover, .lb_next-56:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.l-prev-vi:disabled, .lb_next-56:disabled { opacity: .3; cursor: default; pointer-events: none; }

/* ── Carousel ── */
.lb-viewport-1ap {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.lb-viewport-1ap::-webkit-scrollbar { display: none; }

.lb-track-3m {
  display: flex;
  gap: var(--item-gap);
  width: max-content;
}

/* ── Cards ── */
.lb-card-1at {
  flex: 0 0 var(--card-min-w);
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
}

.lb_cardmedia-2j7 {
  position: relative;
  width: var(--card-min-w);
  aspect-ratio: var(--card-aspect);
  border-radius: calc(var(--radius-1) * .75);
  overflow: hidden;
  background: var(--border);
  flex-shrink: 0;
}

.lb_cardimg-9g {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .22s;
}

.lb-card-1at:hover .lb_cardimg-9g { transform: scale(1.06); }

/* ── Badge pills ── */
.lb-badge-1ma {
  position: absolute;
  top: 5px;
  left: 5px;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1.5;
  color: #fff;
  pointer-events: none;
  z-index: 2;
}

.lb-badge-hot { background: #F97316; }
.lb-badge-top { background: #7C3AED; }
.lb-badge-neu { background: #EF4444; }

/* ── Hover overlay ── */
.lb-card-overlay-mr {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(0,0,0,.68);
  opacity: 0;
  transition: opacity .2s;
  z-index: 3;
  padding: 8px;
}

.lb-card-1at:hover .lb-card-overlay-mr { opacity: 1; }

.lb-card-name-2qe {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(0,0,0,.7);
  order: 1;
}

.lbPlayBtn-2mr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  padding-left: 2px;
  flex-shrink: 0;
  order: 2;
  transition: transform .15s;
  text-decoration: none;
}

.lb-card-1at:hover .lbPlayBtn-2mr { transform: scale(1.1); }

.lb-demo-btn-2nk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border-radius: var(--radius-1);
  border: 1px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.8);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  order: 3;
  text-decoration: none;
}

/* ── Provider text below card ── */
.l-provider-1de {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--fg-muted, rgba(255,255,255,.4));
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: var(--card-min-w);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .lb-card-1at      { flex: 0 0 145px; }
  .lb_cardmedia-2j7 { width: 145px; }
  .l-provider-1de  { max-width: 145px; }
  .lbPlayBtn-2mr   { width: 30px; height: 30px; font-size: 11px; }
}


/* providers E */
/* Providers E — numbered accent cards (left color border, num + logo + name) */

.pv-root-1b5 {
  padding: var(--card-pad);
}

.pvTitle-25x {
  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-1gl {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.pv-grid-x1 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-2);
}

.pv-card-1h7 {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-1);
  transition: background .15s, box-shadow .15s;
}

.pv-card-1h7:hover {
  background: rgba(var(--primary-rgb), .05);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.pv-num-2if {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  opacity: .6;
  letter-spacing: .03em;
  flex-shrink: 0;
  min-width: 22px;
}

.pv-logo-1ha {
  width: 80px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.pvName-s2 {
  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-x1 { grid-template-columns: 1fr; }
}


/* payments D */
/* Payments D — compact two-column table */

.pm-root-1by {
  padding: var(--card-pad);
}

.pm-title-23g {
  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);
}

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

.pmTable-1j2 {
  width: 100%;
  border-collapse: collapse;
}

.pm_row-1zq + .pm_row-1zq .pmMethod-l3,
.pm_row-1zq + .pm_row-1zq .pmInfo-20i {
  border-top: 1px solid var(--border);
}

.pmMethod-l3,
.pmInfo-20i {
  padding: var(--space-2) 0;
  font-size: 14px;
  line-height: 1.5;
  vertical-align: top;
}

.pmMethod-l3 {
  font-weight: 700;
  color: var(--primary);
  padding-right: var(--space-3);
  white-space: nowrap;
  width: 25%;
}

.pmInfo-20i {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .pmMethod-l3 { white-space: normal; width: 35%; }
  .pmMethod-l3, .pmInfo-20i { font-size: 13px; }
}


/* mobile A */
/* Mobile A — H2 + intro + classic responsive table */

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

.mb-title-1ti {
  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);
}

.mb-intro-1z6 {
  margin: 0 0 var(--space-4);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* scrollable table wrapper */
.mb_table-is {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
}

.mb_table-is table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  font-size: 14px;
}

.mbHead-2w2 {
  background: var(--bg);
}

.mb-head-cell-13m {
  padding: 10px 14px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

.mbRow-24k {
  border-bottom: 1px solid var(--border);
}

.mbRow-24k:last-child {
  border-bottom: none;
}

.mbRow-24k:nth-child(even) {
  background: var(--bg);
}

.mbCell-17w {
  padding: 10px 14px;
  vertical-align: top;
  color: var(--text);
  line-height: 1.5;
}

.mb-cell-name-287 {
  font-weight: 700;
  white-space: nowrap;
}

.mb_badge-e3 {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--primary);
  background: rgba(var(--primary-rgb), .1);
  border-radius: 99px;
  white-space: nowrap;
}

.m-cellfeatures-1wr {
  color: var(--muted);
  font-size: 13px;
}

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


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

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

.h-title-14q {
  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-1ke {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.ht-table-2b4 {
  width: 100%;
  border-collapse: collapse;
}

.ht_row-2ns {
  border-bottom: 1px solid var(--border);
}

.ht_row-2ns:last-child { border-bottom: none; }

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

.ht-heading-1n6 {
  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-188 {
  padding: var(--space-2);
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  vertical-align: top;
}

@media (max-width: 600px) {
  .ht_row-2ns { display: flex; flex-wrap: wrap; padding: var(--space-2) 0; }
  .ht_num-zg { width: auto; padding: 0 var(--space-1); }
  .ht-heading-1n6 { padding: 0 var(--space-1); white-space: normal; }
  .ht-body-188 { padding: var(--space-1); flex-basis: 100%; }
}


/* login B */
/* Login B — cards grid */

.lg-root-gi {
  padding: var(--card-pad);
}

.lg-title-12o {
  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);
}

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

.lg-grid-19a {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-3);
}

.lg-card-1x0 {
  padding: var(--space-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lgHeading-1so {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.lgBody-2uy {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}


/* security E */
/* Security E — accordion */

.sc-root-1en {
  padding: var(--card-pad);
}

.sc-title-26r {
  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);
}

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

.sc-list-25n {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.sc-details-2ib {
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  overflow: hidden;
}

.s-summary-1p {
  padding: var(--space-2) var(--space-3);
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
}

.s-summary-1p::after {
  content: "+";
  margin-left: auto;
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  transition: transform .2s;
}

.sc-details-2ib[open] > .s-summary-1p::after {
  content: "\2212";
}

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


/* support F */
/* Support F — prose paragraph */

.sp_root-1dy {
  padding: var(--card-pad);
}

.sp-title-34k {
  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);
}

.s-body-2gm {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}


/* license C */
/* License C — badge grid (minimal) */

.lc-root-286 {
  padding: var(--card-pad);
}

.lcTitle-178 {
  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-1y4 {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.lc-grid-2kq {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.lcBadge-mx {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: var(--space-3) var(--space-4);
  border: 1px solid rgba(var(--primary-rgb), .18);
  border-radius: var(--radius-1);
  background: rgba(var(--primary-rgb), .06);
  text-align: center;
  min-width: 120px;
}

.lc_reg-348 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.l-country-1dk {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
}


/* faq E */
/* FAQ E — card accordion: rounded cards per item, centered title, chevron, no icons */

.faq-root-23k {
  padding: var(--card-pad);
}

.faq-title-2a6 {
  margin: 0 0 var(--space-4);
  font-size: clamp(calc(18px * var(--title-scale)), 2.4vw, calc(28px * var(--title-scale)));
  font-weight: 800;
  text-align: center;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.faq-list-nk {
  display: flex;
  flex-direction: column;
  gap: var(--item-gap);
  max-width: 900px;
  margin: 0 auto;
}

/* ── Card ── */
.faqItem-2wn {
  border-radius: var(--radius-1);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
}

/* ── Toggle button ── */
.faq-toggle-k {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--fg);
  transition: color .15s;
}

.faq-toggle-k:hover { color: var(--primary); }

/* Chevron via CSS border */
.faq-toggle-k::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  transition: transform .22s;
  opacity: .7;
}

.faq-toggle-k[aria-expanded="true"]::after {
  transform: rotate(-135deg) translateY(-3px);
}

/* ── Answer panel ── */
.f-a-13f {
  padding: 4px 20px 20px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--fg-muted, rgba(255,255,255,.7));
  white-space: pre-line;
  border-top: 1px solid var(--border);
}

.f-a-13f[hidden] { display: none; }

@media (max-width: 600px) {
  .faq-toggle-k { padding: 15px 16px; font-size: 14px; }
  .f-a-13f      { padding: 4px 16px 16px; font-size: 13px; }
}


/* disclaimer B */
/* Disclaimer B — aside with left accent bar */

.d-root-2in {
  display: flex;
  align-items: stretch;
  gap: var(--space-3);
  padding: var(--space-3);
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.dc_bar-h8 {
  flex-shrink: 0;
  width: 3px;
  border-radius: var(--radius-1);
  background: var(--primary);
}

.dc-text-mc {
  margin: 0 0 6px;
}

.dc-link-qv {
  font-size: 12px;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

@media (max-width: 480px) {
  .d-root-2in { font-size: 12px; padding: var(--space-2); gap: var(--space-2); }
}


/* sticky-banner B */
/* Variant B — вертикальний sticky банер, велика CTA
   HTML: bnRoot > bnInner(relative, flex col) > bnClose(absolute) + bnLabel + bnTitle + bnSub + bnCta */

@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 bnPopUp  { from { transform: translateY(100%) scaleY(.6); opacity: 0 } to { transform: translateY(0) scaleY(1); opacity: 1 } }
@keyframes bnPopOut { from { transform: translateY(0) scaleY(1); opacity: 1 } to { transform: translateY(100%) scaleY(.6); opacity: 0 } }

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

.bn-inner-1xn {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 8px;
  padding: 20px 48px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 40px rgba(0,0,0,.5);
  box-sizing: border-box;
}

.bn-close-26v {
  position: absolute;
  top: 14px; right: 14px;
  background: transparent; border: 0;
  cursor: pointer; color: var(--muted);
  font-size: 16px;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: var(--skin-r);
  transition: color .15s, background .15s;
  line-height: 1;
}
.bn-close-26v:hover { color: var(--text); background: rgba(255,255,255,.08); }

.bn-label-8h {
  display: inline-block;
  font-size: 11px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 2px 10px; border-radius: var(--skin-r);
}
.b-title-2fp { margin: 0; font-weight: 800; font-size: clamp(16px,2vw,20px); }
.bn-sub-1u1   { margin: 0; font-size: 13px; color: var(--muted); }
.bn_cta-1nh   {
  display: block; width: 100%; max-width: 420px;
  padding: 14px 24px; border-radius: var(--skin-r);
  background: var(--skin-btn-bg); color: var(--skin-btn-c);
  font-weight: 800; font-size: 15px;
  text-align: center; text-decoration: none; cursor: pointer;
  margin-top: 4px;
}

@media (max-width: 600px) {
  .bn-inner-1xn { padding: 16px 16px 20px; gap: 6px; }
  .bn-close-26v { top: 10px; right: 10px; width: 28px; height: 28px; font-size: 15px; }
  .b-title-2fp { font-size: 15px; padding: 0 32px; }
  .bn-sub-1u1   { display: none; }
  .bn_cta-1nh   { max-width: 100%; padding: 12px 16px; font-size: 14px; }
}


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

.r-root-17i {
  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);
}

.rgBadge-2ip {
  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-ak {
  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-ta {
  flex: 1 1 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 2px;
}

.rg-site-link-st {
  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-site-link-st:hover {
  background: rgba(var(--primary-rgb), .08);
}

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


/* footer C */
/* Footer C — two-column: brand+disclaimer left, nav right */

.ft-root-30p {
  margin-top: var(--space-5);
  width: 100%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--space-5) 0 var(--space-4);
}

.ft-inner-2sz {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-5);
}

.ft-inner-2sz > div:first-child {
  flex: 1;
  min-width: 0;
}

.ft-brand-2uy {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.ft_logo-2ye {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: var(--space-2);
}

.f-nav-29y {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex-shrink: 0;
}

.ftNavLink-im {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color .2s;
  white-space: nowrap;
}

.ftNavLink-im:hover { color: var(--primary); }

.ft-disclaimer-ge {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: var(--space-1);
}

.ftCopy-1hk {
  max-width: var(--container-w, 1100px);
  margin: var(--space-3) auto 0;
  padding: var(--space-3) var(--space-4) 0;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 640px) {
  .ft-inner-2sz { flex-direction: column; }
  .f-nav-29y { flex-direction: row; flex-wrap: wrap; }
}

