

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

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

.x22ff5853-logo { display: inline-flex; align-items: center; flex-shrink: 0; }

.x22ff5853-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;
}
.x22ff5853-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;
}
.x22ff5853-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);
}
.x22ff5853-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);
}
.x22ff5853-nav-link:hover::after { transform: scaleX(1); }

.x22ff5853-header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-inline-start: auto;
}
.x22ff5853-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;
}
.x22ff5853-header-btn:hover { background-color: var(--accent-red-hover); }

.x22ff5853-header-account-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 7px 14px;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  white-space: nowrap;
  transition: border-color var(--transition-base), background-color var(--transition-base);
}
.x22ff5853-header-account-btn:hover { border-color: var(--accent-red); background: var(--hover-wash); }

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

.x22ff5853-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);
}
.x22ff5853-mobile-menu[hidden] { display: none; }
.x22ff5853-mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  width: 100%;
  max-width: 480px;
}
.x22ff5853-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);
}

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

  .x22ff5853-header-account-btn { display: none; }
}

.x22ff5853-hero {
  position: relative;
  width: 100%;
  height: clamp(560px, 100dvh, 1080px);
  overflow: hidden;
}
.x22ff5853-hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.03);
  z-index: 0;
}
.x22ff5853-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%);
}
.x22ff5853-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;
}
.x22ff5853-hero__label-wrap { display: flex; align-items: center; gap: var(--space-3); margin-block-end: var(--space-2); }
.x22ff5853-hero__label {
  color: var(--accent-teal);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.x22ff5853-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);
}
.x22ff5853-hero__desc {
  font-size: var(--text-md);
  color: var(--text-on-media-soft);
  max-width: 560px;
  margin-block-start: var(--space-2);
}
.x22ff5853-hero__ctas { display: flex; gap: var(--space-3); margin-block-start: var(--space-4); flex-wrap: wrap; }

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

.x22ff5853-seo-intro { text-align: center; max-width: 880px; margin-inline: auto; }
.x22ff5853-seo-intro__kicker {
  color: var(--accent-teal);
  font-size: var(--text-md);
  font-weight: var(--weight-medium);
  display: block;
  margin-block-end: var(--space-3);
}
.x22ff5853-seo-intro__heading {
  font-size: var(--text-4xl);
  line-height: var(--leading-snug);
  margin-block-end: var(--space-5);
}
.x22ff5853-seo-intro__lead { font-size: var(--text-md); color: var(--text-muted); margin-block-end: var(--space-3); }

.x22ff5853-trust__rating { display: flex; flex-direction: column; align-items: center; gap: var(--space-2); text-align: center; }
.x22ff5853-trust__stars { display: inline-flex; gap: 4px; }
.x22ff5853-trust__rating-text { color: var(--text-secondary); font-size: var(--text-md); }
.x22ff5853-trust__rating-text strong { color: var(--text-primary); }
.x22ff5853-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);
}
.x22ff5853-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;
}
.x22ff5853-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;
}
.x22ff5853-trust__stat-label { font-size: var(--text-xs); color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; line-height: 1.3; }
.x22ff5853-trust__reassurances { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3) var(--space-6); max-width: 720px; margin-inline: auto; }
.x22ff5853-trust__reassurances > li { display: flex; align-items: center; gap: var(--space-3); color: var(--text-secondary); font-size: var(--text-base); }
.x22ff5853-trust__reassurances > li svg { color: var(--accent-red); flex-shrink: 0; }
@media (max-width: 900px) {
  .x22ff5853-trust__stats { grid-template-columns: repeat(2, 1fr); }
  .x22ff5853-trust__reassurances { grid-template-columns: 1fr; }
}

.x22ff5853-how__header { text-align: center; margin-block-end: var(--space-10); }
.x22ff5853-how__header .section-subtitle { padding-top: 0; text-transform: uppercase; letter-spacing: .1em; }
.x22ff5853-how__header .section-title { max-width: 720px; margin-inline: auto; margin-block-start: var(--space-3); }
.x22ff5853-how__steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-6); position: relative; }
.x22ff5853-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;
}
.x22ff5853-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; }
.x22ff5853-how-step__icon { color: var(--accent-red); }
.x22ff5853-how-step__title { font-size: var(--text-xl); font-weight: var(--weight-semibold); color: var(--text-primary); }
.x22ff5853-how-step__body { font-size: var(--text-base); color: var(--text-muted); line-height: var(--leading-relaxed); }
@media (max-width: 900px) { .x22ff5853-how__steps { grid-template-columns: 1fr; } }

.x22ff5853-devices__header { text-align: center; margin-block-end: var(--space-10); }
.x22ff5853-devices__header .section-subtitle { padding-top: 0; text-transform: uppercase; letter-spacing: .1em; }
.x22ff5853-devices__header .section-title { max-width: 720px; margin: var(--space-3) auto 0; }
.x22ff5853-devices__lead { color: var(--text-muted); max-width: 560px; margin: var(--space-3) auto 0; font-size: var(--text-md); }
.x22ff5853-devices__grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: var(--space-4); }
.x22ff5853-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);
}
.x22ff5853-device-tile:hover { transform: translateY(-3px); border-color: var(--accent-red); color: var(--accent-red); }
.x22ff5853-device-tile__name { font-size: var(--text-sm); color: var(--text-muted); font-weight: var(--weight-medium); }
@media (max-width: 1100px) { .x22ff5853-devices__grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px)  { .x22ff5853-devices__grid { grid-template-columns: repeat(2, 1fr); } }

