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

/* header H */
/* Header H — floating card: rounded card inset from viewport edges (best with position:fixed) */

/* Account for the 14px top offset so body padding compensates correctly */
:root { --hd-total: calc(var(--hd-height, 62px) + 22px); }

.hd-root-80 {
  position: var(--hd-position, relative);
  top: 14px;
  left: 20px;
  right: 20px;
  z-index: 1000;
  width: auto;
  height: var(--hd-height, 62px);
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 4px 28px rgba(0, 0, 0, .30);
  transition: box-shadow .3s, height .25s;
}

.hd-root-80.hd-scrolled {
  height: calc(var(--hd-height, 62px) - 6px);
  box-shadow: 0 10px 48px rgba(0, 0, 0, .52);
}

.hd-inner-48 {
  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-51 {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 19px;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
}

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

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

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

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

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

.hd-cta-he:hover { opacity: .88; transform: translateY(-1px); }

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

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

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

/* Dropdown hangs below the card with matching rounded bottom */
.hd-mobile-nav-3f {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 14px 14px;
  gap: var(--space-2);
}

.hd-mobile-nav-3f[hidden] { display: none !important; }
.hd-mobile-nav-3f .hd-cta-he { margin-top: var(--space-2); text-align: center; }

@media (max-width: 768px) {
  :root { --hd-total: calc(var(--hd-height, 62px) + 18px); }
  .hd-root-80 { left: 10px; right: 10px; top: 10px; }
  .hd-nav-r1 { display: none; }
  .hd-burger-np { display: flex; }
}


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

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

.bc-list-b3 {
  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-ow {
  display: flex;
  align-items: center;
}

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

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

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

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


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

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

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

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

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

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

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

.bn-title-ov {
  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-jb {
  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-km {
  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-ob {
  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-il {
  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-il:hover { opacity: .9; }

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

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

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

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

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

@media (max-width: 600px) {
  .bn-root-6z::before { padding-top: 90%; }
  .bn-title-ov { font-size: clamp(17px, 5vw, 26px); }
  .bn-btn-il { padding: 10px 24px; font-size: 14px; }
  .bn-btn-secondary-dd { padding: 8px 18px; font-size: 12px; }
  .bn-badge-km { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .bn-dot-oi { width: 8px; height: 8px; }
}


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

.hero-root-hb { text-align: center; }

.hero-title-b {
  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-87 {
  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-jj {
  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-b { font-size: 26px; margin-bottom: 16px; }
  .hero-intro-87 { font-size: 16px; margin-bottom: 12px; }
}


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

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

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


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

.bt-root-5q {
  padding: var(--card-pad);
  position: relative;
  overflow: hidden;
}

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

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

.bt-table-ie {
  width: 100%;
  border-collapse: collapse;
}

.bt-row-pa:first-child .bt-label-j4,
.bt-row-pa:first-child .bt-value-l7 {
  padding-top: var(--space-3);
}

.bt-row-pa + .bt-row-pa .bt-label-j4,
.bt-row-pa + .bt-row-pa .bt-value-l7 {
  border-top: 1px solid var(--border);
}

.bt-row-pa:hover .bt-label-j4,
.bt-row-pa:hover .bt-value-l7 {
  background: color-mix(in srgb, var(--primary) 6%, transparent);
}

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

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

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

@media (max-width: 600px) {
  .bt-label-j4, .bt-value-l7 { font-size: 13px; }
}

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


/* prose A */
/* Prose A — standard */

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

.pr-h2-hf {
  margin: 0 0 var(--space-3);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--skin-title);
}

.pr-h3-8 {
  margin: var(--space-4) 0 var(--space-2);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

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

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

.pr-li-d6 {
  margin-bottom: var(--space-1);
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

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

.pr-thead-fx {
  background: var(--skin-ac);
}

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

.pr-tbody-jb tr:nth-child(even) {
  background: color-mix(in srgb, var(--skin-bc) 30%, transparent);
}

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

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


/* payments A */
/* Payments A — full multi-column table */

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

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

.pm-table-5b {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.pm-thead-pl {
  border-bottom: 2px solid var(--primary);
}

.pm-th-8h {
  padding: var(--space-2) var(--space-2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--primary);
  text-align: left;
  white-space: nowrap;
}

.pm-row-63 + .pm-row-63 .pm-td-kd {
  border-top: 1px solid var(--border);
}

.pm-td-kd {
  padding: var(--space-2);
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  vertical-align: middle;
}

.pm-method-r4 {
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .pm-th-8h, .pm-td-kd { padding: var(--space-1); font-size: 12px; }
}

.pm-screenshot-jd {
  margin: 28px 0;
  border-radius: var(--radius-1);
  overflow: hidden;
  line-height: 0;
}
.pm-screenshot-jd 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-b3 {
  padding: var(--card-pad);
}

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

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

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

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

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

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


/* lobby C */
/* Lobby C — overlay name on image, compact grid */

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

.lb-title-qa {
  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-d8 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.lb-card-qi {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-1);
  overflow: hidden;
  text-decoration: none;
  transition: transform .15s;
  cursor: pointer;
}

.lb-card-qi:hover {
  transform: scale(1.03);
}

.lb-card-img-j5 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--border);
}

.lb-card-name-hl {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, .75), transparent);
  line-height: 1.3;
}

.lb-cta-c6 {
  display: inline-block;
  padding: 11px 28px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-1);
  transition: opacity .2s;
}

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

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


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

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

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

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

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

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

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

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

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

.mb-details-31[open] .mb-summary-e3 {
  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-g {
  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-kd {
  padding: 10px 14px 12px;
  background: var(--surface);
}

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

.mb-chip-5r {
  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;
}


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

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

.sp-title-a9 {
  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-body-6d {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}


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

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

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

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

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

.sc-summary-ky {
  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-ky::after {
  content: "+";
  margin-left: auto;
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  transition: transform .2s;
}

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

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


/* license D */
/* License D — accordion */

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

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

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

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

.lc-summary-3h {
  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;
  gap: var(--space-2);
}

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

.lc-details-cj[open] > .lc-summary-3h::after {
  content: "-";
}

.lc-body-gr {
  padding: 0 var(--space-3) var(--space-3);
}

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

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

.lc-note-oj {
  margin: var(--space-2) 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}


/* 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-bd {
  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-bd[hidden] { display: none; }

.bn-close-cn {
  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-cn:hover { background: rgba(255,255,255,.1); color: var(--text); }

.bn-badge-r0 {
  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-l {
  margin: 0; font-weight: 900; font-size: 22px;
  line-height: 1.2; letter-spacing: -.02em;
  padding-right: 36px;
}
.bn-sub-ll { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.55; }
.bn-cta-k5 {
  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-k5:hover { filter: brightness(1.08); transform: translateY(-1px); }

@media (max-width: 600px) {
  .bn-root-bd {
    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-cn { top: 12px; right: 12px; }
  .bn-title-l { font-size: 18px; padding-right: 36px; }
  .bn-sub-ll   { font-size: 13px; }
  .bn-cta-k5   { padding: 12px 16px; font-size: 14px; }
}


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

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

.pr-h2-4l {
  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-f6 {
  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-cd {
  margin: 0 0 var(--space-4);
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

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

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

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

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

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

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

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


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

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

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

.faq-intro-qd {
  margin: 0 0 var(--space-4);
  color: var(--muted);
}

.faq-list-jx {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item-7m {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  padding: var(--space-3) 0;
  border-top: 1px solid var(--border);
}

.faq-num-rb {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-1);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  background: color-mix(in srgb, var(--brand) 14%, transparent);
  color: var(--brand);
  margin-top: 2px;
}

.faq-body-ih {
  flex: 1;
  min-width: 0;
}

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

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


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

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

.dc-text-er {
  margin: 0;
}

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

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

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


/* rg F */
/* RG F — compact single-line / flex row */

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

.rg-title-m4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}

.rg-helpline-9z {
  font-size: 12px;
  color: var(--muted);
}

.rg-row-5y {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-left: auto;
}

.rg-site-link-h9 {
  display: inline-block;
  padding: 2px 9px;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid rgba(var(--primary-rgb), .35);
  border-radius: var(--radius-3);
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
}

.rg-site-link-h9:hover {
  background: rgba(var(--primary-rgb), .08);
}

@media (max-width: 600px) {
  .rg-row-5y { margin-left: 0; }
}


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

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

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

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

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

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

.ft-brand-lp {
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
}

.ft-logo-gn {
  height: 36px;
  width: auto;
  display: block;
}

.ft-copy-6l {
  font-size: 12px;
  color: var(--muted);
}

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

