

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-header);
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background-color .3s ease, backdrop-filter .3s ease;
  background-color: transparent;
}
.site-header.is-scrolled {
  background-color: var(--header-bg-scrolled);
  backdrop-filter: var(--header-blur);
  -webkit-backdrop-filter: var(--header-blur);
}
.site-header.is-menu-open { background-color: var(--bg-base); }

.xb3d260ed-header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.xb3d260ed-logo { display: inline-flex; align-items: center; min-height: 44px; flex-shrink: 0; }

.xb3d260ed-wordmark {
  display: inline-flex;
  align-items: center;
  font-size: 2.2rem;
  font-weight: var(--weight-bold);
  letter-spacing: .02em;
  color: var(--text-primary);
  line-height: 32px;
  height: 32px;
}
.xb3d260ed-wordmark em { font-style: normal; color: var(--accent-red); margin-inline-start: 4px; }

.main-navigation {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-inline-start: var(--space-8);
  flex: 1;
}
.xb3d260ed-nav-link {
  color: var(--text-link);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  position: relative;
  padding-block: 4px;
  transition: color var(--transition-base);
}
.xb3d260ed-nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--accent-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}
.xb3d260ed-nav-link:hover::after,
.xb3d260ed-nav-link:focus-visible::after { transform: scaleX(1); }

.xb3d260ed-logo, .xb3d260ed-logo:hover,
.xb3d260ed-nav-link, .xb3d260ed-nav-link:hover, .xb3d260ed-nav-link:focus-visible,
.xb3d260ed-nav-drop__link, .xb3d260ed-nav-drop__link:hover, .xb3d260ed-nav-drop__link:focus-visible,
.xb3d260ed-mobile-menu-link, .xb3d260ed-mobile-menu-link:hover, .xb3d260ed-mobile-menu-link:focus-visible,
.xb3d260ed-header-btn, .xb3d260ed-header-btn:hover { text-decoration: none; }

.xb3d260ed-header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-inline-start: auto;
}
.xb3d260ed-header-btn {
  background-color: var(--accent-red);
  color: var(--accent-contrast);
  font-weight: var(--weight-semibold);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  transition: background-color var(--transition-base);
  white-space: nowrap;
}
.xb3d260ed-header-btn:hover { background-color: var(--accent-red-hover); }
.xb3d260ed-header-btn:focus-visible {

  outline: 2px solid var(--text-primary);
  outline-offset: 2px;
}

.xb3d260ed-header-btn--secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background-color: var(--bg-surface);
  border: 1px solid var(--bg-border);

  padding: 7px 15px;
  color: var(--text-primary);
  font-weight: var(--weight-medium);
}
.xb3d260ed-header-btn--secondary:hover {
  background-color: var(--bg-overlay);
  border-color: var(--accent-red);
  color: var(--text-primary);
}

.xb3d260ed-header-btn,
.xb3d260ed-switcher-pill {
  --header-control-h: calc(var(--text-base) * var(--leading-loose) + 16px);
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--header-control-h);

  flex: none;
  padding-block: 0;
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  line-height: var(--leading-loose);
}

.xb3d260ed-mobile-menu .xb3d260ed-header-btn,
.xb3d260ed-mobile-menu .xb3d260ed-switcher-pill {
  --header-control-h: calc(var(--text-base) * var(--leading-loose) + 24px);
}

.xb3d260ed-hamburger { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 4px; width: 44px; height: 44px; padding: 0; margin-inline-end: -6px; }
.xb3d260ed-hamburger-line {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  transition: transform .2s ease, opacity .2s ease;
}
.xb3d260ed-hamburger.is-open .xb3d260ed-hamburger-line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.xb3d260ed-hamburger.is-open .xb3d260ed-hamburger-line:nth-child(2) { opacity: 0; }
.xb3d260ed-hamburger.is-open .xb3d260ed-hamburger-line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.xb3d260ed-mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 0 0;

  height: calc(100dvh - var(--header-height));
  background: var(--bg-base);
  display: flex;
  justify-content: center;
  padding: var(--space-8) var(--page-gutter);
  overflow-y: auto;
  overscroll-behavior: contain;
  z-index: var(--z-header);
}
.xb3d260ed-mobile-menu[hidden] { display: none; }
.xb3d260ed-mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  width: 100%;
  max-width: 480px;
}
.xb3d260ed-mobile-menu-link {
  color: var(--text-primary);
  font-size: var(--text-lg);
  font-weight: var(--weight-medium);
  padding: 12px 0;
  border-bottom: 1px solid var(--bg-border);
}

.xb3d260ed-mobile-menu-link:has(+ .xb3d260ed-mobile-menu-rule) { border-bottom: 0; }

.xb3d260ed-mobile-menu-account,
.xb3d260ed-mobile-menu-cta,
.xb3d260ed-mobile-menu .xb3d260ed-switchers {
  width: 100%;
}
.xb3d260ed-mobile-menu-account,
.xb3d260ed-mobile-menu-cta {
  justify-content: center;

  padding-block: 0;
  font-size: var(--text-base);
}

.xb3d260ed-mobile-menu-rule {
  width: 100%;
  height: 0;
  margin: 0;
  border: 0;
  border-block-start: 1px solid var(--bg-border);
}

@media (max-width: 1024px) {
  .main-navigation { display: none; }
  .xb3d260ed-hamburger { display: inline-flex; }

  .xb3d260ed-header-actions .xb3d260ed-header-btn--secondary { display: none; }
}

.xb3d260ed-hero {
  position: relative;
  width: 100%;
  height: clamp(560px, 100dvh, 1080px);
  overflow: hidden;
}
.xb3d260ed-hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.03);
  z-index: 0;
}
.xb3d260ed-hero__overlay {
  position: absolute; inset: 0; z-index: 1;

  background:
    linear-gradient(180deg, rgba(4,8,12,.25) 0%, rgba(4,8,12,.5) 60%, var(--bg-base) 100%),
    linear-gradient(90deg, rgba(2,6,10,.9) 0%, rgba(2,6,10,.72) 38%, rgba(2,6,10,.28) 62%, rgba(2,6,10,.08) 100%);
}
.xb3d260ed-hero__content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  gap: var(--space-4);
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  padding-block-end: var(--space-16);
  z-index: 2;
}
.xb3d260ed-hero__label-wrap { display: flex; align-items: center; gap: var(--space-3); margin-block-end: var(--space-2); }
.xb3d260ed-hero__label {
  color: var(--accent-teal);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.xb3d260ed-hero__title {
  font-size: var(--text-5xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  color: var(--text-on-media);
  max-width: 720px;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.xb3d260ed-hero__desc {
  font-size: var(--text-md);
  color: var(--text-on-media-soft);
  max-width: 560px;
  margin-block-start: var(--space-2);
}
.xb3d260ed-hero__ctas { display: flex; gap: var(--space-3); margin-block-start: var(--space-4); flex-wrap: wrap; }

@media (max-width: 478px) {
  .xb3d260ed-hero__title { font-size: 3.2rem; }
  .xb3d260ed-hero__desc { font-size: 1.5rem; }
  .xb3d260ed-hero__content { padding-block-end: var(--space-10); }
}

.xb3d260ed-trust__rating { display: flex; flex-direction: column; align-items: center; gap: var(--space-2); text-align: center; }
.xb3d260ed-trust__stars { display: inline-flex; gap: 4px; }
.xb3d260ed-trust__rating-text { color: var(--text-secondary); font-size: var(--text-md); }
.xb3d260ed-trust__rating-text strong { color: var(--text-primary); }
.xb3d260ed-trust__stats {

  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--space-4);
  margin-block: var(--space-10) var(--space-8);
}
.xb3d260ed-trust__stats > li {
  background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-4); text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-2);
  min-height: 112px;
  transition: transform .2s ease, border-color .2s ease;
}
.xb3d260ed-trust__stats > li:hover { transform: translateY(-3px); border-color: var(--accent-red); }

.xb3d260ed-trust__stat-icon { display: flex; align-items: center; width: 32px; height: 32px; flex-shrink: 0; color: var(--accent-red); }
.xb3d260ed-trust__stat-value {
  font-size: clamp(1.6rem, 5.5vw, 2.6rem); font-weight: var(--weight-bold); color: var(--text-primary);
  line-height: 1.05; white-space: nowrap; font-variant-numeric: tabular-nums;
}
.xb3d260ed-trust__stat-label { font-size: var(--text-xs); color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; line-height: 1.3; }

.xb3d260ed-trust__reassurances {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-2) var(--space-8);
  background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
}
.xb3d260ed-trust__reassurances > li {
  display: flex; align-items: center; gap: var(--space-4);
  min-height: 56px; color: var(--text-secondary); font-size: var(--text-base); line-height: var(--leading-normal);
}
.xb3d260ed-trust__check {
  display: inline-flex; align-items: center; justify-content: center;
  inline-size: 32px; block-size: 32px; flex-shrink: 0;
  border-radius: var(--radius-full); background: var(--accent-soft); color: var(--accent-red);
}
.xb3d260ed-trust__assurance { text-wrap: pretty; }
@media (max-width: 900px) {
  .xb3d260ed-trust__stats { grid-template-columns: repeat(2, 1fr); }
  .xb3d260ed-trust__reassurances { grid-template-columns: 1fr; }
}

.xb3d260ed-how__header { text-align: center; margin-block-end: var(--space-10); }
.xb3d260ed-how__header .section-subtitle { padding-top: 0; text-transform: uppercase; letter-spacing: .1em; }
.xb3d260ed-how__header .section-title { max-width: 720px; margin-inline: auto; margin-block-start: var(--space-3); }
.xb3d260ed-how__steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-6); position: relative; }
.xb3d260ed-how-step {
  position: relative; display: flex; flex-direction: column; gap: var(--space-3);
  padding: var(--space-8); background: var(--bg-surface); border: 1px solid var(--bg-border);
  border-radius: var(--radius-2xl); text-align: left;
}
.xb3d260ed-how-step__num { position: absolute; top: var(--space-5); right: var(--space-5); font-size: var(--text-4xl); font-weight: var(--weight-bold); color: var(--bg-overlay); line-height: 1; }
.xb3d260ed-how-step__media { margin: calc(var(--space-8) * -1) calc(var(--space-8) * -1) 0; aspect-ratio: 16/10; overflow: hidden; border-radius: var(--radius-2xl) var(--radius-2xl) 0 0; background: var(--bg-elevated); }
.xb3d260ed-how-step__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.xb3d260ed-how-step__icon { color: var(--accent-red); }
.xb3d260ed-how-step__title { font-size: var(--text-xl); font-weight: var(--weight-semibold); color: var(--text-primary); }
.xb3d260ed-how-step__body { font-size: var(--text-base); color: var(--text-muted); line-height: var(--leading-relaxed); }
@media (max-width: 900px) { .xb3d260ed-how__steps { grid-template-columns: 1fr; } }

.xb3d260ed-devices__header { text-align: center; margin-block-end: var(--space-10); }
.xb3d260ed-devices__header .section-subtitle { padding-top: 0; text-transform: uppercase; letter-spacing: .1em; }
.xb3d260ed-devices__header .section-title { max-width: 720px; margin: var(--space-3) auto 0; }
.xb3d260ed-devices__lead { color: var(--text-muted); max-width: 560px; margin: var(--space-3) auto 0; font-size: var(--text-md); }
.xb3d260ed-devices__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: var(--space-4); }
.xb3d260ed-device-tile {
  display: flex; flex-direction: column; align-items: center; gap: var(--space-3);
  padding: var(--space-5) var(--space-3); background: var(--bg-surface); border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg); transition: transform .2s ease, border-color .2s ease, color .2s ease; color: var(--text-secondary);
}
.xb3d260ed-device-tile:hover { transform: translateY(-3px); border-color: var(--accent-red); color: var(--accent-red); }
.xb3d260ed-device-tile__media { display: flex; align-items: center; justify-content: center; width: 100%; aspect-ratio: 3/1; padding: var(--space-2); background: var(--bg-elevated); border-radius: var(--radius-md); overflow: hidden; }
.xb3d260ed-device-tile__media img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.xb3d260ed-device-tile__name { font-size: var(--text-sm); color: var(--text-muted); font-weight: var(--weight-medium); }
@media (max-width: 600px)  { .xb3d260ed-devices__grid { grid-template-columns: repeat(2, 1fr); } }

.xb3d260ed-compare__header { text-align: center; margin-block-end: var(--space-10); }
.xb3d260ed-compare__header .section-subtitle { padding-top: 0; text-transform: uppercase; letter-spacing: .1em; }
.xb3d260ed-compare__header .section-title { max-width: 720px; margin: var(--space-3) auto 0; }
.xb3d260ed-compare__lead { color: var(--text-muted); max-width: 560px; margin: var(--space-3) auto 0; font-size: var(--text-md); }
.xb3d260ed-compare__wrap { background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-2xl); overflow: hidden; max-width: 920px; margin-inline: auto; }
.xb3d260ed-compare__table { width: 100%; border-collapse: collapse; }
.xb3d260ed-compare__table th, .xb3d260ed-compare__table td { padding: var(--space-4) var(--space-5); text-align: left; font-size: var(--text-base); border-bottom: 1px solid var(--bg-border); }
.xb3d260ed-compare__table tr:last-child th, .xb3d260ed-compare__table tr:last-child td { border-bottom: none; }
.xb3d260ed-compare__table thead th { font-size: var(--text-sm); text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); padding-block: var(--space-5); background: var(--bg-base); text-align: center; }
.xb3d260ed-compare__col--brand { color: var(--accent-red); }
.xb3d260ed-compare__row-label { color: var(--text-primary); font-weight: var(--weight-medium); width: 50%; }
.xb3d260ed-compare__cell { text-align: center; color: var(--text-secondary); }
.xb3d260ed-compare__cell--brand { text-align: center; color: var(--accent-red); font-weight: var(--weight-semibold); }
.xb3d260ed-compare__table svg { vertical-align: middle; }
@media (max-width: 600px) { .xb3d260ed-compare__table th, .xb3d260ed-compare__table td { padding: var(--space-3); font-size: var(--text-sm); } }

.xb3d260ed-kids-card { position: relative; border-radius: var(--radius-2xl); overflow: hidden; isolation: isolate; min-height: 420px; display: flex; align-items: flex-end; }
.xb3d260ed-kids-card__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.xb3d260ed-kids-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.65) 70%, rgba(0,0,0,.85) 100%); z-index: -1; }
.xb3d260ed-kids-card__content { display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-3); padding: var(--space-10); }
.xb3d260ed-kids-card__title { font-size: var(--text-3xl); color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.4); }
.xb3d260ed-kids-card__desc { color: var(--text-secondary); max-width: 480px; }
@media (max-width: 600px) { .xb3d260ed-kids-card { min-height: 320px; } .xb3d260ed-kids-card__content { padding: var(--space-6); } .xb3d260ed-kids-card__title { font-size: var(--text-2xl); } }

.xb3d260ed-duo-icon { display: block; width: 100%; height: 100%; }

.xb3d260ed-features__header { margin-block-end: var(--space-12); text-align: center; }
.xb3d260ed-features .section-title { margin-block-end: 0; }
.xb3d260ed-features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.xb3d260ed-feature-card { display: flex; flex-direction: column; gap: var(--space-3); padding: var(--space-7) var(--space-6) var(--space-8); background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-lg); text-align: start; }
.xb3d260ed-feature-card__icon { display: flex; align-items: center; width: 32px; height: 32px; flex-shrink: 0; color: var(--accent-red); }
.xb3d260ed-feature-card__title { font-size: var(--text-md); color: var(--text-primary); font-weight: var(--weight-bold); line-height: 1.3; }
.xb3d260ed-feature-card__desc { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.6; }
@media (max-width: 900px) { .xb3d260ed-features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 478px) { .xb3d260ed-features__grid { grid-template-columns: 1fr; gap: 12px; } }

.xb3d260ed-cta__inner {
  text-align: center;
  background: linear-gradient(135deg, var(--highlight-dark-blue) 0%, var(--highlight-purple) 100%);
  border-radius: var(--radius-3xl);
  padding: var(--space-12) var(--space-8);
  display: flex; flex-direction: column; align-items: center; gap: var(--space-4);
}
.xb3d260ed-cta__sub { order: -1; padding-top: 0; text-transform: uppercase; letter-spacing: .12em; font-size: var(--text-sm); }
.xb3d260ed-cta__title { max-width: 640px; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.xb3d260ed-cta__btn { margin-block-start: var(--space-4); padding: 13px 26px; font-size: var(--text-base); }

.site-footer {
  margin-top: var(--space-24);
  padding-block: var(--space-16) var(--space-10);
  background: var(--bg-base);
  color: var(--text-muted);
}
.xb3d260ed-footer-inner { display: flex; flex-direction: column; gap: var(--space-12); }
.xb3d260ed-footer-top { display: grid; grid-template-columns: 1.2fr 3fr; gap: var(--space-16); align-items: start; }
.xb3d260ed-footer-brand { display: flex; flex-direction: column; gap: var(--space-4); max-width: 320px; }
.xb3d260ed-footer-logo { font-size: 2.6rem; line-height: 40px; height: 40px; }
.xb3d260ed-footer-tagline { font-size: var(--text-base); color: var(--text-muted); margin-block-start: var(--space-2); }

.xb3d260ed-footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-8); }
.xb3d260ed-footer-col { display: flex; flex-direction: column; gap: var(--space-3); }

.xb3d260ed-footer-seal { display: inline-block; inline-size: max-content; align-self: start; margin-block-start: var(--space-4); line-height: 0; }
.xb3d260ed-footer-seal img { display: block; width: 112px; height: 112px; object-fit: contain; }
.xb3d260ed-footer-col-heading { color: var(--text-primary); font-weight: var(--weight-semibold); font-size: var(--text-base); margin-block-end: var(--space-2); }
.xb3d260ed-footer-col-link { color: var(--text-muted); font-size: var(--text-base); transition: color var(--transition-base); }
.xb3d260ed-footer-col-link:hover { color: var(--text-primary); }

@media (max-width: 768px) {
  .xb3d260ed-footer-col { gap: var(--space-1); }
  .xb3d260ed-footer-col-link { display: flex; align-items: center; min-height: 40px; }
}
.xb3d260ed-footer-divider { height: 1px; background: var(--bg-border); }
.xb3d260ed-footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: var(--space-6); flex-wrap: wrap; }
.xb3d260ed-footer-pay { display: inline-flex; align-items: center; gap: var(--space-3); flex-wrap: wrap; }

.xb3d260ed-footer-pay img {
  height: 18px; width: auto; max-width: 44px; object-fit: contain;
  filter: grayscale(1); opacity: .55; transition: filter var(--transition-base), opacity var(--transition-base);
}
.xb3d260ed-footer-pay:hover img, .xb3d260ed-footer-pay:focus-within img { filter: none; opacity: 1; }
.xb3d260ed-footer-copyright { color: var(--text-muted); font-size: var(--text-sm); }

@media (max-width: 900px) {
  .xb3d260ed-footer-top { grid-template-columns: 1fr; gap: var(--space-10); }
  .xb3d260ed-footer-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 478px) {
  .xb3d260ed-footer-cols { grid-template-columns: 1fr; gap: var(--space-6); }
}

.xb3d260ed-faq { max-width: 880px; margin-inline: auto; }
.xb3d260ed-faq .section-title { margin-block-end: var(--space-10); }
.xb3d260ed-faq__list { display: flex; flex-direction: column; gap: var(--space-3); }

