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

/* header L */
/* Header L — vertical sidebar (desktop) · burger-left top bar (mobile) */

:root { --hd-sidebar-w: 220px; }

/* ─── Desktop: fixed left sidebar ──────────────────────────────────────── */

@media (min-width: 769px) {
  body { padding-left: var(--hd-sidebar-w); padding-top: var(--space-5, 40px); }

  .c_66669 {
    position: fixed;
    top: 0; left: 0;
    width: var(--hd-sidebar-w);
    height: 100vh;
    z-index: 1000;
    background: var(--surface);
    border-right: 1px solid var(--border);
    overflow-y: auto;
    overflow-x: hidden;
  }

  .c_2f23d { display: none; }
  .c_7e7ea { display: none !important; }

  .c_87687 {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: var(--space-4) var(--space-3) var(--space-4);
    gap: var(--space-1);
  }

  .c_87687 .c_3b0a3 {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    padding: var(--space-2);
    margin-bottom: var(--space-3);
    flex-shrink: 0;
    white-space: nowrap;
    overflow: hidden;
  }

  .c_87687 .c_8236b {
    height: 34px;
    width: auto;
    display: block;
    flex-shrink: 0;
  }

  .c_8b89e {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 2px;
  }

  .c_48bdc {
    display: flex;
    align-items: center;
    padding: 10px var(--space-2);
    color: var(--fg);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius-1);
    opacity: 0.7;
    transition: background .18s, opacity .18s, color .18s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .c_48bdc:hover { background: rgba(128,128,128,.12); opacity: 1; color: var(--primary); }

  .c_87687 .c_13b76 {
    flex-shrink: 0;
    padding: var(--space-2) var(--space-2) var(--space-4);
    margin-top: var(--space-3);
  }

  .c_9dd93 {
    display: block;
    padding: 10px 16px;
    background: var(--primary);
    color: var(--bg);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    border-radius: var(--radius-1);
    text-align: center;
    transition: opacity .2s;
    white-space: nowrap;
  }

  .c_9dd93:hover { opacity: .85; }
}

/* ─── Mobile: fixed top bar + left drawer ───────────────────────────────── */

@media (max-width: 768px) {
  body { padding-top: var(--hd-height, 56px); padding-left: 0; }

  .c_66669 {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--hd-height, 56px);
    z-index: 1000;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
  }

  /* Top bar */
  .c_2f23d {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 var(--space-3);
    gap: var(--space-2);
  }

  /* Burger — leftmost */
  .c_d0e8a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
    order: 0;
  }

  .c_d0e8a span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
  }

  .c_d0e8a.hd-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .c_d0e8a.hd-open span:nth-child(2) { opacity: 0; }
  .c_d0e8a.hd-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Brand — centered */
  .c_2f23d .c_3b0a3 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    overflow: hidden;
    order: 1;
  }

  .c_2f23d .c_8236b {
    height: calc(var(--hd-height, 56px) - 20px);
    width: auto;
    display: block;
  }

  /* CTA — right */
  .c_2f23d .c_13b76 {
    flex-shrink: 0;
    order: 2;
  }

  .c_2f23d .c_9dd93 {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary);
    color: var(--bg);
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    border-radius: var(--radius-1);
    white-space: nowrap;
  }

  /* Sidebar = left drawer on mobile */
  .c_87687 {
    position: fixed;
    top: 0; left: 0;
    width: 75vw;
    max-width: 300px;
    height: 100vh;
    z-index: 1002;
    background: var(--surface);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    padding: var(--space-4) var(--space-3);
    gap: var(--space-1);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .28s cubic-bezier(.4, 0, .2, 1);
  }

  .c_87687.hd-open { transform: translateX(0); }

  .c_87687 .c_3b0a3 {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    padding: var(--space-2);
    margin-bottom: var(--space-3);
    flex-shrink: 0;
  }

  .c_87687 .c_8236b {
    height: 32px;
    width: auto;
    display: block;
  }

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

  .c_48bdc {
    display: flex;
    align-items: center;
    padding: 13px var(--space-2);
    color: var(--fg);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    opacity: 0.85;
    transition: color .18s, opacity .18s;
  }

  .c_48bdc:last-child { border-bottom: none; }
  .c_48bdc:active { color: var(--primary); opacity: 1; }

  .c_87687 .c_13b76 {
    flex-shrink: 0;
    padding-top: var(--space-3);
    padding-bottom: var(--space-4);
  }

  .c_87687 .c_9dd93 {
    display: block;
    padding: 13px 20px;
    background: var(--primary);
    color: var(--bg);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-radius: var(--radius-1);
    text-align: center;
    transition: opacity .2s;
  }

  .c_87687 .c_9dd93:hover { opacity: .85; }

  /* Overlay */
  .c_7e7ea {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  .c_7e7ea[hidden] { display: none; }
}


