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

/* header F */
/* Header F — pill nav active, gradient brand, large CTA */

.hd-root-a {
  position: var(--hd-position, relative);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: var(--hd-height, 68px);
  background: linear-gradient(90deg, var(--surface) 0%, color-mix(in srgb, var(--surface) 85%, var(--bg)) 100%);
  border-bottom: 1px solid var(--border);
  transition: height .25s ease, box-shadow .25s ease;
}

.hd-root-a.hd-scrolled {
  height: calc(var(--hd-height, 68px) - 12px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
}

.hd-inner-qe {
  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-hf {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 21px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--primary), var(--secondary, #fff));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

.hd-logo-89 { height: calc(var(--hd-height, 64px) - 24px); width: auto; display: block; -webkit-text-fill-color: initial; }

.hd-nav-pz {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.hd-nav-link-ij {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.hd-nav-link-ij:hover { color: var(--fg); background: rgba(128, 128, 128, 0.12); }
.hd-nav-link-ij.hd-active { color: var(--bg); background: var(--primary); }

.hd-cta-g8 {
  display: inline-block;
  padding: 10px 24px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 999px;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.hd-cta-g8:hover { transform: scale(1.04); box-shadow: 0 4px 16px color-mix(in srgb, var(--primary) 50%, transparent); }

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

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

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

.hd-mobile-nav-r1 {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-4);
  background: var(--surface);
  gap: var(--space-2);
}

.hd-mobile-nav-r1[hidden] { display: none !important; }
.hd-mobile-nav-r1 .hd-nav-link-ij.hd-active { color: var(--primary); background: none; }
.hd-mobile-nav-r1 .hd-cta-g8 { margin-top: var(--space-2); text-align: center; border-radius: 999px; }

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


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

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

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

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

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

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

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

.bn-title-hq {
  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-om {
  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-q3 {
  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-m4 {
  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-3k {
  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-3k:hover { opacity: .9; }

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

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

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

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

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

@media (max-width: 600px) {
  .bn-root-nc::before { padding-top: 90%; }
  .bn-title-hq { font-size: clamp(17px, 5vw, 26px); }
  .bn-btn-3k { padding: 10px 24px; font-size: 14px; }
  .bn-btn-secondary-ii { padding: 8px 18px; font-size: 12px; }
  .bn-badge-q3 { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .bn-dot-i7 { width: 8px; height: 8px; }
}


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

.hero-root-f1 {}

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

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

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

.hero-item-66::marker {
  color: var(--primary);
}

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


/* overview D */
/* Overview D — prose + inline tag badges */

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

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

.ov-tags-jr {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.ov-tag-lq {
  display: inline-block;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(var(--primary-rgb), .08);
  border: 1px solid rgba(var(--primary-rgb), .18);
  border-radius: var(--radius-1);
  line-height: 1.4;
}


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

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

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

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

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

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

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

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

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

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


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

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

.bt-root-p2::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-fw {
  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-9q {
  width: 100%;
  border-collapse: collapse;
}

.bt-row-52:first-child .bt-label-2w,
.bt-row-52:first-child .bt-value-z {
  padding-top: var(--space-3);
}

.bt-row-52 + .bt-row-52 .bt-label-2w,
.bt-row-52 + .bt-row-52 .bt-value-z {
  border-top: 1px solid var(--border);
}

.bt-row-52:hover .bt-label-2w,
.bt-row-52:hover .bt-value-z {
  background: color-mix(in srgb, var(--primary) 6%, transparent);
}

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

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

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

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

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


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

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

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

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

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

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

.lb-card-name-a {
  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-r7 {
  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-r7:hover {
  opacity: .85;
}

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


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

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

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

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

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

.mb-card-head-ic {
  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-bq {
  font-size: 14px;
  font-weight: 800;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.mb-badge-hz {
  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-k6 {
  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-e9 {
  font-size: 13px;
  color: var(--text);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}

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


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

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

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

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

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

.pm-th-dq {
  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-p2 + .pm-row-p2 .pm-td-i {
  border-top: 1px solid var(--border);
}

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

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

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

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


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

@keyframes bnSlideUp   { from { transform: translateY(100%); opacity: 0 } to { transform: translateY(0); opacity: 1 } }
@keyframes bnSlideDown { from { transform: translateY(0); opacity: 1 } to { transform: translateY(100%); opacity: 0 } }
@keyframes bnFadeOut   { from { opacity: 1 } to { opacity: 0 } }
@keyframes bnPopUp  { from { transform: translateY(100%) scaleY(.6); opacity: 0 } to { transform: translateY(0) scaleY(1); opacity: 1 } }
@keyframes bnPopOut { from { transform: translateY(0) scaleY(1); opacity: 1 } to { transform: translateY(100%) scaleY(.6); opacity: 0 } }

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

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

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

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

@media (max-width: 600px) {
  .bn-inner-3 { padding: 16px 16px 20px; gap: 6px; }
  .bn-close-9r { top: 10px; right: 10px; width: 28px; height: 28px; font-size: 15px; }
  .bn-title-ph { font-size: 15px; padding: 0 32px; }
  .bn-sub-81   { display: none; }
  .bn-cta-ot   { max-width: 100%; padding: 12px 16px; font-size: 14px; }
}


/* support B */
/* Support B — cards (channel + hours) */

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

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

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

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

.sp-channel-67 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}

.sp-hours-3n {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}


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

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

.faq-title-qn {
  margin: 0 0 var(--space-1);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.15;
}

.faq-intro-r7 {
  margin: 0 0 var(--space-4);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.faq-item-k8 {
  border-bottom: 1px solid var(--border);
}

.faq-item-k8:first-of-type {
  border-top: 1px solid var(--border);
  margin-top: var(--space-3);
}

.faq-q-ia {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--text);
  font-weight: 700;
  font-size: clamp(14px, 1.2vw, 16px);
  padding: var(--space-3) 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  line-height: 1.4;
  transition: color .15s;
}

.faq-q-ia:hover {
  color: var(--brand);
}

.faq-q-ia::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-3);
  border: 1.5px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  color: var(--muted);
  transition: border-color .15s, color .15s, transform .2s;
}

.faq-q-ia[aria-expanded="true"]::after {
  content: "\2013";
  border-color: var(--brand);
  color: var(--brand);
  transform: rotate(180deg);
}

.faq-a-ky {
  padding: 0 0 var(--space-3);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}


/* rg C */
/* RG C — card grid of help sites + helpline footer */

.rg-root-jn {
  padding: var(--space-3) var(--space-4);
  font-size: 13px;
  color: var(--muted);
}

.rg-title-in {
  margin: 0 0 var(--space-3);
  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-grid-5f {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.rg-card-ll {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--space-2) var(--space-2);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  text-decoration: none;
  transition: border-color .15s;
}

.rg-card-ll:hover {
  border-color: var(--primary);
}

.rg-card-name-22 {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.rg-card-url-ai {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rg-helpline-5q {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: var(--space-2);
}


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

.ft-root-kw {
  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-1k {
  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-gl {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.5px;
}

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

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

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

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

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

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