.x22ff5853-compare__header { text-align: center; margin-block-end: var(--space-10); }
.x22ff5853-compare__header .section-subtitle { padding-top: 0; text-transform: uppercase; letter-spacing: .1em; }
.x22ff5853-compare__header .section-title { max-width: 720px; margin: var(--space-3) auto 0; }
.x22ff5853-compare__lead { color: var(--text-muted); max-width: 560px; margin: var(--space-3) auto 0; font-size: var(--text-md); }
.x22ff5853-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; }
.x22ff5853-compare__table { width: 100%; border-collapse: collapse; }
.x22ff5853-compare__table th, .x22ff5853-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); }
.x22ff5853-compare__table tr:last-child th, .x22ff5853-compare__table tr:last-child td { border-bottom: none; }
.x22ff5853-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; }
.x22ff5853-compare__col--brand { color: var(--accent-red); }
.x22ff5853-compare__row-label { color: var(--text-primary); font-weight: var(--weight-medium); width: 50%; }
.x22ff5853-compare__cell { text-align: center; color: var(--text-secondary); }
.x22ff5853-compare__cell--brand { text-align: center; color: var(--accent-red); font-weight: var(--weight-semibold); }
.x22ff5853-compare__table svg { vertical-align: middle; }
@media (max-width: 600px) { .x22ff5853-compare__table th, .x22ff5853-compare__table td { padding: var(--space-3); font-size: var(--text-sm); } }

.x22ff5853-kids-card { position: relative; border-radius: var(--radius-2xl); overflow: hidden; isolation: isolate; min-height: 420px; display: flex; align-items: flex-end; }
.x22ff5853-kids-card__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.x22ff5853-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; }
.x22ff5853-kids-card__content { display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-3); padding: var(--space-10); }
.x22ff5853-kids-card__title { font-size: var(--text-3xl); color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.4); }
.x22ff5853-kids-card__desc { color: var(--text-secondary); max-width: 480px; }
@media (max-width: 600px) { .x22ff5853-kids-card { min-height: 320px; } .x22ff5853-kids-card__content { padding: var(--space-6); } .x22ff5853-kids-card__title { font-size: var(--text-2xl); } }

.x22ff5853-features .section-title { margin-block-end: var(--space-10); }
.x22ff5853-features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.x22ff5853-feature-card { display: flex; flex-direction: column; gap: var(--space-3); padding: var(--space-6); background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-lg); transition: transform .2s ease, border-color .2s ease; }
.x22ff5853-feature-card:hover { transform: translateY(-3px); border-color: var(--accent-red); }
.x22ff5853-feature-card__icon { width: 40px; height: 40px; color: var(--accent-red); }
.x22ff5853-feature-card__title { font-size: var(--text-lg); color: var(--text-primary); font-weight: var(--weight-semibold); }
.x22ff5853-feature-card__desc { font-size: var(--text-base); color: var(--text-muted); }
@media (max-width: 900px) { .x22ff5853-features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 478px) { .x22ff5853-features__grid { grid-template-columns: 1fr; } }

.x22ff5853-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);
}
.x22ff5853-cta__sub { order: -1; padding-top: 0; text-transform: uppercase; letter-spacing: .12em; font-size: var(--text-sm); }
.x22ff5853-cta__title { max-width: 640px; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.x22ff5853-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);
}
.x22ff5853-footer-inner { display: flex; flex-direction: column; gap: var(--space-12); }
.x22ff5853-footer-top { display: grid; grid-template-columns: 1.2fr 3fr; gap: var(--space-16); align-items: start; }
.x22ff5853-footer-brand { display: flex; flex-direction: column; gap: var(--space-4); max-width: 320px; }
.x22ff5853-footer-logo { font-size: 2.6rem; line-height: 40px; height: 40px; }
.x22ff5853-footer-tagline { font-size: var(--text-base); color: var(--text-muted); margin-block-start: var(--space-2); }
.x22ff5853-footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
.x22ff5853-footer-col { display: flex; flex-direction: column; gap: var(--space-3); }
.x22ff5853-footer-col-heading { color: var(--text-primary); font-weight: var(--weight-semibold); font-size: var(--text-base); margin-block-end: var(--space-2); }
.x22ff5853-footer-col-link { color: var(--text-muted); font-size: var(--text-base); transition: color var(--transition-base); }
.x22ff5853-footer-col-link:hover { color: var(--text-primary); }
.x22ff5853-footer-divider { height: 1px; background: var(--bg-border); }
.x22ff5853-footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: var(--space-6); flex-wrap: wrap; }
.x22ff5853-footer-pay { display: inline-flex; align-items: center; gap: var(--space-3); flex-wrap: wrap; }
.x22ff5853-footer-pay img { height: 22px; width: auto; max-width: 52px; object-fit: contain; opacity: .85; }
.x22ff5853-footer-copyright { color: var(--text-muted); font-size: var(--text-sm); }

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

.x22ff5853-faq { max-width: 880px; margin-inline: auto; }
.x22ff5853-faq .section-title { margin-block-end: var(--space-10); }
.x22ff5853-faq__list { display: flex; flex-direction: column; gap: var(--space-3); }
.x22ff5853-faq__item {
  background: var(--bg-surface);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  transition: border-color var(--transition-base);
}
.x22ff5853-faq__item[open] { border-color: var(--accent-red); }
.x22ff5853-faq__q {
  cursor: pointer;
  list-style: none;
  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);
}
.x22ff5853-faq__q::-webkit-details-marker { display: none; }
.x22ff5853-faq__q::after { content: '+'; font-size: var(--text-xl); color: var(--accent-red); line-height: 1; flex-shrink: 0; transition: transform var(--transition-base); }
.x22ff5853-faq__item[open] .x22ff5853-faq__q::after { transform: rotate(45deg); }
.x22ff5853-faq__a { padding-block-start: var(--space-3); }
.x22ff5853-faq__a p { color: var(--text-muted); font-size: var(--text-base); line-height: var(--leading-relaxed); }

.x22ff5853-pren-hero { position: relative; background: var(--bg-base); overflow: hidden; }
.x22ff5853-pren-hero__img-wrap { position: absolute; inset: 0; z-index: 0; }
.x22ff5853-pren-hero__bg { width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; }
.x22ff5853-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%);
}
.x22ff5853-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);
}
.x22ff5853-pren-hero__eyebrow { color: var(--text-on-media-soft); font-size: var(--text-sm); font-weight: var(--weight-medium); letter-spacing: .06em; }
.x22ff5853-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); }
.x22ff5853-pren-hero__price-from { color: var(--accent-red); font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: var(--weight-semibold); }
.x22ff5853-pren-hero__price-from strong { font-weight: 900; }
.x22ff5853-pren-hero__price-orig { color: var(--text-on-media-muted); font-size: var(--text-lg); text-decoration: line-through; }
.x22ff5853-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) {
  .x22ff5853-pren-hero__img-wrap { position: relative; height: 58vw; min-height: 210px; max-height: 300px; }
  .x22ff5853-pren-hero__bg { object-position: 72% 28%; }
  .x22ff5853-pren-hero__fade { background: linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(12,12,14,.35) 55%, var(--bg-base) 100%); }
  .x22ff5853-pren-hero__content { padding-top: var(--space-6); }
}