.xb3d260ed-faq__item {
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition-base);
}
.xb3d260ed-faq__item[open] { border-color: var(--accent-red); }
.xb3d260ed-faq__q {
  cursor: pointer;
  list-style: none;
  padding: var(--space-4) var(--space-5);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  font-size: var(--text-md); font-weight: var(--weight-semibold); color: var(--text-primary);
  line-height: var(--leading-normal);
}
.xb3d260ed-faq__q::-webkit-details-marker { display: none; }

.xb3d260ed-faq__q::after {
  content: '+'; flex: none;
  inline-size: 24px; block-size: 24px;
  display: grid; place-items: center;
  font-size: var(--text-xl); color: var(--accent-red); line-height: 1;
  transition: transform var(--transition-base);
}
.xb3d260ed-faq__item[open] .xb3d260ed-faq__q::after { transform: rotate(45deg); }
.xb3d260ed-faq__q:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: -3px; border-radius: var(--radius-lg); }
.xb3d260ed-faq__a { padding: 0 var(--space-5) var(--space-4); }
.xb3d260ed-faq__a p { color: var(--text-muted); font-size: var(--text-base); line-height: var(--leading-relaxed); }

.xb3d260ed-faq__groups { display: flex; flex-direction: column; gap: var(--space-10); }
.xb3d260ed-faq__group-title {
  display: flex; align-items: center; gap: var(--space-3);
  margin-block-end: var(--space-5);
  font-size: var(--text-lg); font-weight: var(--weight-bold); color: var(--text-primary);
  letter-spacing: -0.01em;
}
.xb3d260ed-faq__group-title::before {
  content: ''; flex: 0 0 auto;
  inline-size: 4px; block-size: 1.15em;
  border-radius: var(--radius-sm);
  background: var(--accent-red);
}
.xb3d260ed-faq__group-title::after {
  content: ''; flex: 1 1 auto;
  block-size: 1px;
  background: var(--bg-border);
}

.xb3d260ed-faq { interpolate-size: allow-keywords; }
@supports selector(details::details-content) {
  .xb3d260ed-faq__item::details-content {
    block-size: 0;
    overflow: hidden;
    transition: block-size var(--transition-base) ease, content-visibility var(--transition-base) allow-discrete;
  }
  .xb3d260ed-faq__item[open]::details-content { block-size: auto; }
}
.xb3d260ed-faq__item[open] .xb3d260ed-faq__a { animation: ui-faq-reveal var(--transition-base) ease-out; }
@keyframes ui-faq-reveal {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .xb3d260ed-faq__item[open] .xb3d260ed-faq__a { animation: none; }
  .xb3d260ed-faq__item::details-content { transition: none; }
}
@media (max-width: 478px) {
  .xb3d260ed-faq__groups { gap: var(--space-8); }
}

.xb3d260ed-pren-hero { position: relative; background: var(--bg-base); overflow: hidden; }
.xb3d260ed-pren-hero__img-wrap { position: absolute; inset: 0; z-index: 0; }
.xb3d260ed-pren-hero__bg { width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; }
.xb3d260ed-pren-hero__fade {
  position: absolute; inset: 0; z-index: 1;

  background:
    linear-gradient(90deg, rgba(8,8,10,.72) 0%, rgba(8,8,10,.42) 30%, rgba(8,8,10,0) 58%),
    linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(12,12,14,.08) 34%, rgba(12,12,14,.62) 72%, var(--bg-base) 100%);
}
.xb3d260ed-pren-hero__content {
  position: relative; z-index: 2; width: 100%; max-width: var(--container-max);
  margin-inline: auto; padding-inline: var(--page-gutter);
  padding-top: clamp(240px, 32vw, 420px); padding-bottom: var(--space-12);
  display: flex; flex-direction: column; gap: var(--space-2);
}
.xb3d260ed-pren-hero__eyebrow { color: var(--text-on-media-soft); font-size: var(--text-sm); font-weight: var(--weight-medium); letter-spacing: .06em; }
.xb3d260ed-pren-hero__title { color: var(--text-on-media); font-size: clamp(2.1rem, 4.2vw, 3.2rem); font-weight: var(--weight-bold); line-height: 1.2; max-width: 695px; margin-block: var(--space-2) var(--space-4); }
.xb3d260ed-pren-hero__price-from { color: var(--accent-red); font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: var(--weight-semibold); }
.xb3d260ed-pren-hero__price-from strong { font-weight: 900; }
.xb3d260ed-pren-hero__price-orig { color: var(--text-on-media-muted); font-size: var(--text-lg); text-decoration: line-through; }
.xb3d260ed-pren-hero__desc { color: var(--text-on-media-muted); font-size: var(--text-md); line-height: 1.6; max-width: 900px; margin-block-start: var(--space-4); }
@media (max-width: 600px) {
  .xb3d260ed-pren-hero__img-wrap { position: relative; height: 58vw; min-height: 210px; max-height: 300px; }
  .xb3d260ed-pren-hero__bg { object-position: 72% 28%; }
  .xb3d260ed-pren-hero__fade { background: linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(12,12,14,.35) 55%, var(--bg-base) 100%); }
  .xb3d260ed-pren-hero__content { padding-top: var(--space-6); }
}

.xb3d260ed-plan-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-6); }

.xb3d260ed-pcard { position: relative; display: grid; grid-template-rows: subgrid; grid-row: span 10; gap: var(--space-4); padding: var(--space-7); background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-2xl); min-width: 0; }

.xb3d260ed-pcard__flag { display: flex; align-items: center; min-height: 32px; }
.xb3d260ed-pcard__head { display: flex; align-items: baseline; }
.xb3d260ed-pcard__badge { white-space: nowrap; font-size: var(--text-sm); font-weight: var(--weight-semibold); padding: 5px 15px; border-radius: var(--radius-full); }
.xb3d260ed-pcard__badge--dark { background: var(--bg-elevated); color: var(--text-primary); border: 1px solid var(--bg-border); }
.xb3d260ed-pcard__badge--pink { background: var(--accent-red); color: var(--accent-contrast); }
.xb3d260ed-pcard__title { font-size: var(--text-3xl); min-width: min(100%, max-content); overflow-wrap: break-word; }
.xb3d260ed-pcard__desc { color: var(--text-muted); font-size: var(--text-base); }
@supports not (grid-template-rows: subgrid) { .xb3d260ed-pcard__desc { min-height: 5.9em; } }
.xb3d260ed-pcard__rule { border: none; border-top: 1px solid var(--bg-border); margin: 0; }

.xb3d260ed-pcard__price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0 var(--space-3); }
.xb3d260ed-pcard__price s { flex: 1 0 100%; color: var(--text-muted); font-size: var(--text-base); text-decoration-thickness: 1px; margin-block-end: 2px; }
.xb3d260ed-pcard__price s[hidden] { display: none; }
.xb3d260ed-pcard__price strong { color: var(--accent-red); font-size: var(--text-3xl); font-weight: var(--weight-bold); line-height: 1.05; }
.xb3d260ed-pcard__per { color: var(--text-secondary); font-size: var(--text-lg); font-weight: var(--weight-medium); white-space: nowrap; }
.xb3d260ed-pcard__terms { display: flex; flex-direction: column; gap: 6px; color: var(--text-secondary); font-size: var(--text-base); }

.xb3d260ed-dev-switch { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 0 var(--space-8); flex-wrap: wrap; }
.xb3d260ed-dev-switch__label { color: var(--text-secondary); font-weight: var(--weight-medium); font-size: var(--text-sm); }
.xb3d260ed-dev-switch__opts { display: inline-flex; gap: 4px; background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-full); padding: 4px; }
.xb3d260ed-dev-switch__opts button { min-width: 40px; border: none; background: none; color: var(--text-secondary); font-weight: var(--weight-semibold); font-size: var(--text-sm); padding: 7px 14px; border-radius: var(--radius-full); cursor: pointer; transition: background-color .15s, color .15s; }
.xb3d260ed-dev-switch__opts button:hover { color: var(--text-primary); }

@media (max-width: 768px) {
  .xb3d260ed-dev-switch__opts button { min-width: 44px; min-height: 44px; padding: 7px 12px; }
}
.xb3d260ed-dev-switch__opts button.on { background: var(--accent-red); color: var(--accent-contrast); }

.xb3d260ed-pcard__cta {
  display: block; width: 100%; text-align: center; margin-top: var(--space-2);
  padding: 14px; border-radius: var(--radius-md);
  background: var(--accent-red); color: var(--accent-contrast); text-decoration: none;
  font-weight: var(--weight-semibold); font-size: var(--text-md);
  border: none; cursor: pointer; transition: background-color .2s ease;
}
.xb3d260ed-pcard__cta:hover { background: var(--accent-red-hover); }
.xb3d260ed-pcard__cta[aria-busy="true"] { opacity: .7; cursor: progress; }
@media (max-width: 880px) {

  .xb3d260ed-plan-cards { grid-template-columns: 1fr; width: 100%; max-width: 460px; margin-inline: auto; }
  .xb3d260ed-pcard { grid-template-rows: none; grid-row: auto; }
  .xb3d260ed-pcard__desc { min-height: 0; }
  .xb3d260ed-pcard__title { font-size: var(--text-xl); }
}

.xb3d260ed-money-back { display: flex; align-items: center; justify-content: center; gap: var(--space-3); color: var(--text-secondary); margin-block-start: var(--space-10); text-align: center; }
.xb3d260ed-money-back svg { color: var(--accent-red); flex-shrink: 0; }

.xb3d260ed-value-props { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); max-width: 880px; margin: var(--space-8) auto 0; }
.xb3d260ed-value-props:has(> :nth-child(2):last-child) { grid-template-columns: repeat(2, 1fr); }
.xb3d260ed-value-props:has(> :nth-child(4):last-child) { grid-template-columns: repeat(2, 1fr); max-width: 780px; }
.xb3d260ed-value-props:has(> :nth-child(3):last-child) { max-width: 1080px; }
.xb3d260ed-value-prop { display: flex; gap: var(--space-3); padding: var(--space-5); background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-lg); }
.xb3d260ed-value-prop svg { color: var(--accent-red); flex-shrink: 0; margin-block-start: 2px; }
.xb3d260ed-value-prop h3 { font-size: var(--text-md); font-weight: var(--weight-semibold); color: var(--text-primary); }
.xb3d260ed-value-prop p { font-size: var(--text-base); color: var(--text-muted); margin-block-start: 4px; }
@media (max-width: 700px) { .xb3d260ed-value-props { grid-template-columns: 1fr; } }

.xb3d260ed-trial-hero { position: relative; overflow: hidden; background: var(--bg-base); }
.xb3d260ed-trial-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 30%; }
.xb3d260ed-trial-hero__fade { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, var(--bg-base) 98%), linear-gradient(100deg, var(--bg-base) 30%, color-mix(in srgb, var(--bg-base) 82%, transparent) 52%, color-mix(in srgb, var(--bg-base) 45%, transparent) 100%); }
.xb3d260ed-trial-hero__inner { position: relative; max-width: var(--container-max); margin-inline: auto; padding: clamp(56px, 9vw, 110px) var(--page-gutter); }
.xb3d260ed-trial-hero h1 { font-size: clamp(3.4rem, 6vw, 6rem); font-weight: var(--weight-bold); line-height: 1.04; color: var(--text-primary); margin: var(--space-4) 0 var(--space-3); }
.xb3d260ed-hl { color: var(--accent-pink); }
.xb3d260ed-trial-hero__lede { color: var(--text-secondary); font-size: var(--text-md); line-height: 1.5; max-width: 520px; }
.xb3d260ed-trial-hero__trust { display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-6); margin-top: var(--space-6); }
.xb3d260ed-trial-hero__trust li { display: inline-flex; align-items: center; gap: 8px; color: var(--text-primary); font-size: var(--text-base); font-weight: var(--weight-semibold); }
.xb3d260ed-trial-hero__trust svg { color: var(--accent-pink); flex-shrink: 0; }
.xb3d260ed-badge { display: inline-flex; align-items: center; gap: 7px; background: var(--accent-soft); color: var(--accent-pink); border: 1px solid var(--accent-soft-border); font-size: var(--text-sm); font-weight: var(--weight-semibold); padding: 6px 13px; border-radius: var(--radius-full); }

.xb3d260ed-formsec { background: var(--bg-base); padding: clamp(40px, 6vw, 72px) var(--page-gutter); display: flex; justify-content: center; }
.xb3d260ed-trial-card { width: 100%; max-width: 560px; background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-xl); padding: clamp(22px, 4vw, 36px); box-shadow: var(--shadow-md); margin-top: -64px; position: relative; z-index: 2; }
.xb3d260ed-trial-card h2 { font-size: var(--text-lg); font-weight: var(--weight-bold); color: var(--text-primary); margin-bottom: var(--space-3); }
.xb3d260ed-trial-card__sub { color: var(--text-muted); font-size: var(--text-base); margin-bottom: var(--space-5); line-height: 1.5; }
.xb3d260ed-trial-card form { display: flex; flex-direction: column; gap: var(--space-4); }
.xb3d260ed-trial-card label { display: flex; flex-direction: column; gap: 6px; font-size: var(--text-sm); color: var(--text-label); font-weight: var(--weight-medium); }
.xb3d260ed-field-label { font-size: var(--text-sm); color: var(--text-label); font-weight: var(--weight-medium); }
.xb3d260ed-trial-card input, .xb3d260ed-trial-card select { background: var(--bg-base); border: 1px solid var(--bg-border); border-radius: var(--radius-md); padding: 12px 14px; color: var(--text-primary); font-size: var(--text-base); font-family: inherit; }
.xb3d260ed-trial-card input:focus, .xb3d260ed-trial-card select:focus { outline: none; border-color: var(--accent-pink); }
.xb3d260ed-trial-card input::placeholder { color: var(--text-disabled); }
.xb3d260ed-mono { font-family: ui-monospace, Menlo, monospace; letter-spacing: 2px; text-transform: uppercase; }
.xb3d260ed-hint { font-weight: var(--weight-normal); color: var(--text-muted); font-size: var(--text-sm); line-height: 1.45; }
.xb3d260ed-err { color: var(--color-error); font-size: var(--text-base); margin: 0; }

.xb3d260ed-err.is-warn { color: var(--color-warning); }
.xb3d260ed-fine { font-size: var(--text-sm); color: var(--text-muted); text-align: center; line-height: 1.5; }
.xb3d260ed-fine a { color: var(--text-secondary); text-decoration: underline; }
.xb3d260ed-trial-submit { width: 100%; padding: 14px; font-size: var(--text-md); }
.xb3d260ed-app-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.xb3d260ed-pill { background: var(--bg-base); border: 1px solid var(--bg-border); color: var(--text-secondary); border-radius: var(--radius-full); padding: 9px 16px; font-size: var(--text-sm); font-weight: var(--weight-medium); cursor: pointer; transition: border-color .2s, color .2s, background-color .2s; }
.xb3d260ed-pill:hover { border-color: var(--accent-pink); }
.xb3d260ed-pill.is-active { background: var(--accent-red); border-color: var(--accent-red); color: var(--accent-contrast); }
.xb3d260ed-trial-benefits-lead { max-width: 760px; margin: var(--space-3) auto 0; text-align: center; color: var(--text-muted); font-size: var(--text-md); line-height: var(--leading-relaxed); }

.xb3d260ed-thanks { max-width: 620px; margin-inline: auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: var(--space-4); padding-block-start: var(--space-12); }
.xb3d260ed-thanks__ic { width: 84px; height: 84px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, #22c55e, #16a34a); color: #fff; }

.xb3d260ed-thanks__ic--err { background: linear-gradient(135deg, var(--color-error), color-mix(in srgb, var(--color-error) 72%, #000)); }

.xb3d260ed-thanks__ic--spent { background: linear-gradient(135deg, var(--bg-overlay), var(--bg-surface)); color: var(--text-muted); }
.xb3d260ed-thanks__title { font-size: var(--text-3xl); }
.xb3d260ed-thanks__lead { color: var(--text-muted); font-size: var(--text-md); max-width: 520px; }
.xb3d260ed-thanks__summary { width: 100%; max-width: 480px; text-align: left; background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-lg); padding: var(--space-6); }
.xb3d260ed-thanks__summary-title { font-size: var(--text-base); text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); font-weight: var(--weight-semibold); margin-block-end: var(--space-4); }
.xb3d260ed-thanks__rows { display: flex; flex-direction: column; gap: var(--space-3); }
.xb3d260ed-thanks__row { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-4); border-bottom: 1px solid var(--bg-border); padding-block-end: var(--space-3); }
.xb3d260ed-thanks__row:last-child { border-bottom: none; padding-block-end: 0; }
.xb3d260ed-thanks__row dt { color: var(--text-muted); font-size: var(--text-sm); flex-shrink: 0; }
.xb3d260ed-thanks__row dd { color: var(--text-primary); font-size: var(--text-base); font-weight: var(--weight-medium); text-align: right; word-break: break-word; }
.xb3d260ed-thanks__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; justify-content: center; margin-block-start: var(--space-4); width: 100%; max-width: 480px; }
.xb3d260ed-thanks__btn { flex: 1; min-width: 180px; }

.xb3d260ed-thanks__portal { width: 100%; max-width: 560px; padding: 0; background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-lg); overflow: hidden; text-align: start; }

