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

/* header K */
/* Header K — centered brand: logo/name absolutely centered, nav left, CTA right */

.hdRoot-nv {
  position: var(--hd-position, relative);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: var(--hd-height, 62px);
  background: var(--bg);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  transition: background .3s, box-shadow .25s, height .25s;
}

.hdRoot-nv.hd-scrolled {
  height: calc(var(--hd-height, 62px) - 8px);
  background: color-mix(in srgb, var(--bg) 92%, var(--surface));
  box-shadow: 0 4px 20px rgba(0, 0, 0, .45);
}

.hd-inner-1ep {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--space-4);
  display: flex;
  align-items: center;
}

.h-brand-33k {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

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

.hd-nav-1bc {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

.h-navlink-1ug {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 4px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.h-navlink-1ug:hover { color: var(--fg); background: rgba(255, 255, 255, .07); }

.hd_cta-aj {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  border-radius: 999px;
  transition: opacity .2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.hd_cta-aj:hover { opacity: .88; }

.hd-actions-12y {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-2);
}

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

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

.hd_mobilenav-fi {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-4);
  background: color-mix(in srgb, var(--bg) 97%, var(--surface));
  border-top: 1px solid rgba(255,255,255,.06);
  gap: var(--space-2);
}

.hd_mobilenav-fi[hidden] { display: none !important; }
.hd_mobilenav-fi .h-navlink-1ug { font-size: 15px; padding: 10px 0; color: rgba(255,255,255,.7); border-bottom: 1px solid rgba(255,255,255,.07); border-radius: 0; background: none; }
.hd_mobilenav-fi .hd_cta-aj { margin-top: var(--space-2); text-align: center; border-radius: 999px; }

@media (max-width: 768px) {
  .hd-nav-1bc { display: none; }
  .hd-burger-34y { display: flex; }
}


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

.b-root-1gl {
  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);
}

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

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

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

.bn-img-2as {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.bn-overlay-4j {
  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-1hi[data-dark="light"]  .bn-overlay-4j { background: linear-gradient(to bottom, rgba(0, 0, 0, .12), rgba(0, 0, 0, .28)); }
.bn-slide-1hi[data-dark="medium"] .bn-overlay-4j { background: linear-gradient(to bottom, rgba(0, 0, 0, .3),  rgba(0, 0, 0, .5));  }
.bn-slide-1hi[data-dark="dark"]   .bn-overlay-4j { background: linear-gradient(to bottom, rgba(0, 0, 0, .5),  rgba(0, 0, 0, .75)); }

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

.b-title-1pl {
  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;
}

.bn-label-1wd {
  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);
}

.bn_badge-108 {
  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-yh {
  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-1h3 {
  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-1h3:hover { opacity: .9; }

.bn-btn-secondary-1jn {
  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-1jn:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

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

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

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

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

@media (max-width: 600px) {
  .b-root-1gl::before { padding-top: 90%; }
  .b-title-1pl { font-size: clamp(17px, 5vw, 26px); }
  .bnBtn-1h3 { padding: 10px 24px; font-size: 14px; }
  .bn-btn-secondary-1jn { padding: 8px 18px; font-size: 12px; }
  .bn_badge-108 { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .bn-dot-2ww { width: 8px; height: 8px; }
}


/* hero B */
/* Hero B — centered, h1 + lead paragraph + sub paragraph */

.hero-root-2kn { text-align: center; }

.hero-title-1t7 {
  margin: 0 0 24px;
  font-weight: 900;
  font-size: clamp(30px, 5.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.hero-intro-107 {
  margin: 0 auto 16px;
  max-width: 640px;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.65;
  font-weight: 500;
  color: var(--text);
}

.heroSub-sf {
  margin: 0 auto;
  max-width: 600px;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.75;
  color: var(--text-muted, var(--text));
  opacity: .8;
}

@media (max-width: 600px) {
  .hero-title-1t7 { font-size: 26px; margin-bottom: 16px; }
  .hero-intro-107 { font-size: 16px; margin-bottom: 12px; }
}


/* overview C */
/* Overview C — prose + DL sidebar */

.ovRoot-jo {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-4);
  align-items: start;
  padding: var(--card-pad);
}

.o-text-o3 {
  min-width: 0;
}

.ov-title-le {
  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);
}

.o-body-1kg {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.o-dl-1xw {
  margin: 0;
  min-width: 180px;
  max-width: 240px;
  padding: var(--space-3);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
}

.o-dt-ss {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  margin-top: var(--space-2);
}

.o-dt-ss:first-child {
  margin-top: 0;
}

.o-dd-2m4 {
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .ovRoot-jo { grid-template-columns: 1fr; }
  .o-dl-1xw { max-width: none; }
}


/* bonus C */
/* bonus C — definition list: colored values, row separators */

.bt-root-30 {
  padding: var(--card-pad);
}

.b-title-xm {
  margin: 0 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);
}

.btList-78 {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 0;
}

.bt-label-12i {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.5;
  padding: var(--space-2) var(--space-3) var(--space-2) 0;
  border-bottom: 1px solid var(--border);
  margin: 0;
  white-space: nowrap;
}

.bt-value-2qd {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.5;
  padding: var(--space-2) 0 var(--space-2) var(--space-2);
  border-bottom: 1px solid var(--border);
  margin: 0;
  text-align: right;
}

/* last pair — no bottom border */
.bt-label-12i:last-of-type { border-bottom: none; }
.bt-value-2qd:last-child   { border-bottom: none; }

@media (max-width: 500px) {
  .btList-78 { grid-template-columns: 1fr; }
  .bt-label-12i { border-bottom: none; padding-bottom: 2px; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; }
  .bt-value-2qd { padding-left: 0; margin-bottom: var(--space-2); }
}


/* promo A */
/* Promo A — full table */

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

.prTitle-13j {
  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);
}

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

.pr_table-189 {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.pr-thead-1gn {
  border-bottom: 2px solid var(--border);
}

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

.pr_td-wn {
  padding: var(--space-2);
  color: var(--text);
  line-height: 1.5;
}

.prRow-et + .prRow-et .pr_td-wn {
  border-top: 1px solid var(--border);
}

.pr-name-2dg {
  font-weight: 700;
  color: var(--primary);
}

/* ── mobile card list (hidden on desktop) ── */
.pr-cards-uu { display: none; }

.pr_card-1nl {
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  padding: var(--space-2);
}

.pr_card-1nl + .pr_card-1nl { margin-top: var(--space-2); }

.p-cardname-14q {
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 4px;
  font-size: 14px;
}

.p-cardlabel-2yx {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 6px 0 2px;
}

.pr-card-val-2ts {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

@media (max-width: 580px) {
  .pr_table-189 { display: none; }
  .pr-cards-uu { display: block; }
}


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

.lb_root-2dz {
  padding: var(--card-pad);
  overflow: hidden;
}

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

.lb_headerleft-1av {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.l-icon-25m {
  height: 28px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.lb-title-9n {
  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_headerright-so {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lb-ctalink-hv {
  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;
}

.lb-ctalink-hv:hover { border-color: var(--primary); color: var(--primary); }

.lb-prev-4m,
.lb_next-ia {
  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;
}

.lb-prev-4m:hover, .lb_next-ia:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.lb-prev-4m:disabled, .lb_next-ia:disabled { opacity: .3; cursor: default; pointer-events: none; }

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

.lb-viewport-2nd::-webkit-scrollbar { display: none; }

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

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

.lb-cardmedia-1y3 {
  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-20s {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .22s;
}

.lb-card-wd:hover .lb-cardimg-20s { transform: scale(1.06); }

/* ── Badge pills ── */
.lb-badge-2ka {
  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-ob {
  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-wd:hover .lb-card-overlay-ob { opacity: 1; }

.lb-card-name-2i6 {
  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;
}

.lb-play-btn-2vf {
  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-wd:hover .lb-play-btn-2vf { transform: scale(1.1); }

.lb-demo-btn-154 {
  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 ── */
.lbProvider-33e {
  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-wd      { flex: 0 0 145px; }
  .lb-cardmedia-1y3 { width: 145px; }
  .lbProvider-33e  { max-width: 145px; }
  .lb-play-btn-2vf   { width: 30px; height: 30px; font-size: 11px; }
}


/* providers C */
/* Providers C — flex-wrap cards: logo centered + name, comfortable sizing */

.pv_root-1e7 {
  padding: var(--card-pad);
}

.pv-title-31f {
  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-2tb {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

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

.pv-tag-25t {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  flex: 1 1 140px;
  min-width: 130px;
  max-width: 200px;
  transition: border-color .2s, background .2s, transform .2s;
}

.pv-tag-25t:hover {
  border-color: rgba(var(--primary-rgb), .5);
  background: rgba(var(--primary-rgb), .06);
  transform: translateY(-2px);
}

.pv_taglogo-xy {
  width: 100%;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

.pv-tagname-2h6 {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

@media (max-width: 480px) {
  .pv-tag-25t { min-width: 110px; }
}


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

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

.pm-title-184 {
  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-2yk {
  margin: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

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

.pm-row-2hq + .pm-row-2hq .pmMethod-2vj,
.pm-row-2hq + .pm-row-2hq .p-info-2ve {
  border-top: 1px solid var(--border);
}

.pmMethod-2vj,
.p-info-2ve {
  padding: var(--space-2) 0;
  font-size: 14px;
  line-height: 1.5;
  vertical-align: top;
}

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

.p-info-2ve {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .pmMethod-2vj { white-space: normal; width: 35%; }
  .pmMethod-2vj, .p-info-2ve { font-size: 13px; }
}


/* prose C */
/* Prose C — narrow blog-style column */

.prRoot-2ra {
  padding: var(--card-pad) var(--card-pad) 0;
}

.prH2-x0 {
  margin: 0 0 var(--space-3);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--skin-title);
}

.pr-h3-187 {
  margin: var(--space-4) 0 var(--space-2);
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.prP-2dy {
  margin: 0 0 var(--space-3);
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
}

.p-list-1su {
  margin: 0 0 var(--space-3);
  padding-left: var(--space-4);
}

.pr-li-32x {
  margin-bottom: var(--space-2);
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.pr-table-xi {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 var(--space-3);
  font-size: 13px;
}

.pr-th-14u {
  padding: var(--space-2);
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--border);
  color: var(--text);
}

.p-td-31u {
  padding: var(--space-2);
  border-top: 1px solid var(--border);
  color: var(--muted);
  line-height: 1.5;
}

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


/* mobile E */
/* Mobile E — accordion: details/summary per platform + feature chips inside */

.m-root-34w {
  padding: var(--card-pad);
}

.mb-title-24u {
  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-mi {
  margin: 0 0 var(--space-4);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* accordion */
.mb-accordion-31u {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.m-details-232 {
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  overflow: hidden;
  transition: border-color .15s;
}

.m-details-232[open] {
  border-color: var(--primary);
}

.mb-summary-2n4 {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 12px 14px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  background: var(--bg);
}

.mb-summary-2n4::-webkit-details-marker { display: none; }

.mb-summary-2n4::after {
  content: "+";
  margin-left: auto;
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
  transition: transform .15s;
}

.m-details-232[open] .mb-summary-2n4::after {
  content: "−";
  color: var(--primary);
}

.m-details-232[open] .mb-summary-2n4 {
  background: rgba(var(--primary-rgb), .05);
}

.mbPlatName {
  font-size: 14px;
  font-weight: 800;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  flex: 1;
}

.mb-badge-13n {
  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), .1);
  border-radius: 99px;
}

.mbBody-1ro {
  padding: 10px 14px 12px;
  background: var(--surface);
}

.mb-chips-18z {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mbChip-1e {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 99px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* security A */
/* Security A — simple prose paragraph */

.sc-root-2l8 {
  padding: var(--card-pad);
}

.s-title-7e {
  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);
}

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

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


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

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

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

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

.l-badge-pj {
  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;
}

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

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


/* support C */
/* Support C — compact list */

.spRoot-9n {
  padding: var(--card-pad);
}

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

.sp-list-133 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.sp_item-j4 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border);
}

.sp_item-j4:last-child {
  border-bottom: none;
}

.s-channel-32e {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.sp-hours-2dy {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}


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

.f-root-wp > * {
  position: relative;
}

.faq-header-1ec {
  margin-bottom: var(--space-4);
}

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

.faq-sub-2hp {
  margin: 0;
  color: var(--muted);
}

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

.faq_item-2q2 {
  padding: var(--space-3);
  border-radius: var(--radius-2);
  border: 1px solid var(--border);
}

.faq-q-68 {
  margin: 0 0 var(--space-2);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
}

.faq-a-1zk {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}


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

.d-root-21g {
  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-2ht {
  flex-shrink: 0;
  width: 3px;
  border-radius: var(--radius-1);
  background: var(--primary);
}

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

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

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

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


/* rg D */
/* RG D — accent border left, stacked layout */

.rgRoot-22j {
  padding: var(--space-3) var(--space-3) var(--space-3) var(--space-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-2) var(--radius-2) 0;
  box-shadow: var(--shadow-1);
  font-size: 13px;
  color: var(--muted);
}

.rg-title-2yn {
  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;
}

.rgHelpline-om {
  margin: 0 0 var(--space-2);
  font-size: 12px;
  color: var(--muted);
}

.r-sites-2l {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.rg_sitelink-j0 {
  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-j0:hover {
  background: rgba(var(--primary-rgb), .08);
}


/* footer A */
/* Footer A — classic: brand left, nav center, bottom copyright */

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

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

.ftBrand-14y {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  flex-shrink: 0;
}

.ft_logo-19q {
  height: 40px;
  width: auto;
  display: block;
}

.ft-nav-1vy {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
}

.f-navlink-5i {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
  white-space: nowrap;
}

.f-navlink-5i:hover { color: var(--primary); }

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

.ft-copy-12o {
  max-width: var(--container-w, 1100px);
  margin: var(--space-2) auto 0;
  padding: 0 var(--space-4);
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 600px) {
  .ft-inner-1nf { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
  .ft-nav-1vy { justify-content: flex-start; }
}

