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

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

.c_256ab {
  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_256ab.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_c84f6 {
  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_a973c {
  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_b7ecf { height: calc(var(--hd-height, 64px) - 24px); width: auto; display: block; -webkit-text-fill-color: initial; }

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

.c_e45cb {
  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_e45cb:hover { color: var(--fg); background: rgba(128, 128, 128, 0.12); }
.c_e45cb.hd-active { color: var(--bg); background: var(--primary); }

.c_af346 {
  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_af346:hover { transform: scale(1.04); box-shadow: 0 4px 16px color-mix(in srgb, var(--primary) 50%, transparent); }

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

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

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

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

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

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


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

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

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

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

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

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

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

.c_6ccb0 {
  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_89334 {
  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_3645d {
  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_e8e0f {
  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_b933e {
  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_b933e:hover { opacity: .9; }

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

.c_73fa6 {
  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_68865,
.c_72489 {
  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_68865:hover,
.c_72489:hover {
  background: rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .c_6ccb0 { font-size: clamp(20px, 3.5vw, 38px); }
  .c_e31fa { padding-left: 58px; padding-right: 58px; }
  .c_68865, .c_72489 { width: 38px; height: 38px; font-size: 22px; }
}

@media (max-width: 600px) {
  .c_2ce87::before { padding-top: 90%; }
  .c_e31fa { padding-left: 48px; padding-right: 48px; }
  .c_6ccb0 { font-size: clamp(17px, 5vw, 26px); }
  .c_b933e { padding: 11px 28px; font-size: 14px; }
  .c_5101d { padding: 9px 20px; font-size: 13px; }
  .c_3645d { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .c_68865, .c_72489 { width: 34px; height: 34px; font-size: 20px; }
  .c_73fa6 { padding: 0 8px; }
}


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

.c_483a1 {}

.c_58517 {
  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_facbb {
  margin: 0;
  padding: 0 0 0 1.2em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

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

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


/* overview B */
/* Overview B — prose only */

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

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


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

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

.c_77ea4 {
  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_b9fa6 {
  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_d0d65 {
  margin: 0 0 var(--space-4);
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

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

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

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

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

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

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

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


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

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

.c_3a22a::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_283d6 {
  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_13855 {
  width: 100%;
  border-collapse: collapse;
}

.c_5a312:first-child .c_75e44,
.c_5a312:first-child .c_8f94c {
  padding-top: var(--space-3);
}

.c_5a312 + .c_5a312 .c_75e44,
.c_5a312 + .c_5a312 .c_8f94c {
  border-top: 1px solid var(--border);
}

.c_5a312:hover .c_75e44,
.c_5a312:hover .c_8f94c {
  background: color-mix(in srgb, var(--primary) 6%, transparent);
}

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

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

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

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

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


/* prose A */
/* Prose A — standard */

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

.c_b5871 {
  margin: 0 0 var(--space-3);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--skin-title);
}

.c_de5c7 {
  margin: var(--space-4) 0 var(--space-2);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

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

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

.c_3b6ca {
  margin-bottom: var(--space-1);
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

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

.c_46e55 {
  background: var(--skin-ac);
}

.c_aecc3 {
  padding: var(--space-2) var(--space-3);
  text-align: left;
  font-weight: 700;
  color: var(--skin-bg);
}

.c_59040 tr:nth-child(even) {
  background: color-mix(in srgb, var(--skin-bc) 30%, transparent);
}

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

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


/* payments C */
/* Payments C — horizontal striped rows */

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

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

.c_b80aa {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-1);
  overflow: hidden;
  border: 1px solid var(--border);
}

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

.c_443db:nth-child(odd) { background: var(--bg); }
.c_443db:nth-child(even) { background: var(--surface); }

.c_f9b57 {
  flex: 0 0 130px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.c_ff0fe {
  display: flex;
  flex-wrap: wrap;
  gap: 4px var(--space-3);
  font-size: 13px;
}

.c_836eb {
  color: var(--muted);
  font-weight: 500;
}

.c_651ea {
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  font-weight: 600;
}

@media (max-width: 600px) {
  .c_443db { flex-direction: column; gap: 4px; }
  .c_f9b57 { flex: none; }
}


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

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

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

@media (max-width: 600px) {
  .c_8dba9 {
    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_6fb74 { top: 12px; right: 12px; }
  .c_e8053 { font-size: 18px; padding-right: 36px; }
  .c_ac66c   { font-size: 13px; }
  .c_332e5   { padding: 12px 16px; font-size: 14px; }
}


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

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

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

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

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

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

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

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

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


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

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

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

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

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

.c_1699e {
  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_1d1b7 { grid-template-columns: 1fr; }
  .c_8e0a9 { border-bottom: none; padding-bottom: 0; }
  .c_1699e { padding-top: 2px; }
}


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

.c_2cc64>* {
  position: relative;
}

.c_5aca4 {
  margin: 0 0 var(--space-1);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.15;
}

.c_3803a {
  margin: 0 0 var(--space-4);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

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

.c_48ef4:first-of-type {
  border-top: 1px solid var(--border);
  margin-top: var(--space-3);
}

.c_d3249 {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--text);
  font-weight: 700;
  font-size: clamp(14px, 1.2vw, 16px);
  padding: var(--space-3) 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  line-height: 1.4;
  transition: color .15s;
}

.c_d3249:hover {
  color: var(--brand);
}

.c_d3249::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-3);
  border: 1.5px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  color: var(--muted);
  transition: border-color .15s, color .15s, transform .2s;
}

.c_d3249[aria-expanded="true"]::after {
  content: "\2013";
  border-color: var(--brand);
  color: var(--brand);
  transform: rotate(180deg);
}

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


/* rg F */
/* RG F — compact single-line / flex row */

.c_808a9 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2) var(--space-3);
  padding: var(--space-2) var(--space-4);
  font-size: 12px;
  color: var(--muted);
}

.c_9e9d7 {
  font-size: 12px;
  font-weight: 700;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}

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

.c_67edc {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-left: auto;
}

.c_62827 {
  display: inline-block;
  padding: 2px 9px;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid rgba(var(--primary-rgb), .35);
  border-radius: var(--radius-3);
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
}

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

@media (max-width: 600px) {
  .c_67edc { margin-left: 0; }
}


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

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

.c_95bce {
  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_2d7a1 {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color .2s;
  white-space: nowrap;
}

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

.c_b0607 {
  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_fa662 {
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
}

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

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

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