.xb3d260ed-thanks__top { display: flex; flex-direction: column; align-items: stretch; gap: var(--space-3); padding: var(--space-5) var(--space-6); border-block-end: 1px solid var(--bg-border); background: color-mix(in srgb, var(--color-success, #22c55e) 8%, transparent); }
.xb3d260ed-thanks__btn-top { width: 100%; }
.xb3d260ed-thanks__valid { margin: 0; color: var(--text-secondary); font-size: var(--text-sm); text-align: center; }
.xb3d260ed-thanks__portal-title { margin: 0; font-size: var(--text-lg); font-weight: var(--weight-bold); color: var(--text-primary); }

.xb3d260ed-thanks__creds { display: flex; flex-direction: column; gap: var(--space-3); padding: var(--space-5) var(--space-6); border-block-end: 1px solid var(--bg-border); }
.xb3d260ed-thanks__row-copy { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: var(--space-2) var(--space-3); padding: var(--space-3) var(--space-4); border: 1px solid var(--bg-border); border-radius: var(--radius-md); background: var(--bg-base); }
.xb3d260ed-thanks__row-label { grid-column: 1 / -1; font-size: var(--text-xs, .78rem); text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); font-weight: var(--weight-semibold); }
.xb3d260ed-thanks__row-value { font-size: var(--text-lg); font-weight: var(--weight-bold); color: var(--text-primary); line-height: 1.35; min-width: 0; }
.xb3d260ed-thanks__copy { justify-self: end; align-self: center; padding: 7px 14px; border: 1px solid var(--bg-border); border-radius: var(--radius-full); background: var(--bg-surface); color: var(--text-primary); font-family: inherit; font-size: var(--text-sm); font-weight: var(--weight-semibold); cursor: pointer; white-space: nowrap; }
.xb3d260ed-thanks__copy:hover { border-color: var(--accent-red); }
.xb3d260ed-thanks__copy.is-done { border-color: var(--color-success, #22c55e); color: var(--color-success, #22c55e); }
.xb3d260ed-thanks__code { color: var(--text-primary) !important; }

.xb3d260ed-thanks__addr { font-family: ui-monospace, Menlo, monospace; overflow-wrap: anywhere; letter-spacing: 0; }

.xb3d260ed-thanks__do { display: flex; flex-direction: column; gap: var(--space-3); padding: var(--space-5) var(--space-6); border-block-end: 1px solid var(--bg-border); }
.xb3d260ed-thanks__do-lead { margin: 0; color: var(--text-muted); font-size: var(--text-base); line-height: 1.5; }

.xb3d260ed-thanks__next { width: 100%; margin: 0; padding-inline-start: var(--space-6); text-align: start; list-style: decimal; }
.xb3d260ed-thanks__next li { color: var(--text-secondary); font-size: var(--text-base); line-height: 1.6; }
.xb3d260ed-thanks__next li + li { margin-block-start: var(--space-4); }
.xb3d260ed-thanks__next li b { display: block; color: var(--text-primary); font-weight: var(--weight-semibold); }
.xb3d260ed-thanks__next li::marker { color: var(--accent-red); font-weight: 700; }

.xb3d260ed-thanks__next kbd { display: inline-block; font-family: ui-monospace, Menlo, monospace; font-size: .85em; font-weight: var(--weight-semibold); color: var(--text-primary); background: var(--bg-elevated); border: 1px solid var(--bg-border); border-block-end-width: 2px; border-radius: 5px; padding: 1px 6px; margin-inline: 1px; }

.xb3d260ed-thanks__acts { display: flex; flex-direction: column; align-items: center; gap: var(--space-3); padding: var(--space-5) var(--space-6); }
.xb3d260ed-thanks__acts .btn { width: 100%; }
.xb3d260ed-thanks__help { font-size: var(--text-sm); color: var(--text-muted); text-decoration: underline; text-underline-offset: 3px; }
.xb3d260ed-thanks__help:hover { color: var(--text-primary); }
.xb3d260ed-thanks__note { font-size: var(--text-sm); color: var(--text-muted); }
.xb3d260ed-thanks__back { font-size: var(--text-sm); }
.xb3d260ed-thanks__back a { color: var(--text-muted); }
.xb3d260ed-thanks__back a:hover { color: var(--accent-red); }

.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: var(--space-2); align-items: center; font-size: var(--text-sm); color: var(--text-muted); margin-block-end: var(--space-6); }
.breadcrumbs li { display: inline-flex; align-items: center; gap: var(--space-2); }
.breadcrumbs li:not(:last-child)::after { content: '/'; color: var(--bg-border); margin-inline-start: var(--space-2); }
.breadcrumbs a { color: var(--text-muted); transition: color var(--transition-base); }
.breadcrumbs a:hover { color: var(--accent-red); }
.breadcrumbs li[aria-current] { color: var(--text-secondary); }

.xb3d260ed-prose { max-width: 820px; margin-inline: auto; }
.xb3d260ed-prose__title { font-size: var(--text-4xl); margin-block-end: var(--space-6); }
.xb3d260ed-prose__body { color: var(--text-secondary); font-size: var(--text-md); line-height: var(--leading-relaxed); }
.xb3d260ed-prose__body > * + * { margin-block-start: var(--space-5); }
.xb3d260ed-prose__body h2 { font-size: var(--text-2xl); color: var(--text-primary); margin-block-start: var(--space-10); }
.xb3d260ed-prose__body h3 { font-size: var(--text-xl); color: var(--text-primary); margin-block-start: var(--space-8); }
.xb3d260ed-prose__body a { color: var(--accent-red); text-decoration: underline; }
.xb3d260ed-prose__body ul, .xb3d260ed-prose__body ol { padding-inline-start: var(--space-6); display: flex; flex-direction: column; gap: var(--space-2); }
.xb3d260ed-prose__body ul { list-style: disc; }
.xb3d260ed-prose__body ol { list-style: decimal; }
.xb3d260ed-prose__body img { border-radius: var(--radius-lg); }
.xb3d260ed-prose__body blockquote { border-inline-start: 3px solid var(--accent-red); padding-inline-start: var(--space-5); color: var(--text-muted); }

.entry { max-width: 820px; margin-inline: auto; }
.entry-title { font-size: var(--text-4xl); margin-block-end: var(--space-4); }
.entry-meta { display: flex; flex-wrap: wrap; gap: var(--space-2) var(--space-3); align-items: center; color: var(--text-muted); font-size: var(--text-sm); margin-block-end: var(--space-6); }
.entry-meta__author { color: var(--text-secondary); font-weight: var(--weight-semibold); }
.post-thumbnail { margin-block-end: var(--space-8); }
.post-thumbnail img { width: 100%; height: auto; border-radius: var(--radius-xl); }
.entry-footer { display: flex; gap: var(--space-2); flex-wrap: wrap; margin-block-start: var(--space-8); }

.xb3d260ed-contact-shell { display: flex; flex-direction: column; gap: var(--space-10); max-width: 720px; margin-inline: auto; text-align: center; }
.xb3d260ed-contact-header h1 { font-size: var(--text-5xl); line-height: var(--leading-tight); }
.xb3d260ed-contact-header .section-subtitle { padding-top: 0; text-transform: uppercase; letter-spacing: .1em; }
.xb3d260ed-contact-header > p:last-child { color: var(--text-muted); font-size: var(--text-md); line-height: var(--leading-relaxed); margin-top: var(--space-3); }

.xb3d260ed-support-talk__lead { color: var(--text-muted); font-size: var(--text-base); line-height: var(--leading-relaxed); max-width: 62ch; margin-inline: auto; margin-block-end: var(--space-6); text-align: center; }

.xb3d260ed-contact-btn.xb3d260ed-contact-btn {
  background: var(--accent-red);
  color: var(--accent-contrast);
  border-color: var(--accent-red);
  font-weight: var(--weight-semibold);
}
.xb3d260ed-contact-btn.xb3d260ed-contact-btn:hover { background: var(--accent-red-hover); border-color: var(--accent-red-hover); }
.xb3d260ed-contact-btn.xb3d260ed-contact-btn:disabled { background: var(--bg-subtle); border-color: var(--bg-border); color: var(--text-muted); }
.xb3d260ed-contact-btn.xb3d260ed-contact-btn:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 3px; }

.xb3d260ed-contact-btn .xb3d260ed-contact-btn__icon { flex: none; inline-size: 22px; block-size: 22px; height: 22px; width: 22px; }
.xb3d260ed-contact-btn .xb3d260ed-contact-channel__name { color: inherit; }
.xb3d260ed-contact-btn .xb3d260ed-contact-channel__hint { color: color-mix(in srgb, var(--accent-contrast) 78%, transparent); }

.xb3d260ed-contact-channel--primary.xb3d260ed-contact-btn { box-shadow: 0 0 0 3px var(--focus-ring); }
.xb3d260ed-support-fix { display: flex; flex-direction: column; gap: var(--space-3); max-width: 820px; margin-inline: auto; }

.xb3d260ed-support-fix__item { background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-lg); }
.xb3d260ed-support-fix__q { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); padding: var(--space-4) var(--space-5); cursor: pointer; color: var(--text-primary); font-size: var(--text-md); font-weight: var(--weight-semibold); line-height: var(--leading-normal); list-style: none; }
.xb3d260ed-support-fix__q:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: -3px; border-radius: var(--radius-lg); }
.xb3d260ed-support-fix__q::-webkit-details-marker { display: none; }

.xb3d260ed-support-fix__q::after {
  content: '+'; flex: none;
  inline-size: 24px; block-size: 24px;
  display: grid; place-items: center;
  font-size: var(--text-xl); color: var(--accent-red); line-height: 1;
  transition: transform var(--transition-base);
}
.xb3d260ed-support-fix__item[open] .xb3d260ed-support-fix__q { color: var(--accent-red); }
.xb3d260ed-support-fix__item[open] .xb3d260ed-support-fix__q::after { transform: rotate(45deg); }
.xb3d260ed-support-fix__a { color: var(--text-secondary); font-size: var(--text-base); line-height: var(--leading-relaxed); padding: 0 var(--space-5) var(--space-4); }
.xb3d260ed-support-fix__a a { color: var(--accent-red); font-weight: var(--weight-semibold); }

.xb3d260ed-contact-channels { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-4); }
.xb3d260ed-contact-channel { width: 100%; min-height: 132px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-2); padding: var(--space-6); background: var(--bg-surface); color: inherit; border: 1px solid var(--bg-border); border-radius: var(--radius-lg); cursor: pointer; transition: border-color var(--transition-base), transform var(--transition-base); }
.xb3d260ed-contact-channel:hover { border-color: var(--accent-pink); transform: translateY(-2px); }
.xb3d260ed-contact-channel:focus-visible { outline: 2px solid var(--accent-pink); outline-offset: 3px; }
.xb3d260ed-contact-channel:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.xb3d260ed-contact-channel__name { color: var(--text-primary); font-weight: var(--weight-semibold); font-size: var(--text-md); }
.xb3d260ed-contact-channel__hint { color: var(--text-muted); font-size: var(--text-sm); line-height: var(--leading-normal); }
@media (max-width: 768px) { .xb3d260ed-contact-channels { grid-template-columns: 1fr; } }

.xb3d260ed-contact__head { text-align: center; margin-block-end: var(--space-10); }
.xb3d260ed-contact__lead { color: var(--text-muted); font-size: var(--text-md); max-width: 560px; margin: var(--space-3) auto 0; }
.xb3d260ed-contact__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); max-width: 1000px; margin-inline: auto; }
.xb3d260ed-contact-card { background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-lg); padding: var(--space-7); display: flex; flex-direction: column; gap: var(--space-3); align-items: flex-start; }
.xb3d260ed-contact-card h2 { font-size: var(--text-lg); color: var(--text-primary); }
.xb3d260ed-contact-card p { color: var(--text-muted); font-size: var(--text-base); }
.xb3d260ed-contact-card__meta { color: var(--text-secondary); font-weight: var(--weight-semibold); }
@media (max-width: 880px) { .xb3d260ed-contact__grid { grid-template-columns: 1fr; max-width: 460px; } }

.xb3d260ed-post-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); margin-block-start: var(--space-8); }
.xb3d260ed-post-card { min-width: 0; background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, border-color .2s ease; }
.xb3d260ed-post-card:hover { transform: translateY(-3px); border-color: var(--accent-red); }
.xb3d260ed-post-card__media { display: block; overflow: hidden; aspect-ratio: 16/9; background: var(--bg-elevated); }
.xb3d260ed-post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.xb3d260ed-post-card:hover .xb3d260ed-post-card__media img { transform: scale(1.025); }
.xb3d260ed-post-card__body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: var(--space-5); }
.xb3d260ed-post-card__meta { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2); color: var(--text-muted); font-size: var(--text-xs); }
.xb3d260ed-post-card__title { margin-block-start: var(--space-3); color: var(--text-primary); font-size: var(--text-lg); line-height: var(--leading-tight); overflow-wrap: anywhere; }
.xb3d260ed-post-card__title a { color: inherit; }
.xb3d260ed-post-card__title a:hover { color: var(--accent-red); }
.xb3d260ed-post-card__excerpt { margin-block-start: var(--space-3); color: var(--text-muted); font-size: var(--text-base); line-height: var(--leading-relaxed); }
.xb3d260ed-post-card__more { margin-block-start: auto; padding-block-start: var(--space-5); color: var(--accent-red); font-size: var(--text-sm); font-weight: var(--weight-semibold); }
.xb3d260ed-post-empty { margin-block-start: var(--space-8); color: var(--text-muted); font-size: var(--text-md); text-align: center; }
@media (max-width: 900px) { .xb3d260ed-post-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .xb3d260ed-post-list { grid-template-columns: 1fr; } }

.xb3d260ed-catalog__head { text-align: center; max-width: 760px; margin: 0 auto var(--space-12); }
.xb3d260ed-catalog__head .section-subtitle { padding-top: 0; text-transform: uppercase; letter-spacing: .1em; }
.xb3d260ed-catalog__head .section-title { margin-block: var(--space-3); }
.xb3d260ed-catalog__lead { color: var(--text-muted); font-size: var(--text-md); line-height: var(--leading-relaxed); }

.xb3d260ed-status .xb3d260ed-catalog__head { margin-bottom: var(--space-8); }
.xb3d260ed-status-banner { display: inline-flex; align-items: center; gap: var(--space-2); margin: var(--space-4) auto 0; padding: 8px 18px; border-radius: 999px; font-weight: 600; }
.xb3d260ed-status-banner--operational { background: color-mix(in srgb, var(--color-success) 14%, transparent); color: var(--color-success); }
.xb3d260ed-status-banner--degraded { background: color-mix(in srgb, var(--color-warning) 16%, transparent); color: var(--color-warning); }
.xb3d260ed-status-banner--outage { background: color-mix(in srgb, var(--color-error) 16%, transparent); color: var(--color-error); }
.xb3d260ed-status-dot { width: 9px; height: 9px; border-radius: 50%; background: currentColor; }
.xb3d260ed-status-updated { color: var(--text-muted); font-size: var(--text-sm); margin-top: var(--space-3); }
.xb3d260ed-status-list { display: grid; gap: var(--space-5); max-width: 880px; margin: 0 auto; }
.xb3d260ed-status-card { border: 1px solid var(--hairline); border-radius: var(--radius-lg); padding: var(--space-5) var(--space-6); background: var(--bg-surface); }
.xb3d260ed-status-card__head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-4); }
.xb3d260ed-status-card__name { font-size: var(--text-lg); margin: 0; }
.xb3d260ed-status-state { font-size: var(--text-sm); font-weight: 600; white-space: nowrap; }
.xb3d260ed-status-state--operational { color: var(--color-success); }
.xb3d260ed-status-state--degraded { color: var(--color-warning); }
.xb3d260ed-status-state--outage { color: var(--color-error); }
.xb3d260ed-status-bars { display: flex; gap: 3px; margin-top: var(--space-4); }
.xb3d260ed-status-bar { flex: 1 1 0; min-width: 0; height: 34px; border-radius: 2px; background: var(--color-success); }
.xb3d260ed-status-bar--warn { background: var(--color-warning); }
.xb3d260ed-status-bar--bad { background: var(--color-error); }
.xb3d260ed-status-card__meta { display: flex; justify-content: space-between; gap: var(--space-4); color: var(--text-muted); font-size: var(--text-sm); margin-top: var(--space-2); }
.xb3d260ed-status-card__note { color: var(--text-muted); font-size: var(--text-sm); line-height: var(--leading-relaxed); margin: var(--space-3) 0 0; }
@media (max-width: 700px) { .xb3d260ed-status-bars i:nth-child(-n+30) { display: none; } }

.xb3d260ed-fix-status-link { margin-top: var(--space-4); }
.xb3d260ed-fix-status-link a { color: var(--accent-red); font-weight: 600; }
.xb3d260ed-fix-triage { margin-block: var(--space-16) var(--space-12); }
.xb3d260ed-fix-triage .section-title, .xb3d260ed-fix-isp .section-title, .xb3d260ed-fix-log .section-title, .xb3d260ed-fix-guides .section-title { margin-bottom: var(--space-4); }
.xb3d260ed-fix-triage__lead, .xb3d260ed-fix-isp__lead, .xb3d260ed-fix-guides__lead { color: var(--text-muted); text-align: center; max-width: 640px; margin: 0 auto var(--space-10); line-height: var(--leading-relaxed); }
.xb3d260ed-fix-log .section-title, .xb3d260ed-fix-log__empty { margin-bottom: var(--space-8); }
.xb3d260ed-fix-triage__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); align-items: start; }
.xb3d260ed-fix-branch { background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-2xl); padding: var(--space-6); }
.xb3d260ed-fix-branch__title { font-size: var(--text-md); margin: 0 0 var(--space-3); }
.xb3d260ed-fix-branch ul { color: var(--text-muted); padding-left: 18px; display: grid; gap: var(--space-2); }
.xb3d260ed-fix-branch__outcome { color: var(--text-secondary); font-size: var(--text-sm); border-top: 1px solid var(--hairline); padding-top: var(--space-3); margin: var(--space-4) 0 0; }
.xb3d260ed-fix-gone { max-width: 720px; margin: var(--space-8) auto 0; text-align: center; color: var(--text-muted); background: var(--accent-tint); border-radius: var(--radius-lg); padding: var(--space-5) var(--space-6); line-height: var(--leading-relaxed); }
.xb3d260ed-fix-gone a { color: var(--text-primary); font-weight: 600; }
.xb3d260ed-fix-isp, .xb3d260ed-fix-log, .xb3d260ed-fix-guides { margin-block: var(--space-16); }
.xb3d260ed-fix-isp table { max-width: 880px; margin: 0 auto; }
.xb3d260ed-fix-isp .xb3d260ed-apps-table td { color: var(--text-muted); font-weight: 400; text-align: left; }
.xb3d260ed-fix-isp .xb3d260ed-apps-table th { white-space: nowrap; vertical-align: top; }
.xb3d260ed-fix-log__empty { color: var(--text-muted); text-align: center; }
.xb3d260ed-fix-log__list { max-width: 720px; margin: 0 auto; display: grid; gap: var(--space-5); }
.xb3d260ed-fix-log__item { border-left: 2px solid var(--accent-soft-border); padding-left: var(--space-5); }
.xb3d260ed-fix-log__meta { display: flex; gap: var(--space-4); align-items: baseline; }
.xb3d260ed-fix-log__meta time { color: var(--text-muted); font-size: var(--text-sm); }
.xb3d260ed-fix-log__item p { color: var(--text-muted); margin: var(--space-2) 0 0; line-height: var(--leading-relaxed); }
.xb3d260ed-fix-guides__list { max-width: 720px; margin: 0 auto; display: grid; gap: var(--space-3); }
.xb3d260ed-fix-guides__list li { display: flex; justify-content: space-between; gap: var(--space-4); border-bottom: 1px solid var(--hairline); padding-bottom: var(--space-3); }
.xb3d260ed-fix-guides__list span { color: var(--text-muted); font-size: var(--text-sm); white-space: nowrap; }
@media (max-width: 900px) { .xb3d260ed-fix-triage__grid { grid-template-columns: 1fr; } }

.xb3d260ed-guide-prose, .xb3d260ed-guide-steps, .xb3d260ed-guide-links { margin-block: var(--space-16); }
.xb3d260ed-guide-prose .section-title, .xb3d260ed-guide-steps .section-title, .xb3d260ed-guide-links .section-title { margin-bottom: var(--space-8); }
.xb3d260ed-guide-hero--split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: var(--space-10); align-items: center; text-align: left; }
.xb3d260ed-guide-hero--split .section-title, .xb3d260ed-guide-hero--split .section-subtitle { text-align: left; }
.xb3d260ed-guide-hero__media { margin: 0; }
.xb3d260ed-guide-hero__media img { width: 100%; height: auto; border-radius: var(--radius-2xl); border: 1px solid var(--bg-border); box-shadow: var(--shadow-card); }

.xb3d260ed-guide-prose__flow { max-width: 780px; margin: 0 auto; display: grid; gap: 0; }
.xb3d260ed-guide-prose__block { padding-block: var(--space-7); border-block-start: 1px solid var(--bg-border); }
.xb3d260ed-guide-prose__block:first-child { border-block-start: none; padding-block-start: 0; }
.xb3d260ed-guide-prose__title { display: flex; gap: .65em; font-size: var(--text-xl); margin: 0 0 var(--space-3); }
.xb3d260ed-guide-prose__title::before { content: ""; flex: 0 0 3px; align-self: flex-start; height: 1.05em; margin-block-start: .18em; border-radius: 2px; background: var(--accent-red); }
.xb3d260ed-guide-prose__block p, .xb3d260ed-guide-prose__row-text p { color: var(--text-secondary); font-size: var(--text-md); line-height: var(--leading-loose, 1.75); margin: 0; max-width: 68ch; }