.x22ff5853-plan-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-6); }
.x22ff5853-pcard { position: relative; display: flex; flex-direction: column; 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; }
.x22ff5853-pcard__head { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-3); min-height: 34px; }
.x22ff5853-pcard__badge { flex-shrink: 0; white-space: nowrap; align-self: flex-start; font-size: var(--text-sm); font-weight: var(--weight-semibold); padding: 6px 16px; border-radius: var(--radius-full); }
.x22ff5853-pcard__badge--dark { background: var(--bg-elevated); color: var(--text-primary); border: 1px solid var(--bg-border); }
.x22ff5853-pcard__badge--pink { background: var(--accent-red); color: var(--accent-contrast); }
.x22ff5853-pcard__title { font-size: var(--text-3xl); min-width: 0; overflow-wrap: break-word; }
.x22ff5853-pcard__desc { color: var(--text-muted); font-size: var(--text-base); min-height: 4.4em; }
.x22ff5853-pcard__rule { border: none; border-top: 1px solid var(--bg-border); margin: 0; }
.x22ff5853-pcard__price { display: flex; align-items: baseline; gap: var(--space-3); }
.x22ff5853-pcard__price s { color: var(--text-muted); font-size: var(--text-lg); }
.x22ff5853-pcard__price strong { color: var(--accent-red); font-size: var(--text-3xl); font-weight: var(--weight-bold); }
.x22ff5853-pcard__per { color: var(--text-muted); font-size: var(--text-base); }
.x22ff5853-pcard__terms { display: flex; flex-direction: column; gap: 6px; color: var(--text-secondary); font-size: var(--text-base); }

.x22ff5853-dev-switch { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 0 var(--space-8); flex-wrap: wrap; }
.x22ff5853-dev-switch__label { color: var(--text-secondary); font-weight: var(--weight-medium); font-size: var(--text-sm); }
.x22ff5853-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; }
.x22ff5853-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; }
.x22ff5853-dev-switch__opts button:hover { color: var(--text-primary); }
.x22ff5853-dev-switch__opts button.on { background: var(--accent-red); color: var(--accent-contrast); }

.x22ff5853-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;
}
.x22ff5853-pcard__cta:hover { background: var(--accent-red-hover); }
.x22ff5853-pcard__cta[aria-busy="true"] { opacity: .7; cursor: progress; }
.x22ff5853-pcard__pay-note { text-align: center; color: var(--text-muted); font-size: var(--text-sm); }
@media (max-width: 880px) {
  .x22ff5853-plan-cards { grid-template-columns: 1fr; width: 100%; max-width: 460px; margin-inline: auto; }
  .x22ff5853-pcard__desc { min-height: 0; }
  .x22ff5853-pcard__title { font-size: var(--text-xl); }
}

.x22ff5853-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; }
.x22ff5853-money-back svg { color: var(--accent-red); flex-shrink: 0; }
.x22ff5853-value-props { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); max-width: 880px; margin: var(--space-8) auto 0; }
.x22ff5853-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); }
.x22ff5853-value-prop svg { color: var(--accent-red); flex-shrink: 0; margin-block-start: 2px; }
.x22ff5853-value-prop h3 { font-size: var(--text-md); font-weight: var(--weight-semibold); color: var(--text-primary); }
.x22ff5853-value-prop p { font-size: var(--text-base); color: var(--text-muted); margin-block-start: 4px; }
@media (max-width: 700px) { .x22ff5853-value-props { grid-template-columns: 1fr; } }

.x22ff5853-trial-hero { position: relative; overflow: hidden; background: var(--bg-base); }
.x22ff5853-trial-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 30%; }
.x22ff5853-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%); }
.x22ff5853-trial-hero__inner { position: relative; max-width: var(--container-max); margin-inline: auto; padding: clamp(56px, 9vw, 110px) var(--page-gutter); }
.x22ff5853-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); }
.x22ff5853-hl { color: var(--accent-pink); }
.x22ff5853-trial-hero__lede { color: var(--text-secondary); font-size: var(--text-md); line-height: 1.5; max-width: 520px; }
.x22ff5853-trial-hero__trust { display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-6); margin-top: var(--space-6); }
.x22ff5853-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); }
.x22ff5853-trial-hero__trust svg { color: var(--accent-pink); flex-shrink: 0; }
.x22ff5853-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); }

.x22ff5853-formsec { background: var(--bg-base); padding: clamp(40px, 6vw, 72px) var(--page-gutter); display: flex; justify-content: center; }
.x22ff5853-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; }
.x22ff5853-trial-card h2 { font-size: var(--text-lg); font-weight: var(--weight-bold); color: var(--text-primary); margin-bottom: var(--space-3); }
.x22ff5853-trial-card__sub { color: var(--text-muted); font-size: var(--text-base); margin-bottom: var(--space-5); line-height: 1.5; }
.x22ff5853-trial-card form { display: flex; flex-direction: column; gap: var(--space-4); }
.x22ff5853-trial-card label { display: flex; flex-direction: column; gap: 6px; font-size: var(--text-sm); color: var(--text-label); font-weight: var(--weight-medium); }
.x22ff5853-field-label { font-size: var(--text-sm); color: var(--text-label); font-weight: var(--weight-medium); }
.x22ff5853-trial-card input, .x22ff5853-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; }
.x22ff5853-trial-card input:focus, .x22ff5853-trial-card select:focus { outline: none; border-color: var(--accent-pink); }
.x22ff5853-trial-card input::placeholder { color: var(--text-disabled); }
.x22ff5853-mono { font-family: ui-monospace, Menlo, monospace; letter-spacing: 2px; text-transform: uppercase; }
.x22ff5853-hint { font-weight: var(--weight-normal); color: var(--text-muted); font-size: var(--text-sm); line-height: 1.45; }
.x22ff5853-err { color: var(--color-error); font-size: var(--text-base); margin: 0; }
.x22ff5853-fine { font-size: var(--text-sm); color: var(--text-muted); text-align: center; line-height: 1.5; }
.x22ff5853-fine a { color: var(--text-secondary); text-decoration: underline; }
.x22ff5853-trial-submit { width: 100%; padding: 14px; font-size: var(--text-md); }
.x22ff5853-app-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.x22ff5853-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; }
.x22ff5853-pill:hover { border-color: var(--accent-pink); }
.x22ff5853-pill.is-active { background: var(--accent-red); border-color: var(--accent-red); color: var(--accent-contrast); }
.x22ff5853-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); }

