
/* shell */
.c_71d18{ padding:var(--shell-pad,var(--section-gap,40px)) 0 0; }
.c_15534{ padding:var(--section-gap-dense,16px) 0 0; }
.c_37925{ width:min(var(--shell-cw,var(--container-w,1100px)),calc(100% - var(--space-5))); margin:0 auto; }
.c_71d18:not(.c_15534) > .c_37925{ 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_71d18{ padding:var(--shell-pad-mobile,var(--shell-pad)) 0 0; } .c_15534{ 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_6b57c {
    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_13a8e { display: none; }
  .c_9821e { display: none !important; }

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

  .c_7ac9c .c_4d84f {
    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_7ac9c .c_c6fb2 {
    height: 34px;
    width: auto;
    display: block;
    flex-shrink: 0;
  }

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

  .c_ab564 {
    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_ab564:hover { background: rgba(128,128,128,.12); opacity: 1; color: var(--primary); }

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

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

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

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

  .c_6b57c {
    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_13a8e {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 var(--space-3);
    gap: var(--space-2);
  }

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

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

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

  /* Brand — centered */
  .c_13a8e .c_4d84f {
    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_13a8e .c_c6fb2 {
    height: calc(var(--hd-height, 56px) - 20px);
    width: auto;
    display: block;
  }

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

  .c_13a8e .c_10c3d {
    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_7ac9c {
    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_7ac9c.hd-open { transform: translateX(0); }

  .c_7ac9c .c_4d84f {
    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_7ac9c .c_c6fb2 {
    height: 32px;
    width: auto;
    display: block;
  }

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

  .c_ab564 {
    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_ab564:last-child { border-bottom: none; }
  .c_ab564:active { color: var(--primary); opacity: 1; }

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

  .c_7ac9c .c_10c3d {
    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_7ac9c .c_10c3d:hover { opacity: .85; }

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

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


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

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

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

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

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

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

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

.c_e44b0 {
  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_4928f {
  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_eb542 {
  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_7a868 {
  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_5953a {
  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_5953a:hover { opacity: .9; }

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

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

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

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

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

@media (max-width: 600px) {
  .c_e2728::before { padding-top: 90%; }
  .c_e44b0 { font-size: clamp(17px, 5vw, 26px); }
  .c_5953a { padding: 10px 24px; font-size: 14px; }
  .c_403ed { padding: 8px 18px; font-size: 12px; }
  .c_eb542 { top: 10px; right: 10px; font-size: 10px; padding: 4px 10px; }
  .c_ca283 { width: 8px; height: 8px; }
}


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

.c_62c77 {}

.c_13fce {
  margin: 0 0 20px;
  font-weight: 800;
  font-size: clamp(22px, 3.5vw, 36px);
  line-height: 1.2;
  letter-spacing: -.015em;
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
}

.c_79586 {
  margin: 0;
  padding: 0 0 0 1.2em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

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

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


/* overview A */
/* Overview A — prose + facts table */

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

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

.c_75f68 {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

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

.c_c68ab {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  width: 1%;
}

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


/* last-updated C */
/* Last-Updated C — minimal inline text */

.c_ec3e3 {
  padding: var(--space-1) var(--card-pad);
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
}

.c_cee5d { font-weight: 500; }

.c_f0df1 {
  color: var(--primary);
  font-weight: 600;
}


/* prose B */
/* Prose B — wide, generous spacing */

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

.c_e641a {
  margin: 0 0 var(--space-4);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--skin-title);
  border-bottom: 2px solid var(--skin-ac);
  padding-bottom: var(--space-2);
}

.c_9708d {
  margin: var(--space-5) 0 var(--space-3);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.c_54c4f {
  margin: 0 0 var(--space-4);
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

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

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

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

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

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

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

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


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

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

.c_b6ef2::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_2f59d {
  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_87842 {
  width: 100%;
  border-collapse: collapse;
}

.c_c4e29:first-child .c_5b555,
.c_c4e29:first-child .c_b58b3 {
  padding-top: var(--space-3);
}

.c_c4e29 + .c_c4e29 .c_5b555,
.c_c4e29 + .c_c4e29 .c_b58b3 {
  border-top: 1px solid var(--border);
}

.c_c4e29:hover .c_5b555,
.c_c4e29:hover .c_b58b3 {
  background: color-mix(in srgb, var(--primary) 6%, transparent);
}

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

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

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

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

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


/* pros-cons E */
/* Pros-Cons E — stacked sections with count badge */

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

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

.c_cd934 {
  border-radius: var(--radius-1);
  overflow: hidden;
  margin-bottom: var(--space-3);
}
.c_cd934:last-child { margin-bottom: 0; }

.c_99d94 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--space-3);
}

.pc-section-pros .c_99d94 { background: rgba(46,204,113,.12); border-bottom: 1px solid rgba(46,204,113,.18); }
.pc-section-cons .c_99d94 { background: rgba(231,76,60,.10);  border-bottom: 1px solid rgba(231,76,60,.18); }

.c_a4a25 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text);
}

.c_15019 {
  font-size: 12px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
}

.pc-count-pros { background: rgba(46,204,113,.2); color: #2ecc71; }
.pc-count-cons { background: rgba(231,76,60,.15);  color: #e74c3c; }

.c_41aea {
  list-style: none;
  margin: 0;
  padding: var(--space-2);
  background: rgba(255,255,255,.02);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-1);
}

.c_888f7 {
  padding: 9px 10px 9px 30px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
  border-radius: calc(var(--radius-1) - 4px);
  position: relative;
}

.pc-pro {
  background: rgba(46,204,113,.06);
}
.pc-pro::before {
  content: '✓';
  position: absolute;
  left: 9px; top: 9px;
  color: #2ecc71;
  font-size: 12px;
  font-weight: 900;
}

.pc-con {
  background: rgba(231,76,60,.05);
}
.pc-con::before {
  content: '✕';
  position: absolute;
  left: 9px; top: 9px;
  color: #e74c3c;
  font-size: 12px;
  font-weight: 900;
}


/* prose B */
/* Prose B — wide, generous spacing */

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

.c_223b6 {
  margin: 0 0 var(--space-4);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--skin-title);
  border-bottom: 2px solid var(--skin-ac);
  padding-bottom: var(--space-2);
}

.c_b5432 {
  margin: var(--space-5) 0 var(--space-3);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

.c_a24bf {
  margin: 0 0 var(--space-4);
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

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

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

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

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

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

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

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


/* lobby G */
/* Lobby G — dense badge grid: HOT/TOP/NEU pills, hover overlay with play button */

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

.c_466c0 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

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

.c_51e1a {
  flex-shrink: 0;
  color: var(--fg-muted, rgba(255,255,255,.45));
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color .18s;
}

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

.c_a85e7 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--card-min-w), 1fr));
  gap: var(--item-gap);
}

.c_dbf88 {
  position: relative;
  aspect-ratio: var(--card-aspect);
  border-radius: calc(var(--radius-1) * .75);
  overflow: hidden;
  text-decoration: none;
  display: block;
  cursor: pointer;
  background: var(--border);
}

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

.c_dbf88:hover .c_e6caf { transform: scale(1.06); }

/* ── Badge pills ── */
.c_11a46 {
  position: absolute;
  top: 5px;
  left: 5px;
  display: flex;
  gap: 3px;
  flex-wrap: nowrap;
  pointer-events: none;
}

.c_fab66 {
  display: inline-block;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1.5;
  color: #fff;
}

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

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

.c_dbf88:hover .c_b8d00 { opacity: 1; }

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

.c_6d171 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding-left: 3px;
  flex-shrink: 0;
  order: 1;
  transition: transform .15s, opacity .15s;
}

.c_dbf88:hover .c_6d171 { transform: scale(1.08); }

/* ── Responsive ── */
@media (max-width: 480px) {
  .c_a85e7 { grid-template-columns: repeat(2, 1fr); }
  .c_fab66 { font-size: 8px; padding: 2px 4px; }
  .c_6d171 { width: 32px; height: 32px; font-size: 11px; }
  .c_65ad1 { font-size: 11px; }
}


/* providers F */
/* Providers F — CSS marquee auto-scroll strip (no JS) */

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

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

@keyframes pvMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.c_7495c {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.c_c25a5 {
  display: flex;
  gap: var(--space-3);
  width: max-content;
  animation: pvMarquee 28s linear infinite;
}

.c_c25a5:hover {
  animation-play-state: paused;
}

.c_2de2f {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  width: 140px;
  flex-shrink: 0;
  padding: var(--space-3) var(--space-2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-1);
  text-align: center;
  transition: border-color .2s;
}

.c_2de2f:hover {
  border-color: rgba(var(--primary-rgb), .4);
}

.c_46962 {
  width: 100%;
  height: 44px;
  object-fit: contain;
}

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


/* payments C */
/* Payments C — horizontal striped rows */

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

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

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

.c_f6671 {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-3);
}

.c_f6671:nth-child(odd) { background: var(--bg); }
.c_f6671:nth-child(even) { background: var(--surface); }

.c_f7d47 {
  flex: 0 0 130px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.c_af320 {
  display: flex;
  flex-wrap: wrap;
  gap: 4px var(--space-3);
  font-size: 13px;
}

.c_17e26 {
  color: var(--muted);
  font-weight: 500;
}

.c_42b20 {
  color: var(--skin-title);
  text-shadow: 0 0 var(--skin-glow) var(--skin-glow-c);
  font-weight: 600;
}

@media (max-width: 600px) {
  .c_f6671 { flex-direction: column; gap: 4px; }
  .c_f7d47 { flex: none; }
}


/* prose C */
/* Prose C — narrow blog-style column */

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

.c_e0757 {
  margin: 0 0 var(--space-3);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--skin-title);
}

.c_e896d {
  margin: var(--space-4) 0 var(--space-2);
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

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

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

.c_78361 {
  margin-bottom: var(--space-2);
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

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

.c_c06dc {
  padding: var(--space-2);
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--border);
  color: var(--text);
}

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

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


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

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

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

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

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

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

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

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

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

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

.c_fc112[open] .c_6eee0 {
  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_896f2 {
  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_f844b {
  padding: 10px 14px 12px;
  background: var(--surface);
}

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

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


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

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

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

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

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

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


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

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

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

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

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

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


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

.c_ab2d6 > * {
  position: relative;
}

.c_9e34f {
  margin-bottom: var(--space-4);
}

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

.c_79400 {
  margin: 0;
  color: var(--muted);
}

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

.c_9d2ed {
  padding: var(--space-3);
  border-radius: var(--radius-2);
  border: 1px solid var(--border);
}

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

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


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

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

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

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

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

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

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

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

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

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

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

.c_bca10 {
  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_23bfe {
  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_c519b { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
  .c_bdd70 { justify-content: flex-start; }
}

