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

/* header E */
/* Header E — glassmorphism: blurred background always, accent CTA */

.hd-root-i5 {
  position: var(--hd-position, relative);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: var(--hd-height, 66px);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: height .25s ease, background .25s ease;
}

.hd-root-i5.hd-scrolled {
  height: calc(var(--hd-height, 66px) - 10px);
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.hd-brand-ee {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
}

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

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

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

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

.hd-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.hd-cta-21 {
  display: inline-block;
  padding: 9px 22px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: var(--radius-1);
  box-shadow: 0 0 16px color-mix(in srgb, var(--primary) 50%, transparent);
  transition: opacity .2s, box-shadow .2s;
  white-space: nowrap;
}

.hd-cta-21:hover { opacity: .88; box-shadow: 0 0 24px color-mix(in srgb, var(--primary) 70%, transparent); }

.hd-actions-jo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

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

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

.hd-mobile-nav-i8 {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-4);
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(16px);
  gap: var(--space-2);
}

.hd-mobile-nav-i8[hidden] { display: none !important; }
.hd-mobile-nav-i8 .hd-cta-21 { margin-top: var(--space-2); text-align: center; box-shadow: none; }

@media (max-width: 768px) {
  .hd-nav-4a { display: none; }
  .hd-burger-80 { display: flex; }
}


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

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

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

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

.bc-link-2h {
  color: var(--fg);
  text-decoration: none;
}

.bc-link-2h:hover {
  color: var(--skin-ac);
}

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

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


/* banner F */
/* Banner F — carousel with arrows */

.bn-root-1s {
  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-1s::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 */
}

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

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

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

.bn-overlay-q0 {
  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.35), rgba(0, 0, 0, 0.55));
  /* horizontal padding reserves space so content never sits behind arrows */
  padding: var(--space-4) 72px;
  text-align: center;
}

.bn-slide-ed[data-dark="light"]  .bn-overlay-q0 { background: linear-gradient(to bottom, rgba(0, 0, 0, .18), rgba(0, 0, 0, .35)); }
.bn-slide-ed[data-dark="medium"] .bn-overlay-q0 { background: linear-gradient(to bottom, rgba(0, 0, 0, .35), rgba(0, 0, 0, .55)); }
.bn-slide-ed[data-dark="dark"]   .bn-overlay-q0 { background: linear-gradient(to bottom, rgba(0, 0, 0, .55), rgba(0, 0, 0, .78)); }

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