.xb3d260ed-guide-prose__block:first-child p { font-size: var(--text-lg); color: var(--text-primary); }
.xb3d260ed-guide-prose__row { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: var(--space-10); align-items: center; }
.xb3d260ed-guide-prose__row--flip .xb3d260ed-guide-prose__row-text { order: 2; }
.xb3d260ed-guide-prose__row--flip .xb3d260ed-guide-prose__row-media { order: 1; }
.xb3d260ed-guide-prose__row-media { margin: 0; }
.xb3d260ed-guide-prose__row-media img { width: 100%; height: auto; border-radius: var(--radius-2xl); border: 1px solid var(--bg-border); box-shadow: var(--shadow-card); }
.xb3d260ed-guide-steps__list { max-width: 720px; margin: 0 auto; display: grid; gap: var(--space-5); list-style: none; padding: 0; counter-reset: none; }
.xb3d260ed-guide-steps__item { display: flex; gap: var(--space-4); align-items: flex-start; }
.xb3d260ed-guide-steps__n { flex-shrink: 0; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--accent-tint); color: var(--text-primary); font-size: var(--text-sm); font-weight: var(--weight-semibold); }
.xb3d260ed-guide-steps__title { font-size: var(--text-md); margin: 0 0 var(--space-2); }
.xb3d260ed-guide-steps__item p { color: var(--text-muted); line-height: var(--leading-relaxed); margin: 0; }
.xb3d260ed-guide-links__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); align-items: start; }
.xb3d260ed-guide-links__card { background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-2xl); padding: var(--space-6); }
.xb3d260ed-guide-links__title { font-size: var(--text-md); margin: 0 0 var(--space-2); }
.xb3d260ed-guide-links__title a { color: var(--text-primary); }
.xb3d260ed-guide-links__card p { color: var(--text-muted); font-size: var(--text-sm); line-height: var(--leading-relaxed); margin: 0; }
@media (max-width: 900px) { .xb3d260ed-guide-links__grid { grid-template-columns: 1fr; } }
@media (max-width: 860px) {
  .xb3d260ed-guide-hero--split { grid-template-columns: 1fr; text-align: center; }
  .xb3d260ed-guide-hero--split .section-title, .xb3d260ed-guide-hero--split .section-subtitle { text-align: center; }
  .xb3d260ed-guide-prose__row, .xb3d260ed-guide-prose__row--flip { grid-template-columns: 1fr; gap: var(--space-5); }
  .xb3d260ed-guide-prose__row--flip .xb3d260ed-guide-prose__row-text { order: 1; }
  .xb3d260ed-guide-prose__row--flip .xb3d260ed-guide-prose__row-media { order: 2; }
}

.xb3d260ed-editorial .section-title { text-align: center; margin-bottom: var(--space-8); }

.xb3d260ed-editorial__grid { display: grid; grid-template-columns: 1fr; gap: 0; max-width: 780px; margin: 0 auto; }
.xb3d260ed-editorial__block { padding-block: var(--space-7); border-block-start: 1px solid var(--bg-border); }
.xb3d260ed-editorial__block:first-child { border-block-start: none; padding-block-start: 0; }
.xb3d260ed-editorial__title { display: flex; gap: .65em; font-size: var(--text-xl); margin: 0 0 var(--space-3); }
.xb3d260ed-editorial__title::before { content: ""; flex: 0 0 3px; align-self: flex-start; height: 1.05em; margin-block-start: .18em; border-radius: 2px; background: var(--accent-red); }
.xb3d260ed-editorial__body { color: var(--text-secondary); font-size: var(--text-md); line-height: var(--leading-loose, 1.75); margin: 0; max-width: 68ch; }
.xb3d260ed-editorial__block:first-child .xb3d260ed-editorial__body { font-size: var(--text-lg); color: var(--text-primary); }

.xb3d260ed-media-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-5); }

.xb3d260ed-media-card { display: flex; flex-direction: column; gap: var(--space-2); min-width: 0; transition: transform .2s ease; }
.xb3d260ed-media-card__poster img { display: block; }
.xb3d260ed-media-card:hover { transform: translateY(-3px); }
.xb3d260ed-media-card__poster { position: relative; aspect-ratio: 2/3; border-radius: var(--radius-md); overflow: hidden; background: var(--bg-surface); box-shadow: var(--shadow-sm); }
.xb3d260ed-media-card__poster img { width: 100%; height: 100%; object-fit: cover; }
.xb3d260ed-media-card__fallback { width: 100%; height: 100%; display: grid; place-items: center; padding: var(--space-3); text-align: center; color: var(--text-secondary); font-size: var(--text-base); font-weight: var(--weight-semibold); background: linear-gradient(135deg, var(--bg-surface), var(--bg-elevated)); }
.xb3d260ed-media-card__rating { position: absolute; top: 8px; left: 8px; display: inline-flex; align-items: center; gap: 4px; background: rgba(0,0,0,.65); color: var(--color-warning); font-size: var(--text-xs); font-weight: var(--weight-semibold); padding: 4px 8px; border-radius: var(--radius-sm); backdrop-filter: blur(4px); }
.xb3d260ed-media-card__body { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-2); }
.xb3d260ed-media-card__title { font-size: var(--text-base); font-weight: var(--weight-medium); color: var(--text-primary); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.xb3d260ed-media-card__year { font-size: var(--text-sm); color: var(--text-muted); flex-shrink: 0; }
@media (max-width: 1100px) { .xb3d260ed-media-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px)  { .xb3d260ed-media-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 460px)  { .xb3d260ed-media-grid { grid-template-columns: repeat(2, 1fr); } }

.xb3d260ed-cat-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); margin-block-end: var(--space-10); }
.xb3d260ed-cat-stats > li { background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-lg); padding: var(--space-5); text-align: center; display: flex; flex-direction: column; gap: var(--space-1); }
.xb3d260ed-cat-stats__v { font-size: var(--text-2xl); font-weight: var(--weight-bold); color: var(--accent-red); }
.xb3d260ed-cat-stats__l { font-size: var(--text-sm); color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.xb3d260ed-cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.xb3d260ed-cat-tile { background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-lg); transition: transform .2s ease, border-color .2s ease; }
.xb3d260ed-cat-tile:hover { transform: translateY(-3px); border-color: var(--accent-red); }
.xb3d260ed-cat-tile__link { display: flex; flex-direction: column; gap: var(--space-2); padding: var(--space-6); color: var(--text-secondary); text-decoration: none; height: 100%; }
.xb3d260ed-cat-tile__icon { color: var(--accent-red); }
.xb3d260ed-cat-tile__name { font-size: var(--text-lg); font-weight: var(--weight-semibold); color: var(--text-primary); }
.xb3d260ed-cat-tile__count { font-size: var(--text-sm); color: var(--text-muted); }
.xb3d260ed-cat-tile__blurb { font-size: var(--text-sm); color: var(--text-muted); line-height: var(--leading-relaxed); }
@media (max-width: 900px) { .xb3d260ed-cat-grid, .xb3d260ed-cat-stats { grid-template-columns: repeat(2, 1fr); } }

.xb3d260ed-league-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.xb3d260ed-league-tile { display: grid; place-items: center; aspect-ratio: 16/7; padding: var(--space-4); text-align: center; background: var(--surface-tile); border-radius: var(--radius-md); color: var(--text-primary); font-weight: var(--weight-semibold); font-size: var(--text-base); transition: background-color .2s ease, transform .2s ease; }
.xb3d260ed-league-tile:hover { background: var(--surface-tile-hover); transform: scale(1.04); }
@media (max-width: 900px) { .xb3d260ed-league-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .xb3d260ed-league-grid { grid-template-columns: repeat(2, 1fr); } }

.xb3d260ed-apps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); margin-block-end: var(--space-12); }

.xb3d260ed-device-guides { margin-block-end: var(--space-12); }
.xb3d260ed-device-guides .section-title { margin-bottom: var(--space-4); }
.xb3d260ed-device-guides__lead { color: var(--text-muted); text-align: center; max-width: 640px; margin: 0 auto var(--space-8); line-height: var(--leading-relaxed); }
.xb3d260ed-device-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); align-items: start; margin-top: var(--space-8); }
.xb3d260ed-device-card { background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-2xl); overflow: hidden; }
.xb3d260ed-device-card[open] { border-color: var(--accent-soft-border); }
.xb3d260ed-device-card__summary { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); padding: var(--space-5) var(--space-6); cursor: pointer; list-style: none; }
.xb3d260ed-device-card__summary::-webkit-details-marker { display: none; }
.xb3d260ed-device-card__summary:hover { background: var(--hover-wash); }
.xb3d260ed-device-card__name { font-size: var(--text-md); font-weight: var(--weight-semibold); margin: 0; }
.xb3d260ed-device-card__tag { display: block; color: var(--text-muted); font-size: var(--text-sm); margin-top: 2px; }
.xb3d260ed-device-card__hint { display: inline-flex; align-items: center; gap: 4px; color: var(--text-muted); font-size: var(--text-sm); white-space: nowrap; }
.xb3d260ed-device-card[open] .xb3d260ed-device-card__hint svg { transform: rotate(180deg); }
.xb3d260ed-device-card__body { padding: 0 var(--space-6) var(--space-6); }
.xb3d260ed-device-card__app { margin: 0 0 var(--space-4); }
.xb3d260ed-device-card__body .xb3d260ed-apps-steps li { font-size: var(--text-sm); }
.xb3d260ed-device-card__tip { color: var(--text-muted); font-size: var(--text-sm); line-height: var(--leading-relaxed); border-left: 2px solid var(--accent-soft-border); padding-left: var(--space-4); margin: var(--space-4) 0 0; }
@media (max-width: 1024px) { .xb3d260ed-device-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .xb3d260ed-device-grid { grid-template-columns: 1fr; } }
.xb3d260ed-app-card { background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-2xl); padding: var(--space-7); display: flex; flex-direction: column; gap: var(--space-3); }
.xb3d260ed-app-card__head { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); }
.xb3d260ed-app-card__name { font-size: var(--text-lg); color: var(--text-primary); font-weight: var(--weight-semibold); }
.xb3d260ed-app-card p { color: var(--text-muted); font-size: var(--text-base); }

.xb3d260ed-app-card__devices { color: var(--text-secondary); font-size: var(--text-sm); font-weight: var(--weight-medium); }

.xb3d260ed-other-apps { margin-block-start: var(--space-12); }
.xb3d260ed-other-apps__lead { color: var(--text-muted); font-size: var(--text-base); line-height: var(--leading-relaxed); max-width: 68ch; margin-inline: auto; margin-block-end: var(--space-6); text-align: center; }
.xb3d260ed-apps-cols { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-10); align-items: start; }
.xb3d260ed-apps__label { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); font-weight: var(--weight-semibold); margin-block-end: var(--space-4); }
.xb3d260ed-apps-table { width: 100%; border-collapse: collapse; }
.xb3d260ed-apps-table th, .xb3d260ed-apps-table td { text-align: left; padding: var(--space-3) var(--space-4); border-bottom: 1px solid var(--bg-border); font-size: var(--text-base); }
.xb3d260ed-apps-table th { color: var(--text-secondary); font-weight: var(--weight-medium); }
.xb3d260ed-apps-table td { color: var(--accent-red); font-weight: var(--weight-semibold); text-align: right; }
.xb3d260ed-apps-steps { display: flex; flex-direction: column; gap: var(--space-4); }
.xb3d260ed-apps-steps li { display: flex; gap: var(--space-3); align-items: flex-start; font-size: var(--text-base); color: var(--text-secondary); }
.xb3d260ed-apps-steps__n { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: color-mix(in srgb, var(--color-error) 16%, transparent); color: var(--accent-red); font-size: var(--text-sm); font-weight: var(--weight-bold); display: grid; place-items: center; }
.xb3d260ed-apps__support { margin-block-start: var(--space-5); font-size: var(--text-sm); color: var(--text-muted); }
.xb3d260ed-apps__support a { color: var(--accent-red); font-weight: var(--weight-semibold); }
@media (max-width: 860px) { .xb3d260ed-apps-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } .xb3d260ed-apps-cols { grid-template-columns: 1fr; gap: var(--space-8); } }

