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

/* header G */
/* Header G — neon glow: dark bg, primary glow bottom edge, glowing CTA */

.c_9813d {
  position: var(--hd-position, relative);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: var(--hd-height, 64px);
  background: var(--bg);
  box-shadow:
    0 1px 0 color-mix(in srgb, var(--primary) 55%, transparent),
    0 6px 32px color-mix(in srgb, var(--primary) 10%, transparent);
  transition: box-shadow .3s, height .25s;
}

.c_9813d.hd-scrolled {
  height: calc(var(--hd-height, 64px) - 8px);
  box-shadow:
    0 1px 0 var(--primary),
    0 8px 48px color-mix(in srgb, var(--primary) 28%, transparent);
}

.c_9de98 {
  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_d20c6 {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  text-shadow: 0 0 22px color-mix(in srgb, var(--primary) 60%, transparent);
  flex-shrink: 0;
}

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

.c_66c3d {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1;
  justify-content: center;
}

.c_4a3e2 {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s, text-shadow .2s;
  white-space: nowrap;
}

.c_4a3e2:hover {
  color: #fff;
  text-shadow: 0 0 12px color-mix(in srgb, var(--primary) 70%, transparent);
}

.c_ca910 {
  display: inline-block;
  padding: 8px 22px;
  background: transparent;
  color: var(--primary);
  border: 1.5px solid color-mix(in srgb, var(--primary) 65%, transparent);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: var(--radius-1);
  box-shadow: 0 0 14px color-mix(in srgb, var(--primary) 18%, transparent);
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.c_ca910:hover {
  background: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
  box-shadow: 0 0 30px color-mix(in srgb, var(--primary) 55%, transparent);
}

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

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

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

.c_65992 {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-4);
  background: color-mix(in srgb, var(--bg) 96%, var(--primary));
  border-top: 1px solid color-mix(in srgb, var(--primary) 25%, transparent);
  gap: var(--space-2);
}

.c_65992[hidden] { display: none !important; }
.c_65992 .c_4a3e2 { font-size: 15px; padding: 10px 0; color: rgba(255,255,255,.65); border-bottom: 1px solid rgba(255,255,255,.07); text-shadow: none; }
.c_65992 .c_4a3e2:hover { color: #fff; text-shadow: none; }
.c_65992 .c_ca910 { margin-top: var(--space-2); text-align: center; background: var(--primary); color: var(--bg); border-color: var(--primary); box-shadow: none; }

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


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

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

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

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

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

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

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

.c_5d394 {
  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_38a42 {
  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_20da4 {
  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_36102 {
  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_160ef {
  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_160ef:hover { opacity: .9; }

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

.c_611d7 {
  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_331b4,
.c_f2733 {
  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_331b4:hover,
.c_f2733:hover {
  background: rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .c_5d394 { font-size: clamp(20px, 3.5vw, 38px); }
  .c_1db83 { padding-left: 58px; padding-right: 58px; }
  .c_331b4, .c_f2733 { width: 38px; height: 38px; font-size: 22px; }
}

@media (max-width: 600px) {
  .c_5f4f9::before { padding-top: 90%; }
  .c_1db83 { padding-left: 48px; padding-right: 48px; }
  .c_5d394 { font-size: clamp(17px, 5vw, 26px); }
  .c_160ef { padding: 11px 28px; font-size: 14px; }
  .c_ae9f3 { padding: 9px 20px; font-size: 13px; }
  .c_20da4 { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .c_331b4, .c_f2733 { width: 34px; height: 34px; font-size: 20px; }
  .c_611d7 { padding: 0 8px; }
}


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

.c_a8263 {}

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

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

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

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


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

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

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

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

.c_1830a {
  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 A */
/* bonus A — table with accent top bar and primary-colored values */

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

.c_6b7f5::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_37335 {
  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_15e11 {
  width: 100%;
  border-collapse: collapse;
}

.c_cf7f3:first-child .c_8cd38,
.c_cf7f3:first-child .c_4aa8d {
  padding-top: var(--space-3);
}

.c_cf7f3 + .c_cf7f3 .c_8cd38,
.c_cf7f3 + .c_cf7f3 .c_4aa8d {
  border-top: 1px solid var(--border);
}

.c_cf7f3:hover .c_8cd38,
.c_cf7f3:hover .c_4aa8d {
  background: color-mix(in srgb, var(--primary) 6%, transparent);
}

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

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

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

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

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


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

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

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

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

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

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


/* lobby H */
/* Lobby H — carousel with prev/next arrows, badge pills, hover play+demo overlay */

.c_d6b28 {
  padding: var(--card-pad);
  overflow: hidden;
}

/* ── Header ── */
.c_263c9 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.c_acf4b {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.c_10cfa {
  height: 28px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.c_5a7c1 {
  margin: 0;
  font-size: clamp(calc(14px * var(--title-scale)), 2vw, calc(22px * var(--title-scale)));
  font-weight: 800;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.c_8c3a4 {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.c_c3f32 {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  color: var(--fg-muted, rgba(255,255,255,.5));
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .18s, color .18s;
}

.c_c3f32:hover { border-color: var(--primary); color: var(--primary); }

.c_897fb,
.c_d3ecc {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-2, rgba(255,255,255,.06));
  color: var(--fg-muted, rgba(255,255,255,.6));
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s, border-color .15s;
  flex-shrink: 0;
}

.c_897fb:hover, .c_d3ecc:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.c_897fb:disabled, .c_d3ecc:disabled { opacity: .3; cursor: default; pointer-events: none; }

/* ── Carousel ── */
.c_12791 {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.c_12791::-webkit-scrollbar { display: none; }

.c_7fa45 {
  display: flex;
  gap: var(--item-gap);
  width: max-content;
}

/* ── Cards ── */
.c_5f26e {
  flex: 0 0 var(--card-min-w);
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
}

.c_cf6f0 {
  position: relative;
  width: var(--card-min-w);
  aspect-ratio: var(--card-aspect);
  border-radius: calc(var(--radius-1) * .75);
  overflow: hidden;
  background: var(--border);
  flex-shrink: 0;
}

.c_d64ee {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .22s;
}

.c_5f26e:hover .c_d64ee { transform: scale(1.06); }

/* ── Badge pills ── */
.c_90cb8 {
  position: absolute;
  top: 5px;
  left: 5px;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1.5;
  color: #fff;
  pointer-events: none;
  z-index: 2;
}

.lb-badge-hot { background: #F97316; }
.lb-badge-top { background: #7C3AED; }
.lb-badge-neu { background: #EF4444; }

/* ── Hover overlay ── */
.c_aee50 {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(0,0,0,.68);
  opacity: 0;
  transition: opacity .2s;
  z-index: 3;
  padding: 8px;
}

.c_5f26e:hover .c_aee50 { opacity: 1; }

.c_c921d {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(0,0,0,.7);
  order: 1;
}

.c_5d80d {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  padding-left: 2px;
  flex-shrink: 0;
  order: 2;
  transition: transform .15s;
  text-decoration: none;
}

.c_5f26e:hover .c_5d80d { transform: scale(1.1); }

.c_54f35 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border-radius: var(--radius-1);
  border: 1px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.8);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  order: 3;
  text-decoration: none;
}

/* ── Provider text below card ── */
.c_ad784 {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--fg-muted, rgba(255,255,255,.4));
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: var(--card-min-w);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .c_5f26e      { flex: 0 0 145px; }
  .c_cf6f0 { width: 145px; }
  .c_ad784  { max-width: 145px; }
  .c_5d80d   { width: 30px; height: 30px; font-size: 11px; }
}


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

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

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

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

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

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

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


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

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

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

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

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

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

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

.c_44ffc {
  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 B */
/* Prose B — wide, generous spacing */

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

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

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

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

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

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

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

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

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


/* security F */
/* Security F — definition list (feature / explanation) */

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

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

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

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

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


/* license C */
/* License C — badge grid (minimal) */

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

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

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

.c_a2b58 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: var(--space-3) var(--space-4);
  border: 1px solid rgba(var(--primary-rgb), .18);
  border-radius: var(--radius-1);
  background: rgba(var(--primary-rgb), .06);
  text-align: center;
  min-width: 120px;
}

.c_5fd5b {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.c_34fa5 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
}


/* mobile A */
/* Mobile A — H2 + intro + classic responsive table */

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

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

/* scrollable table wrapper */
.c_9de8d {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
}

.c_9de8d table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  font-size: 14px;
}

.c_e4206 {
  background: var(--bg);
}

.c_f09d2 {
  padding: 10px 14px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

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

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

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

.c_a3cf3 {
  padding: 10px 14px;
  vertical-align: top;
  color: var(--text);
  line-height: 1.5;
}

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

.c_e20f8 {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--primary);
  background: rgba(var(--primary-rgb), .1);
  border-radius: 99px;
  white-space: nowrap;
}

.c_2e268 {
  color: var(--muted);
  font-size: 13px;
}

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


/* registration A */
/* Registration A — ordered list */

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

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

.c_b83c3 {
  margin: 0;
  padding-left: 0;
  counter-reset: ht-counter;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.c_10da2 {
  counter-increment: ht-counter;
  padding: var(--space-2) var(--space-3);
  padding-left: calc(var(--space-3) + 32px);
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  background: var(--bg);
}

.c_10da2::before {
  content: counter(ht-counter);
  position: absolute;
  left: var(--space-2);
  top: var(--space-2);
  width: 24px;
  height: 24px;
  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;
}

.c_a9588 {
  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_e26ce {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}


/* support B */
/* Support B — cards (channel + hours) */

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

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

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

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

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


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

.c_696ea>* {
  position: relative;
}

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

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

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

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

.c_a2071 {
  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_a2071:hover {
  color: var(--brand);
}

.c_a2071::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_a2071[aria-expanded="true"]::after {
  content: "\2013";
  border-color: var(--brand);
  color: var(--brand);
  transform: rotate(180deg);
}

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


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

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

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

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


/* footer A */
/* Footer A — classic: brand left, nav center, bottom copyright */

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

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

.c_ea3b6 {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  flex-shrink: 0;
}

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

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

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

.c_e711c:hover { color: var(--primary); }

.c_a7e49 {
  max-width: var(--container-w, 1100px);
  margin: var(--space-4) auto 0;
  padding: 0 var(--space-4);
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
}

.c_c92cd {
  max-width: var(--container-w, 1100px);
  margin: var(--space-2) auto 0;
  padding: 0 var(--space-4);
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 600px) {
  .c_226aa { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
  .c_51047 { justify-content: flex-start; }
}