/* breadcrumbs A */
/* Breadcrumbs A */

.c_8c930 {
  padding: var(--space-2) var(--space-5);
}

.c_5ecd4 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.7;
}

.c_e8b1a {
  display: flex;
  align-items: center;
}

.c_e898c {
  color: var(--fg);
  text-decoration: none;
}

.c_e898c:hover {
  color: var(--skin-ac);
}

.c_add85 {
  color: var(--muted);
  margin: 0 6px;
  font-size: 11px;
}

.c_35c56 {
  color: var(--fg);
}


/* hero D */
/* Hero D — eyebrow label + large h1 + intro */

.c_e740b {}

.c_ad3d7 {
  display: block;
  margin: 0 0 10px;
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
}

.c_efe54 {
  margin: 0 0 28px;
  font-weight: 900;
  font-size: clamp(32px, 6vw, 60px);
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.c_a1b46 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.7;
  color: var(--text);
}

@media (max-width: 600px) {
  .c_ad3d7 { font-size: 11px; margin-bottom: 8px; }
  .c_efe54 { font-size: 28px; margin-bottom: 18px; }
}


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

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

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


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

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

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

.c_8e5f3 {
  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_8e5f3:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

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

.c_60598 {
  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_d84d8 {
  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_d84d8:hover {
  opacity: .85;
}

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

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


/* providers D */
/* Providers D — asymmetric grid: 2 featured large + dense rest */

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

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

.c_62983 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

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

.c_e0747 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  transition: border-color .2s, transform .2s;
}

.c_e0747:hover {
  border-color: rgba(var(--primary-rgb), .4);
  transform: translateY(-2px);
}

.c_2bbf1 {
  padding: var(--space-4) var(--space-3);
  border-color: rgba(var(--primary-rgb), .2);
}

.c_61609 {
  width: 100%;
  height: 48px;
  object-fit: contain;
}

.c_2bbf1 .c_61609 {
  height: 64px;
}

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

.c_2bbf1 .c_5c338 {
  font-size: 13px;
  color: var(--fg);
}

@media (max-width: 480px) {
  .c_62983 { grid-template-columns: 1fr; }
}


/* crash F */
/* Crash F — hero banner + compact strip below */

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

.c_52b8f {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--bg);
  margin-bottom: var(--space-2);
}

.c_d15e8 {
  margin: 0 0 var(--space-2);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -.015em;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

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

.c_595c7 {
  position: relative;
  border-radius: var(--radius-2);
  overflow: hidden;
  margin-bottom: var(--space-4);
  display: block;
  text-decoration: none;
}

.c_36c8d {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  display: block;
  background: var(--border);
}

.c_ad379 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: var(--space-4) var(--space-3) var(--space-2);
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.c_92f2d {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: var(--space-1);
}
.c_92f2d::-webkit-scrollbar { display: none; }

.c_bd01d {
  flex: 0 0 100px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  padding: var(--space-1);
  overflow: hidden;
  text-decoration: none;
}

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

.c_735ea {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}


/* winners A */
/* Winners A — horizontal scrollable cards */

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

.c_b22b5 {
  margin: 0 0 var(--space-3);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 800;
  color: var(--skin-title);
  letter-spacing: -.02em;
}

.c_835bb {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.c_835bb::-webkit-scrollbar { display: none; }

.c_9a139 {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  padding: 10px 14px;
  min-width: 200px;
}

.c_bdb40 {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
  color: #000;
  flex-shrink: 0;
}

.c_bf9f5 {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.c_c6a0e {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.c_ebcd5 {
  font-size: 16px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
}

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


/* reviews C */
/* Reviews C — score summary + compact grid */

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

.c_3f0da {
  margin: 0 0 var(--space-3);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  color: var(--skin-title);
  letter-spacing: -.02em;
}

.c_85b51 {
  margin-bottom: var(--space-4);
  padding: var(--space-3);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius-1);
  border: 1px solid var(--border);
}

.c_7c1d3 {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.c_1356f {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.c_91b11 {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.c_6aa4c {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-2);
}

.c_4b175 {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.c_ca362 {
  color: var(--primary);
  font-size: 13px;
  letter-spacing: 2px;
}

.c_e7345 {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  flex: 1;
}

.rvFoot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: var(--space-1);
  border-top: 1px solid var(--border);
}

.c_a7eca {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}

.c_25c7a {
  font-size: 11px;
  color: var(--muted);
  margin-left: auto;
}


/* sticky-banner D */
/* Variant D — центрований банер-картка знизу
   HTML: bnRoot(relative, flex col) > bnClose(absolute) + bnBadge + bnTitle + bnSub + bnCta */

@keyframes bnCornerIn  { from { transform: translateX(-50%) translateY(80px); opacity: 0 } to { transform: translateX(-50%) translateY(0); opacity: 1 } }
@keyframes bnCornerOut { from { transform: translateX(-50%) translateY(0); opacity: 1 } to { transform: translateX(-50%) translateY(80px); opacity: 0 } }
@keyframes bnSlideUp   { from { transform: translateX(-50%) translateY(100%); opacity: 0 } to { transform: translateX(-50%) translateY(0); opacity: 1 } }
@keyframes bnSlideDown { from { transform: translateX(-50%) translateY(0); opacity: 1 } to { transform: translateX(-50%) translateY(100%); opacity: 0 } }
@keyframes bnFadeOut   { from { opacity: 1 } to { opacity: 0 } }

/* mobile-only keyframes (no translateX) */
@keyframes bnCornerInM  { from { transform: translateY(80px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }
@keyframes bnCornerOutM { from { transform: translateY(0); opacity: 1 } to { transform: translateY(80px); opacity: 0 } }

.c_f597e {
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: min(560px, calc(100vw - 32px));
  border-radius: var(--skin-r);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 16px 56px rgba(0,0,0,.55);
  padding: 24px;
  display: flex; flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
}
.c_f597e[hidden] { display: none; }

.c_cb4fe {
  position: absolute;
  top: 14px; right: 14px;
  background: transparent; border: 0;
  cursor: pointer; color: var(--muted);
  font-size: 14px;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: var(--skin-r);
  transition: background .15s, color .15s;
  line-height: 1;
}
.c_cb4fe:hover { background: rgba(255,255,255,.1); color: var(--text); }

.c_abc84 {
  display: inline-flex; align-items: center; align-self: flex-start;
  font-size: 11px; font-weight: 800;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--skin-r); line-height: 1;
}
.c_ffeed {
  margin: 0; font-weight: 900; font-size: 22px;
  line-height: 1.2; letter-spacing: -.02em;
  padding-right: 36px;
}
.c_822a0 { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.55; }
.c_c0943 {
  display: block; text-align: center;
  padding: 14px 20px; border-radius: var(--skin-r);
  background: var(--skin-btn-bg); color: var(--skin-btn-c);
  font-weight: 800; font-size: 15px;
  text-decoration: none; cursor: pointer;
  transition: filter .15s, transform .15s;
  letter-spacing: .01em; margin-top: 4px;
}
.c_c0943:hover { filter: brightness(1.08); transform: translateY(-1px); }

@media (max-width: 600px) {
  .c_f597e {
    bottom: 0; left: 0; right: 0;
    width: 100%;
    transform: none;
    border-radius: var(--radius-3) var(--radius-3) 0 0;
    padding: 20px 16px 24px;
  }
  .c_cb4fe { top: 12px; right: 12px; }
  .c_ffeed { font-size: 18px; padding-right: 36px; }
  .c_822a0   { font-size: 13px; }
  .c_c0943   { padding: 12px 16px; font-size: 14px; }
}


/* bonus E */
/* Bonus E — card grid: label + value + desc, centered title, CTA */

.c_ffc98 {
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.c_97805 {
  margin: 0;
  font-size: clamp(calc(16px * var(--title-scale)), 2.2vw, calc(26px * var(--title-scale)));
  font-weight: 800;
  text-align: center;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

/* ── Card grid ── */
.c_9efeb {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--item-gap);
}

.c_2c7cb {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
  padding: var(--space-5) var(--space-4);
  border-radius: var(--radius-1);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  transition: border-color .2s, box-shadow .2s;
}

.c_2c7cb:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), 0 4px 24px rgba(0,0,0,.25);
}

.c_cb54e {
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
}

.c_452ca {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -.02em;
}

.c_f15e3 {
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg-muted, rgba(255,255,255,.5));
  white-space: pre-line;
}

/* ── CTA ── */
.c_59e91 {
  display: inline-block;
  padding: 13px 44px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity .2s;
}

.c_59e91:hover { opacity: .85; }

/* ── Responsive ── */
@media (max-width: 640px) {
  .c_9efeb { grid-template-columns: repeat(2, 1fr); }
  .c_2c7cb { padding: var(--space-4) var(--space-3); }
  .c_452ca { font-size: 20px; }
}

@media (max-width: 380px) {
  .c_9efeb { grid-template-columns: 1fr; }
}


/* payments D */
/* Payments D — compact two-column table */

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

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

.c_f0e6a {
  width: 100%;
  border-collapse: collapse;
}

.c_7b30f + .c_7b30f .c_1f5c0,
.c_7b30f + .c_7b30f .c_90eb4 {
  border-top: 1px solid var(--border);
}

.c_1f5c0,
.c_90eb4 {
  padding: var(--space-2) 0;
  font-size: 14px;
  line-height: 1.5;
  vertical-align: top;
}

.c_1f5c0 {
  font-weight: 700;
  color: var(--primary);
  padding-right: var(--space-3);
  white-space: nowrap;
  width: 25%;
}

.c_90eb4 {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .c_1f5c0 { white-space: normal; width: 35%; }
  .c_1f5c0, .c_90eb4 { font-size: 13px; }
}


/* mobile C */
/* Mobile C — details/summary tabs per platform + feature list inside */

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

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

/* tab-style accordion */
.c_d8965 {
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  overflow: hidden;
}

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

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

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

.mbSummary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 12px 16px;
  cursor: pointer;
  background: var(--bg);
  user-select: none;
}

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

.mbDetails[open] .mbSummary {
  background: rgba(var(--primary-rgb), .06);
  border-bottom: 1px solid var(--border);
}

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

.mbDetails[open] .c_d7908 {
  color: var(--primary);
}

.c_a103e {
  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;
  white-space: nowrap;
}

.c_7d13f {
  padding: var(--space-3) var(--space-4);
  background: var(--surface);
}

.c_9516a {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.c_69cab {
  font-size: 13px;
  color: var(--text);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.c_69cab::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 12px;
}


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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

.c_36c54 {
  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_36c54::after {
  content: "+";
  margin-left: auto;
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  transition: transform .2s;
}

.c_f8e92[open] > .c_36c54::after {
  content: "\2212";
}

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


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

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

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

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

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

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


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

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

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

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

.c_b7a33 {
  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_a75c4 {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

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

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

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

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

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


/* rg B */
/* RG B — two-line header (title + helpline) then sites row */

.c_f4002 {
  padding: var(--space-3) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: 13px;
  color: var(--muted);
}

.c_5cfa2 {
  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_64469 {
  font-size: 12px;
  color: var(--muted);
}

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

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


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

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

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

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

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

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

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

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

