
/* shell */
.c_d1fd2{ padding:var(--shell-pad,var(--section-gap,40px)) 0 0; }
.c_9c31e{ padding:var(--section-gap-dense,16px) 0 0; }
.c_9381f{ width:min(var(--shell-cw,var(--container-w,1100px)),calc(100% - var(--space-5))); margin:0 auto; }
.c_d1fd2:not(.c_9c31e) > .c_9381f{ 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_d1fd2{ padding:var(--shell-pad-mobile,var(--shell-pad)) 0 0; } .c_9c31e{ 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_c0553 {
  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_c0553.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_ec84f {
  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_5f64c {
  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_22cee { height: calc(var(--hd-height, 64px) - 24px); width: auto; display: block; }

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

.c_88092 {
  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_88092:hover {
  color: #fff;
  text-shadow: 0 0 12px color-mix(in srgb, var(--primary) 70%, transparent);
}

.c_8ead1 {
  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_8ead1: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_df3b1 {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

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

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

.c_e4cff {
  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_e4cff[hidden] { display: none !important; }
.c_e4cff .c_88092 { 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_e4cff .c_88092:hover { color: #fff; text-shadow: none; }
.c_e4cff .c_8ead1 { 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_f356b { display: none; }
  .c_2919e { display: flex; }
}


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

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

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

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

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

.c_60a88 {
  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_eb4bb[data-dark="light"]  .c_60a88 { background: linear-gradient(to bottom, rgba(0, 0, 0, .12), rgba(0, 0, 0, .28)); }
.c_eb4bb[data-dark="medium"] .c_60a88 { background: linear-gradient(to bottom, rgba(0, 0, 0, .3),  rgba(0, 0, 0, .5));  }
.c_eb4bb[data-dark="dark"]   .c_60a88 { background: linear-gradient(to bottom, rgba(0, 0, 0, .5),  rgba(0, 0, 0, .75)); }

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

.c_b4aee {
  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_cecfc {
  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_3b2cf {
  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_f1600 {
  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_3a3aa {
  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_3a3aa:hover { opacity: .9; }

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

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

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

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

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

@media (max-width: 600px) {
  .c_de134::before { padding-top: 90%; }
  .c_b4aee { font-size: clamp(17px, 5vw, 26px); }
  .c_3a3aa { padding: 10px 24px; font-size: 14px; }
  .c_f9b09 { padding: 8px 18px; font-size: 12px; }
  .c_3b2cf { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .c_ffda3 { width: 8px; height: 8px; }
}


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

.c_9ce22 { text-align: center; }

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

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

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

@media (max-width: 600px) {
  .c_bcee2 { font-size: 26px; margin-bottom: 16px; }
  .c_2c9e2 { font-size: 16px; margin-bottom: 12px; }
}


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

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

.c_3723d {
  min-width: 0;
}

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

.c_562ac {
  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_104f1 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  margin-top: var(--space-2);
}

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

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

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


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

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

.c_4bbf5::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_9b995 {
  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_7996d {
  width: 100%;
  border-collapse: collapse;
}

.c_4fd6d:first-child .c_b88d3,
.c_4fd6d:first-child .c_4d42b {
  padding-top: var(--space-3);
}

.c_4fd6d + .c_4fd6d .c_b88d3,
.c_4fd6d + .c_4fd6d .c_4d42b {
  border-top: 1px solid var(--border);
}

.c_4fd6d:hover .c_b88d3,
.c_4fd6d:hover .c_4d42b {
  background: color-mix(in srgb, var(--primary) 6%, transparent);
}

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

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

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

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

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


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

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

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

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

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

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


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

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

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

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

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

.c_ae327 {
  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_cd71e + .c_cd71e .c_66a37 {
  border-top: 1px solid var(--border);
}

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

.c_56b99:hover .c_c184c { transform: scale(1.06); }

/* ── Badge pills ── */
.c_6d3eb {
  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_b41c3 {
  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_56b99:hover .c_b41c3 { opacity: 1; }

.c_460b0 {
  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_d4287 {
  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_56b99:hover .c_d4287 { transform: scale(1.1); }

.c_ebebb {
  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_13f2d {
  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_56b99      { flex: 0 0 145px; }
  .c_c6354 { width: 145px; }
  .c_13f2d  { max-width: 145px; }
  .c_d4287   { width: 30px; height: 30px; font-size: 11px; }
}


/* providers C */
/* Providers C — flex-wrap cards: logo centered + name, comfortable sizing */

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

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

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

.c_491cd {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  flex: 1 1 140px;
  min-width: 130px;
  max-width: 200px;
  transition: border-color .2s, background .2s, transform .2s;
}

.c_491cd:hover {
  border-color: rgba(var(--primary-rgb), .5);
  background: rgba(var(--primary-rgb), .06);
  transform: translateY(-2px);
}

.c_98872 {
  width: 100%;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

.c_dcb8f {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

@media (max-width: 480px) {
  .c_491cd { min-width: 110px; }
}


/* mobile B */
/* Mobile B — platform cards (name + badge header + feature bullet list) */

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

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

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

.c_fc596 {
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  background: var(--bg);
  overflow: hidden;
}

.c_4deed {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding: 10px 14px;
  background: rgba(var(--primary-rgb), .05);
  border-bottom: 1px solid var(--border);
}

.c_75bb5 {
  font-size: 14px;
  font-weight: 800;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.c_1d27a {
  flex-shrink: 0;
  display: inline-block;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--primary);
  background: rgba(var(--primary-rgb), .12);
  border-radius: 99px;
}

.c_84991 {
  list-style: none;
  margin: 0;
  padding: var(--space-2) var(--space-3) var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.c_95517 {
  font-size: 13px;
  color: var(--text);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}

.c_95517::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}


/* registration D */
/* Registration D — grid cards with big step number */

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

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

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

.c_98e08 {
  padding: var(--space-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.c_351df {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -.02em;
  opacity: .7;
}

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


/* login E */
/* Login E — collapsible details/summary */

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

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

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

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

.c_61ffe[open] {
  background: var(--bg);
}

.c_74916 {
  padding: var(--space-2) var(--space-3);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.c_74916::-webkit-details-marker { display: none; }

.c_74916::before {
  content: "+";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-1);
  background: var(--primary);
  color: var(--bg);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.c_61ffe[open] > .c_74916::before {
  content: "\2212";
}

.c_f54c7 {
  margin: 0;
  padding: 0 var(--space-3) var(--space-2) calc(var(--space-3) + 20px + var(--space-2));
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}


/* loyalty E */
/* Loyalty E — compact badge row */

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

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

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

.c_c0600 {
  flex: 1 1 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: var(--space-3) var(--space-2);
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
}

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

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

.c_18e33 {
  font-size: 11px;
  color: var(--text);
  line-height: 1.4;
}

@media (max-width: 600px) {
  .c_c0600 { flex: 1 1 100%; border-radius: 16px; }
}


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

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

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

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

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

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


/* license B */
/* License B — cards grid */

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

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

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

.c_5a1e0 {
  padding: var(--space-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  background: var(--bg);
}

.c_37007 {
  display: block;
  margin: 0 0 var(--space-1);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.c_dae6c {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: var(--space-2);
}

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

.c_5778a {
  font-size: 13px;
  color: var(--text);
  font-family: monospace;
}


/* security E */
/* Security E — accordion */

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

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

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

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

.c_73fb6 {
  padding: var(--space-2) var(--space-3);
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
}

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

.c_a45df[open] > .c_73fb6::after {
  content: "\2212";
}

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


/* faq E */
/* FAQ E — card accordion: rounded cards per item, centered title, chevron, no icons */

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

.c_e69e9 {
  margin: 0 0 var(--space-4);
  font-size: clamp(calc(18px * var(--title-scale)), 2.4vw, calc(28px * var(--title-scale)));
  font-weight: 800;
  text-align: center;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.c_3bd4e {
  display: flex;
  flex-direction: column;
  gap: var(--item-gap);
  max-width: 900px;
  margin: 0 auto;
}

/* ── Card ── */
.c_28206 {
  border-radius: var(--radius-1);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
}

/* ── Toggle button ── */
.c_d0783 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--fg);
  transition: color .15s;
}

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

/* Chevron via CSS border */
.c_d0783::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  transition: transform .22s;
  opacity: .7;
}

.c_d0783[aria-expanded="true"]::after {
  transform: rotate(-135deg) translateY(-3px);
}

/* ── Answer panel ── */
.c_d463c {
  padding: 4px 20px 20px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--fg-muted, rgba(255,255,255,.7));
  white-space: pre-line;
  border-top: 1px solid var(--border);
}

.c_d463c[hidden] { display: none; }

@media (max-width: 600px) {
  .c_d0783 { padding: 15px 16px; font-size: 14px; }
  .c_d463c      { padding: 4px 16px 16px; font-size: 13px; }
}


/* disclaimer B */
/* Disclaimer B — aside with left accent bar */

.c_a9fc8 {
  display: flex;
  align-items: stretch;
  gap: var(--space-3);
  padding: var(--space-3);
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.c_cfd71 {
  flex-shrink: 0;
  width: 3px;
  border-radius: var(--radius-1);
  background: var(--primary);
}

.c_693e4 {
  margin: 0 0 6px;
}

.c_b5451 {
  font-size: 12px;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.c_b5451:hover {
  text-decoration: none;
}

@media (max-width: 480px) {
  .c_a9fc8 { font-size: 12px; padding: var(--space-2); gap: var(--space-2); }
}


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

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

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

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

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

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

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

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

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


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

.c_ec99e {
  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_55c7b {
  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_ba835 {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  flex-shrink: 0;
}

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

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

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

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

.c_df681 {
  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_4a021 {
  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_55c7b { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
  .c_36eb1 { justify-content: flex-start; }
}