.x22ff5853-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); }
.x22ff5853-thanks__ic { width: 84px; height: 84px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, #22c55e, #16a34a); color: #fff; }
.x22ff5853-thanks__title { font-size: var(--text-3xl); }
.x22ff5853-thanks__lead { color: var(--text-muted); font-size: var(--text-md); max-width: 520px; }
.x22ff5853-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); }
.x22ff5853-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); }
.x22ff5853-thanks__rows { display: flex; flex-direction: column; gap: var(--space-3); }
.x22ff5853-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); }
.x22ff5853-thanks__row:last-child { border-bottom: none; padding-block-end: 0; }
.x22ff5853-thanks__row dt { color: var(--text-muted); font-size: var(--text-sm); flex-shrink: 0; }
.x22ff5853-thanks__row dd { color: var(--text-primary); font-size: var(--text-base); font-weight: var(--weight-medium); text-align: right; word-break: break-word; }
.x22ff5853-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; }
.x22ff5853-thanks__btn { flex: 1; min-width: 180px; }
.x22ff5853-thanks__note { font-size: var(--text-sm); color: var(--text-muted); }
.x22ff5853-thanks__back { font-size: var(--text-sm); }
.x22ff5853-thanks__back a { color: var(--text-muted); }
.x22ff5853-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); }

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

.x22ff5853-contact-shell { display: flex; flex-direction: column; gap: var(--space-10); max-width: 720px; margin-inline: auto; text-align: center; }
.x22ff5853-contact-header h1 { font-size: var(--text-5xl); line-height: var(--leading-tight); }
.x22ff5853-contact-header .section-subtitle { padding-top: 0; text-transform: uppercase; letter-spacing: .1em; }
.x22ff5853-contact-header > p:last-child { color: var(--text-muted); font-size: var(--text-md); line-height: var(--leading-relaxed); margin-top: var(--space-3); }
.x22ff5853-contact-channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.x22ff5853-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); }
.x22ff5853-contact-channel:hover { border-color: var(--accent-pink); transform: translateY(-2px); }
.x22ff5853-contact-channel:focus-visible { outline: 2px solid var(--accent-pink); outline-offset: 3px; }
.x22ff5853-contact-channel:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.x22ff5853-contact-channel__name { color: var(--text-primary); font-weight: var(--weight-semibold); font-size: var(--text-md); }
.x22ff5853-contact-channel__hint { color: var(--text-muted); font-size: var(--text-sm); line-height: var(--leading-normal); }
@media (max-width: 768px) { .x22ff5853-contact-channels { grid-template-columns: 1fr; } }

.x22ff5853-contact__head { text-align: center; margin-block-end: var(--space-10); }
.x22ff5853-contact__lead { color: var(--text-muted); font-size: var(--text-md); max-width: 560px; margin: var(--space-3) auto 0; }
.x22ff5853-contact__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); max-width: 1000px; margin-inline: auto; }
.x22ff5853-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; }
.x22ff5853-contact-card h2 { font-size: var(--text-lg); color: var(--text-primary); }
.x22ff5853-contact-card p { color: var(--text-muted); font-size: var(--text-base); }
.x22ff5853-contact-card__meta { color: var(--text-secondary); font-weight: var(--weight-semibold); }
@media (max-width: 880px) { .x22ff5853-contact__grid { grid-template-columns: 1fr; max-width: 460px; } }

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

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

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

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

.x22ff5853-guide-prose, .x22ff5853-guide-steps, .x22ff5853-guide-links { margin-block: var(--space-16); }
.x22ff5853-guide-prose .section-title, .x22ff5853-guide-steps .section-title, .x22ff5853-guide-links .section-title { margin-bottom: var(--space-8); }
.x22ff5853-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; }
.x22ff5853-guide-hero--split .section-title, .x22ff5853-guide-hero--split .section-subtitle { text-align: left; }
.x22ff5853-guide-hero__media { margin: 0; }
.x22ff5853-guide-hero__media img { width: 100%; height: auto; border-radius: var(--radius-2xl); border: 1px solid var(--bg-border); box-shadow: var(--shadow-card); }
.x22ff5853-guide-prose__flow { max-width: 860px; margin: 0 auto; display: grid; gap: var(--space-10); }
.x22ff5853-guide-prose__block { position: relative; padding: var(--space-6) var(--space-7); background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-2xl); }
.x22ff5853-guide-prose__block::before { content: ""; position: absolute; inset: var(--space-6) auto var(--space-6) 0; width: 3px; border-radius: 2px; background: linear-gradient(180deg, var(--accent-red), transparent); }
.x22ff5853-guide-prose__title { font-size: var(--text-xl); margin: 0 0 var(--space-3); }
.x22ff5853-guide-prose__block p, .x22ff5853-guide-prose__row-text p { color: var(--text-secondary); font-size: var(--text-md); line-height: var(--leading-loose, 1.75); margin: 0; }
.x22ff5853-guide-prose__row { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: var(--space-10); align-items: center; }
.x22ff5853-guide-prose__row--flip .x22ff5853-guide-prose__row-text { order: 2; }
.x22ff5853-guide-prose__row--flip .x22ff5853-guide-prose__row-media { order: 1; }
.x22ff5853-guide-prose__row-media { margin: 0; }
.x22ff5853-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); }
.x22ff5853-guide-steps__list { max-width: 720px; margin: 0 auto; display: grid; gap: var(--space-5); list-style: none; padding: 0; counter-reset: none; }
.x22ff5853-guide-steps__item { display: flex; gap: var(--space-4); align-items: flex-start; }
.x22ff5853-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); }
.x22ff5853-guide-steps__title { font-size: var(--text-md); margin: 0 0 var(--space-2); }
.x22ff5853-guide-steps__item p { color: var(--text-muted); line-height: var(--leading-relaxed); margin: 0; }
.x22ff5853-guide-links__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); align-items: start; }
.x22ff5853-guide-links__card { background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-2xl); padding: var(--space-6); }
.x22ff5853-guide-links__title { font-size: var(--text-md); margin: 0 0 var(--space-2); }
.x22ff5853-guide-links__title a { color: var(--text-primary); }
.x22ff5853-guide-links__card p { color: var(--text-muted); font-size: var(--text-sm); line-height: var(--leading-relaxed); margin: 0; }
@media (max-width: 900px) { .x22ff5853-guide-links__grid { grid-template-columns: 1fr; } }
@media (max-width: 860px) {
  .x22ff5853-guide-hero--split { grid-template-columns: 1fr; text-align: center; }
  .x22ff5853-guide-hero--split .section-title, .x22ff5853-guide-hero--split .section-subtitle { text-align: center; }
  .x22ff5853-guide-prose__row, .x22ff5853-guide-prose__row--flip { grid-template-columns: 1fr; gap: var(--space-5); }
  .x22ff5853-guide-prose__row--flip .x22ff5853-guide-prose__row-text { order: 1; }
  .x22ff5853-guide-prose__row--flip .x22ff5853-guide-prose__row-media { order: 2; }
}