.xb3d260ed-row__header, .xb3d260ed-sportlogos__header {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: var(--space-4); margin-block-end: var(--space-5);
}
.xb3d260ed-row__title-wrap { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.xb3d260ed-page-hero__heading-wrap { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.xb3d260ed-row__count-badge { background: var(--surface-tile); border-radius: var(--radius-full); padding: 4px 12px; font-size: var(--text-sm); color: var(--text-muted); white-space: nowrap; }
.xb3d260ed-row__count-badge strong { color: var(--accent-red); font-weight: var(--weight-bold); }
.xb3d260ed-row__link { color: var(--text-muted); font-size: var(--text-base); font-weight: var(--weight-medium); white-space: nowrap; transition: color var(--transition-base); }
.xb3d260ed-row__link:hover { color: var(--accent-red); }

@media (max-width: 768px) {
  .xb3d260ed-row__link { display: inline-flex; align-items: center; min-height: 40px; padding-inline: var(--space-2); margin-inline-end: calc(-1 * var(--space-2)); }
}

.xb3d260ed-row__rail { display: flex; gap: var(--space-4); scroll-snap-type: x proximity; padding-block-end: var(--space-2); }
.xb3d260ed-row__rail:focus-visible { outline: 2px solid var(--accent-red); outline-offset: 4px; }
.xb3d260ed-row__rail > .xb3d260ed-media-card { flex: 0 0 clamp(132px, 15vw, 176px); scroll-snap-align: start; }

.xb3d260ed-chanmarquee { margin-block-start: var(--space-10); }

.xb3d260ed-chanmarquee__heading {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0;
}
.xb3d260ed-chanmarquee__viewport {
  position: relative; overflow: hidden; padding-block: var(--space-2);
  display: flex; flex-direction: column; gap: 10px;
}

.xb3d260ed-chanmarquee__lane { overflow: hidden; }

.xb3d260ed-chanmarquee__fade { position: absolute; inset-block: 0; width: 10%; z-index: var(--z-raised); pointer-events: none; }
.xb3d260ed-chanmarquee__fade--start { inset-inline-start: 0; background: linear-gradient(to right, var(--bg-base), transparent); }
.xb3d260ed-chanmarquee__fade--end { inset-inline-end: 0; background: linear-gradient(to left, var(--bg-base), transparent); }
.xb3d260ed-chanmarquee__track { display: flex; width: max-content; }
.xb3d260ed-chanmarquee__track--left { animation: ui-chanmarquee-left 55s linear infinite; }

.xb3d260ed-chanmarquee__track--right {
  margin-inline-start: -105px;
  animation: ui-chanmarquee-right 65s linear infinite;
}
.xb3d260ed-chanmarquee__viewport:hover .xb3d260ed-chanmarquee__track { animation-play-state: paused; }
.xb3d260ed-chanmarquee__row { display: flex; align-items: center; gap: 10px; width: max-content; }

.xb3d260ed-chanmarquee__row + .xb3d260ed-chanmarquee__row { margin-inline-start: 10px; }
.xb3d260ed-chanlogo {
  flex: 0 0 auto; width: 200px; height: 110px;
  overflow: hidden; border-radius: 10px; background-color: var(--bg-surface);
}

.xb3d260ed-chanlogo__img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
@keyframes ui-chanmarquee-left {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@keyframes ui-chanmarquee-right {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .xb3d260ed-chanmarquee__track { animation: none; }

  .xb3d260ed-chanmarquee__track--right { margin-inline-start: 0; }
  .xb3d260ed-chanmarquee__lane { overflow-x: auto; }
}
@media (max-width: 640px) {
  .xb3d260ed-chanlogo { width: 150px; height: 82px; }
}

.xb3d260ed-sportlogos { margin-block-start: var(--space-4); }
.xb3d260ed-sportlogos__rail { display: flex; gap: 12px; }
.xb3d260ed-sportlogo {
  flex: 0 0 clamp(132px, 15vw, 184px);
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1; padding: 16px;
  background-color: var(--surface-tile); border-radius: var(--radius-md);
  transition: background-color .2s ease, transform .2s ease;
}
.xb3d260ed-sportlogo:hover { background-color: var(--surface-tile-hover); transform: scale(1.05); }
.xb3d260ed-sportlogo img { width: 70%; height: 70%; object-fit: contain; }

.xb3d260ed-promo__card { position: relative; display: grid; width: 100%; min-height: 420px; background: var(--bg-base); border-radius: 12px; overflow: hidden; touch-action: pan-y; }

.xb3d260ed-promo__slide { position: relative; grid-area: 1 / 1; opacity: 0; visibility: hidden; transition: opacity .6s ease; pointer-events: none; }
.xb3d260ed-promo__slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; }
.xb3d260ed-promo__logo { position: absolute; top: 16px; left: 16px; width: 72px; height: auto; object-fit: contain; z-index: 5; }
.xb3d260ed-promo__content { position: absolute; inset: 0; z-index: 4; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px 20px 40px; }
.xb3d260ed-promo__badge { color: var(--accent-teal); font-size: var(--text-sm); font-weight: var(--weight-medium); letter-spacing: .04em; text-transform: uppercase; }
.xb3d260ed-promo__title { color: var(--text-on-media); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: var(--weight-bold); line-height: var(--leading-snug); margin-block: 8px; max-width: 460px; }
.xb3d260ed-promo__desc { display: none; color: #ffffffb8; font-size: var(--text-base); line-height: var(--leading-normal); max-width: 460px; }
.xb3d260ed-promo__cta { display: inline-flex; align-items: center; gap: 8px; width: fit-content; margin-top: var(--space-3); padding: 10px 22px 10px 18px; border-radius: 8px; background: var(--accent-red); color: var(--accent-contrast); font-size: 1.5rem; font-weight: 600; white-space: nowrap; transition: background-color .2s ease; }
.xb3d260ed-promo__cta:hover { background: var(--accent-red-hover); }
.xb3d260ed-promo__cta svg { height: 15px; fill: currentColor; }

.xb3d260ed-promo__media { position: absolute; inset: 0; z-index: 0; }
.xb3d260ed-promo__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.xb3d260ed-promo__overlay { position: absolute; inset: 0; background: #110f0e59; }

.xb3d260ed-promo__gradient { position: absolute; inset: 0; background: linear-gradient(0deg, var(--bg-base) 0, transparent 55%), linear-gradient(90deg, var(--bg-base) 0, #101012a8 26%, transparent 62%); }
.xb3d260ed-promo__dots { position: absolute; z-index: 6; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }

.xb3d260ed-promo__dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: #ffffff59; transition: background-color .2s ease, width .2s ease; cursor: pointer; }
.xb3d260ed-promo__dot::after { content: ""; position: absolute; inset-block: -16px; inset-inline: -6px; }
.xb3d260ed-promo__dot.is-active { width: 22px; border-radius: 4px; background: var(--accent-red); }
.xb3d260ed-promo__toggle { position: absolute; z-index: 7; right: 12px; bottom: 7px; display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid #ffffff38; border-radius: 50%; background: #110f0eb8; color: #fff; cursor: pointer; transition: background-color .2s ease, border-color .2s ease; }
.xb3d260ed-promo__toggle[hidden] { display: none; }
.xb3d260ed-promo__toggle:hover { background: #110f0ee8; border-color: #ffffff80; }
.xb3d260ed-promo__toggle:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.xb3d260ed-promo__toggle svg { width: 18px; height: 18px; fill: currentColor; }
.xb3d260ed-promo__toggle .xb3d260ed-promo__play-icon { display: none; }
.xb3d260ed-promo__toggle.is-paused .xb3d260ed-promo__pause-icon { display: none; }
.xb3d260ed-promo__toggle.is-paused .xb3d260ed-promo__play-icon { display: block; }
@media (min-width: 768px) {
  .xb3d260ed-promo__logo { top: 24px; left: 28px; width: 100px; }
  .xb3d260ed-promo__content { width: 52%; padding: 40px 48px 56px 40px; }
  .xb3d260ed-promo__title { z-index: 4; }
  .xb3d260ed-promo__desc { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
}
@media (min-width: 1024px) {

  .xb3d260ed-promo__card { min-height: 500px; }
  .xb3d260ed-promo__gradient { background: linear-gradient(0deg, var(--bg-base) 0, transparent 45%), linear-gradient(90deg, var(--bg-base) 0, #101012b8 30%, transparent 60%); }
}
}

.xb3d260ed-league-card { background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-lg); overflow: hidden; transition: transform .2s ease, border-color .2s ease; }
.xb3d260ed-league-card:hover { transform: translateY(-3px); border-color: var(--accent-red); }
.xb3d260ed-league-card__media { position: relative; aspect-ratio: 16/9; background: var(--bg-elevated); }
.xb3d260ed-league-card__media > img:first-child { width: 100%; height: 100%; object-fit: cover; }
.xb3d260ed-league-card__logo { position: absolute; bottom: -18px; left: 16px; width: 56px; height: 56px; object-fit: contain; background: var(--bg-base); border: 1px solid var(--bg-border); border-radius: var(--radius-md); padding: 6px; }
.xb3d260ed-league-card__body { padding: var(--space-7) var(--space-5) var(--space-5); }
.xb3d260ed-league-card__name { font-size: var(--text-lg); color: var(--text-primary); font-weight: var(--weight-semibold); }
.xb3d260ed-league-card__desc { color: var(--text-muted); font-size: var(--text-base); margin-block-start: var(--space-2); }

.xb3d260ed-channels-hero { background: linear-gradient(180deg, var(--accent-tint) 0, transparent); padding-top: calc(var(--header-height) + var(--space-12)); padding-bottom: var(--space-8); padding-inline: var(--page-gutter); }
.xb3d260ed-channels-hero .container { display: flex; flex-direction: column; gap: var(--space-3); }
.xb3d260ed-channels-hero__eyebrow { color: var(--accent-red); font-size: var(--text-sm); font-weight: var(--weight-semibold); letter-spacing: .06em; text-transform: uppercase; }
.xb3d260ed-channels-hero__title { color: var(--text-primary); font-size: clamp(3.2rem, 5vw, var(--text-5xl)); font-weight: var(--weight-bold); line-height: 1.1; }
.xb3d260ed-channels-hero__desc { color: var(--text-muted); font-size: var(--text-md); max-width: 600px; }

.xb3d260ed-channels-hero--split .container { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: var(--space-10); align-items: center; }
.xb3d260ed-channels-hero--split .xb3d260ed-channels-hero__text { display: flex; flex-direction: column; gap: var(--space-3); }
.xb3d260ed-channels-hero__media { margin: 0; }
.xb3d260ed-channels-hero__media img { width: 100%; height: auto; border-radius: var(--radius-2xl); border: 1px solid var(--bg-border); box-shadow: var(--shadow-card); }

@media (max-width: 860px) {
  .xb3d260ed-channels-hero--split .container { grid-template-columns: 1fr; gap: var(--space-6); }
}
.xb3d260ed-channels-promo { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); padding: 20px 28px; border-radius: var(--radius-lg); background: linear-gradient(90deg, var(--accent-red-dark), var(--accent-red)); color: var(--accent-contrast); font-size: var(--text-md); font-weight: var(--weight-semibold); margin-block-end: 0; }
.xb3d260ed-channels-promo:hover { filter: brightness(1.05); }
.xb3d260ed-channels__h { font-size: var(--text-2xl); color: var(--text-primary); margin: var(--space-10) 0 var(--space-6); }
.xb3d260ed-net-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-4); }
.xb3d260ed-net-tile { display: grid; place-items: center; aspect-ratio: 16/9; background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-md); padding: var(--space-4); }
.xb3d260ed-net-tile img { width: 120px; height: 60px; max-width: 70%; max-height: 60%; object-fit: contain; }
.xb3d260ed-country-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.xb3d260ed-country-tile { background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-lg); transition: border-color .2s ease, transform .2s ease; }
.xb3d260ed-country-tile:hover { border-color: var(--accent-red); transform: translateY(-2px); }
.xb3d260ed-country-tile__link { display: flex; flex-direction: column; gap: var(--space-2); padding: var(--space-4) var(--space-5); color: var(--text-primary); text-decoration: none; height: 100%; }
.xb3d260ed-country-tile__head { display: flex; align-items: center; gap: var(--space-3); font-size: var(--text-base); font-weight: var(--weight-semibold); }
.xb3d260ed-country-tile__flag { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.xb3d260ed-country-tile__blurb { font-size: var(--text-sm); color: var(--text-muted); line-height: var(--leading-relaxed); }

.xb3d260ed-spec-list__intro { font-size: var(--text-base); color: var(--text-muted); line-height: var(--leading-relaxed); max-width: 68ch; margin-block-end: var(--space-6); }
.xb3d260ed-spec-list { display: grid; gap: 1px; background: var(--bg-border); border: 1px solid var(--bg-border); border-radius: var(--radius-lg); overflow: hidden; }
.xb3d260ed-spec-list__row { display: grid; grid-template-columns: 220px 1fr; gap: var(--space-5); padding: var(--space-4) var(--space-5); background: var(--bg-surface); }
.xb3d260ed-spec-list__label { font-size: var(--text-sm); font-weight: var(--weight-semibold); color: var(--text-primary); }
.xb3d260ed-spec-list__value { font-size: var(--text-sm); color: var(--text-muted); line-height: var(--leading-relaxed); margin: 0; }
.xb3d260ed-spec-list__note { font-size: var(--text-sm); color: var(--text-muted); line-height: var(--leading-relaxed); max-width: 68ch; margin-block-start: var(--space-4); }
@media (max-width: 900px) { .xb3d260ed-net-grid { grid-template-columns: repeat(3, 1fr); } .xb3d260ed-country-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .xb3d260ed-spec-list__row { grid-template-columns: 1fr; gap: var(--space-1); } }
@media (max-width: 540px) { .xb3d260ed-net-grid { grid-template-columns: repeat(2, 1fr); } .xb3d260ed-country-grid { grid-template-columns: 1fr; } }

.xb3d260ed-chb__intro { font-size: var(--text-base); color: var(--text-muted); line-height: var(--leading-relaxed); max-width: 68ch; margin-block-end: var(--space-6); }
.xb3d260ed-chb__note { font-size: var(--text-sm); color: var(--text-muted); line-height: var(--leading-relaxed); max-width: 68ch; margin-block-start: var(--space-6); }

.xb3d260ed-chb [hidden] { display: none; }
.xb3d260ed-chb__topbar { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); margin-block-end: var(--space-6); flex-wrap: wrap; }
.xb3d260ed-chb__crumb { display: flex; align-items: center; gap: var(--space-3); min-width: 0; flex: 1; }
.xb3d260ed-chb__back { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; flex-shrink: 0; border-radius: var(--radius-md); background: var(--surface-tile); color: var(--text-muted); }
.xb3d260ed-chb__back:hover { background: var(--bg-elevated); color: var(--text-primary); }
.xb3d260ed-chb__crumb-root, .xb3d260ed-chb__crumb-parent, .xb3d260ed-chb__crumb-current { font-size: var(--text-md); font-weight: var(--weight-semibold); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.xb3d260ed-chb__crumb-root, .xb3d260ed-chb__crumb-parent { color: var(--text-muted); }
.xb3d260ed-chb__crumb-current { color: var(--text-primary); }

.xb3d260ed-chb__crumb-parent::before, .xb3d260ed-chb__crumb-current::before { content: "/"; margin-inline-end: var(--space-3); color: var(--text-muted); font-weight: var(--weight-medium); }
.xb3d260ed-chb__search { position: relative; display: flex; align-items: center; flex-shrink: 0; }
.xb3d260ed-chb__search-icon { position: absolute; left: 12px; color: var(--text-muted); pointer-events: none; }
.xb3d260ed-chb__input { width: 240px; padding: 9px 14px 9px 36px; font-size: var(--text-sm); color: var(--text-primary); background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-md); transition: border-color .15s ease; }
.xb3d260ed-chb__input:focus { outline: none; border-color: var(--accent-red); }
.xb3d260ed-chb__input::-webkit-search-cancel-button { display: none; }
.xb3d260ed-chb-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); gap: var(--space-4); align-items: stretch; }
.xb3d260ed-chb-card { display: flex; flex-direction: column; height: 100%; padding: var(--space-4) 0 var(--space-2); color: var(--text-primary); text-decoration: none; background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-lg); overflow: hidden; transition: border-color .15s ease, transform .2s ease; }
.xb3d260ed-chb-card:hover { border-color: var(--accent-red); transform: translateY(-2px); }
.xb3d260ed-chb-card__head { display: flex; align-items: center; gap: var(--space-3); padding: 0 var(--space-5) var(--space-3); }
.xb3d260ed-chb-card__flag { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.xb3d260ed-chb-card__name { flex: 1; min-width: 0; font-size: var(--text-md); font-weight: var(--weight-semibold); line-height: var(--leading-snug); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.xb3d260ed-chb-card__rows { display: flex; flex-direction: column; flex: 1; }
.xb3d260ed-chb-card__row { display: flex; align-items: center; min-height: 28px; padding: 5px var(--space-5); font-size: var(--text-sm); color: var(--text-muted); }
.xb3d260ed-chb-card__divider { height: 1px; margin: 3px var(--space-5); background: var(--bg-border); }
.xb3d260ed-chb__panel { display: none; }
.xb3d260ed-chb__panel:target, .xb3d260ed-chb__panel.is-open { display: block; }
.xb3d260ed-chb.is-live .xb3d260ed-chb__panel:target { display: none; }
.xb3d260ed-chb.is-live .xb3d260ed-chb__panel.is-open { display: block; }
.xb3d260ed-chb.is-live .xb3d260ed-chb__panel-head { display: none; }
.xb3d260ed-chb__panel-head { display: flex; align-items: center; gap: var(--space-3); margin: var(--space-6) 0 var(--space-4); font-size: var(--text-lg); font-weight: var(--weight-semibold); color: var(--text-primary); }
.xb3d260ed-chb__panel-flag { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.xb3d260ed-chb__panel-count { font-size: var(--text-sm); font-weight: var(--weight-medium); color: var(--text-muted); }

.xb3d260ed-chb-names { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-2) var(--space-4); }
.xb3d260ed-chb-names__item, .xb3d260ed-chb-names__more { min-width: 0; padding: var(--space-2) var(--space-3); font-size: var(--text-sm); line-height: var(--leading-snug); background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-md); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.xb3d260ed-chb-names__more { grid-column: 1 / -1; background: none; border: 0; color: var(--text-muted); font-weight: var(--weight-semibold); }

.xb3d260ed-chb-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-3); }
.xb3d260ed-chb-ch { display: flex; align-items: flex-start; gap: var(--space-3); min-width: 0; padding: var(--space-3); background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-lg); }
.xb3d260ed-chb-ch__logo { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; flex-shrink: 0; border-radius: var(--radius-md); background: var(--surface-tile); color: var(--accent-gold, var(--text-primary)); font-size: var(--text-md); font-weight: var(--weight-semibold); object-fit: contain; }
.xb3d260ed-chb-ch__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.xb3d260ed-chb-ch__name { font-size: var(--text-sm); font-weight: var(--weight-semibold); color: var(--text-primary); line-height: var(--leading-snug); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.xb3d260ed-chb-ch__tag { margin-inline-start: 5px; padding: 1px 5px; border-radius: var(--radius-sm, 4px); background: var(--surface-tile); color: var(--text-muted); font-size: .62em; font-weight: var(--weight-semibold); letter-spacing: .06em; text-transform: uppercase; vertical-align: super; }
.xb3d260ed-chb-ch__epg { font-size: var(--text-xs, .75rem); color: var(--text-muted); font-style: italic; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (max-width: 900px) { .xb3d260ed-chb-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .xb3d260ed-chb-cards { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 900px) { .xb3d260ed-chb-names { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .xb3d260ed-chb-names { grid-template-columns: minmax(0, 1fr); } }

.xb3d260ed-chb-hint { margin: 0 0 var(--space-4); padding: var(--space-4); background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-lg); }
.xb3d260ed-chb-hint__head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-3); margin: 0 0 var(--space-2); flex-wrap: wrap; }
.xb3d260ed-chb-hint__title { font-size: var(--text-md); font-weight: var(--weight-semibold); color: var(--text-primary); line-height: var(--leading-snug); }
.xb3d260ed-chb-hint__pill { flex-shrink: 0; padding: 2px var(--space-3); border-radius: 999px; background: var(--surface-tile); color: var(--text-muted); font-size: var(--text-xs, .75rem); font-weight: var(--weight-semibold); white-space: nowrap; }
.xb3d260ed-chb-hint__usually { margin: 0; font-size: var(--text-sm); line-height: var(--leading-snug); color: var(--text-primary); }
.xb3d260ed-chb-hint__recent { margin: var(--space-2) 0 0; font-size: var(--text-sm); line-height: var(--leading-snug); color: var(--text-muted); }
.xb3d260ed-chb-hint__note { margin: var(--space-2) 0 0; font-size: var(--text-xs, .75rem); line-height: var(--leading-snug); color: var(--text-muted); }

.xb3d260ed-chb-names--chips { grid-template-columns: repeat(auto-fill, minmax(56px, 1fr)); gap: var(--space-2); }
.xb3d260ed-chb-names--chips .xb3d260ed-chb-names__item { padding: var(--space-2) var(--space-1, 4px); min-height: 40px; display: flex; align-items: center; justify-content: center; text-align: center; font-variant-numeric: tabular-nums; font-weight: var(--weight-semibold); }
@media (max-width: 900px) { .xb3d260ed-chb-names--chips { grid-template-columns: repeat(auto-fill, minmax(52px, 1fr)); } }
@media (max-width: 640px) { .xb3d260ed-chb-names--chips { grid-template-columns: repeat(auto-fill, minmax(52px, 1fr)); } }
.xb3d260ed-chb__empty { padding: var(--space-10) 0; text-align: center; font-size: var(--text-sm); color: var(--text-muted); }
@media (max-width: 640px) { .xb3d260ed-chb__topbar { gap: var(--space-3); } .xb3d260ed-chb__search, .xb3d260ed-chb__input { width: 100%; } }

.xb3d260ed-pcard__apps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.xb3d260ed-pcard__app { aspect-ratio: 1; border-radius: 14px; overflow: hidden; background: var(--bg-elevated); }
.xb3d260ed-pcard__app img { width: 100%; height: 100%; object-fit: cover; display: block; }
.xb3d260ed-pcard__app--more { display: grid; place-items: center; border: 1px solid var(--bg-border); color: var(--text-muted); font-weight: var(--weight-semibold); font-size: var(--text-md); }

.xb3d260ed-pcard__app--words { grid-column: 1 / -1; aspect-ratio: auto; background: none; border: 0; padding: 4px 0 0; font-size: var(--text-sm); font-weight: var(--weight-medium); color: var(--text-secondary); }

.xb3d260ed-kids-card__logo { height: 56px; width: auto; margin-block-end: var(--space-2); }

.xb3d260ed-modal { position: fixed; inset: 0; z-index: var(--z-modal); display: flex; align-items: center; justify-content: center; padding: var(--space-5); }
.xb3d260ed-modal[hidden] { display: none; }
.xb3d260ed-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(2px); }
.xb3d260ed-modal__panel { position: relative; z-index: 1; width: 100%; max-width: 460px; max-height: 92vh; overflow-y: auto; background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-xl); padding: var(--space-8); box-shadow: var(--shadow-md); animation: scaleIn .2s ease; }
.xb3d260ed-modal__x { position: absolute; top: var(--space-4); right: var(--space-4); width: 34px; height: 34px; border-radius: 50%; background: var(--bg-overlay); color: var(--text-secondary); font-size: 20px; line-height: 1; display: grid; place-items: center; }
.xb3d260ed-modal__x:hover { color: var(--text-primary); background: var(--bg-elevated); }
.xb3d260ed-modal__title { font-size: var(--text-xl); color: var(--text-primary); }
.xb3d260ed-modal__plan { color: var(--accent-red); font-weight: var(--weight-semibold); font-size: var(--text-md); margin-block: var(--space-2) var(--space-5); }
.xb3d260ed-modal__panel form { display: flex; flex-direction: column; gap: var(--space-4); }
.xb3d260ed-modal__panel label { display: flex; flex-direction: column; gap: 6px; font-size: var(--text-sm); color: var(--text-label); font-weight: var(--weight-medium); }
.xb3d260ed-modal__panel input { background: var(--bg-base); border: 1px solid var(--bg-border); border-radius: var(--radius-md); padding: 12px 14px; color: var(--text-primary); font-size: var(--text-base); font-family: inherit; }
.xb3d260ed-modal__panel input:focus { outline: none; border-color: var(--accent-pink); }
.xb3d260ed-modal__panel input::placeholder { color: var(--text-disabled); }

.xb3d260ed-error { min-height: calc(100dvh - var(--header-height)); display: flex; align-items: center; }
.xb3d260ed-error__inner { max-width: 560px; display: flex; flex-direction: column; align-items: center; gap: var(--space-4); text-align: center; }
.xb3d260ed-error__code { color: var(--accent-pink); font-size: var(--text-6xl); font-weight: var(--weight-bold); line-height: 1; }
.xb3d260ed-error__title { font-size: clamp(var(--text-3xl), 7vw, var(--text-5xl)); line-height: var(--leading-tight); }
.xb3d260ed-error__message { max-width: 460px; color: var(--text-muted); font-size: var(--text-md); line-height: var(--leading-relaxed); }
.xb3d260ed-error__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-3); margin-block-start: var(--space-4); }
.xb3d260ed-error__actions .btn { min-width: 140px; }
@media (max-width: 420px) {
  .xb3d260ed-error__actions { width: 100%; }
  .xb3d260ed-error__actions .btn { width: 100%; }
}

.search-form { display: flex; align-items: center; gap: var(--space-2); background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-full); padding: 6px 6px 6px 16px; color: var(--text-muted); }
.search-form input[type="search"] { flex: 1; min-width: 0; background: none; border: none; outline: none; color: var(--text-primary); font-size: var(--text-base); }
.search-form .btn { flex-shrink: 0; }
.xb3d260ed-search-page__form { max-width: 520px; margin: var(--space-6) auto 0; }

