
/* shell */
.section-fs{ padding:var(--shell-pad,var(--section-gap,40px)) 0 0; }
.section-dense-gz{ padding:var(--section-gap-dense,16px) 0 0; }
.container-h8{ width:min(var(--shell-cw,var(--container-w,1100px)),calc(100% - var(--space-5))); margin:0 auto; }
.section-fs:not(.section-dense-gz) > .container-h8{ background:var(--shell-bg,var(--skin-bg)); border-radius:var(--skin-r); box-shadow:var(--shell-shadow,var(--skin-shadow)); backdrop-filter:var(--shell-blur,blur(var(--skin-blur))); overflow:hidden; }
figure.shot-mobile{ max-width:360px; margin-left:auto; margin-right:auto; border-radius:12px; overflow:hidden; }
figure.shot-mobile img{ max-height:560px; width:100%; object-fit:cover; object-position:top; display:block; }
@media(max-width:600px){ .section-fs{ padding:var(--shell-pad-mobile,var(--shell-pad)) 0 0; } .section-dense-gz{ padding:var(--section-gap-dense-mobile,var(--section-gap-dense)) 0 0; } }

/* header K */
/* Header K — centered brand: logo/name absolutely centered, nav left, CTA right */

.hd-root-5p {
  position: var(--hd-position, relative);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: var(--hd-height, 62px);
  background: var(--bg);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  transition: background .3s, box-shadow .25s, height .25s;
}

.hd-root-5p.hd-scrolled {
  height: calc(var(--hd-height, 62px) - 8px);
  background: color-mix(in srgb, var(--bg) 92%, var(--surface));
  box-shadow: 0 4px 20px rgba(0, 0, 0, .45);
}

.hd-inner-6v {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--space-4);
  display: flex;
  align-items: center;
}

.hd-brand-eu {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

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

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

.hd-nav-link-du {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 4px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.hd-nav-link-du:hover { color: var(--fg); background: rgba(255, 255, 255, .07); }

.hd-cta-4h {
  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;
}

.hd-cta-4h:hover { opacity: .88; }

.hd-actions-4 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-2);
}

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

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

.hd-mobile-nav-ko {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-4);
  background: color-mix(in srgb, var(--bg) 97%, var(--surface));
  border-top: 1px solid rgba(255,255,255,.06);
  gap: var(--space-2);
}

.hd-mobile-nav-ko[hidden] { display: none !important; }
.hd-mobile-nav-ko .hd-nav-link-du { font-size: 15px; padding: 10px 0; color: rgba(255,255,255,.7); border-bottom: 1px solid rgba(255,255,255,.07); border-radius: 0; background: none; }
.hd-mobile-nav-ko .hd-cta-4h { margin-top: var(--space-2); text-align: center; border-radius: 999px; }

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


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

.bn-root-gd {
  position: relative;
  width: calc(100% - var(--space-5) * 2);
  max-width: var(--container-w, 1100px);
  margin: var(--section-gap, 40px) auto 0;
  overflow: hidden;
  border-radius: var(--skin-r);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .45);
}

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

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

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

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

.bn-overlay-5v {
  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;
}

.bn-slide-pq[data-dark="light"]  .bn-overlay-5v { background: linear-gradient(to bottom, rgba(0, 0, 0, .18), rgba(0, 0, 0, .35)); }
.bn-slide-pq[data-dark="medium"] .bn-overlay-5v { background: linear-gradient(to bottom, rgba(0, 0, 0, .35), rgba(0, 0, 0, .55)); }
.bn-slide-pq[data-dark="dark"]   .bn-overlay-5v { background: linear-gradient(to bottom, rgba(0, 0, 0, .55), rgba(0, 0, 0, .78)); }

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

.bn-title-kh {
  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;
}

.bn-label-qt {
  display: inline-block;
  padding: 4px 14px;
  background: var(--skin-btn-bg);
  color: var(--skin-btn-c);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--skin-r);
}

.bn-badge-9k {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 12px;
  background: var(--skin-btn-bg);
  color: var(--skin-btn-c);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--skin-r);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}

.bn-subtitle-75 {
  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;
}

.bn-btn-gn {
  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);
}

.bn-btn-gn:hover { opacity: .9; }

.bn-btn-secondary-nf {
  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;
}

.bn-btn-secondary-nf:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

.bn-arrows-8f {
  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;
}

.bn-arrow-prev-9v,
.bn-arrow-next-a3 {
  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;
}

.bn-arrow-prev-9v:hover,
.bn-arrow-next-a3:hover {
  background: rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .bn-title-kh { font-size: clamp(20px, 3.5vw, 38px); }
  .bn-overlay-5v { padding-left: 58px; padding-right: 58px; }
  .bn-arrow-prev-9v, .bn-arrow-next-a3 { width: 38px; height: 38px; font-size: 22px; }
}