.x22ff5853-editorial .section-title { text-align: center; margin-bottom: var(--space-8); }
.x22ff5853-editorial__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-6); max-width: 860px; margin: 0 auto; }
.x22ff5853-editorial__block { position: relative; background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-2xl); padding: var(--space-6) var(--space-7); }
.x22ff5853-editorial__block::before { content: ""; position: absolute; inset: var(--space-6) auto var(--space-6) 0; width: 3px; border-radius: 2px; background: linear-gradient(180deg, var(--accent-red), transparent); }
.x22ff5853-editorial__title { font-size: var(--text-xl); margin: 0 0 var(--space-3); }
.x22ff5853-editorial__body { color: var(--text-secondary); font-size: var(--text-md); line-height: var(--leading-loose, 1.75); margin: 0; }

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

.x22ff5853-media-card { display: flex; flex-direction: column; gap: var(--space-2); min-width: 0; transition: transform .2s ease; }
.x22ff5853-media-card__poster img { display: block; }
.x22ff5853-media-card:hover { transform: translateY(-3px); }
.x22ff5853-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); }
.x22ff5853-media-card__poster img { width: 100%; height: 100%; object-fit: cover; }
.x22ff5853-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)); }
.x22ff5853-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); }
.x22ff5853-media-card__body { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-2); }
.x22ff5853-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; }
.x22ff5853-media-card__year { font-size: var(--text-sm); color: var(--text-muted); flex-shrink: 0; }
@media (max-width: 1100px) { .x22ff5853-media-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px)  { .x22ff5853-media-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 460px)  { .x22ff5853-media-grid { grid-template-columns: repeat(2, 1fr); } }

.x22ff5853-cat-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); margin-block-end: var(--space-10); }
.x22ff5853-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); }
.x22ff5853-cat-stats__v { font-size: var(--text-2xl); font-weight: var(--weight-bold); color: var(--accent-red); }
.x22ff5853-cat-stats__l { font-size: var(--text-sm); color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.x22ff5853-cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
.x22ff5853-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; }
.x22ff5853-cat-tile:hover { transform: translateY(-3px); border-color: var(--accent-red); }
.x22ff5853-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%; }
.x22ff5853-cat-tile__icon { color: var(--accent-red); }
.x22ff5853-cat-tile__name { font-size: var(--text-lg); font-weight: var(--weight-semibold); color: var(--text-primary); }
.x22ff5853-cat-tile__count { font-size: var(--text-sm); color: var(--text-muted); }
.x22ff5853-cat-tile__blurb { font-size: var(--text-sm); color: var(--text-muted); line-height: var(--leading-relaxed); }
@media (max-width: 900px) { .x22ff5853-cat-grid, .x22ff5853-cat-stats { grid-template-columns: repeat(2, 1fr); } }

.x22ff5853-league-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.x22ff5853-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; }
.x22ff5853-league-tile:hover { background: var(--surface-tile-hover); transform: scale(1.04); }
@media (max-width: 900px) { .x22ff5853-league-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .x22ff5853-league-grid { grid-template-columns: repeat(2, 1fr); } }

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

