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

/* header C */
/* Header C — two-row: brand row + full-width nav row */

/* Two-row total height on :root so body{padding-top:var(--hd-total)} can inherit it */
:root { --hd-total: calc(var(--hd-height, 54px) + 42px); }

.c_77273 {
  position: var(--hd-position, relative);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s ease;
}

.c_77273.hd-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.c_affcd {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  height: var(--hd-height, 54px);
  padding: 0 var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

/* Second row nav */
.c_15e74 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  padding: 0 var(--space-4);
  border-top: 1px solid var(--border);
  height: 42px;
}

.c_98e04 {
  display: flex;
  align-items: center;
  height: 42px;
  padding: 0 var(--space-3);
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}

.c_98e04:hover { color: var(--fg); border-bottom-color: var(--primary); }

.c_a5350 {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: var(--radius-1);
  transition: opacity .2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.c_a5350:hover { opacity: .88; }

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

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

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

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

.c_ce7bc[hidden] { display: none !important; }
.c_ce7bc .c_a5350 { margin-top: var(--space-2); text-align: center; }

@media (max-width: 768px) {
  .c_15e74 { display: none; }
  .c_72d78 { display: flex; }
  :root { --hd-total: var(--hd-height, 54px); }
}


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

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

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

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

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

.c_1d891 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  padding: var(--space-4);
  padding-bottom: 52px; /* room for dots */
  text-align: center;
}

.c_73f33[data-dark="light"]  .c_1d891 { background: linear-gradient(to bottom, rgba(0, 0, 0, .12), rgba(0, 0, 0, .28)); }
.c_73f33[data-dark="medium"] .c_1d891 { background: linear-gradient(to bottom, rgba(0, 0, 0, .3),  rgba(0, 0, 0, .5));  }
.c_73f33[data-dark="dark"]   .c_1d891 { background: linear-gradient(to bottom, rgba(0, 0, 0, .5),  rgba(0, 0, 0, .75)); }

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

.c_e345a {
  margin: 0;
  font-size: clamp(22px, 3.5vw, 46px);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
  line-height: 1.2;
}

.c_811d0 {
  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_23daa {
  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_2a0e5 {
  margin: 0;
  font-size: clamp(13px, 1.8vw, 19px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
  line-height: 1.4;
}

.c_42d67 {
  display: inline-block;
  padding: 13px 34px;
  background: var(--skin-btn-bg);
  color: var(--skin-btn-c);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: var(--skin-r);
  transition: opacity .2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
}

.c_42d67:hover { opacity: .9; }

.c_9b6a1 {
  display: inline-block;
  padding: 10px 24px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: var(--skin-r);
  border: 2px solid rgba(255, 255, 255, 0.65);
  transition: background .2s, border-color .2s;
}

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

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

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

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

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

@media (max-width: 600px) {
  .c_b62a3::before { padding-top: 90%; }
  .c_e345a { font-size: clamp(17px, 5vw, 26px); }
  .c_42d67 { padding: 10px 24px; font-size: 14px; }
  .c_9b6a1 { padding: 8px 18px; font-size: 12px; }
  .c_23daa { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .c_2b585 { width: 8px; height: 8px; }
}


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

.c_79b7b {}

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

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

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

.c_7333b::marker {
  color: var(--primary);
}

@media (max-width: 600px) {
  .c_f78d7 { font-size: 20px; margin-bottom: 14px; }
  .c_5e0eb { gap: 6px; }
}


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

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

.c_6dbdf {
  min-width: 0;
}

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

.c_e7284 {
  margin: 0;
  min-width: 180px;
  max-width: 240px;
  padding: var(--space-3);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
}

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

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

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

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


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

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

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

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

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

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

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

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

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

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

.c_f90d6 {
  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 */

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

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

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

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

.c_292d5:first-child .c_6bc0e,
.c_292d5:first-child .c_83c88 {
  padding-top: var(--space-3);
}

.c_292d5 + .c_292d5 .c_6bc0e,
.c_292d5 + .c_292d5 .c_83c88 {
  border-top: 1px solid var(--border);
}

.c_292d5:hover .c_6bc0e,
.c_292d5:hover .c_83c88 {
  background: color-mix(in srgb, var(--primary) 6%, transparent);
}

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

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

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

@media (max-width: 600px) {
  .c_6bc0e, .c_83c88 { font-size: 13px; }
}

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


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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

.c_a5395 {
  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_c8c89 + .c_c8c89 .c_cab88 {
  border-top: 1px solid var(--border);
}

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

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

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

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


/* 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_28612 {
  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_28612[hidden] { display: none; }

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

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

@media (max-width: 600px) {
  .c_28612 {
    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_d0c4a { top: 12px; right: 12px; }
  .c_54a18 { font-size: 18px; padding-right: 36px; }
  .c_6ab12   { font-size: 13px; }
  .c_49c94   { padding: 12px 16px; font-size: 14px; }
}


/* support E */
/* Support E — definition list (channel : languages) */

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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


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

.c_83b00 > * {
  position: relative;
}

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

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

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

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

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

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

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


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

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

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

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


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

.c_2f973 {
  margin-top: var(--space-5);
  width: 100%;
  background: var(--bg);
  border-top: 2px solid var(--primary);
  padding: var(--space-5) 0 var(--space-4);
  text-align: center;
}

.c_ad050 {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

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

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

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

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

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

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

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

