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

/* header D */
/* Header D — minimal text-only brand, nav+CTA inline right */

.c_ef418 {
  position: var(--hd-position, relative);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: var(--hd-height, 52px);
  background: transparent;
  transition: background .3s, height .25s;
}

.c_ef418.hd-scrolled {
  background: var(--bg);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  height: calc(var(--hd-height, 52px) - 4px);
}

.c_54cd1 {
  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-3);
}

.c_f3cd6 {
  text-decoration: none;
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-shrink: 0;
}

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

.c_c088c {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

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

.c_3d2db:hover { color: var(--fg); }

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

.c_c6691:hover { opacity: .88; }

.c_a66ff {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
  margin-left: auto;
}

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

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

.c_d7513 {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-4);
  background: var(--bg);
  gap: var(--space-2);
}

.c_d7513[hidden] { display: none !important; }
.c_d7513 .c_c6691 { margin-top: var(--space-2); text-align: center; border-radius: 999px; }

@media (max-width: 768px) {
  .c_c088c { display: none; }
  .c_164f8 { display: flex; }
}


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

.c_8bdbb {
  padding: var(--space-2) var(--space-5);
}

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

.c_b3227 {
  display: flex;
  align-items: center;
}

.c_5b6bf {
  color: var(--fg);
  text-decoration: none;
}

.c_5b6bf:hover {
  color: var(--skin-ac);
}

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

.c_a15ba {
  color: var(--fg);
}


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

.c_e780b {
  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);
}

.c_e780b::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 */
}

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

.c_ef440[data-active] {
  opacity: 1;
  pointer-events: auto;
}

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

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

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

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

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

.c_ab3c8 {
  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);
}

.c_79a20 {
  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);
}

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

.c_9ac06 {
  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);
}

.c_9ac06:hover { opacity: .9; }

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

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

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

.c_bb326,
.c_95584 {
  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;
}

.c_bb326:hover,
.c_95584:hover {
  background: rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .c_4148d { font-size: clamp(20px, 3.5vw, 38px); }
  .c_83e61 { padding-left: 58px; padding-right: 58px; }
  .c_bb326, .c_95584 { width: 38px; height: 38px; font-size: 22px; }
}

@media (max-width: 600px) {
  .c_e780b::before { padding-top: 90%; }
  .c_83e61 { padding-left: 48px; padding-right: 48px; }
  .c_4148d { font-size: clamp(17px, 5vw, 26px); }
  .c_9ac06 { padding: 11px 28px; font-size: 14px; }
  .c_b6a3f { padding: 9px 20px; font-size: 13px; }
  .c_79a20 { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .c_bb326, .c_95584 { width: 34px; height: 34px; font-size: 20px; }
  .c_36eb3 { padding: 0 8px; }
}


/* hero F */
/* Hero F — two-column grid: split title left, intro right */

.c_5ef77 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.c_45cae {
  margin: 0 0 8px;
  font-weight: 900;
  font-size: clamp(26px, 4.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.c_82e6b {
  margin: 0;
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--primary);
}

.c_2967d {
  margin: 0;
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.75;
  color: var(--text);
  align-self: center;
}

@media (max-width: 600px) {
  .c_5ef77 { grid-template-columns: 1fr; gap: 16px; }
  .c_45cae { font-size: 24px; margin-bottom: 4px; }
  .c_82e6b { font-size: 15px; }
}


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

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

.c_1d51f {
  min-width: 0;
}

.c_b84f4 {
  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);
}

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

.c_1418c {
  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);
}

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

.c_70ad7:first-child {
  margin-top: 0;
}

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

@media (max-width: 640px) {
  .c_d1609 { grid-template-columns: 1fr; }
  .c_1418c { max-width: none; }
}


/* bonus B */
/* bonus B — vertical rows: label left, value right */

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

.c_907ad {
  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);
}

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

.c_7542e {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-1);
  border: 1px solid var(--border);
  background: var(--bg);
  min-width: 0;
}

.c_7542e:first-child {
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--primary) 15%, var(--surface)),
    color-mix(in srgb, var(--secondary) 10%, var(--surface)));
  border-color: var(--primary);
  padding: var(--space-4);
}