.x22ff5853-device-guides { margin-block-end: var(--space-12); }
.x22ff5853-device-guides .section-title { margin-bottom: var(--space-4); }
.x22ff5853-device-guides__lead { color: var(--text-muted); text-align: center; max-width: 640px; margin: 0 auto var(--space-8); line-height: var(--leading-relaxed); }
.x22ff5853-device-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); align-items: start; margin-top: var(--space-8); }
.x22ff5853-device-card { background: var(--bg-surface); border: 1px solid var(--bg-border); border-radius: var(--radius-2xl); overflow: hidden; }
.x22ff5853-device-card[open] { border-color: var(--accent-soft-border); }
.x22ff5853-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; }
.x22ff5853-device-card__summary::-webkit-details-marker { display: none; }
.x22ff5853-device-card__summary:hover { background: var(--hover-wash); }
.x22ff5853-device-card__name { font-size: var(--text-md); font-weight: var(--weight-semibold); margin: 0; }
.x22ff5853-device-card__tag { display: block; color: var(--text-muted); font-size: var(--text-sm); margin-top: 2px; }
.x22ff5853-device-card__hint { display: inline-flex; align-items: center; gap: 4px; color: var(--text-muted); font-size: var(--text-sm); white-space: nowrap; }
.x22ff5853-device-card[open] .x22ff5853-device-card__hint svg { transform: rotate(180deg); }
.x22ff5853-device-card__body { padding: 0 var(--space-6) var(--space-6); }
.x22ff5853-device-card__app { margin: 0 0 var(--space-4); }
.x22ff5853-device-card__body .x22ff5853-apps-steps li { font-size: var(--text-sm); }
.x22ff5853-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) { .x22ff5853-device-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .x22ff5853-device-grid { grid-template-columns: 1fr; } }
.x22ff5853-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); }
.x22ff5853-app-card__head { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); }
.x22ff5853-app-card__name { font-size: var(--text-lg); color: var(--text-primary); font-weight: var(--weight-semibold); }
.x22ff5853-app-card p { color: var(--text-muted); font-size: var(--text-base); }
.x22ff5853-apps-cols { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-10); align-items: start; }
.x22ff5853-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); }
.x22ff5853-apps-table { width: 100%; border-collapse: collapse; }
.x22ff5853-apps-table th, .x22ff5853-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); }
.x22ff5853-apps-table th { color: var(--text-secondary); font-weight: var(--weight-medium); }
.x22ff5853-apps-table td { color: var(--accent-red); font-weight: var(--weight-semibold); text-align: right; }
.x22ff5853-apps-steps { display: flex; flex-direction: column; gap: var(--space-4); }
.x22ff5853-apps-steps li { display: flex; gap: var(--space-3); align-items: flex-start; font-size: var(--text-base); color: var(--text-secondary); }
.x22ff5853-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; }
.x22ff5853-apps__support { margin-block-start: var(--space-5); font-size: var(--text-sm); color: var(--text-muted); }
.x22ff5853-apps__support a { color: var(--accent-red); font-weight: var(--weight-semibold); }
@media (max-width: 860px) { .x22ff5853-apps-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } .x22ff5853-apps-cols { grid-template-columns: 1fr; gap: var(--space-8); } }

.x22ff5853-row__header, .x22ff5853-sportlogos__header {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: var(--space-4); margin-block-end: var(--space-5);
}
.x22ff5853-row__link { color: var(--text-muted); font-size: var(--text-base); font-weight: var(--weight-medium); white-space: nowrap; transition: color var(--transition-base); }
.x22ff5853-row__link:hover { color: var(--accent-red); }

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

.x22ff5853-sportlogos { margin-block-start: var(--space-4); }
.x22ff5853-sportlogos__rail { display: flex; gap: 12px; }
.x22ff5853-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;
}
.x22ff5853-sportlogo:hover { background-color: var(--surface-tile-hover); transform: scale(1.05); }
.x22ff5853-sportlogo img { width: 70%; height: 70%; object-fit: contain; }

