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

/* header J */
/* Header J — split panel: primary-bg brand zone extends to left viewport edge */

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

.c_cb4c0.hd-scrolled {
  height: calc(var(--hd-height, 60px) - 6px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .35);
  backdrop-filter: blur(10px);
}

.c_f5b49 {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  height: 100%;
  /* No left padding: brand provides its own */
  padding: 0 var(--space-4) 0 0;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.c_4eacd {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  color: var(--bg);
  height: 100%;
  padding: 0 var(--space-5) 0 var(--space-4);
  background: var(--primary);
  flex-shrink: 0;
  z-index: 1;
}

/* Primary color band extending to the left viewport edge */
.c_4eacd::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 0;
  bottom: 0;
  width: 100vw;
  background: var(--primary);
}

/* Diagonal cut between primary and surface zones */
.c_4eacd::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  width: 22px;
  background: linear-gradient(to bottom right, var(--primary) 50%, transparent 50%);
  pointer-events: none;
}

.c_33a3c { height: calc(var(--hd-height, 64px) - 24px); width: auto; display: block; filter: brightness(0) invert(1); }

.c_68f09 {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex: 1;
  padding-left: var(--space-3);
}

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

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

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

.c_b0773:hover { opacity: .88; }

.c_c5e72 {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
  margin-left: auto;
}

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

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

.c_1ae2f {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) var(--space-4);
  background: var(--surface);
  border-top: 1px solid var(--border);
  gap: var(--space-2);
}

.c_1ae2f[hidden] { display: none !important; }
.c_1ae2f .c_b0773 { margin-left: 0; margin-top: var(--space-2); text-align: center; }

@media (max-width: 768px) {
  /* On mobile: restore full-width layout, hide the diagonal pseudo-elements */
  .c_f5b49 { padding: 0 var(--space-4) 0 0; }
  .c_4eacd::before { display: none; }
  .c_4eacd::after { display: none; }
  .c_68f09 { display: none; }
  .c_3af36 { display: flex; }
}


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

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

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

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

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

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

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

