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

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

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

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

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

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

.c_20f92 {
  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_18187 {
  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_27b74 {
  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_914d8 {
  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_35df3 {
  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_35df3:hover { opacity: .9; }

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

.c_7af9a {
  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_f9f3c,
.c_57c57 {
  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_f9f3c:hover,
.c_57c57:hover {
  background: rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .c_20f92 { font-size: clamp(20px, 3.5vw, 38px); }
  .c_b6729 { padding-left: 58px; padding-right: 58px; }
  .c_f9f3c, .c_57c57 { width: 38px; height: 38px; font-size: 22px; }
}

@media (max-width: 600px) {
  .c_1221a::before { padding-top: 90%; }
  .c_b6729 { padding-left: 48px; padding-right: 48px; }
  .c_20f92 { font-size: clamp(17px, 5vw, 26px); }
  .c_35df3 { padding: 11px 28px; font-size: 14px; }
  .c_a4834 { padding: 9px 20px; font-size: 13px; }
  .c_27b74 { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .c_f9f3c, .c_57c57 { width: 34px; height: 34px; font-size: 20px; }
  .c_7af9a { padding: 0 8px; }
}


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

.c_2cbf6 {}

.c_129c9 {
  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_6a79f {
  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_c4e92 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.7;
  color: var(--text);
}

@media (max-width: 600px) {
  .c_129c9 { font-size: 11px; margin-bottom: 8px; }
  .c_6a79f { 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_ac7c8 {
  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_ac7c8[hidden] { display: none; }

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

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

@media (max-width: 600px) {
  .c_ac7c8 {
    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_ffe3b { top: 12px; right: 12px; }
  .c_206db { font-size: 18px; padding-right: 36px; }
  .c_d1be1   { font-size: 13px; }
  .c_c11eb   { padding: 12px 16px; font-size: 14px; }
}


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

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

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

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

.c_ed2b0 {
  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_824a1 {
  overflow: hidden;
}

.c_177ef {
  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_44842 {
  display: flex;
  flex-direction: column;
}

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

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

.c_c4dfc: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_c4dfc:first-child .c_dabe9 {
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  font-weight: 700;
  font-size: 15px;
}

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

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

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

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

@media (max-width: 600px) {
  .c_177ef { padding: var(--space-3); }
  .c_dabe9, .c_bb549 { font-size: 13px; }
  .c_c4dfc { padding-left: var(--space-3); padding-right: var(--space-3); }
}


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

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

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

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

.c_89c6d {
  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_20097 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}

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


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

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

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

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

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

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

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

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


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

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

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

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

.c_f8e62 {
  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_f8e62:nth-child(even) { border-right: none; }
.c_f8e62:nth-last-child(-n+2) { border-bottom: none; }
.c_f8e62:hover { background: rgba(var(--primary-rgb), .05); }

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

.c_e3198 {
  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_d8829 { grid-template-columns: 1fr; }
  .c_f8e62 { border-right: none !important; }
  .c_f8e62:last-child { border-bottom: none; }
}


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

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

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

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

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

.c_a7feb {
  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_65d8b + .c_65d8b .c_9fd1c {
  border-top: 1px solid var(--border);
}

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

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

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

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


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

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

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

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

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

.c_f222c::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_bb4b1 {
  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_ec842 {
  padding: var(--card-pad);
}

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

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

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

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

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

.c_bf594 {
  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_7bb8d {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.c_2552e {
  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_ce954 {
  padding: var(--card-pad);
}

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

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

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

.c_ede2f {
  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_f0cca {
  padding: var(--space-2);
  color: var(--text);
  line-height: 1.5;
}

.c_cb320 + .c_cb320 .c_f0cca {
  border-top: 1px solid var(--border);
}

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

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

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


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

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

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

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

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

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

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

.c_3438c {
  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_35261 {
  padding: var(--space-2);
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  vertical-align: top;
}

@media (max-width: 600px) {
  .c_ea7e9 { display: flex; flex-wrap: wrap; padding: var(--space-2) 0; }
  .c_7e838 { width: auto; padding: 0 var(--space-1); }
  .c_3438c { padding: 0 var(--space-1); white-space: normal; }
  .c_35261 { padding: var(--space-1); flex-basis: 100%; }
}


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

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

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

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

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

.c_c9bf9 {
  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_a47f7 {
  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_2a7b3 {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}


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

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

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

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

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

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

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

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

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


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

.c_98978 > * {
  position: relative;
}

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

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

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

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

.c_58d24 {
  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_ce037 {
  flex: 1;
  min-width: 0;
}

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

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


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

.c_cee95 {
  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_87cde {
  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_a75a4 {
  margin: 0;
}

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

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

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


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

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

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

.c_51653 {
  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_51653: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;
}