.x22ff5853-promo__card { position: relative; height: 420px; background: #101012; border-radius: 12px; overflow: hidden; touch-action: pan-y; }
.x22ff5853-promo__slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .6s ease; pointer-events: none; }
.x22ff5853-promo__slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; }
.x22ff5853-promo__logo { position: absolute; top: 16px; left: 16px; width: 72px; height: auto; object-fit: contain; z-index: 5; }
.x22ff5853-promo__content { position: absolute; inset: 0; z-index: 4; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px 20px 40px; }
.x22ff5853-promo__badge { color: var(--accent-teal); font-size: var(--text-sm); font-weight: var(--weight-medium); letter-spacing: .04em; text-transform: uppercase; }
.x22ff5853-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; }
.x22ff5853-promo__desc { display: none; color: #ffffffb8; font-size: var(--text-base); line-height: var(--leading-normal); max-width: 460px; }
.x22ff5853-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; }
.x22ff5853-promo__cta:hover { background: var(--accent-red-hover); }
.x22ff5853-promo__cta svg { height: 15px; fill: currentColor; }
.x22ff5853-promo__media { position: absolute; inset: 0; z-index: 0; }
.x22ff5853-promo__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.x22ff5853-promo__overlay { position: absolute; inset: 0; background: #110f0e59; }

.x22ff5853-promo__gradient { position: absolute; inset: 0; background: linear-gradient(0deg, #101012 0, transparent 55%), linear-gradient(90deg, #101012ef 0, #101012a8 26%, transparent 55%); }
.x22ff5853-promo__dots { position: absolute; z-index: 6; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.x22ff5853-promo__dot { width: 8px; height: 8px; border-radius: 50%; background: #ffffff59; transition: background-color .2s ease, width .2s ease; cursor: pointer; }
.x22ff5853-promo__dot.is-active { width: 22px; border-radius: 4px; background: var(--accent-red); }
.x22ff5853-promo__toggle { position: absolute; z-index: 7; right: 12px; bottom: 7px; display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid #ffffff38; border-radius: 50%; background: #110f0eb8; color: #fff; cursor: pointer; transition: background-color .2s ease, border-color .2s ease; }
.x22ff5853-promo__toggle[hidden] { display: none; }
.x22ff5853-promo__toggle:hover { background: #110f0ee8; border-color: #ffffff80; }
.x22ff5853-promo__toggle:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.x22ff5853-promo__toggle svg { width: 18px; height: 18px; fill: currentColor; }
.x22ff5853-promo__toggle .x22ff5853-promo__play-icon { display: none; }
.x22ff5853-promo__toggle.is-paused .x22ff5853-promo__pause-icon { display: none; }
.x22ff5853-promo__toggle.is-paused .x22ff5853-promo__play-icon { display: block; }
@media (min-width: 768px) {
  .x22ff5853-promo__card { height: 500px; }
  .x22ff5853-promo__logo { top: 24px; left: 28px; width: 100px; }
  .x22ff5853-promo__content { width: 52%; padding: 40px 48px 56px 40px; }
  .x22ff5853-promo__title { z-index: 4; }
  .x22ff5853-promo__desc { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

  .x22ff5853-promo__media { inset: 0; width: 100%; }
  .x22ff5853-promo__gradient { background: linear-gradient(0deg, #101012 0, transparent 45%), linear-gradient(90deg, var(--bg-base) 0, #101012b8 30%, transparent 60%); }
}

.x22ff5853-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; }
.x22ff5853-league-card:hover { transform: translateY(-3px); border-color: var(--accent-red); }
.x22ff5853-league-card__media { position: relative; aspect-ratio: 16/9; background: var(--bg-elevated); }
.x22ff5853-league-card__media > img:first-child { width: 100%; height: 100%; object-fit: cover; }
.x22ff5853-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; }
.x22ff5853-league-card__body { padding: var(--space-7) var(--space-5) var(--space-5); }
.x22ff5853-league-card__name { font-size: var(--text-lg); color: var(--text-primary); font-weight: var(--weight-semibold); }
.x22ff5853-league-card__desc { color: var(--text-muted); font-size: var(--text-base); margin-block-start: var(--space-2); }

.x22ff5853-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); }
.x22ff5853-channels-hero .container { display: flex; flex-direction: column; gap: var(--space-3); }
.x22ff5853-channels-hero__eyebrow { color: var(--accent-red); font-size: var(--text-sm); font-weight: var(--weight-semibold); letter-spacing: .06em; text-transform: uppercase; }
.x22ff5853-channels-hero__title { color: var(--text-primary); font-size: clamp(3rem, 5vw, 5rem); font-weight: var(--weight-bold); line-height: 1.1; }
.x22ff5853-channels-hero__desc { color: var(--text-muted); font-size: var(--text-md); max-width: 600px; }

.x22ff5853-channels-hero--split .container { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: var(--space-10); align-items: center; }
.x22ff5853-channels-hero--split .x22ff5853-channels-hero__text { display: flex; flex-direction: column; gap: var(--space-3); }
.x22ff5853-channels-hero__media { margin: 0; }
.x22ff5853-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) {
  .x22ff5853-channels-hero--split .container { grid-template-columns: 1fr; gap: var(--space-6); }
}
.x22ff5853-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: var(--space-12); }
.x22ff5853-channels-promo:hover { filter: brightness(1.05); }
.x22ff5853-channels__h { font-size: var(--text-2xl); color: var(--text-primary); margin: var(--space-10) 0 var(--space-6); }
.x22ff5853-net-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-4); }
.x22ff5853-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); }
.x22ff5853-net-tile img { width: 120px; height: 60px; max-width: 70%; max-height: 60%; object-fit: contain; }
.x22ff5853-country-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.x22ff5853-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; }
.x22ff5853-country-tile:hover { border-color: var(--accent-red); transform: translateY(-2px); }
.x22ff5853-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%; }
.x22ff5853-country-tile__head { display: flex; align-items: center; gap: var(--space-3); font-size: var(--text-base); font-weight: var(--weight-semibold); }
.x22ff5853-country-tile__flag { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.x22ff5853-country-tile__blurb { font-size: var(--text-sm); color: var(--text-muted); line-height: var(--leading-relaxed); }
@media (max-width: 900px) { .x22ff5853-net-grid { grid-template-columns: repeat(3, 1fr); } .x22ff5853-country-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .x22ff5853-net-grid { grid-template-columns: repeat(2, 1fr); } .x22ff5853-country-grid { grid-template-columns: 1fr; } }

.x22ff5853-pcard__apps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.x22ff5853-pcard__app { aspect-ratio: 1; border-radius: 14px; overflow: hidden; background: var(--bg-elevated); }
.x22ff5853-pcard__app img { width: 100%; height: 100%; object-fit: cover; display: block; }
.x22ff5853-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); }

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

.x22ff5853-modal { position: fixed; inset: 0; z-index: var(--z-modal); display: flex; align-items: center; justify-content: center; padding: var(--space-5); }
.x22ff5853-modal[hidden] { display: none; }
.x22ff5853-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(2px); }
.x22ff5853-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; }
.x22ff5853-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; }
.x22ff5853-modal__x:hover { color: var(--text-primary); background: var(--bg-elevated); }
.x22ff5853-modal__title { font-size: var(--text-xl); color: var(--text-primary); }
.x22ff5853-modal__plan { color: var(--accent-red); font-weight: var(--weight-semibold); font-size: var(--text-md); margin-block: var(--space-2) var(--space-5); }
.x22ff5853-modal__panel form { display: flex; flex-direction: column; gap: var(--space-4); }
.x22ff5853-modal__panel label { display: flex; flex-direction: column; gap: 6px; font-size: var(--text-sm); color: var(--text-label); font-weight: var(--weight-medium); }
.x22ff5853-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; }
.x22ff5853-modal__panel input:focus { outline: none; border-color: var(--accent-pink); }
.x22ff5853-modal__panel input::placeholder { color: var(--text-disabled); }

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

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

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

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

.x22ff5853-hero .btn--secondary { background-color: rgba(255, 255, 255, .18); color: var(--text-on-media); }
.x22ff5853-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); }

.x22ff5853-nav-group { position: relative; display: inline-flex; }
.x22ff5853-nav-link--parent { display: inline-flex; align-items: center; gap: 5px; }
.x22ff5853-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);
}
.x22ff5853-nav-group:hover .x22ff5853-nav-drop,
.x22ff5853-nav-group:focus-within .x22ff5853-nav-drop { display: flex; }
.x22ff5853-nav-drop::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.x22ff5853-nav-drop__link { padding: 9px 12px; border-radius: var(--radius-sm); color: var(--text-secondary); font-size: var(--text-base); white-space: nowrap; }
.x22ff5853-nav-drop__link:hover, .x22ff5853-nav-drop__link:focus-visible { background: var(--hover-wash); color: var(--text-primary); }
.x22ff5853-mobile-menu-link--child { padding-inline-start: 26px; font-size: 1.4rem; opacity: .88; }

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

.x22ff5853-home-plans__head { text-align: center; max-width: 720px; margin: 0 auto var(--space-6); }
.x22ff5853-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); }
.x22ff5853-home-plans__body { color: var(--text-muted); font-size: var(--text-base); line-height: var(--leading-relaxed); margin-block-start: var(--space-3); }

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