@media (max-width: 600px) {
  .bn-root-gd::before { padding-top: 90%; }
  .bn-overlay-5v { padding-left: 48px; padding-right: 48px; }
  .bn-title-kh { font-size: clamp(17px, 5vw, 26px); }
  .bn-btn-gn { padding: 11px 28px; font-size: 14px; }
  .bn-btn-secondary-nf { padding: 9px 20px; font-size: 13px; }
  .bn-badge-9k { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .bn-arrow-prev-9v, .bn-arrow-next-a3 { width: 34px; height: 34px; font-size: 20px; }
  .bn-arrows-8f { padding: 0 8px; }
}


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

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

.hero-title-j0 {
  margin: 0 0 24px;
  font-weight: 900;
  font-size: clamp(30px, 5.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.hero-intro-d8 {
  margin: 0 auto 16px;
  max-width: 640px;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.65;
  font-weight: 500;
  color: var(--text);
}

.hero-sub-n4 {
  margin: 0 auto;
  max-width: 600px;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.75;
  color: var(--text-muted, var(--text));
  opacity: .8;
}

@media (max-width: 600px) {
  .hero-title-j0 { font-size: 26px; margin-bottom: 16px; }
  .hero-intro-d8 { font-size: 16px; margin-bottom: 12px; }
}


/* overview A */
/* Overview A — prose + facts table */

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

.ov-title-3n {
  margin: 0 0 var(--space-2);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.ov-body-b {
  margin: 0 0 var(--space-4);
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}

.ov-table-j1 {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

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

.ov-label-l7 {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  width: 1%;
}

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


/* prose C */
/* Prose C — narrow blog-style column */

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

.pr-h2-ew {
  margin: 0 0 var(--space-3);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--skin-title);
}

.pr-h3-4b {
  margin: var(--space-4) 0 var(--space-2);
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

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

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

.pr-li-bx {
  margin-bottom: var(--space-2);
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

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

.pr-th-p6 {
  padding: var(--space-2);
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--border);
  color: var(--text);
}

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

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


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

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

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

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

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

.bt-row-3y:first-child .bt-label-qw,
.bt-row-3y:first-child .bt-value-df {
  padding-top: var(--space-3);
}

.bt-row-3y + .bt-row-3y .bt-label-qw,
.bt-row-3y + .bt-row-3y .bt-value-df {
  border-top: 1px solid var(--border);
}

.bt-row-3y:hover .bt-label-qw,
.bt-row-3y:hover .bt-value-df {
  background: color-mix(in srgb, var(--primary) 6%, transparent);
}

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

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

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

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

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


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

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

.pr-h2-kl {
  margin: 0 0 var(--space-4);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--skin-title);
  border-bottom: 2px solid var(--skin-ac);
  padding-bottom: var(--space-2);
}

.pr-h3-3e {
  margin: var(--space-5) 0 var(--space-3);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.pr-p-n9 {
  margin: 0 0 var(--space-4);
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

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

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

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

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

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

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

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


/* payments B */
/* Payments B — cards grid */

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

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

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

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

.pm-card-j0 {
  padding: var(--space-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  background: var(--bg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px var(--space-2);
  align-items: start;
}

.pm-method-hv {
  grid-column: 1 / -1;
  margin: 0 0 var(--space-1);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.pm-label-dw {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.pm-value-b3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  text-align: right;
  min-width: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* prose C */
/* Prose C — narrow blog-style column */

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

.pr-h2-2k {
  margin: 0 0 var(--space-3);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--skin-title);
}

.pr-h3-jr {
  margin: var(--space-4) 0 var(--space-2);
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

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

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

.pr-li-8h {
  margin-bottom: var(--space-2);
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

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

.pr-th-h2 {
  padding: var(--space-2);
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--border);
  color: var(--text);
}

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

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


/* providers E */
/* Providers E — numbered accent cards (left color border, num + logo + name) */

.pv-root-pa {
  padding: var(--card-pad);
}

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

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

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

.pv-card-g0 {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-1);
  transition: background .15s, box-shadow .15s;
}

.pv-card-g0:hover {
  background: rgba(var(--primary-rgb), .05);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

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

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

.pv-name-ht {
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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


/* lobby A */
/* Lobby A — simple grid: img above name, centered CTA */

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

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

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

.lb-card-2c {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  padding: var(--space-2);
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}

.lb-card-2c:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.lb-card-img-kr {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-1);
  background: var(--border);
}

.lb-card-name-bz {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  line-height: 1.3;
  text-align: center;
}

.lb-cta-48 {
  display: inline-block;
  margin: 0 auto;
  padding: 12px 32px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-1);
  transition: opacity .2s;
}

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

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

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


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

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

.pr-h2-mq {
  margin: 0 0 var(--space-4);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--skin-title);
  border-bottom: 2px solid var(--skin-ac);
  padding-bottom: var(--space-2);
}

.pr-h3-c5 {
  margin: var(--space-5) 0 var(--space-3);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.pr-p-dg {
  margin: 0 0 var(--space-4);
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

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

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

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

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

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

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

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


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

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

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

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

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

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

.sp-summary-r0 {
  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;
}

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

.sp-details-b6[open] > .sp-summary-r0::after {
  content: "\2212";
}

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

.sp-body-rk p {
  margin: 0 0 var(--space-1);
}

.sp-body-rk p:last-child {
  margin-bottom: 0;
}


/* security A */
/* Security A — simple prose paragraph */

.sc-root-8j {
  padding: var(--card-pad);
}

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

.sc-body-7b {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

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


/* license F */
/* License F — two-column split rows */

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

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

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

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

.lc-item-j1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  padding: var(--space-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  background: var(--bg);
}

.lc-left-j {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lc-reg-i4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.lc-country-s {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.lc-right-bw {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

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

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

.lc-note-82 {
  margin: var(--space-1) 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}


/* sticky-banner D */
/* Variant D — центрований банер-картка знизу
   HTML: bnRoot(relative, flex col) > bnClose(absolute) + bnBadge + bnTitle + bnSub + bnCta */

@keyframes bnCornerIn  { from { transform: translateX(-50%) translateY(80px); opacity: 0 } to { transform: translateX(-50%) translateY(0); opacity: 1 } }
@keyframes bnCornerOut { from { transform: translateX(-50%) translateY(0); opacity: 1 } to { transform: translateX(-50%) translateY(80px); opacity: 0 } }
@keyframes bnSlideUp   { from { transform: translateX(-50%) translateY(100%); opacity: 0 } to { transform: translateX(-50%) translateY(0); opacity: 1 } }
@keyframes bnSlideDown { from { transform: translateX(-50%) translateY(0); opacity: 1 } to { transform: translateX(-50%) translateY(100%); opacity: 0 } }
@keyframes bnFadeOut   { from { opacity: 1 } to { opacity: 0 } }

/* mobile-only keyframes (no translateX) */
@keyframes bnCornerInM  { from { transform: translateY(80px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }
@keyframes bnCornerOutM { from { transform: translateY(0); opacity: 1 } to { transform: translateY(80px); opacity: 0 } }

.bn-root-l4 {
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: min(560px, calc(100vw - 32px));
  border-radius: var(--skin-r);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 16px 56px rgba(0,0,0,.55);
  padding: 24px;
  display: flex; flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
}
.bn-root-l4[hidden] { display: none; }

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

.bn-badge-kr {
  display: inline-flex; align-items: center; align-self: flex-start;
  font-size: 11px; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--skin-r); line-height: 1;
}
.bn-title-4e {
  margin: 0; font-weight: 900; font-size: 22px;
  line-height: 1.2; letter-spacing: -.02em;
  padding-right: 36px;
}
.bn-sub-je { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.55; }
.bn-cta-7m {
  display: block; text-align: center;
  padding: 14px 20px; border-radius: var(--skin-r);
  background: var(--skin-btn-bg); color: var(--skin-btn-c);
  font-weight: 800; font-size: 15px;
  text-decoration: none; cursor: pointer;
  transition: filter .15s, transform .15s;
  letter-spacing: .01em; margin-top: 4px;
}
.bn-cta-7m:hover { filter: brightness(1.08); transform: translateY(-1px); }

@media (max-width: 600px) {
  .bn-root-l4 {
    bottom: 0; left: 0; right: 0;
    width: 100%;
    transform: none;
    border-radius: var(--radius-3) var(--radius-3) 0 0;
    padding: 20px 16px 24px;
  }
  .bn-close-n8 { top: 12px; right: 12px; }
  .bn-title-4e { font-size: 18px; padding-right: 36px; }
  .bn-sub-je   { font-size: 13px; }
  .bn-cta-7m   { padding: 12px 16px; font-size: 14px; }
}


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

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

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

.faq-subtitle-j7 {
  margin: 0 0 var(--space-3);
  color: var(--muted);
}

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

.faq-q-8i {
  margin: 0 0 var(--space-2);
  font-size: 16px;
}

.faq-a-je {
  margin: 0;
  color: var(--muted);
}

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

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

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

.rg-title-3s {
  margin: 0 0 var(--space-3);
  font-size: 13px;
  font-weight: 700;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.rg-grid-1a {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

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

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

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

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

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


/* footer C */
/* Footer C — two-column: brand+disclaimer left, nav right */

.ft-root-0 {
  margin-top: var(--space-5);
  width: 100%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--space-5) 0 var(--space-4);
}

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

.ft-inner-48 > div:first-child {
  flex: 1;
  min-width: 0;
}

.ft-brand-b1 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-2);
}

.ft-logo-mv {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: var(--space-2);
}

.ft-nav-rp {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex-shrink: 0;
}

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

.ft-nav-link-p:hover { color: var(--primary); }

.ft-disclaimer-mn {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: var(--space-1);
}

.ft-copy-11 {
  max-width: var(--container-w, 1100px);
  margin: var(--space-3) auto 0;
  padding: var(--space-3) var(--space-4) 0;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 640px) {
  .ft-inner-48 { flex-direction: column; }
  .ft-nav-rp { flex-direction: row; flex-wrap: wrap; }
}

