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

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

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

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

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

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

.c_c694c {
  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_e77ee {
  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_af6e4 {
  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_293b5 {
  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_6cf18 {
  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_6cf18:hover { opacity: .9; }

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

.c_6a909 {
  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_29bcc,
.c_eaa50 {
  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_29bcc:hover,
.c_eaa50:hover {
  background: rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .c_c694c { font-size: clamp(20px, 3.5vw, 38px); }
  .c_54644 { padding-left: 58px; padding-right: 58px; }
  .c_29bcc, .c_eaa50 { width: 38px; height: 38px; font-size: 22px; }
}

@media (max-width: 600px) {
  .c_e7dd5::before { padding-top: 90%; }
  .c_54644 { padding-left: 48px; padding-right: 48px; }
  .c_c694c { font-size: clamp(17px, 5vw, 26px); }
  .c_6cf18 { padding: 11px 28px; font-size: 14px; }
  .c_d1be3 { padding: 9px 20px; font-size: 13px; }
  .c_af6e4 { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .c_29bcc, .c_eaa50 { width: 34px; height: 34px; font-size: 20px; }
  .c_6a909 { padding: 0 8px; }
}


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

.c_ea8e8 {}

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

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

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

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


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

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

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

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

.c_3dc47 {
  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_f3bc3 {
  padding: var(--card-pad);
  position: relative;
  overflow: hidden;
}

.c_f3bc3::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_109c0 {
  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_976f8 {
  width: 100%;
  border-collapse: collapse;
}

.c_3de3c:first-child .c_56e92,
.c_3de3c:first-child .c_12f16 {
  padding-top: var(--space-3);
}

.c_3de3c + .c_3de3c .c_56e92,
.c_3de3c + .c_3de3c .c_12f16 {
  border-top: 1px solid var(--border);
}

.c_3de3c:hover .c_56e92,
.c_3de3c:hover .c_12f16 {
  background: color-mix(in srgb, var(--primary) 6%, transparent);
}

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

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

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

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

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


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

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

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

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

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

.c_f14e0 {
  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_95702 {
  padding: var(--card-pad);
  overflow: hidden;
}

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

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

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

.c_d4e78 {
  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_9320f {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.c_e53c0 {
  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_e53c0:hover { border-color: var(--primary); color: var(--primary); }

.c_b980b,
.c_f7e12 {
  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_b980b:hover, .c_f7e12:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.c_b980b:disabled, .c_f7e12:disabled { opacity: .3; cursor: default; pointer-events: none; }

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

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

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

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

.c_629e7 {
  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_fd135 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .22s;
}

.c_eb692:hover .c_fd135 { transform: scale(1.06); }

/* ── Badge pills ── */
.c_caa77 {
  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_355c2 {
  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_eb692:hover .c_355c2 { opacity: 1; }

.c_d81a4 {
  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_1162d {
  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_eb692:hover .c_1162d { transform: scale(1.1); }

.c_4c01c {
  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_c8d49 {
  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_eb692      { flex: 0 0 145px; }
  .c_629e7 { width: 145px; }
  .c_c8d49  { max-width: 145px; }
  .c_1162d   { width: 30px; height: 30px; font-size: 11px; }
}


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

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

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

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

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

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

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


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

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

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

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

.c_13f82 {
  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_7dcf7 {
  grid-column: 1 / -1;
  margin: 0 0 var(--space-1);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

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

.c_f263d {
  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_1dee3 {
  padding: var(--card-pad) calc(var(--card-pad) * 1.5) 0;
}

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

.c_77dee {
  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_91b87 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

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

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

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

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

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

.c_88383 {
  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_5cc63 {
  border-bottom: 1px solid var(--border);
}

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

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

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

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

.c_f2405 {
  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_c5b65 {
  color: var(--muted);
  font-size: 13px;
}

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


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

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

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

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

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


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

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

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

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

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

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


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

.c_3b6f7>* {
  position: relative;
}

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

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

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

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

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

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

.c_8d4d3 {
  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_858cf {
  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_c0d3c {
  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_3de72 {
  margin: 0 0 var(--space-2);
  font-size: 12px;
  color: var(--muted);
}

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

.c_67d23 {
  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_67d23: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; }
}