.comments-area { max-width: 820px; margin: var(--space-16) auto 0; }
.comments-area__title { font-size: var(--text-2xl); margin-block-end: var(--space-6); }
.comments-area__list { list-style: none; display: flex; flex-direction: column; gap: var(--space-5); margin-block-end: var(--space-8); }
.comments-area__list .children { list-style: none; margin-inline-start: var(--space-6); margin-block-start: var(--space-5); display: flex; flex-direction: column; gap: var(--space-5); }
.comments-area .comment-body { background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-lg); padding: var(--space-5); }
.comments-area .comment-author { display: flex; align-items: center; gap: var(--space-3); font-weight: var(--weight-semibold); color: var(--text-primary); }
.comments-area .comment-author img { border-radius: 50%; }
.comments-area .comment-meta { font-size: var(--text-sm); color: var(--text-muted); margin-block: var(--space-2); }
.comments-area .comment-meta a { color: var(--text-muted); }
.comments-area__closed { color: var(--text-muted); }
.comments-area .comment-respond { background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-lg); padding: var(--space-6); margin-block-start: var(--space-6); }
.comments-area .comment-form-comment textarea,
.comments-area .comment-form input[type="text"],
.comments-area .comment-form input[type="email"],
.comments-area .comment-form input[type="url"] { width: 100%; background: var(--bg-base); border: 1px solid var(--bg-border); border-radius: var(--radius-md); padding: 12px 14px; color: var(--text-primary); font-family: inherit; font-size: var(--text-base); margin-block-start: 6px; }
.comments-area .comment-form label { font-size: var(--text-sm); color: var(--text-label); }
.comments-area .comment-form p { margin-block-end: var(--space-4); }
@media (max-width: 600px) {
  .comments-area__list .children { margin-inline-start: var(--space-3); }
  .comments-area .comment-body, .comments-area .comment-respond { padding: var(--space-4); }
}

.xb3d260ed-footer-widgets { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); margin-block-end: var(--space-10); padding-block-end: var(--space-10); border-bottom: 1px solid var(--bg-border); }
.widget__title { font-size: var(--text-base); color: var(--text-primary); font-weight: var(--weight-semibold); margin-block-end: var(--space-3); }
.widget ul { display: flex; flex-direction: column; gap: var(--space-2); }
.widget a { color: var(--text-muted); transition: color var(--transition-base); }
.widget a:hover { color: var(--text-primary); }
.widget-area { display: flex; flex-direction: column; gap: var(--space-6); }
@media (max-width: 760px) { .xb3d260ed-footer-widgets { grid-template-columns: 1fr; gap: var(--space-6); } }

.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.navigation.pagination { margin-block-start: var(--space-10); }
.navigation.pagination .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-2); }
.navigation.pagination .page-numbers { min-width: 42px; min-height: 42px; display: inline-flex; align-items: center; justify-content: center; padding: var(--space-2) var(--space-3); border: 1px solid var(--bg-border); border-radius: var(--radius-md); background: var(--bg-surface); color: var(--text-secondary); font-size: var(--text-sm); }
.navigation.pagination a.page-numbers:hover { border-color: var(--accent-red); color: var(--text-primary); }
.navigation.pagination .page-numbers.current { border-color: var(--accent-red); background: var(--accent-red); color: var(--accent-contrast); font-weight: var(--weight-semibold); }
.navigation.post-navigation { max-width: 820px; margin: var(--space-10) auto 0; }
.navigation.post-navigation .nav-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-4); }
.navigation.post-navigation a { height: 100%; display: flex; align-items: center; padding: var(--space-4); border: 1px solid var(--bg-border); border-radius: var(--radius-md); color: var(--text-secondary); font-size: var(--text-base); overflow-wrap: anywhere; }
.navigation.post-navigation a:hover { border-color: var(--accent-red); color: var(--text-primary); }
.navigation.post-navigation .nav-next a { justify-content: flex-end; text-align: end; }
@media (max-width: 600px) {
  .navigation.post-navigation .nav-links { grid-template-columns: 1fr; }
  .navigation.post-navigation .nav-next a { justify-content: flex-start; text-align: start; }
}

.xb3d260ed-section { padding-block: var(--space-20); }

[class*="prose__body"] table { width: 100%; border-collapse: collapse; margin: var(--space-6) 0; font-size: var(--text-base); display: block; overflow-x: auto; }
[class*="prose__body"] th,
[class*="prose__body"] td { padding: var(--space-3) var(--space-4); text-align: left; border: 1px solid var(--bg-border); vertical-align: top; }
[class*="prose__body"] thead th { background: var(--bg-base); font-weight: var(--weight-semibold); white-space: nowrap; }
[class*="prose__body"] tbody tr:nth-child(even) { background: color-mix(in srgb, var(--bg-base) 50%, transparent); }

.xb3d260ed-about-hero__inner { max-width: 760px; margin-inline: auto; text-align: center; }
.xb3d260ed-about-hero h1 { margin-block: var(--space-3) var(--space-5); color: var(--text-primary); font-size: clamp(var(--text-4xl), 7vw, var(--text-6xl)); line-height: var(--leading-tight); }
.xb3d260ed-about-hero__inner > p:last-child { color: var(--text-muted); font-size: var(--text-md); line-height: var(--leading-relaxed); }
.xb3d260ed-about-section-head { max-width: 760px; margin: 0 auto var(--space-10); text-align: center; }
.xb3d260ed-about-section-head .section-title { margin-block-start: var(--space-3); }
.xb3d260ed-about-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-5); }

.xb3d260ed-about-card { min-height: 100%; padding: var(--space-7); border: 1px solid var(--bg-border); border-radius: var(--radius-2xl); background: var(--bg-surface); }
.xb3d260ed-about-card__icon { margin-block-end: var(--space-5); color: var(--accent-pink); }
.xb3d260ed-about-card h3 { margin-block-end: var(--space-3); color: var(--text-primary); font-size: var(--text-lg); }
.xb3d260ed-about-card p { color: var(--text-muted); line-height: var(--leading-relaxed); }
.xb3d260ed-about-vision { background: var(--bg-surface); }
.xb3d260ed-about-vision__inner { max-width: 760px; margin-inline: auto; text-align: center; }
.xb3d260ed-about-vision__inner .section-title { margin-block: var(--space-3) var(--space-5); }
.xb3d260ed-about-vision__inner > p:not(.section-subtitle) { margin-block-start: var(--space-4); color: var(--text-muted); line-height: var(--leading-relaxed); }
.xb3d260ed-about-help a { color: var(--accent-pink); font-weight: var(--weight-semibold); }
.xb3d260ed-about-help a:hover { color: var(--text-primary); }
@media (max-width: 900px) { .xb3d260ed-about-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 478px) { .xb3d260ed-about-grid { grid-template-columns: 1fr; } .xb3d260ed-about-card { padding: var(--space-6); } }

.xb3d260ed-hero .btn--secondary { background-color: rgba(255, 255, 255, .18); color: var(--text-on-media); }
.xb3d260ed-hero .btn--secondary:hover { background-color: rgba(255, 255, 255, .28); }

body.is-light .site-header { background-color: var(--bg-base); box-shadow: var(--shadow-sm); }

.xb3d260ed-nav-group { position: relative; display: inline-flex; }
.xb3d260ed-nav-link--parent { display: inline-flex; align-items: center; gap: 5px; }
.xb3d260ed-nav-drop {
  position: absolute; top: 100%; left: -14px; min-width: 180px;
  display: none; flex-direction: column; padding: 8px;
  background: var(--bg-elevated); border: 1px solid var(--bg-border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-md); z-index: var(--z-header);
}
.xb3d260ed-nav-group:hover .xb3d260ed-nav-drop,
.xb3d260ed-nav-group:focus-within .xb3d260ed-nav-drop { display: flex; }
.xb3d260ed-nav-drop::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.xb3d260ed-nav-drop__link { padding: 9px 12px; border-radius: var(--radius-sm); color: var(--text-secondary); font-size: var(--text-base); white-space: nowrap; }
.xb3d260ed-nav-drop__link:hover, .xb3d260ed-nav-drop__link:focus-visible { background: var(--hover-wash); color: var(--text-primary); }

.xb3d260ed-switchers { display: flex; align-items: center; gap: var(--space-2); }
.xb3d260ed-switcher { position: relative; }
.xb3d260ed-switcher-pill {
  gap: 6px;
  background-color: var(--bg-surface);

  border: 1px solid var(--bg-border);

  padding-inline: 12px;
  color: var(--text-primary);
  font-weight: var(--weight-medium);
  white-space: nowrap;
  cursor: pointer;
  transition: background-color var(--transition-base), border-color var(--transition-base);
}
.xb3d260ed-switcher-pill:hover { background-color: var(--bg-overlay); border-color: var(--accent-red); }
.xb3d260ed-switcher-pill:focus-visible { outline: 2px solid var(--accent-red); outline-offset: 2px; }

.xb3d260ed-switcher-coin { color: var(--text-secondary); flex: none; }

.xb3d260ed-switcher-active-flag {
  width: 16px; height: 12px; border-radius: 2px; object-fit: cover; flex: none;
}
.xb3d260ed-switcher-chevron { transition: transform var(--transition-base); flex: none; }
.xb3d260ed-switcher:hover .xb3d260ed-switcher-chevron,
.xb3d260ed-switcher.is-open .xb3d260ed-switcher-chevron { transform: rotate(180deg); }
.xb3d260ed-switcher-panel {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 240px;
  display: none; flex-direction: column; gap: 2px; padding: 8px;
  background: var(--bg-elevated); border: 1px solid var(--bg-border);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-md); z-index: var(--z-header);
}

.xb3d260ed-switcher::after {
  content: ""; position: absolute; display: none;
  left: -8px; right: -8px; top: calc(100% - 1px); height: 11px;
}
.xb3d260ed-switcher:hover::after,
.xb3d260ed-switcher:focus-within::after,
.xb3d260ed-switcher.is-open::after { display: block; }

.xb3d260ed-switcher-panel::before {
  content: ""; position: absolute; left: 0; right: 0; top: -9px; height: 9px;
}
.xb3d260ed-mobile-menu .xb3d260ed-switcher-panel::before { top: auto; bottom: -9px; }
.xb3d260ed-switcher:hover .xb3d260ed-switcher-panel,
.xb3d260ed-switcher:focus-within .xb3d260ed-switcher-panel,
.xb3d260ed-switcher.is-open .xb3d260ed-switcher-panel { display: flex; }
.xb3d260ed-switcher-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--radius-md);
  color: var(--text-secondary); font-size: var(--text-base); white-space: nowrap;
  text-decoration: none;
}
.xb3d260ed-switcher-row:hover, .xb3d260ed-switcher-row:focus-visible { background: var(--hover-wash); color: var(--text-primary); }
.xb3d260ed-switcher-row.is-current { background: var(--hover-wash); color: var(--text-primary); font-weight: var(--weight-medium); }
.xb3d260ed-switcher-flag { width: 20px; height: 15px; border-radius: 2px; object-fit: cover; flex: none; }
.xb3d260ed-switcher-check { margin-inline-start: auto; color: var(--accent-red); flex: none; }

@media (max-width: 1024px) {
  .xb3d260ed-header-actions .xb3d260ed-switchers { display: none; }
}

.xb3d260ed-mobile-menu .xb3d260ed-switchers {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-4);
  margin: 0;
}

.xb3d260ed-mobile-menu .xb3d260ed-switcher { width: 100%; }
.xb3d260ed-mobile-menu .xb3d260ed-switcher-pill { width: 100%; }

.xb3d260ed-mobile-menu .xb3d260ed-switcher-panel {
  position: absolute;
  bottom: calc(100% + 8px);
  top: auto;
}
.xb3d260ed-mobile-menu .xb3d260ed-switcher:first-child .xb3d260ed-switcher-panel { left: 0; right: auto; }
.xb3d260ed-mobile-menu .xb3d260ed-switcher:last-child  .xb3d260ed-switcher-panel { left: auto; right: 0; }

.xb3d260ed-mobile-menu .xb3d260ed-switcher::after { top: auto; bottom: calc(100% - 1px); }
.xb3d260ed-mobile-menu-link--child { padding-inline-start: 26px; font-size: 1.4rem; opacity: .88; }

.xb3d260ed-hero__price-anchor { margin-block-start: var(--space-3); color: var(--text-on-media-muted); font-size: var(--text-sm); font-weight: var(--weight-medium); }

.xb3d260ed-home-plans__head { text-align: center; max-width: 720px; margin: 0 auto var(--space-6); }
.xb3d260ed-home-plans__eyebrow { color: var(--accent-red); font-size: var(--text-sm); font-weight: var(--weight-semibold); text-transform: uppercase; letter-spacing: .06em; margin-block-end: var(--space-2); }
.xb3d260ed-home-plans__body { color: var(--text-muted); font-size: var(--text-base); line-height: var(--leading-relaxed); margin-block-start: var(--space-3); }

.xb3d260ed-sticky-cta { display: none !important; }
}

.xb3d260ed-trial-assure { display: flex; flex-direction: column; gap: 7px; margin-top: var(--space-4); }
.xb3d260ed-trial-assure li { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: var(--text-sm); }
.xb3d260ed-trial-assure svg { color: var(--color-success); flex-shrink: 0; }
.xb3d260ed-trial-protocol__head { text-align: center; max-width: 760px; margin: 0 auto var(--space-8); }
.xb3d260ed-trial-protocol__eyebrow { color: var(--accent-red); font-size: var(--text-sm); font-weight: var(--weight-semibold); text-transform: uppercase; letter-spacing: .06em; margin-block-end: var(--space-2); }
.xb3d260ed-trial-protocol__lead { color: var(--text-muted); font-size: var(--text-base); line-height: var(--leading-relaxed); margin-block-start: var(--space-3); }
.xb3d260ed-trial-protocol__list { list-style: none; counter-reset: protocol; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: var(--space-4); max-width: 1100px; margin: 0 auto; padding: 0; }
.xb3d260ed-trial-protocol__list li { counter-increment: protocol; background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-lg); padding: var(--space-6); }
.xb3d260ed-trial-protocol__list h3 { font-size: var(--text-md); margin: 0 0 var(--space-2); color: var(--text-primary); }
.xb3d260ed-trial-protocol__list h3::before { content: counter(protocol) ". "; color: var(--accent-red); font-weight: var(--weight-bold); }
.xb3d260ed-trial-protocol__list p { color: var(--text-muted); font-size: var(--text-base); line-height: var(--leading-relaxed); margin: 0; }
.xb3d260ed-trial-protocol__after { max-width: 760px; margin: var(--space-8) auto 0; text-align: center; background: var(--accent-tint); border: 1px solid var(--accent-soft-border); border-radius: var(--radius-lg); padding: var(--space-6); }
.xb3d260ed-trial-protocol__after h3 { color: var(--text-primary); font-size: var(--text-md); margin: 0 0 var(--space-2); }
.xb3d260ed-trial-protocol__after p { color: var(--text-secondary); font-size: var(--text-base); line-height: var(--leading-relaxed); margin: 0; }

.xb3d260ed-co-renewal { text-align: center; color: #6b6770; font-size: var(--text-xs); margin-top: 6px; }
.xb3d260ed-thanks__upsell { margin-top: var(--space-6); padding: var(--space-5); background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-lg); display: flex; flex-direction: column; gap: var(--space-3); align-items: center; }
.xb3d260ed-thanks__upsell p { margin: 0; color: var(--text-muted); font-size: var(--text-base); }

.xb3d260ed-pcard__pay-icons { display: flex; justify-content: center; gap: var(--space-2); margin-block-start: var(--space-2); }
.xb3d260ed-pcard__pay-icons { flex-wrap: wrap; }

.xb3d260ed-pcard__pay-icons img { height: 24px; width: 36px; object-fit: contain; border-radius: 4px; border: 1px solid rgba(255, 255, 255, 0.12); background: #fff; }

.xb3d260ed-article-rail__header { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-6); flex-wrap: wrap; margin-block-end: var(--space-8); }
.xb3d260ed-article-rail__header .section-title { text-align: start; }
.xb3d260ed-article-rail__browse { color: var(--text-link); font-size: var(--text-sm); font-weight: var(--weight-medium); white-space: nowrap; }
.xb3d260ed-article-rail__browse:hover { color: var(--text-primary); }
.xb3d260ed-article-rail__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
@media (max-width: 900px) { .xb3d260ed-article-rail__grid { grid-template-columns: 1fr; } }

.xb3d260ed-footer-info { font-style: normal; margin-block-start: 0; display: flex; flex-direction: column; gap: 2px; }
.xb3d260ed-footer-info span { color: var(--text-muted); font-size: var(--text-sm); line-height: 1.6; }

.xb3d260ed-trial-protocol__list:has(> :nth-child(4):last-child),
.xb3d260ed-features__grid:has(> :nth-child(4):last-child),
.xb3d260ed-guide-links__grid:has(> :nth-child(4):last-child),
.xb3d260ed-fix-triage__grid:has(> :nth-child(4):last-child),
.xb3d260ed-contact__grid:has(> :nth-child(4):last-child),
.xb3d260ed-apps-grid:has(> :nth-child(4):last-child),
.xb3d260ed-device-grid:has(> :nth-child(4):last-child),
.xb3d260ed-about-grid:has(> :nth-child(4):last-child),
.xb3d260ed-post-list:has(> :nth-child(4):last-child),
.xb3d260ed-article-rail__grid:has(> :nth-child(4):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 880px;
  margin-inline: auto;
}
@media (max-width: 700px) {
  .xb3d260ed-trial-protocol__list:has(> :nth-child(4):last-child),
  .xb3d260ed-features__grid:has(> :nth-child(4):last-child),
  .xb3d260ed-guide-links__grid:has(> :nth-child(4):last-child),
  .xb3d260ed-fix-triage__grid:has(> :nth-child(4):last-child),
  .xb3d260ed-contact__grid:has(> :nth-child(4):last-child),
  .xb3d260ed-apps-grid:has(> :nth-child(4):last-child),
  .xb3d260ed-device-grid:has(> :nth-child(4):last-child),
  .xb3d260ed-about-grid:has(> :nth-child(4):last-child),
  .xb3d260ed-post-list:has(> :nth-child(4):last-child),
  .xb3d260ed-article-rail__grid:has(> :nth-child(4):last-child) { grid-template-columns: 1fr; }
}

:root {

  --review-star-on: #00b67a;
  --review-star-off: #dcdce6;
  --review-card-bg: #fff;
  --review-card-ink: #191919;
  --review-card-ink-soft: #56565e;
  --review-card-line: #e6e6ec;
}

.xb3d260ed-reviews__header { text-align: center; margin-block-end: var(--space-10); }
.xb3d260ed-reviews__header .section-subtitle { padding-top: 0; }
.xb3d260ed-reviews__eyebrow { text-transform: uppercase; letter-spacing: .1em; color: var(--accent-red); }
.xb3d260ed-reviews__header .section-title { max-width: 720px; margin: var(--space-3) auto 0; }
.xb3d260ed-reviews__header .section-subtitle:last-of-type { max-width: 720px; margin-inline: auto; }

.xb3d260ed-reviews__score { display: flex; flex-direction: column; align-items: center; gap: var(--space-2); margin-block-start: var(--space-6); }
.xb3d260ed-reviews__verdict { color: var(--text-primary); font-size: var(--text-xl); font-weight: var(--weight-bold); letter-spacing: -.01em; }
.xb3d260ed-reviews__stars { display: inline-flex; gap: 3px; line-height: 0; }
.xb3d260ed-reviews__rating-text { color: var(--text-secondary); font-size: var(--text-sm); }

.xb3d260ed-star { display: block; border-radius: 2px; }