.c_a9820 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  line-height: 1.4;
  flex-shrink: 0;
  white-space: nowrap;
}

.c_e87ff {
  font-size: 14px;
  font-weight: 700;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  line-height: 1.4;
  text-align: right;
  overflow-wrap: break-word;
  min-width: 0;
}

.c_7542e:first-child .c_a9820 {
  font-size: 12px;
}

.c_7542e:first-child .c_e87ff {
  font-size: clamp(15px, 1.8vw, 20px);
  color: var(--primary);
}

@media (max-width: 480px) {
  .c_7542e {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .c_e87ff { text-align: left; }
}


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

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

.c_ad2cf {
  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);
}

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

.c_27b5c {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.c_83bc2 {
  border-bottom: 2px solid var(--primary);
}

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

.c_aafd8 + .c_aafd8 .c_b727f {
  border-top: 1px solid var(--border);
}

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

.c_b285e {
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .c_5fec5, .c_b727f { padding: var(--space-1); font-size: 12px; }
}

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


/* providers F */
/* Providers F — CSS marquee auto-scroll strip (no JS) */

.c_d11d1 {
  padding: var(--card-pad);
  overflow: hidden;
}

.c_bcf72 {
  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);
}

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

@keyframes pvMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.c_b573a {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.c_d7dc7 {
  display: flex;
  gap: var(--space-3);
  width: max-content;
  animation: pvMarquee 28s linear infinite;
}

.c_d7dc7:hover {
  animation-play-state: paused;
}

.c_c4123 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  width: 140px;
  flex-shrink: 0;
  padding: var(--space-3) var(--space-2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  text-align: center;
  transition: border-color .2s;
}

.c_c4123:hover {
  border-color: rgba(var(--primary-rgb), .4);
}

.c_f3ee7 {
  width: 100%;
  height: 44px;
  object-fit: contain;
}

.c_eb586 {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}


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

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

.c_c5288 {
  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);
}

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

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

.c_7bafe:hover {
  transform: scale(1.03);
}

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

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

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

.c_714f2:hover {
  opacity: .85;
}

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


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

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

.c_6d2a4 {
  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);
}

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

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

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

.c_52805 {
  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);
}

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

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

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

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

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


/* security G */
/* Security G — highlighted callout blockquote */

.c_21179 {
  padding: 0;
}

.c_a9b4c {
  margin: 0;
  padding: var(--space-4);
  background: var(--skin-bg);
  border-left-width: calc(var(--skin-bw) + var(--skin-accent));
  border-left-color: var(--skin-ac);
  border-style: solid;
  border-width: var(--skin-bw);
  border-color: var(--skin-bc);
  border-radius: var(--skin-r);
  backdrop-filter: blur(var(--skin-blur));
}

.c_aeb39 {
  display: block;
  margin-bottom: var(--space-2);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 800;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  line-height: 1.3;
}

.c_cd540 {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
}


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

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

.c_e8a03 {
  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);
}

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

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

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

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

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

.c_2691b[open] > .c_85e62::after {
  content: "\2212";
}

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

.c_797ff p {
  margin: 0 0 var(--space-1);
}

.c_797ff p:last-child {
  margin-bottom: 0;
}


/* sticky-banner A */
/* Variant A — горизонтальний sticky банер
   HTML: bnRoot > bnInner > div(bnLabel+bnTitle+bnSub) + bnCta + bnClose */

@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 } }

.c_675eb {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  padding: 8px 16px;
  box-sizing: border-box;
}
.c_675eb[hidden] { display: none; }

.c_c1713 {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 48px 14px 20px;
  border-radius: var(--skin-r);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 -4px 32px rgba(0,0,0,.45);
  box-sizing: border-box;
}

.c_e4d80 {
  position: absolute;
  top: 50%; right: 12px;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--muted);
  font-size: 18px;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: var(--skin-r);
  transition: color .15s, background .15s;
  line-height: 1;
}
.c_e4d80:hover { color: var(--text); background: rgba(255,255,255,.08); }

