
/* 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-24h {
  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-24h::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 */
}

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

.b-slide-2bu[data-active] {
  opacity: 1;
  pointer-events: auto;
}

.bn_img-0 {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.bn-overlay-6n {
  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;
}

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

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

.bn_title-1w5 {
  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-hd {
  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-264 {
  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-2rp {
  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-15f {
  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-15f:hover { opacity: .9; }

.bnBtnSecondary-2xj {
  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;
}

.bnBtnSecondary-2xj:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

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

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

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

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

@media (max-width: 600px) {
  .b-root-24h::before { padding-top: 90%; }
  .bn_title-1w5 { font-size: clamp(17px, 5vw, 26px); }
  .bn-btn-15f { padding: 10px 24px; font-size: 14px; }
  .bnBtnSecondary-2xj { padding: 8px 18px; font-size: 12px; }
  .bn-badge-264 { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .bn-dot-24k { width: 8px; height: 8px; }
}


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

.hero_root-2wj { text-align: center; }

.heroTitle-1af {
  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-vv {
  margin: 0 auto 16px;
  max-width: 640px;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.65;
  font-weight: 500;
  color: var(--text);
}

.hero-sub-2df {
  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) {
  .heroTitle-1af { font-size: 26px; margin-bottom: 16px; }
  .hero_intro-vv { font-size: 16px; margin-bottom: 12px; }
}


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

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

.ovText-13b {
  min-width: 0;
}

.ov-title-ue {
  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-rg {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.ov-dl-2nk {
  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);
}

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

.ov-dt-60:first-child {
  margin-top: 0;
}

.ovDd-1zc {
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .o-root-2qw { grid-template-columns: 1fr; }
  .ov-dl-2nk { max-width: none; }
}


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

.btRoot-2ma {
  padding: var(--card-pad);
}

.bt-title-e8 {
  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);
}

.bt-list-2iq {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 0;
}

.b-label-124 {
  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-xj {
  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 */
.b-label-124:last-of-type { border-bottom: none; }
.bt-value-xj:last-child   { border-bottom: none; }

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


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

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

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

.pr-table-6l {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

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

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

.pr-td-22z {
  padding: var(--space-2);
  color: var(--text);
  line-height: 1.5;
}

.p-row-1pt + .p-row-1pt .pr-td-22z {
  border-top: 1px solid var(--border);
}

.p-name-7k {
  font-weight: 700;
  color: var(--primary);
}

/* ── mobile card list (hidden on desktop) ── */
.prCards-2ui { display: none; }

.pr-card-gt {
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  padding: var(--space-2);
}

.pr-card-gt + .pr-card-gt { margin-top: var(--space-2); }

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

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

.prCardVal-2ic {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

@media (max-width: 580px) {
  .pr-table-6l { display: none; }
  .prCards-2ui { display: block; }
}


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

.l-root-1az {
  padding: var(--card-pad);
  overflow: hidden;
}

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

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

.lb_icon-1py {
  height: 28px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.lb-title-1pb {
  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-50 {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lbCtaLink-67 {
  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;
}

.lbCtaLink-67:hover { border-color: var(--primary); color: var(--primary); }

.l-prev-1qq,
.l-next-2ra {
  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-1qq:hover, .l-next-2ra:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.l-prev-1qq:disabled, .l-next-2ra:disabled { opacity: .3; cursor: default; pointer-events: none; }

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

.l-viewport-1q5::-webkit-scrollbar { display: none; }

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

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

.lb-cardmedia-67 {
  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;
}

.lbCardImg-2nc {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .22s;
}

.lb-card-a9:hover .lbCardImg-2nc { transform: scale(1.06); }

/* ── Badge pills ── */
.l-badge-ae {
  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-cardoverlay-2jr {
  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-a9:hover .lb-cardoverlay-2jr { opacity: 1; }

.lb-card-name-26i {
  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-playbtn-2qf {
  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-a9:hover .lb-playbtn-2qf { transform: scale(1.1); }

.lb-demo-btn-nw {
  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 ── */
.lb-provider-1xi {
  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-a9      { flex: 0 0 145px; }
  .lb-cardmedia-67 { width: 145px; }
  .lb-provider-1xi  { max-width: 145px; }
  .lb-playbtn-2qf   { width: 30px; height: 30px; font-size: 11px; }
}


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

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

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

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

.p-tag-hx {
  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;
}

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

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

.p-tagname-1c6 {
  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) {
  .p-tag-hx { min-width: 110px; }
}


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

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

.pm-title-2sw {
  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);
}

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

.pm-table-1i2 {
  width: 100%;
  border-collapse: collapse;
}

.pm_row-1ui + .pm_row-1ui .pm-method-yz,
.pm_row-1ui + .pm_row-1ui .pm-info-2ly {
  border-top: 1px solid var(--border);
}

.pm-method-yz,
.pm-info-2ly {
  padding: var(--space-2) 0;
  font-size: 14px;
  line-height: 1.5;
  vertical-align: top;
}

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

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

@media (max-width: 480px) {
  .pm-method-yz { white-space: normal; width: 35%; }
  .pm-method-yz, .pm-info-2ly { font-size: 13px; }
}


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

.pr-root-qk {
  padding: var(--card-pad) var(--card-pad) 0;
}

.pr-h2-13u {
  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-1f1 {
  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-d0 {
  margin: 0 0 var(--space-3);
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
}

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

.pr_li-1sb {
  margin-bottom: var(--space-2);
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.pr_table-1xc {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 var(--space-3);
  font-size: 13px;
}

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

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

.p-image-i1 {
  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 */

.mbRoot-30c {
  padding: var(--card-pad);
}

.m-title-2p6 {
  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);
}

.m-intro-2la {
  margin: 0 0 var(--space-4);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* accordion */
.m-accordion-226 {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

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

.mb-summary-184 {
  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-184::-webkit-details-marker { display: none; }

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

.mb-details-156[open] .mb-summary-184::after {
  content: "−";
  color: var(--primary);
}

.mb-details-156[open] .mb-summary-184 {
  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;
}

.mbBadge-1ev {
  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;
}

.mb-body-1t4 {
  padding: 10px 14px 12px;
  background: var(--surface);
}

.mb-chips-1n3 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mb-chip-py {
  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 */

.scRoot-fa {
  padding: var(--card-pad);
}

.sc_title-2gk {
  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-1w6 {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

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


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

.lc_root-2fc {
  padding: var(--card-pad);
}

.lc_title-2zq {
  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);
}

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

.lcGrid-22o {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.lc-badge-1bf {
  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-uy {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

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


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

.sp-root-fl {
  padding: var(--card-pad);
}

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

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

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

.sp-item-2qq {
  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-2qq:last-child {
  border-bottom: none;
}

.sp-channel-2ww {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

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


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

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

.f-header-21k {
  margin-bottom: var(--space-4);
}

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

.f-sub-23l {
  margin: 0;
  color: var(--muted);
}

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

.f-item-24u {
  padding: var(--space-3);
  border-radius: var(--radius-2);
  border: 1px solid var(--border);
}

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

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


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

.dcRoot-1mo {
  display: flex;
  align-items: stretch;
  gap: var(--space-3);
  padding: var(--space-3);
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.d-bar-2ul {
  flex-shrink: 0;
  width: 3px;
  border-radius: var(--radius-1);
  background: var(--primary);
}

.dc_text-4v {
  margin: 0 0 6px;
}

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

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

@media (max-width: 480px) {
  .dcRoot-1mo { font-size: 12px; padding: var(--space-2); gap: var(--space-2); }
}


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

.rg-root-j9 {
  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-2xl {
  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_helpline-33c {
  margin: 0 0 var(--space-2);
  font-size: 12px;
  color: var(--muted);
}

.rg-sites-187 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.rg_sitelink-2k6 {
  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-2k6: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; }
}