.xb3d260ed-reviews__grid { columns: 3; column-gap: var(--space-6); margin-block-start: var(--space-8); padding: 0; list-style: none; }
.xb3d260ed-review-card {
  break-inside: avoid;
  margin-block-end: var(--space-6);
  padding: var(--space-6);
  background: var(--review-card-bg);
  border: 1px solid var(--review-card-line);
  border-radius: var(--radius-lg);
  color: var(--review-card-ink);
  transition: transform .2s ease, box-shadow .2s ease;
}
.xb3d260ed-review-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgb(0 0 0 / .28); }

.xb3d260ed-review-card__photo { overflow: hidden; aspect-ratio: 9/10; margin: calc(var(--space-6) * -1) calc(var(--space-6) * -1) var(--space-5); border-radius: var(--radius-lg) var(--radius-lg) 0 0; background: var(--review-star-off); }
.xb3d260ed-review-card__photo img { display: block; width: 100%; height: 100%; object-fit: cover; }

.xb3d260ed-review-card__top { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); }
.xb3d260ed-review-card__stars { display: flex; gap: 3px; line-height: 0; }
.xb3d260ed-review-card__date { color: var(--review-card-ink-soft); font-size: var(--text-xs); white-space: nowrap; }

.xb3d260ed-review-card__byline { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2); margin-block-start: var(--space-4); }
.xb3d260ed-review-card__flag { width: 16px; height: 16px; border-radius: 2px; flex-shrink: 0; object-fit: cover; }
.xb3d260ed-review-card__name { color: var(--review-card-ink); font-size: var(--text-base); font-weight: var(--weight-semibold); font-style: normal; }
.xb3d260ed-review-card__where { color: var(--review-card-ink-soft); font-size: var(--text-xs); }

.xb3d260ed-review-card__quote { margin: var(--space-4) 0 0; }

.xb3d260ed-review-card__headline { color: var(--review-card-ink); font-size: var(--text-md); font-weight: var(--weight-bold); line-height: var(--leading-normal); overflow-wrap: anywhere; }
.xb3d260ed-review-card__text { margin-block-start: var(--space-3); color: var(--review-card-ink-soft); font-size: var(--text-base); line-height: var(--leading-relaxed); }

.xb3d260ed-review-card__reply { margin-block-start: var(--space-5); padding-inline-start: var(--space-4); border-inline-start: 3px solid var(--review-star-off); }
.xb3d260ed-review-card__reply-title { color: var(--review-card-ink); font-size: var(--text-sm); font-weight: var(--weight-semibold); }
.xb3d260ed-review-card__reply-text { margin-block-start: var(--space-2); color: var(--review-card-ink-soft); font-size: var(--text-sm); line-height: var(--leading-relaxed); }

@media (max-width: 1080px) { .xb3d260ed-reviews__grid { columns: 2; } }
@media (max-width: 620px) { .xb3d260ed-reviews__grid { columns: 1; column-gap: 0; } .xb3d260ed-review-card { padding: var(--space-5); margin-block-end: var(--space-5); } }

.xb3d260ed-page-hero { position: relative; background: var(--bg-base); overflow: hidden; }
.xb3d260ed-page-hero__bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: 72% 22%; }
.xb3d260ed-page-hero__fade {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(8,8,10,.72) 0%, rgba(8,8,10,.42) 30%, rgba(8,8,10,0) 58%),
    linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(12,12,14,.08) 34%, rgba(12,12,14,.62) 72%, var(--bg-base) 100%);
}
.xb3d260ed-page-hero__inner {
  position: relative; z-index: 2; width: 100%; max-width: var(--container-max);
  margin-inline: auto; padding-inline: var(--page-gutter);
  padding-top: clamp(240px, 32vw, 420px); padding-bottom: var(--space-12);
  display: flex; flex-direction: column; gap: var(--space-2);
}
.xb3d260ed-page-hero--plain .xb3d260ed-page-hero__inner { padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(28px, 4vw, 56px); }

.xb3d260ed-page-hero__inner > * { align-self: flex-start; }
.xb3d260ed-page-hero__inner > h1, .xb3d260ed-page-hero__inner > .xb3d260ed-page-hero__lead { align-self: stretch; }
.xb3d260ed-page-hero__eyebrow { color: var(--text-on-media-soft); font-size: var(--text-sm); font-weight: var(--weight-semibold); letter-spacing: .08em; text-transform: uppercase; margin: 0; }
.xb3d260ed-page-hero h1 { color: var(--text-on-media); font-size: clamp(2.1rem, 4.2vw, 3.2rem); font-weight: var(--weight-bold); line-height: 1.2; max-width: 695px; margin-block: var(--space-2) var(--space-4); }
.xb3d260ed-page-hero__lead { color: var(--text-on-media-muted); font-size: var(--text-md); line-height: 1.6; max-width: 760px; }
.xb3d260ed-page-hero__lead a { color: var(--accent-red); }
.xb3d260ed-page-hero__meta { display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-6); margin-top: var(--space-5); }
.xb3d260ed-page-hero__meta li { color: var(--text-on-media); font-size: var(--text-base); font-weight: var(--weight-semibold); }
.xb3d260ed-page-hero .xb3d260ed-breadcrumbs { margin-bottom: var(--space-4); }
.xb3d260ed-page-hero + .section--padded { padding-top: clamp(20px, 3vw, 36px); }

.section--padded:has(+ #channel-browser) { padding-block-end: clamp(8px, 1.5vw, 16px); }
#channel-browser.section--padded { padding-block-start: clamp(12px, 2vw, 20px); }
#channel-browser .xb3d260ed-channels__h { margin-block-start: 0; }

@media (max-width: 720px) {
  .xb3d260ed-page-hero__bg { object-position: 76% 22%; }
  .xb3d260ed-page-hero__inner { padding-top: clamp(180px, 46vw, 300px); }
}

.xb3d260ed-page-hero--portrait {
  --hero-backdrop: var(--bg-base);
  background: var(--hero-backdrop);
  display: flex; align-items: center;
  min-height: clamp(420px, 40vw, 620px);
}
.xb3d260ed-page-hero--portrait .xb3d260ed-page-hero__bg { object-fit: contain; object-position: 100% 100%; }
.xb3d260ed-page-hero--portrait .xb3d260ed-page-hero__fade { display: none; }
.xb3d260ed-page-hero--portrait .xb3d260ed-page-hero__inner {
  padding-top: clamp(32px, 4vw, 64px); padding-bottom: clamp(32px, 4vw, 64px);
  padding-inline-end: calc(var(--page-gutter) + 26%);
}

@media (max-width: 720px) {
  .xb3d260ed-page-hero--portrait { flex-direction: column; min-height: 0; }
  .xb3d260ed-page-hero--portrait .xb3d260ed-page-hero__bg {
    position: relative; inset: auto;
    width: 100%; height: clamp(240px, 58vw, 360px); object-position: 50% 100%;
  }
  .xb3d260ed-page-hero--portrait .xb3d260ed-page-hero__inner {
    padding-top: var(--space-6); padding-inline-end: var(--page-gutter);
  }
}

.xb3d260ed-guide-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); list-style: none; padding: 0; margin: 0 auto var(--space-10); max-width: 900px; }
.xb3d260ed-guide-highlights:has(> :nth-child(4)) { grid-template-columns: repeat(4, 1fr); }
.xb3d260ed-guide-highlights > li { display: flex; flex-direction: column; gap: 4px; padding: var(--space-4) var(--space-5); background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-lg); text-align: center; }
.xb3d260ed-guide-highlights__value { color: var(--accent-red); font-size: clamp(1.35rem, 2.4vw, 1.75rem); font-weight: 800; line-height: 1.15; letter-spacing: -.01em; }
.xb3d260ed-guide-highlights__label { color: var(--text-muted); font-size: var(--text-sm); line-height: 1.4; }
@media (max-width: 760px) { .xb3d260ed-guide-highlights, .xb3d260ed-guide-highlights:has(> :nth-child(4)) { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .xb3d260ed-guide-highlights, .xb3d260ed-guide-highlights:has(> :nth-child(4)) { grid-template-columns: 1fr; } }

.xb3d260ed-related { border-block-start: 1px solid var(--bg-border); }
.xb3d260ed-related__h { font-size: var(--text-xl); color: var(--text-primary); margin: 0 0 var(--space-5); }
.xb3d260ed-related__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-4); list-style: none; padding: 0; margin: 0; }
.xb3d260ed-related__link { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); padding: var(--space-4) var(--space-5); border: 1px solid var(--bg-border); border-radius: var(--radius-lg); background: var(--bg-surface); color: var(--text-primary); text-decoration: none; font-weight: var(--weight-medium); transition: border-color .2s ease, transform .2s ease; }
.xb3d260ed-related__link:hover { border-color: var(--accent-red); transform: translateY(-2px); }
.xb3d260ed-related__link svg { flex-shrink: 0; color: var(--accent-red); }
@media (max-width: 900px) { .xb3d260ed-related__grid { grid-template-columns: 1fr; } }

.xb3d260ed-about-author__card { max-width: 780px; padding: var(--space-6) var(--space-7); background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-lg); }
.xb3d260ed-about-author__name { font-size: var(--text-lg); font-weight: var(--weight-bold); color: var(--text-primary); margin: 0; }
.xb3d260ed-about-author__role { font-size: var(--text-sm); color: var(--accent-red); margin: 2px 0 var(--space-3); }
.xb3d260ed-about-author__bio { font-size: var(--text-md); color: var(--text-secondary); line-height: var(--leading-loose, 1.75); margin: 0; }

.xb3d260ed-contact-prep__h { font-size: var(--text-lg); color: var(--text-primary); margin: var(--space-8) 0 var(--space-3); }
.xb3d260ed-contact-prep { display: grid; gap: var(--space-2); list-style: none; padding: 0; margin: 0; max-width: 68ch; color: var(--text-secondary); font-size: var(--text-md); line-height: var(--leading-relaxed); }
.xb3d260ed-contact-prep li { padding-inline-start: var(--space-5); position: relative; }
.xb3d260ed-contact-prep li::before { content: ""; position: absolute; inset-inline-start: 0; inset-block-start: .6em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-red); }

.xb3d260ed-funnel-hero { position: relative; overflow: hidden; background: var(--bg-base); }
.xb3d260ed-funnel-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 30%; }
.xb3d260ed-funnel-hero__fade { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, var(--bg-base) 96%), linear-gradient(100deg, var(--bg-base) 28%, color-mix(in srgb, var(--bg-base) 80%, transparent) 54%, color-mix(in srgb, var(--bg-base) 40%, transparent) 100%); }

.xb3d260ed-funnel-hero__inner { position: relative; max-width: var(--container-max); margin-inline: auto; padding: calc(var(--header-height) + clamp(16px, 3vw, 28px)) var(--page-gutter) clamp(72px, 9vw, 120px); }
.xb3d260ed-funnel-hero h1 { font-size: clamp(3.2rem, 5.4vw, var(--text-5xl)); font-weight: var(--weight-bold); line-height: 1.05; color: var(--text-primary); margin: var(--space-4) 0 var(--space-3); }
.xb3d260ed-funnel-hero__lede { color: var(--text-secondary); font-size: var(--text-md); line-height: var(--leading-relaxed); max-width: 520px; }
.xb3d260ed-funnel-hero__trust { display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-6); margin-top: var(--space-6); }
.xb3d260ed-funnel-hero__trust li { display: inline-flex; align-items: center; gap: 8px; color: var(--text-primary); font-size: var(--text-base); font-weight: var(--weight-semibold); }
.xb3d260ed-funnel-hero__trust svg { color: var(--accent-red); flex-shrink: 0; }

.xb3d260ed-funnel { background: var(--bg-base); padding: 0 var(--page-gutter) clamp(40px, 6vw, 72px); display: flex; justify-content: center; }

.xb3d260ed-funnel__card { width: 100%; max-width: 720px; background: var(--bg-surface); border: 1px solid color-mix(in srgb, var(--accent-red) 22%, var(--bg-border)); border-radius: var(--radius-2xl); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-lg), 0 0 0 6px color-mix(in srgb, var(--accent-red) 5%, transparent); margin-top: clamp(-88px, -7vw, -56px); position: relative; z-index: var(--z-raised); }
.xb3d260ed-funnel__card--flush { margin-top: 0; }
.xb3d260ed-funnel__card form { display: flex; flex-direction: column; gap: var(--space-5); }
.xb3d260ed-funnel__card label { display: flex; flex-direction: column; gap: 6px; font-size: var(--text-base); font-weight: var(--weight-semibold); color: var(--text-primary); }
.xb3d260ed-funnel__card input[type="text"], .xb3d260ed-funnel__card input[type="email"], .xb3d260ed-funnel__card input[type="tel"] { width: 100%; padding: 14px 16px; border-radius: var(--radius-md); border: 1px solid var(--bg-border); background: color-mix(in srgb, var(--bg-base) 55%, var(--bg-elevated)); color: var(--text-primary); font: inherit; transition: border-color var(--transition-fast), background var(--transition-fast); }
.xb3d260ed-funnel__card input::placeholder { color: var(--text-disabled); }
.xb3d260ed-funnel__card input:focus { border-color: color-mix(in srgb, var(--accent-red) 60%, transparent); background: var(--bg-elevated); }
.xb3d260ed-funnel__card input:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 1px; }

.xb3d260ed-funnel-progress { display: flex; gap: var(--space-2); list-style: none; margin: 0 0 var(--space-7); padding: 0; }
.xb3d260ed-funnel-progress li { flex: 1; display: flex; align-items: center; gap: 8px; font-size: var(--text-sm); font-weight: var(--weight-semibold); color: var(--text-disabled); border-top: 3px solid var(--bg-border); padding-top: var(--space-3); transition: color var(--transition-base), border-color var(--transition-base); }
.xb3d260ed-funnel-progress li span { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: var(--radius-full); background: var(--bg-overlay); color: var(--text-muted); font-size: var(--text-xs); flex-shrink: 0; }
.xb3d260ed-funnel-progress li.is-current { color: var(--text-primary); border-top-color: var(--accent-red); }
.xb3d260ed-funnel-progress li.is-current span { background: var(--accent-red); color: var(--accent-contrast); }
.xb3d260ed-funnel-progress li.is-done { color: var(--text-muted); border-top-color: color-mix(in srgb, var(--accent-red) 55%, transparent); }
.xb3d260ed-funnel-progress li.is-done span { background: color-mix(in srgb, var(--accent-red) 22%, transparent); color: var(--accent-red); }

