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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.c_60fc0[hidden] { display: none !important; }
.c_60fc0 .c_26306.hd-active { color: var(--primary); background: none; }
.c_60fc0 .c_f5916 { margin-top: var(--space-2); text-align: center; border-radius: 999px; }

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


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

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

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

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

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

.c_e15c4 {
  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_cfd58[data-dark="light"]  .c_e15c4 { background: linear-gradient(to bottom, rgba(0, 0, 0, .18), rgba(0, 0, 0, .35)); }
.c_cfd58[data-dark="medium"] .c_e15c4 { background: linear-gradient(to bottom, rgba(0, 0, 0, .35), rgba(0, 0, 0, .55)); }
.c_cfd58[data-dark="dark"]   .c_e15c4 { background: linear-gradient(to bottom, rgba(0, 0, 0, .55), rgba(0, 0, 0, .78)); }

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

.c_b63f3 {
  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_38e28 {
  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_56137 {
  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_32b9b {
  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_89c17 {
  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_89c17:hover { opacity: .9; }

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

.c_6b3a3 {
  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_d1a0e,
.c_61380 {
  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_d1a0e:hover,
.c_61380:hover {
  background: rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .c_b63f3 { font-size: clamp(20px, 3.5vw, 38px); }
  .c_e15c4 { padding-left: 58px; padding-right: 58px; }
  .c_d1a0e, .c_61380 { width: 38px; height: 38px; font-size: 22px; }
}

@media (max-width: 600px) {
  .c_be165::before { padding-top: 90%; }
  .c_e15c4 { padding-left: 48px; padding-right: 48px; }
  .c_b63f3 { font-size: clamp(17px, 5vw, 26px); }
  .c_89c17 { padding: 11px 28px; font-size: 14px; }
  .c_286d1 { padding: 9px 20px; font-size: 13px; }
  .c_56137 { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .c_d1a0e, .c_61380 { width: 34px; height: 34px; font-size: 20px; }
  .c_6b3a3 { padding: 0 8px; }
}


/* hero D */
/* Hero D — eyebrow label + large h1 + intro */

.c_24260 {}

.c_c8d12 {
  display: block;
  margin: 0 0 10px;
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
}

.c_f8c84 {
  margin: 0 0 28px;
  font-weight: 900;
  font-size: clamp(32px, 6vw, 60px);
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.c_9b20b {
  margin: 0;
  max-width: 720px;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.7;
  color: var(--text);
}

@media (max-width: 600px) {
  .c_c8d12 { font-size: 11px; margin-bottom: 8px; }
  .c_f8c84 { font-size: 28px; margin-bottom: 18px; }
}


/* 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 } }

.c_486a6 {
  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;
}
.c_486a6[hidden] { display: none; }

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

.c_99377 {
  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;
}
.c_d4204 {
  margin: 0; font-weight: 900; font-size: 22px;
  line-height: 1.2; letter-spacing: -.02em;
  padding-right: 36px;
}
.c_2e478 { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.55; }
.c_ff5f8 {
  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;
}
.c_ff5f8:hover { filter: brightness(1.08); transform: translateY(-1px); }

@media (max-width: 600px) {
  .c_486a6 {
    bottom: 0; left: 0; right: 0;
    width: 100%;
    transform: none;
    border-radius: var(--radius-3) var(--radius-3) 0 0;
    padding: 20px 16px 24px;
  }
  .c_9e43d { top: 12px; right: 12px; }
  .c_d4204 { font-size: 18px; padding-right: 36px; }
  .c_2e478   { font-size: 13px; }
  .c_ff5f8   { padding: 12px 16px; font-size: 14px; }
}


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

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

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

.c_df62b {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

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


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

.c_52b89 {
  overflow: hidden;
}

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

.c_6f7cf {
  display: flex;
  flex-direction: column;
}

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

.c_e29dc:nth-child(even) {
  background: var(--bg);
}

.c_e29dc: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);
}

.c_e29dc:first-child .c_1fbcb {
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  font-weight: 700;
  font-size: 15px;
}

.c_e29dc:first-child .c_ff87d {
  font-size: 17px;
  color: var(--primary);
}

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

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

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

@media (max-width: 600px) {
  .c_210fc { padding: var(--space-3); }
  .c_1fbcb, .c_ff87d { font-size: 13px; }
  .c_e29dc { padding-left: var(--space-3); padding-right: var(--space-3); }
}


/* promo B */
/* Promo B — cards grid */

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

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

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

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

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

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


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

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

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

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

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

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

.c_c1169 {
  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_f58ad {
  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_f58ad:hover {
  opacity: .85;
}

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


/* providers B */
/* Providers B — horizontal directory rows (logo + bold name) */

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

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

.c_d9cf1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  overflow: hidden;
}

.c_20cdb {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-3);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background .15s;
}

.c_20cdb:nth-child(even) { border-right: none; }
.c_20cdb:nth-last-child(-n+2) { border-bottom: none; }
.c_20cdb:hover { background: rgba(var(--primary-rgb), .05); }

.c_3de43 {
  width: 72px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(.9);
}

.c_26c44 {
  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) {
  .c_d9cf1 { grid-template-columns: 1fr; }
  .c_20cdb { border-right: none !important; }
  .c_20cdb:last-child { border-bottom: none; }
}


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

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

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

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

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

.c_8d49a {
  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_7da51 + .c_7da51 .c_92c2a {
  border-top: 1px solid var(--border);
}

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

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

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

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


/* security D */
/* Security D — checklist */

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

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

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

.c_77907 {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
}

.c_32c66::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 13px;
  font-weight: 800;
  color: var(--bg);
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  line-height: 1;
}

.c_794bc {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}


/* mobile D */
/* Mobile D — vertical list rows: platform name + type badge + feature chips */

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

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

/* list */
.c_60623 {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

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

.c_19b5d {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

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

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

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

.c_cf323 {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 99px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* support A */
/* Support A — full table */

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

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

.c_2d96d {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

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

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

.c_ba206 {
  padding: var(--space-2);
  color: var(--text);
  line-height: 1.5;
}

.c_1c91e + .c_1c91e .c_ba206 {
  border-top: 1px solid var(--border);
}

.c_c3aa1 {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

@media (max-width: 580px) {
  .c_2d96d, .c_a8efc, .c_1c91e, .c_ba206, .c_b89f1 {
    display: block;
    width: 100%;
  }
  .c_a8efc { display: none; }
  .c_1c91e + .c_1c91e { margin-top: var(--space-2); }
  .c_1c91e + .c_1c91e .c_ba206 { border-top: none; }
  .c_1c91e { border: 1px solid var(--border); border-radius: var(--radius-1); padding: var(--space-2); }
  .c_ba206 { padding: 2px 0; }
  .c_ba206::before { font-size: 11px; color: var(--muted); text-transform: uppercase; display: block; }
  .c_1c91e .c_ba206:nth-child(2)::before { content: "Languages"; }
  .c_1c91e .c_ba206:nth-child(3)::before { content: "Hours"; }
}

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


/* registration B */
/* Registration B — table layout */

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

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

.c_978cd {
  width: 100%;
  border-collapse: collapse;
}

.c_2afa4 {
  border-bottom: 1px solid var(--border);
}

.c_2afa4:last-child { border-bottom: none; }

.c_dcb19 {
  width: 40px;
  padding: var(--space-2);
  text-align: center;
  font-weight: 800;
  font-size: 18px;
  color: var(--primary);
  vertical-align: top;
}

.c_c406f {
  padding: var(--space-2);
  font-size: 14px;
  font-weight: 700;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  vertical-align: top;
  white-space: nowrap;
}

.c_5728e {
  padding: var(--space-2);
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  vertical-align: top;
}

@media (max-width: 600px) {
  .c_2afa4 { display: flex; flex-wrap: wrap; padding: var(--space-2) 0; }
  .c_dcb19 { width: auto; padding: 0 var(--space-1); }
  .c_c406f { padding: 0 var(--space-1); white-space: normal; }
  .c_5728e { padding: var(--space-1); flex-basis: 100%; }
}


/* kyc D */
/* KYC D — numbered timeline */

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

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

.c_d7953 {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-left: 12px;
  border-left: 2px solid var(--border);
}

.c_6fb8f {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
  position: relative;
}

.c_afdf5 {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  margin-left: -25px;
}

.c_ea5b3 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  line-height: 1.3;
}

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


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

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

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

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

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

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

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

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

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


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

.c_772d3 > * {
  position: relative;
}

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

.c_6333b {
  margin: 0 0 var(--space-4);
  color: var(--muted);
}

.c_8d8c0 {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

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

.c_73e8d {
  flex: 1;
  min-width: 0;
}

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

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


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

.c_8438a {
  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_df818 {
  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_ea39c {
  margin: 0;
}

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

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

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


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

.c_66e53 {
  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_3abb4 {
  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_3e405 {
  margin: 0 0 var(--space-2);
  font-size: 12px;
  color: var(--muted);
}

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

.c_8c76f {
  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_8c76f:hover {
  background: rgba(var(--primary-rgb), .08);
}


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

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

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

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

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

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

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

.c_3d190 {
  height: 36px;
  width: auto;
  display: block;
}

.c_344a3 {
  font-size: 12px;
  color: var(--muted);
}

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