.bn-title-6m {
  margin: 0;
  font-size: clamp(22px, 3.8vw, 48px);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.bn-label-6 {
  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-5f {
  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);
}

.bn-subtitle-8c {
  margin: 0;
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
  line-height: 1.4;
}

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

.bn-btn-fs:hover { opacity: .9; }

.bn-btn-secondary-a {
  display: inline-block;
  padding: 11px 26px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  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-a:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

.bn-arrows-k6 {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
  z-index: 10;
}

.bn-arrow-prev-qs,
.bn-arrow-next-ck {
  pointer-events: auto;
  width: 46px;
  height: 46px;
  border: none;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bn-arrow-prev-qs:hover,
.bn-arrow-next-ck:hover {
  background: rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .bn-title-6m { font-size: clamp(20px, 3.5vw, 38px); }
  .bn-overlay-q0 { padding-left: 58px; padding-right: 58px; }
  .bn-arrow-prev-qs, .bn-arrow-next-ck { width: 38px; height: 38px; font-size: 22px; }
}

@media (max-width: 600px) {
  .bn-root-1s::before { padding-top: 90%; }
  .bn-overlay-q0 { padding-left: 48px; padding-right: 48px; }
  .bn-title-6m { font-size: clamp(17px, 5vw, 26px); }
  .bn-btn-fs { padding: 11px 28px; font-size: 14px; }
  .bn-btn-secondary-a { padding: 9px 20px; font-size: 13px; }
  .bn-badge-5f { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .bn-arrow-prev-qs, .bn-arrow-next-ck { width: 34px; height: 34px; font-size: 20px; }
  .bn-arrows-k6 { padding: 0 8px; }
}


/* hero A */
/* Hero A — h1 + single intro paragraph, left-aligned */

.hero-root-da {}

.hero-title-ec {
  margin: 0 0 20px;
  font-weight: 900;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.hero-intro-q4 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.7;
  color: var(--text);
}

@media (max-width: 600px) {
  .hero-title-ec { font-size: 24px; margin-bottom: 14px; }
  .hero-intro-q4 { line-height: 1.6; }
}


/* overview A */
/* Overview A — prose + facts table */

.ov-root-42 {
  padding: var(--card-pad);
}

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

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

.ov-td-ny {
  padding: var(--space-2);
  border-top: 1px solid var(--border);
  color: var(--text);
  line-height: 1.5;
}

.ov-label-8c {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  width: 1%;
}

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


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

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

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

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

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

.pr-list-5 {
  margin: 0 0 var(--space-4);
  padding-left: var(--space-5);
}

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

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

.pr-thead-kl {
  background: color-mix(in srgb, var(--primary) 15%, transparent);
}

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

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

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


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

.bt-root-oo {
  overflow: hidden;
}

.bt-title-m6 {
  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-6m {
  display: flex;
  flex-direction: column;
}

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

.bt-row-4c:nth-child(even) {
  background: var(--bg);
}

.bt-row-4c: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);
}

.bt-row-4c:first-child .bt-label-6 {
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  font-weight: 700;
  font-size: 15px;
}

.bt-row-4c:first-child .bt-value-ax {
  font-size: 17px;
  color: var(--primary);
}

.bt-row-4c:hover {
  background: color-mix(in srgb, var(--primary) 8%, transparent);
}

.bt-label-6 {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
}

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

@media (max-width: 600px) {
  .bt-title-m6 { padding: var(--space-3); }
  .bt-label-6, .bt-value-ax { font-size: 13px; }
  .bt-row-4c { padding-left: var(--space-3); padding-right: var(--space-3); }
}


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

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

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

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

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

.pr-list-1d {
  margin: 0 0 var(--space-4);
  padding-left: var(--space-5);
}

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

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

.pr-thead-jd {
  background: color-mix(in srgb, var(--primary) 15%, transparent);
}

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

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

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


/* lobby A */
/* Lobby A — simple grid: img above name, centered CTA */

.lb-root-ll {
  padding: var(--card-pad);
}

.lb-title-p9 {
  margin: 0 0 var(--space-4);
  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);
}

.lb-grid-r9 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.lb-card-eb {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  padding: var(--space-2);
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}

.lb-card-eb:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.lb-card-img-6a {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-1);
  background: var(--border);
}

.lb-card-name-gw {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  line-height: 1.3;
  text-align: center;
}

.lb-cta-d9 {
  display: inline-block;
  margin: 0 auto;
  padding: 12px 32px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-1);
  transition: opacity .2s;
}

.lb-cta-d9:hover {
  opacity: .85;
}

@media (max-width: 600px) {
  .lb-grid-r9 { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: var(--space-2); }
  .lb-card-eb { padding: 8px; }
  .lb-card-name-gw { font-size: 12px; }
}

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


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

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

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

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