.xb3d260ed-funnel-chosen { display: inline-flex; margin-block-end: var(--space-6); align-items: center; gap: var(--space-3); align-self: flex-start; padding: 8px 14px 8px 8px; border-radius: var(--radius-full); border: 1px solid var(--bg-border); background: var(--bg-elevated); color: var(--text-primary); font: inherit; font-size: var(--text-sm); font-weight: var(--weight-semibold); cursor: pointer; transition: border-color var(--transition-fast); }
.xb3d260ed-funnel-chosen:hover { border-color: color-mix(in srgb, var(--accent-red) 50%, transparent); }
.xb3d260ed-funnel-chosen img { width: 54px; height: 22px; object-fit: contain; background: #fff; border-radius: var(--radius-sm); padding: 2px 4px; }
.xb3d260ed-funnel-chosen svg { color: var(--text-muted); }

.xb3d260ed-funnel-step { display: flex; flex-direction: column; gap: var(--space-5); scroll-margin-top: calc(var(--header-height) + var(--space-4)); }
.xb3d260ed-funnel-step h2 { font-size: var(--text-xl); font-weight: var(--weight-bold); color: var(--text-primary); line-height: var(--leading-snug); }
.xb3d260ed-funnel-step h2:focus-visible { outline: none; }

.xb3d260ed-funnel-step > div { display: flex; flex-direction: column; gap: var(--space-5); }
.xb3d260ed-funnel-step__body { color: var(--text-muted); font-size: var(--text-base); line-height: var(--leading-relaxed); margin-top: calc(-1 * var(--space-3)); }
.xb3d260ed-funnel-step__prompt { color: var(--text-primary); font-size: var(--text-base); font-weight: var(--weight-semibold); padding: var(--space-4); border-radius: var(--radius-md); background: color-mix(in srgb, var(--accent-red) 10%, transparent); border: 1px solid color-mix(in srgb, var(--accent-red) 28%, transparent); }

.xb3d260ed-funnel-tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(132px, 1fr)); gap: var(--space-3); border: 0; padding: 0; margin: 0; }
.xb3d260ed-funnel-tile { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--space-3); padding: var(--space-4) var(--space-3); border: 1px solid var(--bg-border); border-radius: var(--radius-lg); background: var(--bg-elevated); cursor: pointer; transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast); }
.xb3d260ed-funnel-tile:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--accent-red) 45%, transparent); box-shadow: var(--shadow-sm); }
.xb3d260ed-funnel-tile img { width: 100%; max-width: 104px; height: 40px; object-fit: contain; background: #fff; border-radius: var(--radius-sm); padding: 5px 8px; }
.xb3d260ed-funnel-tile span { font-size: var(--text-sm); font-weight: var(--weight-semibold); color: var(--text-primary); line-height: var(--leading-snug); }
.xb3d260ed-funnel-tile input { position: absolute; inset-block-start: 8px; inset-inline-end: 8px; width: 1px; height: 1px; opacity: 0; }
.xb3d260ed-funnel-tile:has(input:checked) { border-color: var(--accent-red); background: color-mix(in srgb, var(--accent-red) 12%, var(--bg-elevated)); box-shadow: 0 0 0 1px var(--accent-red) inset; }
.xb3d260ed-funnel-tile:has(input:checked)::after { content: ""; position: absolute; inset-block-start: 10px; inset-inline-end: 12px; width: 6px; height: 11px; border: solid var(--accent-red); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }
.xb3d260ed-funnel-tile:has(input:focus-visible) { outline: 3px solid var(--focus-ring); outline-offset: 2px; }

.xb3d260ed-funnel-other { position: relative; display: block; width: 100%; text-align: center; cursor: pointer; padding: var(--space-2) 0; }
.xb3d260ed-funnel-other input { position: absolute; inset-block-start: 0; inset-inline-start: 0; width: 1px; height: 1px; opacity: 0; }
.xb3d260ed-funnel-other span { font-size: var(--text-sm); color: var(--text-muted); text-decoration: underline; text-underline-offset: 3px; }
.xb3d260ed-funnel-other:hover span { color: var(--text-secondary); }
.xb3d260ed-funnel-other:has(input:checked) span { color: var(--accent-red); }
.xb3d260ed-funnel-other:has(input:focus-visible) span { outline: 3px solid var(--focus-ring); outline-offset: 2px; }

.xb3d260ed-funnel-apps { display: flex; flex-wrap: wrap; gap: var(--space-4); list-style: none; margin: 0; padding: 0; }
.xb3d260ed-funnel-app { display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: stretch; }
.xb3d260ed-funnel-app__right, .xb3d260ed-funnel-app__wrong { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: var(--space-3); border-radius: var(--radius-lg); border: 1px solid var(--bg-border); min-width: 132px; text-align: center; }
.xb3d260ed-funnel-app__right { border-color: color-mix(in srgb, var(--color-success) 55%, transparent); background: color-mix(in srgb, var(--color-success) 10%, transparent); }
.xb3d260ed-funnel-app__wrong { border-color: color-mix(in srgb, var(--color-error) 50%, transparent); background: color-mix(in srgb, var(--color-error) 8%, transparent); }
.xb3d260ed-funnel-app img { width: 56px; height: 56px; border-radius: 14px; object-fit: contain; }
.xb3d260ed-funnel-app b { font-size: var(--text-sm); color: var(--text-primary); }
.xb3d260ed-funnel-app em { font-size: var(--text-xs); color: var(--text-muted); font-style: normal; max-width: 20ch; }
.xb3d260ed-funnel-app__wrong img { filter: grayscale(1); opacity: .75; }

.xb3d260ed-funnel-guide { border: 1px solid var(--bg-border); border-radius: var(--radius-lg); padding: var(--space-5); background: color-mix(in srgb, var(--bg-base) 45%, var(--bg-elevated)); display: flex; flex-direction: column; gap: var(--space-4); }
.xb3d260ed-funnel-guide h3 { font-size: var(--text-md); font-weight: var(--weight-bold); color: var(--text-primary); }

.xb3d260ed-funnel-guide__intro { color: var(--text-secondary); font-size: var(--text-base); line-height: var(--leading-relaxed); border-inline-start: 3px solid color-mix(in srgb, var(--accent-red) 45%, transparent); padding-inline-start: var(--space-4); }

.xb3d260ed-funnel-guide__steps { display: flex; flex-direction: column; gap: var(--space-4); margin: 0; padding: 0; list-style: none; counter-reset: fstep; }

.xb3d260ed-funnel-guide__steps li { position: relative; counter-increment: fstep; padding-inline-start: 44px; color: var(--text-secondary); font-size: var(--text-base); line-height: var(--leading-relaxed); min-height: 30px; display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.xb3d260ed-funnel-guide__steps li b { color: var(--text-primary); font-weight: var(--weight-semibold); }
.xb3d260ed-funnel-guide__steps li em { font-style: normal; color: var(--text-muted); font-size: var(--text-sm); }

.xb3d260ed-funnel-guide__icon { width: 46px; height: 46px; border-radius: var(--radius-md); order: -1; }
.xb3d260ed-funnel-guide__steps li::before { content: counter(fstep); position: absolute; inset-inline-start: 0; inset-block-start: 0; width: 30px; height: 30px; border-radius: var(--radius-full); background: color-mix(in srgb, var(--accent-red) 16%, transparent); border: 1px solid color-mix(in srgb, var(--accent-red) 40%, transparent); color: var(--accent-red); font-weight: var(--weight-bold); font-size: var(--text-sm); display: flex; align-items: center; justify-content: center; }
.xb3d260ed-funnel-guide__hint { color: var(--text-primary); font-size: var(--text-base); background: var(--bg-base); border: 1px dashed color-mix(in srgb, var(--accent-red) 50%, transparent); border-radius: var(--radius-md); padding: var(--space-4); font-weight: var(--weight-semibold); }

.xb3d260ed-funnel-code { background: var(--bg-base); border: 2px dashed color-mix(in srgb, var(--accent-red) 60%, transparent); border-radius: var(--radius-lg); padding: var(--space-4); display: flex; flex-direction: column; align-items: center; gap: var(--space-2); text-align: center; }
.xb3d260ed-funnel-code__label { color: var(--text-primary); font-weight: var(--weight-semibold); }
.xb3d260ed-funnel-code__value { font-size: clamp(2rem, 8vw, 3rem); line-height: 1.05; letter-spacing: .12em; color: var(--accent-red); font-weight: var(--weight-bold); }
.xb3d260ed-funnel-code .xb3d260ed-funnel-guide__hint { border: 0; background: transparent; padding: 0; color: var(--text-muted); font-weight: 400; }

.xb3d260ed-funnel-calls { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.xb3d260ed-funnel-call { display: flex; gap: var(--space-3); align-items: flex-start; padding: var(--space-4); border-radius: var(--radius-md); border: 1px solid var(--bg-border); font-size: var(--text-base); line-height: var(--leading-relaxed); color: var(--text-primary); }
.xb3d260ed-funnel-call svg { flex: none; margin-block-start: 2px; }
.xb3d260ed-funnel-call.is-warn { background: color-mix(in srgb, var(--color-warning) 12%, transparent); border-color: color-mix(in srgb, var(--color-warning) 45%, transparent); }
.xb3d260ed-funnel-call.is-warn svg { color: var(--color-warning); }
.xb3d260ed-funnel-call.is-tip { background: color-mix(in srgb, var(--accent-red) 8%, transparent); border-color: color-mix(in srgb, var(--accent-red) 35%, transparent); }
.xb3d260ed-funnel-call.is-tip svg { color: var(--accent-red); }

.xb3d260ed-funnel-note { font-size: var(--text-base); color: var(--text-primary); background: color-mix(in srgb, var(--color-warning) 12%, transparent); border: 1px solid color-mix(in srgb, var(--color-warning) 45%, transparent); border-radius: var(--radius-md); padding: var(--space-4); }
.xb3d260ed-funnel-lookup { font-size: var(--text-base); color: var(--text-secondary); }
.xb3d260ed-funnel-assure { display: flex; flex-direction: column; gap: var(--space-2); list-style: none; margin: 0; padding: 0; }
.xb3d260ed-funnel-assure li { display: flex; align-items: center; gap: 8px; color: var(--text-secondary); font-size: var(--text-sm); }
.xb3d260ed-funnel-assure svg { color: var(--color-success); flex-shrink: 0; }

.xb3d260ed-funnel-submit { width: 100%; max-width: 420px; margin-inline: auto; padding: 16px 24px; font-size: var(--text-md); }
.xb3d260ed-funnel-nav { display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: center; align-items: center; }
.xb3d260ed-funnel-nav .btn { flex: 1 1 auto; max-width: 320px; justify-content: center; padding: 15px 26px; font-size: var(--text-md); }

@media (max-width: 560px) {
  .xb3d260ed-funnel-progress li { font-size: 0; gap: 0; justify-content: center; }
  .xb3d260ed-funnel-progress li span { font-size: var(--text-xs); }
  .xb3d260ed-funnel-tiles { grid-template-columns: repeat(auto-fill, minmax(112px, 1fr)); }
  .xb3d260ed-funnel-app { flex-direction: column; }
  .xb3d260ed-funnel-app__right, .xb3d260ed-funnel-app__wrong { flex-direction: row; text-align: start; align-items: center; }
}

.xb3d260ed-funnel-path { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); border: 0; padding: 0; margin: 0; }
.xb3d260ed-funnel-path legend { font-size: var(--text-md); font-weight: var(--weight-bold); color: var(--text-primary); padding: 0; margin-bottom: var(--space-4); }
.xb3d260ed-funnel-path__card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-3);
  padding: var(--space-6) var(--space-5);
  border: 1px solid var(--hairline); border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm); cursor: pointer;
  background:
    radial-gradient(110% 85% at 92% -14%, color-mix(in srgb, var(--accent-red) 20%, transparent) 0%, transparent 62%),
    linear-gradient(158deg, color-mix(in srgb, var(--highlight-purple) 68%, var(--bg-elevated)) 0%, var(--bg-elevated) 74%);
  transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.xb3d260ed-funnel-path__card:last-of-type {
  background:
    radial-gradient(110% 85% at 92% -14%, color-mix(in srgb, var(--accent-red) 30%, transparent) 0%, transparent 62%),
    linear-gradient(158deg, color-mix(in srgb, var(--highlight-blue) 62%, var(--bg-elevated)) 0%, var(--bg-elevated) 74%);
}
.xb3d260ed-funnel-path__card:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--accent-red) 50%, transparent); box-shadow: var(--shadow-md); }
.xb3d260ed-funnel-path__card input { position: absolute; width: 1px; height: 1px; opacity: 0; }

.xb3d260ed-funnel-path__card svg, .xb3d260ed-funnel-path__card img {
  width: 60px; height: 60px; flex: none; padding: 13px;
  border-radius: var(--radius-xl); box-sizing: border-box;
  box-shadow: var(--shadow-sm);
}
.xb3d260ed-funnel-path__card svg { color: var(--accent-contrast); background: linear-gradient(148deg, var(--accent-red) 0%, var(--accent-red-dark) 100%); }
.xb3d260ed-funnel-path__card img { object-fit: contain; background: color-mix(in srgb, var(--bg-base) 45%, var(--bg-elevated)); box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--hairline); }
.xb3d260ed-funnel-path__card b { font-size: var(--text-md); font-weight: var(--weight-bold); color: var(--text-primary); line-height: var(--leading-snug); letter-spacing: -.01em; }
.xb3d260ed-funnel-path__card em { font-size: var(--text-sm); color: var(--text-secondary); font-style: normal; line-height: var(--leading-relaxed); }

.xb3d260ed-funnel-path__card:has(input:checked) { border-color: var(--accent-red); box-shadow: 0 0 0 2px var(--accent-red) inset, var(--shadow-md); }
.xb3d260ed-funnel-path__card:has(input:checked)::after { content: ""; position: absolute; inset-block-start: 18px; inset-inline-end: 20px; width: 7px; height: 13px; border: solid var(--accent-red); border-width: 0 3px 3px 0; transform: rotate(45deg); }
.xb3d260ed-funnel-path__card:has(input:focus-visible) { outline: 3px solid var(--focus-ring); outline-offset: 2px; }
@media (max-width: 560px) { .xb3d260ed-funnel-path { grid-template-columns: 1fr; } }

.xb3d260ed-funnel-how { display: flex; flex-direction: column; gap: var(--space-5); }
.xb3d260ed-funnel-how h2 { font-size: var(--text-xl); font-weight: var(--weight-bold); color: var(--text-primary); letter-spacing: -.01em; }
.xb3d260ed-funnel-how__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); list-style: none; margin: 0; padding: 0; counter-reset: fhow; }
.xb3d260ed-funnel-how__card {
  position: relative; counter-increment: fhow; overflow: hidden;
  display: flex; flex-direction: column; gap: var(--space-2);
  padding: var(--space-5) var(--space-5) var(--space-6);
  border: 1px solid var(--hairline); border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm);
  background:
    radial-gradient(115% 80% at 88% -12%, color-mix(in srgb, var(--accent-red) 26%, transparent) 0%, transparent 60%),
    linear-gradient(158deg, color-mix(in srgb, var(--highlight-purple) 72%, var(--bg-elevated)) 0%, var(--bg-elevated) 72%);
}
.xb3d260ed-funnel-how__card:nth-child(2) {
  background:
    radial-gradient(115% 80% at 88% -12%, color-mix(in srgb, var(--accent-red) 16%, transparent) 0%, transparent 58%),
    linear-gradient(158deg, color-mix(in srgb, var(--highlight-blue) 62%, var(--bg-elevated)) 0%, var(--bg-elevated) 74%);
}
.xb3d260ed-funnel-how__card:nth-child(3) {
  background:
    radial-gradient(115% 80% at 88% -12%, color-mix(in srgb, var(--accent-red) 34%, transparent) 0%, transparent 62%),
    linear-gradient(158deg, color-mix(in srgb, var(--highlight-dark-blue) 78%, var(--bg-elevated)) 0%, var(--bg-elevated) 70%);
}

.xb3d260ed-funnel-how__card::before {
  content: counter(fhow); position: absolute; z-index: var(--z-raised);
  inset-block-start: var(--space-5); inset-inline-start: var(--space-5);
  width: 30px; height: 30px; border-radius: var(--radius-full);
  background: var(--accent-red); color: var(--accent-contrast);
  font-size: var(--text-sm); font-weight: var(--weight-bold);
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
}

.xb3d260ed-funnel-how__card img {
  width: 100%; height: 124px; object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 0 1px var(--hairline);
  margin-block-end: var(--space-2);
}

.xb3d260ed-funnel-how__card:not(:has(img))::after {
  content: counter(fhow); order: -1; height: 124px; flex: none;
  border-radius: var(--radius-xl); margin-block-end: var(--space-2);
  box-shadow: inset 0 0 0 1px var(--hairline);
  display: flex; align-items: center; justify-content: center;
  font-size: 6.4rem; font-weight: var(--weight-bold); line-height: 1;
  color: color-mix(in srgb, var(--accent-red) 34%, transparent);
  background:
    radial-gradient(80% 120% at 24% 110%, color-mix(in srgb, var(--accent-red) 30%, transparent) 0%, transparent 70%),
    linear-gradient(140deg, color-mix(in srgb, var(--text-primary) 10%, transparent) 0%, transparent 55%),
    color-mix(in srgb, var(--bg-base) 55%, var(--highlight-purple));
}
.xb3d260ed-funnel-how__card h3 { font-size: var(--text-md); font-weight: var(--weight-bold); color: var(--text-primary); line-height: var(--leading-snug); letter-spacing: -.01em; }
.xb3d260ed-funnel-how__card p { font-size: var(--text-sm); color: var(--text-secondary); line-height: var(--leading-relaxed); }

.xb3d260ed-funnel-trust { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: var(--space-2) var(--space-5); list-style: none; margin: 0; padding: var(--space-5) 0 0; border-block-start: 1px solid var(--hairline); text-align: center; }
.xb3d260ed-funnel-trust li { display: inline-flex; align-items: center; gap: 7px; font-size: var(--text-sm); font-weight: var(--weight-semibold); color: var(--text-secondary); }
.xb3d260ed-funnel-trust svg { color: var(--color-success); flex-shrink: 0; }

.xb3d260ed-funnel-proof__stat { font-size: clamp(2.2rem, 4.4vw, 3.4rem); font-weight: var(--weight-bold); line-height: 1.05; color: var(--accent-red); margin-block-start: var(--space-3); text-align: center; }
.xb3d260ed-funnel-proof__note { color: var(--text-muted); font-size: var(--text-base); text-align: center; margin-block-start: var(--space-2); }
.xb3d260ed-funnel-proof__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: var(--space-3); list-style: none; margin: var(--space-7) 0 0; padding: 0; }
.xb3d260ed-funnel-proof__tile { position: relative; overflow: hidden; border: 1px solid var(--bg-border); border-radius: var(--radius-lg); background: var(--bg-elevated); }
.xb3d260ed-funnel-proof__tile img { width: 100%; height: 118px; object-fit: cover; }
.xb3d260ed-funnel-proof__tile span { display: block; padding: var(--space-3); font-size: var(--text-base); font-weight: var(--weight-semibold); color: var(--text-primary); text-align: center; }

.xb3d260ed-funnel-tv__caption { color: var(--text-muted); font-size: var(--text-base); line-height: var(--leading-relaxed); text-align: center; max-width: 60ch; margin: var(--space-3) auto 0; }
.xb3d260ed-funnel-tv__frame { max-width: 880px; margin: var(--space-7) auto 0; }
.xb3d260ed-funnel-tv__screen { position: relative; border: clamp(8px, 1.4vw, 14px) solid color-mix(in srgb, var(--bg-base) 60%, #000); border-radius: var(--radius-lg); background: #000; box-shadow: var(--shadow-lg), 0 0 0 1px var(--bg-border); overflow: hidden; }
.xb3d260ed-funnel-tv__slide { margin: 0; }
.xb3d260ed-funnel-tv__slide img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.xb3d260ed-funnel-tv__slide figcaption { padding: var(--space-3) var(--space-4); font-size: var(--text-sm); color: var(--text-secondary); background: var(--bg-elevated); }
.xb3d260ed-funnel-tv__stand { width: 22%; height: 10px; margin: 0 auto; border-radius: 0 0 var(--radius-md) var(--radius-md); background: color-mix(in srgb, var(--bg-base) 60%, #000); }
.xb3d260ed-funnel-tv__dots { display: flex; justify-content: center; gap: var(--space-3); margin-block-start: var(--space-5); }
.xb3d260ed-funnel-tv__dots button { width: 12px; height: 12px; padding: 0; border-radius: var(--radius-full); border: 1px solid var(--text-muted); background: transparent; cursor: pointer; transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast); }
.xb3d260ed-funnel-tv__dots button:hover { border-color: var(--accent-red); }
.xb3d260ed-funnel-tv__dots button.is-current { background: var(--accent-red); border-color: var(--accent-red); transform: scale(1.2); }
.xb3d260ed-funnel-tv__dots button:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 3px; }

@media (max-width: 560px) {
  .xb3d260ed-funnel-how__list { grid-template-columns: 1fr; }
  .xb3d260ed-funnel-how__card img,
  .xb3d260ed-funnel-how__card:not(:has(img))::after { height: 150px; }
  .xb3d260ed-funnel-nav .btn { max-width: none; }
  .xb3d260ed-funnel-proof__grid { grid-template-columns: repeat(auto-fill, minmax(128px, 1fr)); }
}

.xb3d260ed-apps-grid--guides { grid-template-columns: 1fr; max-width: 860px; margin-inline: auto; }
.xb3d260ed-app-card--guide { gap: var(--space-4); }

.xb3d260ed-app-card__head { align-items: flex-start; }
.xb3d260ed-app-card__icon { flex-shrink: 0; width: 56px; height: 56px; border-radius: var(--radius-lg); background: #fff; object-fit: contain; }
.xb3d260ed-app-card__id { display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-2); flex: 1 1 auto; }
.xb3d260ed-app-card__id .tag { align-self: flex-start; }
.xb3d260ed-app-card__label { color: var(--text-secondary); font-size: var(--text-sm); font-weight: var(--weight-semibold); margin: var(--space-2) 0 0; }

.xb3d260ed-app-devices { display: flex; flex-wrap: wrap; gap: var(--space-3); margin: 0; padding: 0; }
.xb3d260ed-app-devices__item { display: grid; place-items: center; }
.xb3d260ed-app-devices__item img { display: block; width: auto; height: 30px; object-fit: contain; background: #fff; border-radius: var(--radius-sm); padding: 4px 8px; }
.xb3d260ed-app-card__guides { display: flex; flex-direction: column; gap: var(--space-3); }

.xb3d260ed-app-card__guides .xb3d260ed-device-card { background: var(--bg-elevated); }
.xb3d260ed-app-card__guides .xb3d260ed-device-card__summary { padding: var(--space-4) var(--space-5); }
.xb3d260ed-app-card__guides .xb3d260ed-device-card__body { padding: 0 var(--space-5) var(--space-5); display: flex; flex-direction: column; gap: var(--space-5); align-items: flex-start; }
.xb3d260ed-device-card__id { display: flex; align-items: center; gap: var(--space-3); min-width: 0; }
.xb3d260ed-device-card__mark { flex-shrink: 0; width: auto; height: 26px; object-fit: contain; background: #fff; border-radius: var(--radius-sm); padding: 3px 6px; }
.xb3d260ed-apps-steps__detail { display: block; color: var(--text-muted); font-size: var(--text-sm); font-style: normal; margin-top: 2px; }

.xb3d260ed-apps-code { align-self: stretch; background: var(--bg-base); border: 2px dashed color-mix(in srgb, var(--accent-red) 60%, transparent); border-radius: var(--radius-lg); padding: var(--space-4); display: flex; flex-direction: column; align-items: center; gap: var(--space-2); text-align: center; }
.xb3d260ed-apps-code__label { color: var(--text-primary); font-size: var(--text-sm); font-weight: var(--weight-semibold); margin: 0; }
.xb3d260ed-apps-code__value { font-size: clamp(1.75rem, 7vw, 2.5rem); line-height: 1.05; letter-spacing: .12em; color: var(--accent-red); font-weight: var(--weight-bold); }
.xb3d260ed-apps-code__hint { color: var(--text-muted); font-size: var(--text-sm); margin: 0; }
@media (max-width: 640px) {
  .xb3d260ed-app-card__icon { width: 44px; height: 44px; }
  .xb3d260ed-app-devices__item img { height: 26px; }
}