.c_5957e {
  display: inline-block;
  font-size: 11px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 2px 8px; border-radius: var(--skin-r);
  margin-bottom: 2px;
}
.c_4b35c { margin: 0; font-weight: 800; font-size: clamp(14px,1.4vw,17px); line-height: 1.3; }
.c_e513f  { margin: 2px 0 0; font-size: 13px; color: var(--muted); line-height: 1.4; }
.c_e5005  {
  flex-shrink: 0; margin-left: auto;
  display: inline-block; padding: 10px 24px;
  background: var(--skin-btn-bg); color: var(--skin-btn-c);
  border-radius: var(--skin-r); font-weight: 800; font-size: 14px;
  text-decoration: none; white-space: nowrap; cursor: pointer;
}

@media (max-width: 600px) {
  .c_675eb { padding: 0; }
  .c_c1713 {
    border-radius: 0;
    border-left: 0; border-right: 0; border-bottom: 0;
    padding: 12px 44px 12px 12px;
    gap: 8px; flex-wrap: wrap;
  }
  .c_e513f   { display: none; }
  .c_5957e { margin-bottom: 0; }
  .c_4b35c { font-size: 14px; }
  .c_e4d80 { top: 12px; right: 8px; transform: none; width: 28px; height: 28px; font-size: 16px; }
  .c_e5005   { flex: 1 1 100%; text-align: center; margin-left: 0; padding: 10px 12px; font-size: 13px; }
}


/* loyalty A */
/* Loyalty A — grid cards */

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

.c_2422d {
  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);
}

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

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

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

.c_52365 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.c_fe7b5 {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.c_a9e10 {
  margin: 0;
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

@media (max-width: 600px) {
  .c_749c8 { grid-template-columns: 1fr; }
}

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


/* promo E */
/* Promo E — definition list */

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

.c_c8d32 {
  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);
}

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

.c_b0267 {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 var(--space-3);
  align-items: baseline;
}

.c_fcb9f {
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border);
}

.c_b9eaa {
  margin: 0;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 480px) {
  .c_b0267 { grid-template-columns: 1fr; }
  .c_fcb9f { border-bottom: none; padding-bottom: 0; }
  .c_b9eaa { padding-top: 2px; }
}


/* license B */
/* License B — cards grid */

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

.c_aa0f0 {
  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);
}

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

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

.c_3b3cf {
  padding: var(--space-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  background: var(--bg);
}

.c_546d1 {
  display: block;
  margin: 0 0 var(--space-1);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.c_a8bd3 {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: var(--space-2);
}

.c_2e762 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  margin-bottom: 2px;
}

.c_3b608 {
  font-size: 13px;
  color: var(--text);
  font-family: monospace;
}


/* faq B */
.c_34e6d {
  padding: var(--card-pad);
  position: relative;
  overflow: hidden;
}

.c_34e6d>* {
  position: relative;
}

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

.c_c438f {
  margin: 0 0 var(--space-3);
  color: var(--muted);
}

.c_3844c {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-3);
}

.c_c2726 {
  margin: 0 0 var(--space-2);
  font-size: 16px;
}

.c_ba26e {
  margin: 0;
  color: var(--muted);
}

.c_1819f {
  transition: transform .14s ease, border-color .14s ease, background .14s ease, box-shadow .14s ease;
}

/* disclaimer A */
/* Disclaimer A — aside box with info icon */

.c_d1fb9 {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-3);
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.c_97f8e {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), .10);
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
}

.c_cdd07 {
  margin: 0;
}

.c_f3a60 {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.c_f3a60:hover {
  text-decoration: none;
}

@media (max-width: 480px) {
  .c_d1fb9 { font-size: 12px; padding: var(--space-2); }
  .c_97f8e { width: 20px; height: 20px; font-size: 11px; }
}


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

.c_cef2c {
  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);
}

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

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

.c_87718 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

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

.c_93d00:hover {
  background: rgba(var(--primary-rgb), .08);
}


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

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

.c_84b5b {
  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);
}

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

.c_15b3c {
  height: 40px;
  width: auto;
  display: block;
}

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

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

.c_87904:hover { color: var(--fg); }

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

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