.c_b83c6 {
  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_45e4f {
  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_fd698 {
  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_2097d {
  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_51577 {
  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_51577:hover { opacity: .9; }

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

.c_82842 {
  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_854e3,
.c_d9e37 {
  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_854e3:hover,
.c_d9e37:hover {
  background: rgba(0, 0, 0, 0.55);
}

@media (max-width: 768px) {
  .c_b83c6 { font-size: clamp(20px, 3.5vw, 38px); }
  .c_23daa { padding-left: 58px; padding-right: 58px; }
  .c_854e3, .c_d9e37 { width: 38px; height: 38px; font-size: 22px; }
}

@media (max-width: 600px) {
  .c_4a891::before { padding-top: 90%; }
  .c_23daa { padding-left: 48px; padding-right: 48px; }
  .c_b83c6 { font-size: clamp(17px, 5vw, 26px); }
  .c_51577 { padding: 11px 28px; font-size: 14px; }
  .c_630b4 { padding: 9px 20px; font-size: 13px; }
  .c_fd698 { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .c_854e3, .c_d9e37 { width: 34px; height: 34px; font-size: 20px; }
  .c_82842 { padding: 0 8px; }
}


/* hero F */
/* Hero F — two-column grid: split title left, intro right */

.c_1d1aa {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.c_308cd {
  margin: 0 0 8px;
  font-weight: 900;
  font-size: clamp(26px, 4.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.c_67749 {
  margin: 0;
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--primary);
}

.c_69d98 {
  margin: 0;
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.75;
  color: var(--text);
  align-self: center;
}

@media (max-width: 600px) {
  .c_1d1aa { grid-template-columns: 1fr; gap: 16px; }
  .c_308cd { font-size: 24px; margin-bottom: 4px; }
  .c_67749 { font-size: 15px; }
}


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

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

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


/* bonus C */
/* bonus C — definition list: colored values, row separators */

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

.c_ca685 {
  margin: 0 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_7beb4 {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 0;
}

.c_40130 {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.5;
  padding: var(--space-2) var(--space-3) var(--space-2) 0;
  border-bottom: 1px solid var(--border);
  margin: 0;
  white-space: nowrap;
}

.c_f4eaa {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.5;
  padding: var(--space-2) 0 var(--space-2) var(--space-2);
  border-bottom: 1px solid var(--border);
  margin: 0;
  text-align: right;
}

/* last pair — no bottom border */
.c_40130:last-of-type { border-bottom: none; }
.c_f4eaa:last-child   { border-bottom: none; }

@media (max-width: 500px) {
  .c_7beb4 { grid-template-columns: 1fr; }
  .c_40130 { border-bottom: none; padding-bottom: 2px; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; }
  .c_f4eaa { padding-left: 0; margin-bottom: var(--space-2); }
}


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

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

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

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

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

.c_e24a1 {
  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_acb87 + .c_acb87 .c_21f46 {
  border-top: 1px solid var(--border);
}

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

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

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

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


/* lobby A */
/* Lobby A — simple grid: img above name, centered CTA */

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

.c_db1e8 {
  margin: 0 0 var(--space-4);
  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_92705 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

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

.c_66a5e:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.c_e7218 {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-1);
  background: var(--border);
}

.c_fa3e8 {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  line-height: 1.3;
  text-align: center;
}

.c_2405e {
  display: inline-block;
  margin: 0 auto;
  padding: 12px 32px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-1);
  transition: opacity .2s;
}

.c_2405e:hover {
  opacity: .85;
}

@media (max-width: 600px) {
  .c_92705 { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: var(--space-2); }
  .c_66a5e { padding: 8px; }
  .c_fa3e8 { font-size: 12px; }
}

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


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

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

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

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

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

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

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


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

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

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

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

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

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


/* loyalty D */
/* Loyalty D — stripe blocks */

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

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

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

.c_ffa3a {
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.c_ffa3a:nth-child(odd) {
  background: var(--bg);
}

.c_20785 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

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

.c_72cd9 {
  margin: 0;
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}


/* mobile E */
/* Mobile E — accordion: details/summary per platform + feature chips inside */

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

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

/* accordion */
.c_a55bc {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.c_df721 {
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  overflow: hidden;
  transition: border-color .15s;
}

.c_df721[open] {
  border-color: var(--primary);
}

.c_8f6a2 {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 12px 14px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  background: var(--bg);
}

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

.c_8f6a2::after {
  content: "+";
  margin-left: auto;
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
  transition: transform .15s;
}

.c_df721[open] .c_8f6a2::after {
  content: "−";
  color: var(--primary);
}

.c_df721[open] .c_8f6a2 {
  background: rgba(var(--primary-rgb), .05);
}

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

.c_522da {
  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), .1);
  border-radius: 99px;
}

.c_454eb {
  padding: 10px 14px 12px;
  background: var(--surface);
}

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

.c_73551 {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 99px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


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

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

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

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

.c_315ab {
  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_434cc {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -.02em;
  opacity: .7;
}

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


/* kyc D */
/* KYC D — numbered timeline */

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

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

.c_2463a {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-left: 12px;
  border-left: 2px solid var(--border);
}

.c_f4009 {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
  position: relative;
}

.c_553d2 {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  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;
  margin-left: -25px;
}

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


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

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

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

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

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

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


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

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

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

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

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

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


/* license F */
/* License F — two-column split rows */

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

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

.c_842b8 {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.c_4e3fd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  padding: var(--space-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  background: var(--bg);
}

.c_d1b89 {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

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

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

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

.c_42405 {
  font-size: 14px;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  font-family: monospace;
}

.c_19878 {
  margin: var(--space-1) 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}


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

.c_65cfd > * {
  position: relative;
}

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

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

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

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

.c_adfcd {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-1);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  background: color-mix(in srgb, var(--brand) 14%, transparent);
  color: var(--brand);
  margin-top: 2px;
}

.c_cc31f {
  flex: 1;
  min-width: 0;
}

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

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


/* disclaimer D */
/* Disclaimer D — centred block, link on separate line */

.c_4a8d7 {
  padding: var(--space-3);
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.c_e9441 {
  margin: 0 0 8px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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


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

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

.c_4ef11 {
  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_33307 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

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

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

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

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


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

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

.c_68e63 {
  max-width: var(--container-w, 1100px);
  margin: 0 auto;
  padding: 0 var(--space-4) var(--space-3);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.c_3b00b {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color .2s;
  white-space: nowrap;
}

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

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

.c_394b9 {
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
}

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

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

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