.pv-card-h6 {
  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-h6:hover {
  background: rgba(var(--primary-rgb), .05);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

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

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

.pv-name-7 {
  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-f8 { grid-template-columns: 1fr; }
}


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

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

.pr-h2-qm {
  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-g1 {
  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);
}

.pr-p-7s {
  margin: 0 0 var(--space-3);
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
}

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

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

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

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

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

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


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

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

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

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

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

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

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

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


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

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

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

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

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

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

.mb-plat-name-dq {
  font-size: 14px;
  font-weight: 800;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

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

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

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

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


/* support D */
/* Support D — accordion */

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

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

.sp-list-gj {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.sp-details-er {
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  overflow: hidden;
}

.sp-summary-9x {
  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;
}

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

.sp-details-er[open] > .sp-summary-9x::after {
  content: "\2212";
}

.sp-body-4j {
  padding: 0 var(--space-3) var(--space-3);
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.sp-body-4j p {
  margin: 0 0 var(--space-1);
}

.sp-body-4j p:last-child {
  margin-bottom: 0;
}


/* license F */
/* License F — two-column split rows */

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

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

.lc-list-lk {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.lc-item-b3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  padding: var(--space-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  background: var(--bg);
}

.lc-left-m1 {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lc-reg-qq {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

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

.lc-right-ky {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.lc-label-n2 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  margin-right: var(--space-1);
}

.lc-value-ip {
  font-size: 14px;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  font-family: monospace;
}

.lc-note-ok {
  margin: var(--space-1) 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}


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

.sc-root-4z {
  padding: var(--card-pad);
}

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

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

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

.sc-summary-oh {
  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;
}

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

.sc-details-gf[open] > .sc-summary-oh::after {
  content: "\2212";
}

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


/* sticky-banner D */
/* Variant D — центрований банер-картка знизу
   HTML: bnRoot(relative, flex col) > bnClose(absolute) + bnBadge + bnTitle + bnSub + bnCta */

@keyframes bnCornerIn  { from { transform: translateX(-50%) translateY(80px); opacity: 0 } to { transform: translateX(-50%) translateY(0); opacity: 1 } }
@keyframes bnCornerOut { from { transform: translateX(-50%) translateY(0); opacity: 1 } to { transform: translateX(-50%) translateY(80px); opacity: 0 } }
@keyframes bnSlideUp   { from { transform: translateX(-50%) translateY(100%); opacity: 0 } to { transform: translateX(-50%) translateY(0); opacity: 1 } }
@keyframes bnSlideDown { from { transform: translateX(-50%) translateY(0); opacity: 1 } to { transform: translateX(-50%) translateY(100%); opacity: 0 } }
@keyframes bnFadeOut   { from { opacity: 1 } to { opacity: 0 } }

/* mobile-only keyframes (no translateX) */
@keyframes bnCornerInM  { from { transform: translateY(80px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }
@keyframes bnCornerOutM { from { transform: translateY(0); opacity: 1 } to { transform: translateY(80px); opacity: 0 } }

.bn-root-ad {
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: min(560px, calc(100vw - 32px));
  border-radius: var(--skin-r);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 16px 56px rgba(0,0,0,.55);
  padding: 24px;
  display: flex; flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
}
.bn-root-ad[hidden] { display: none; }

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

.bn-badge-mw {
  display: inline-flex; align-items: center; align-self: flex-start;
  font-size: 11px; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--skin-r); line-height: 1;
}
.bn-title-1t {
  margin: 0; font-weight: 900; font-size: 22px;
  line-height: 1.2; letter-spacing: -.02em;
  padding-right: 36px;
}
.bn-sub-p9 { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.55; }
.bn-cta-nt {
  display: block; text-align: center;
  padding: 14px 20px; border-radius: var(--skin-r);
  background: var(--skin-btn-bg); color: var(--skin-btn-c);
  font-weight: 800; font-size: 15px;
  text-decoration: none; cursor: pointer;
  transition: filter .15s, transform .15s;
  letter-spacing: .01em; margin-top: 4px;
}
.bn-cta-nt:hover { filter: brightness(1.08); transform: translateY(-1px); }

@media (max-width: 600px) {
  .bn-root-ad {
    bottom: 0; left: 0; right: 0;
    width: 100%;
    transform: none;
    border-radius: var(--radius-3) var(--radius-3) 0 0;
    padding: 20px 16px 24px;
  }
  .bn-close-hn { top: 12px; right: 12px; }
  .bn-title-1t { font-size: 18px; padding-right: 36px; }
  .bn-sub-p9   { font-size: 13px; }
  .bn-cta-nt   { padding: 12px 16px; font-size: 14px; }
}


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

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

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

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

.faq-subtitle-mh {
  margin: 0;
  color: var(--muted);
}

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

.faq-item-2e {
  padding: var(--space-3);
  border-radius: var(--radius-2);
  border: 1px solid var(--border);
}

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

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


/* rg B */
/* RG B — two-line header (title + helpline) then sites row */

.rg-root-cc {
  padding: var(--space-3) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: 13px;
  color: var(--muted);
}

.rg-title-4y {
  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-al {
  font-size: 12px;
  color: var(--muted);
}

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

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


/* footer B */
/* Footer B — centered stacked: brand → nav → disclaimer → copyright */

.ft-root-fs {
  margin-top: var(--space-5);
  width: 100%;
  background: var(--bg);
  border-top: 2px solid var(--primary);
  padding: var(--space-5) 0 var(--space-4);
  text-align: center;
}

.ft-inner-g8 {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.ft-brand-bx {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.ft-logo-ef {
  height: 40px;
  width: auto;
  display: block;
}

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

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

.ft-nav-link-rd:hover { color: var(--fg); }

.ft-disclaimer-2f {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 700px;
}

.ft-copy-79 {
  font-size: 12px;
  color: var(--muted);
  margin-top: var(--space-1);
}