.x22ff5853-trial-assure { display: flex; flex-direction: column; gap: 7px; margin-top: var(--space-4); }
.x22ff5853-trial-assure li { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: var(--text-sm); }
.x22ff5853-trial-assure svg { color: var(--color-success); flex-shrink: 0; }
.x22ff5853-trial-protocol__head { text-align: center; max-width: 760px; margin: 0 auto var(--space-8); }
.x22ff5853-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); }
.x22ff5853-trial-protocol__lead { color: var(--text-muted); font-size: var(--text-base); line-height: var(--leading-relaxed); margin-block-start: var(--space-3); }
.x22ff5853-trial-protocol__list { list-style: none; counter-reset: protocol; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: var(--space-4); max-width: 1100px; margin: 0 auto; padding: 0; }
.x22ff5853-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); }
.x22ff5853-trial-protocol__list h3 { font-size: var(--text-md); margin: 0 0 var(--space-2); color: var(--text-primary); }
.x22ff5853-trial-protocol__list h3::before { content: counter(protocol) ". "; color: var(--accent-red); font-weight: var(--weight-bold); }
.x22ff5853-trial-protocol__list p { color: var(--text-muted); font-size: var(--text-base); line-height: var(--leading-relaxed); margin: 0; }
.x22ff5853-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); }
.x22ff5853-trial-protocol__after h3 { color: var(--text-primary); font-size: var(--text-md); margin: 0 0 var(--space-2); }
.x22ff5853-trial-protocol__after p { color: var(--text-secondary); font-size: var(--text-base); line-height: var(--leading-relaxed); margin: 0; }

.x22ff5853-co-renewal { text-align: center; color: #6b6770; font-size: var(--text-xs); margin-top: 6px; }
.x22ff5853-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; }
.x22ff5853-thanks__upsell p { margin: 0; color: var(--text-muted); font-size: var(--text-base); }

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

.x22ff5853-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; }

.x22ff5853-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); }
.x22ff5853-article-rail__header .section-title { text-align: start; }
.x22ff5853-article-rail__browse { color: var(--text-link); font-size: var(--text-sm); font-weight: var(--weight-medium); white-space: nowrap; }
.x22ff5853-article-rail__browse:hover { color: var(--text-primary); }
.x22ff5853-article-rail__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
@media (max-width: 900px) { .x22ff5853-article-rail__grid { grid-template-columns: 1fr; } }

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

.x22ff5853-trial-protocol__list:has(> :nth-child(4):last-child),
.x22ff5853-features__grid:has(> :nth-child(4):last-child),
.x22ff5853-guide-links__grid:has(> :nth-child(4):last-child),
.x22ff5853-fix-triage__grid:has(> :nth-child(4):last-child),
.x22ff5853-contact__grid:has(> :nth-child(4):last-child),
.x22ff5853-apps-grid:has(> :nth-child(4):last-child),
.x22ff5853-device-grid:has(> :nth-child(4):last-child),
.x22ff5853-about-grid:has(> :nth-child(4):last-child),
.x22ff5853-post-list:has(> :nth-child(4):last-child),
.x22ff5853-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) {
  .x22ff5853-trial-protocol__list:has(> :nth-child(4):last-child),
  .x22ff5853-features__grid:has(> :nth-child(4):last-child),
  .x22ff5853-guide-links__grid:has(> :nth-child(4):last-child),
  .x22ff5853-fix-triage__grid:has(> :nth-child(4):last-child),
  .x22ff5853-contact__grid:has(> :nth-child(4):last-child),
  .x22ff5853-apps-grid:has(> :nth-child(4):last-child),
  .x22ff5853-device-grid:has(> :nth-child(4):last-child),
  .x22ff5853-about-grid:has(> :nth-child(4):last-child),
  .x22ff5853-post-list:has(> :nth-child(4):last-child),
  .x22ff5853-article-rail__grid:has(> :nth-child(4):last-child) { grid-template-columns: 1fr; }
}

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

.x22ff5853-reviews__rating { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--space-3); margin-block-start: var(--space-6); }
.x22ff5853-reviews__stars { display: inline-flex; gap: 2px; line-height: 0; }
.x22ff5853-reviews__rating-text { color: var(--text-secondary); font-size: var(--text-sm); }

.x22ff5853-reviews__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); margin-block-start: var(--space-8); padding: 0; list-style: none; }
.x22ff5853-review-card { min-width: 0; display: flex; 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; }
.x22ff5853-review-card:hover { transform: translateY(-3px); border-color: var(--accent-red); }
.x22ff5853-review-card__figure { display: flex; flex: 1; flex-direction: column; margin: 0; }
.x22ff5853-review-card__photo { overflow: hidden; aspect-ratio: 9/10; background: var(--bg-elevated); }
.x22ff5853-review-card__photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.x22ff5853-review-card__body { display: flex; flex: 1; flex-direction: column; padding: var(--space-5); }
.x22ff5853-review-card__quote { margin: 0; }
.x22ff5853-review-card__headline { color: var(--text-primary); font-size: var(--text-md); font-weight: var(--weight-semibold); line-height: var(--leading-tight); overflow-wrap: anywhere; }
.x22ff5853-review-card__text { margin-block-start: var(--space-3); color: var(--text-muted); font-size: var(--text-base); line-height: var(--leading-relaxed); }
.x22ff5853-review-card__meta { margin-block-start: auto; padding-block-start: var(--space-5); }
.x22ff5853-review-card__stars { display: flex; gap: 1px; line-height: 0; margin-block-end: var(--space-2); }
.x22ff5853-review-card__flag { width: 16px; height: auto; border-radius: 2px; flex-shrink: 0; }
.x22ff5853-review-card__name { display: block; color: var(--text-primary); font-size: var(--text-base); font-weight: var(--weight-semibold); font-style: normal; }
.x22ff5853-review-card__where { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-1); margin-block-start: 2px; color: var(--text-secondary); font-size: var(--text-xs); }
.x22ff5853-review-card__date { display: block; margin-block-start: 2px; color: var(--text-muted); font-size: var(--text-xs); }

@media (max-width: 1080px) { .x22ff5853-reviews__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .x22ff5853-reviews__grid { grid-template-columns: 1fr; gap: var(--space-5); } }
