:root {
  --color-accent: #0711a2;
  --color-cta: #30cc05;
  --font-family: Inter;
  --font-weight-body: 400;
  --radius-card: 12px;
  --radius-button: 8px;
  --spacing-section: 4rem;
  --spacing-content: 1100px;
}
:root {
  
  --bg-page:        #0f1117;
  --bg-surface:     #151929;
  --bg-card:        #1a1f2e;
  --bg-card-inner:  #242938;
  --bg-raised:      #2d3748;
  --bg-hover:       #1e2638;
  
  --border:         #1e2535;
  --border-alt:     #2d3748;
  --border-section: #374151;
  
  --text-primary:   #e2e8f0;
  --text-muted:     #94a3b8;
  --text-body:      #cbd5e1;
  --text-sub:       #a0aec0;
  --text-faint:     #6b7280;
  --text-dim:       #4b5563;
  --text-label:     #8892a4;
  --text-value:     #c9d1e0;
  
  --bg-tip:         #1a2e1a;
  --bg-warning:     #2d1f0e;
  --bg-info:        #1a1f2e;
  --bg-pros:        #1a2e1a;
  --bg-cons:        #2d1a1a;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: system-ui, sans-serif;
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.7;
}
.site-header {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.header-row {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 62px; display: flex; align-items: center;
  justify-content: space-between; position: relative;
}
.brand-link {
  color: var(--accent-light);
  font-weight: 800; font-size: 1.15rem;
  text-decoration: none; display: flex; align-items: center; gap: 4px;
}
.brand-logo { height: 46px; width: auto; max-width: 140px; object-fit: contain; border-radius: 6px; }
.main-nav { list-style: none; display: flex; column-gap: 20px; row-gap: 6px; flex-wrap: wrap; align-items: center; --msep-color: var(--text-primary); }
.main-nav a {
  color: var(--text-muted); white-space: nowrap;
  text-decoration: none; font-size: 0.88rem; transition: color 0.2s;
}
.main-nav a:hover { color: var(--accent-light); }
.nav-has-sub { position: relative; }
.nav-subpanel {
  display: none; position: absolute; top: calc(100% + 6px); left: 50%;
  transform: translateX(-50%);
  background: var(--bg-surface); border: 1px solid var(--border-alt);
  border-radius: 10px; padding: 8px 0; min-width: 190px;
  box-shadow: 0 8px 24px rgba(0,0,0,.45); z-index: 200;
  list-style: none;
}
.y08qk   .nav-subpanel { border-radius: 0; }
.submenu-radius-sm     .nav-subpanel { border-radius: 6px; }
.zfix  .nav-subpanel { border-radius: 14px; }
.ez78f     .nav-subpanel { border-radius: 24px; padding: 8px; }
.submenu-radius-sm .nav-subpanel li:first-child a { border-top-left-radius: 4px; border-top-right-radius: 4px; }
.submenu-radius-sm .nav-subpanel li:last-child a { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; }
.zfix .nav-subpanel li:first-child a { border-top-left-radius: 10px; border-top-right-radius: 10px; }
.zfix .nav-subpanel li:last-child a { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; }
.ez78f .nav-subpanel li a { border-radius: 16px; }
.yyid  .nav-subpanel li + li { border-top: 1px solid var(--border-alt); }
.n0skjv .nav-subpanel li + li { border-top: 1px dashed var(--border-alt); }
.submenu-divider-dotted .nav-subpanel li + li { border-top: 1px dotted var(--border-alt); }
.dzi95 .nav-subpanel li + li { border-top: 3px double var(--border-alt); }
.nav-has-sub::after {
  content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 10px;
}
.nav-has-sub:hover .nav-subpanel,
.nav-has-sub:focus-within .nav-subpanel { display: block; }
.nav-subpanel li a {
  display: block; padding: 8px 18px; white-space: nowrap;
  color: var(--text-muted); font-size: 0.86rem; text-decoration: none;
  transition: color .15s, background .15s;
}
.nav-subpanel li a:hover {
  color: var(--accent-light); background: var(--bg-hover);
}
@media (max-width: 640px) {
  .nav-subpanel {
    position: static; transform: none; box-shadow: none;
    border: none; border-radius: 0; background: transparent;
    padding: 0 0 4px 16px;
  }
  .nav-has-sub:hover .nav-subpanel,
  .nav-has-sub:focus-within .nav-subpanel { display: block; }
  .nav-subpanel li a { padding: 8px 16px; font-size: 0.88rem; }
}
.nav-toggle {
  display: none; background: none; border: none;
  color: var(--text-muted); font-size: 1.4rem; cursor: pointer; padding: 4px 8px; line-height: 1;
}
.nav-scrim { display: none; }
@media (max-width: 640px) {
  .nav-scrim {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    z-index: 899; backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
  }
  .nav-scrim.is-open { display: block; }
}
@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .main-nav > li + li::before { display: none !important; }
  .main-nav {
    display: none; flex-direction: column; gap: 0; align-items: stretch; flex-wrap: nowrap;
    position: absolute; top: 56px; left: 0; right: 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border); padding: 8px 0;
  }
  .main-nav.is-open { display: flex; }
  .main-nav li a {
    display: block; padding: 11px 24px; font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
  }
  .main-nav li:last-child a { border-bottom: none; }
}
.hero { min-height: 480px; }
.hero-heading {
  font-size: 2.6rem; font-weight: 800; color: #fff;
  line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.01em;
}
.hero-lede { font-size: 1.15rem; margin-bottom: 28px; max-width: 720px; margin-left: auto; margin-right: auto; }
.hero-align-start .hero-lede { margin-left: 0; margin-right: 0; }
.btn-hero {
  background: var(--cta); color: #fff; text-decoration: none;
  border-radius: 8px; padding: 14px 32px;
  font-size: 1.05rem; font-weight: 700; display: inline-block;
  transition: opacity 0.2s, transform 0.15s;
}
.qviib9d .btn-hero { margin-top: 24px; }
.btn-hero:hover { opacity: 0.88; }
.hero-media {
  position: relative; display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center;
  background-color: var(--bg-surface);
}
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, var(--accent-bg) 100%);
}
.hero-media .hero-content {
  position: relative; z-index: 1;
  width: 100%; max-width: 1100px; padding: 48px 24px;
}
.hero-media .hero-heading { text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.hero-media .hero-lede { color: #e2e8f0; }
.hero-media.tepmiz .hero-content { text-align: center; }
.hero-media.hero-align-start   .hero-content { text-align: left; }
.rhl6v .hero-content {
  width: 100%; max-width: 1100px; padding: 24px 24px;
}
.rhl6v .hero-heading { color: var(--text-primary); text-shadow: none; }
.rhl6v .hero-lede { color: var(--text-muted); }
.rhl6v .btn-hero { margin-top: 16px; }
.rhl6v, .rhl6v.hero { min-height: auto !important; }
.rhl6v.tepmiz .hero-content { text-align: center; }
.rhl6v.hero-align-start   .hero-content { text-align: left; }
@keyframes hg-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@keyframes hg-breathe {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.92; }
}
.pigjq9v .hero-media .hero-veil {
  overflow: hidden;
}
.pigjq9v .hero-media .hero-veil::after {
  content: ''; position: absolute; inset: -50%; width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035; pointer-events: none;
  animation: hg-grain 0.5s steps(1) infinite;
}
@keyframes hg-grain {
  0%, 100% { transform: translate(0, 0); }
  25%      { transform: translate(-5%, -5%); }
  50%      { transform: translate(5%, 0); }
  75%      { transform: translate(0, 5%); }
}
@keyframes hg-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30%, 10%) scale(1.1); }
  66%      { transform: translate(10%, -10%) scale(0.95); }
}
.xetkpk .hero-media .hero-veil {
  overflow: hidden;
}
.xetkpk .hero-media .hero-veil::after {
  content: ''; position: absolute;
  width: 60%; height: 120%; top: -10%; left: -10%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
  filter: blur(80px); pointer-events: none;
  animation: hg-drift 20s ease-in-out infinite;
}
.hero-motion-fadein .hero-flat,
.hero-motion-fadein .t79s9pl,
.hero-motion-fadein .hero-media .hero-veil {
  animation: hg-fadein 1.2s ease-out both;
}
@keyframes hg-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.oh7q4qng .hero-media .hero-veil {
  overflow: hidden;
}
.oh7q4qng .hero-media .hero-veil::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.03) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: hg-shimmer 8s ease-in-out infinite;
}
.lyveb .hero-media .hero-veil {
  animation: hg-breathe 10s ease-in-out infinite;
}
.hero-flat .hero-veil {
  background: none;
}
.hero-flat .hero-heading { color: #fff; }
.hero-flat .hero-lede { color: rgba(255,255,255,0.85); }
.hero-flat .btn-hero { background: #fff; color: var(--cta); }
.hero-flat .btn-hero:hover { opacity: 0.92; }
.hero-motion-fadein .hero-duo {
  animation: hg-fadein 1.2s ease-out both;
}
.hero-duo .hero-heading { text-shadow: none; color: var(--text-primary); }
.hero-duo .hero-lede { color: var(--text-muted); }
body.q66uoen .hero-heading {
  color: var(--accent-light) !important;
  text-shadow: none !important;
}
body.kh7a .hero-heading {
  color: var(--cta) !important;
  text-shadow: none !important;
}
.hero.hero-flat .hero-heading,
section.hero-flat .hero-heading {
  color: #fff !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35) !important;
}
.hero-duo.hero-align-start   .jgqho { align-items: flex-start; text-align: left; }
.hero .boicsy {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  left: auto !important;
  transform: none !important;
  overflow-x: visible !important;
  padding: 0;
}
.boicsy .lt8ub2li.btn-mini {
  padding: 10px 14px !important; font-size: 0.88rem !important;
  font-weight: 700;
  background: var(--cta) !important; color: #fff !important;
  border: none !important;
  display: flex; align-items: center; justify-content: center;
}
.boicsy .lt8ub2li.btn-mini:hover { opacity: 0.85; }
.ysxyh68 .hero-content { padding-bottom: 24px; }
.qviib9d .hero-content { max-width: 1100px; }
@media (max-width: 700px) {
  .hero-duo { grid-template-columns: 1fr !important; grid-template-areas: "text" "media" !important; }
  
  .hero-duo:not(.u5uq9u) .yjid35 { display: none !important; }
  .u5uq9u .yjid35 { padding: 16px; }
  .jgqho  { padding: 36px 24px; }
  .hero-duo~.try0r6l,.obmkz~.try0r6l{max-width:100%;left:0;right:0;transform:none;padding:0 24px}
  .hero, .hero-duo { min-height: 320px !important; }
  .hero-heading { font-size: clamp(1.7rem, 5.5vw, 2.4rem) !important; }
  
  .gsvm5uy,
  .qdt6p,
  .zxjctae1 { grid-template-columns: 1fr !important; }

  

  
  .ysxyh68 { display: flex !important; flex-direction: column !important; }
  .ysxyh68 .hero-content { display: contents; }
  .ysxyh68 .hero-veil { order: 0; }
  .ysxyh68 .hero-heading { order: 1; padding: 32px 24px 0; margin-bottom: 12px; }
  .ysxyh68 .gsvm5uy { order: 2; padding: 0 16px 12px !important; }
  .ysxyh68 .hero-lede { order: 3; padding: 0 24px 24px; margin: 0 auto; }

  
  .qviib9d .hero-content { display: flex; flex-direction: column; }
  .qviib9d .hero-content .hero-heading { order: 1; }
  .qviib9d .hero-content .zxjctae1 { order: 2; margin: 8px 0 24px !important; }
  .qviib9d .hero-content .hero-lede { order: 3; }
  .qviib9d .hero-content .btn-hero { order: 4; align-self: center; margin-top: 0; }

  
  .hero-duo.u5uq9u {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    grid-template-areas: none !important;
  }
  .hero-duo.u5uq9u .jgqho { display: contents; padding: 0; }
  .hero-duo.u5uq9u .jgqho .hero-heading { order: 1; padding: 32px 24px 0; margin-bottom: 0; }
  .hero-duo.u5uq9u .yjid35 { order: 2; padding: 12px 16px; }
  .hero-duo.u5uq9u .jgqho .hero-lede { order: 3; padding: 0 24px; margin: 0 auto; }
  .hero-duo.u5uq9u .jgqho .btn-hero { order: 4; align-self: center; margin: 8px 0 32px; }
}
.media-frame { position: relative; overflow: hidden; margin: 16px 0; line-height: 0; }
.media-img { width: 100%; height: auto; display: block; border-radius: 10px; }
.vclz .media-frame        { border-radius: 16px; }
.vclz .media-img  { border-radius: 16px; }
.huwoy .media-frame         { box-shadow: 0 4px 14px rgba(0,0,0,0.18); border-radius: 8px; }
.huwoy .media-img   { border-radius: 8px; }
.page-wrap { max-width: 1100px; margin: 0 auto; padding: 40px 24px 32px; }
.content-section { width: 100%; padding: 32px 0; position: relative; }
.section-frame { max-width: 1100px; margin: 0 auto; padding: 24px 24px; position: relative; z-index: 1; }
.ib5mo2l .content-section:nth-child(even) { background: var(--bg-surface); }
.ib5mo2l .content-section:nth-child(odd)  { background: var(--bg-page); }
.yeworpy .content-section:nth-child(even) { background: var(--bg-card); }
.yeworpy .content-section:nth-child(odd)  { background: var(--bg-page); }
.ib5mo2l .content-section:nth-child(odd)  .section-frame { background: var(--bg-card); border-radius: 6px; }
.ib5mo2l .content-section:nth-child(even) .section-frame { background: var(--bg-raised); border-radius: 6px; }
.yeworpy .content-section:nth-child(odd)  .section-frame { background: var(--bg-card); border-radius: 6px; }
.yeworpy .content-section:nth-child(even) .section-frame { background: var(--bg-raised); border-radius: 6px; }
.ib5mo2l .content-section:nth-child(even) .h7rk8gse .subsection,
.yeworpy .content-section:nth-child(even) .h7rk8gse .subsection { background: var(--bg-card); box-shadow: 0 1px 4px rgba(0,0,0,0.2); }
.ib5mo2l .content-section:nth-child(odd) .h7rk8gse .subsection,
.yeworpy .content-section:nth-child(odd) .h7rk8gse .subsection { background: var(--bg-card-inner); }
.ib5mo2l .content-section:nth-child(even) .i4er .subsection:nth-child(odd),
.yeworpy .content-section:nth-child(even) .i4er .subsection:nth-child(odd)  { background: var(--bg-card); }
.ib5mo2l .content-section:nth-child(even) .i4er .subsection:nth-child(even),
.yeworpy .content-section:nth-child(even) .i4er .subsection:nth-child(even) { background: var(--bg-card-inner); }
h1.section-heading { font-size: 2.2rem; font-weight: 800; color: var(--text-primary); margin-bottom: 16px; }
h2.section-heading {
  font-size: 1.6rem; font-weight: 700; color: var(--text-primary);
  margin: 0 0 16px;
  
}
h3.section-subheading { font-size: 1.2rem; font-weight: 700; color: var(--text-primary); margin: 0 0 10px; }
.qlsfgnu h2.section-heading {
  border-left: 4px solid var(--accent); padding-left: 14px;
}
.itca h2.section-heading {
  border-bottom: 2px solid var(--accent); padding-bottom: 10px;
  display: inline-block;
}
.heading-style-topline h2.section-heading {
  border-top: 3px solid var(--accent); padding-top: 12px;
  color: var(--text-primary);
}
.mocj h2.section-heading::before {
  content: ""; display: inline-block; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  margin-right: 12px; vertical-align: middle;
}
.k0d8q38z h2.section-heading {
  color: var(--text-primary); font-size: 1.7rem;
}
.r676pt h2.section-heading::before {
  content: "/"; color: var(--accent-light); font-weight: 800;
  margin-right: 10px;
}
.qiiyei2i h2.section-heading {
  text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 1.1rem; color: var(--accent-light);
  border-bottom: 1px solid var(--border-alt); padding-bottom: 8px;
}
@media (max-width: 640px) { .f1dzt { display: none; } }
.section-lede { font-size: inherit; color: var(--text-body); margin: 8px 0 16px; }
.section-outro { font-size: inherit; color: var(--text-body); margin: 16px 0 0; }
.toc-card {
  background: var(--bg-surface);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 20px 24px; margin: 28px 0;
}
.toc-label { font-weight: 700; color: var(--accent-light); margin-bottom: 12px; font-size: 1rem; }
.toc-links { padding-left: 20px; }
.toc-links li { margin-bottom: 6px; }
.toc-links a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; }
.toc-links a:hover { color: var(--accent-light); }
.b1upmx0d .toc-label { display: none; }
.few6ki .toc-label { display: none; }
.few6ki .toc-links { padding-left: 0; list-style: none; }
.few6ki .toc-links li::before { content: "—"; margin-right: 9px; color: var(--accent-light); opacity: 0.7; }
.few6ki .toc-links a { font-size: 0.92rem; }
.m9iggmb .toc-card { background: none; border: none; box-shadow: none !important; padding: 12px 0; }
.m9iggmb .toc-label { display: none; }
.m9iggmb .toc-links { padding-left: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.m9iggmb .toc-links li { margin-bottom: 0; }
.m9iggmb .toc-links a {
  display: inline-block;
  background: var(--accent-bg); color: var(--accent-light);
  border: 1px solid var(--accent-pale); border-radius: 999px;
  padding: 5px 16px; font-size: 0.88rem; font-weight: 500;
}
.m9iggmb .toc-links a:hover { background: var(--accent); color: #fff; border-color: var(--accent-light); }
.toc-style-grid .toc-card { padding: 20px 20px 16px; }
.toc-style-grid .toc-links {
  padding-left: 0; list-style: none;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px;
  counter-reset: toc-c;
}
.toc-style-grid .toc-links li { counter-increment: toc-c; margin-bottom: 0; display: flex; }
.toc-style-grid .toc-links a {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-card); border-radius: 8px;
  padding: 12px 14px; border: 1px solid var(--border);
  font-size: 0.92rem; line-height: 1.35; color: var(--text-muted);
  width: 100%; min-height: 58px;
  transition: border-color .15s, color .15s, background .15s;
}
.toc-style-grid .toc-links a::before {
  content: counter(toc-c);
  flex-shrink: 0; width: 26px; height: 26px;
  background: var(--accent); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700;
}
.toc-style-grid .toc-links a:hover { color: var(--accent-light); border-color: var(--accent-light); }
.toc-style-grid .toc-links a:focus,
.toc-style-grid .toc-links a:focus-visible,
.toc-style-grid .toc-links a:target { outline: none; }
.toc-style-grid .toc-links li:target a { border-color: var(--border); color: var(--text-muted); }
.q08w .toc-card { background: none; border: none; box-shadow: none !important; padding: 8px 0; margin: 16px 0; }
.q08w .toc-label { display: none; }
.q08w .toc-links { padding-left: 0; list-style: none; display: flex; flex-wrap: wrap; }
.q08w .toc-links li { margin-bottom: 0; }
.q08w .toc-links li::after { content: ","; color: var(--text-muted); margin-right: 10px; }
.q08w .toc-links li:last-child::after { content: ""; margin-right: 0; }
.q08w .toc-links a { font-size: 0.9rem; }
.subsection { padding: 14px 20px 18px; margin-bottom: 12px; border-radius: 10px; }
.h7rk8gse .subsection { background: var(--bg-card); }
.i4er .subsection:nth-child(odd)  { background: var(--bg-card); }
.i4er .subsection:nth-child(even) { background: var(--bg-raised); }
.vzfs12 .subsection {
  background: none; border-radius: 0;
  border-bottom: 1px solid var(--border);
  padding: 22px 4px;
}
.vzfs12 .subsection:last-child { border-bottom: none; }
.vzfs12 h3.section-subheading { border-bottom: 2px solid var(--accent); padding-bottom: 6px; display: inline-block; }
.u91xt .subsection {
  background: none; border-radius: 0;
  border-left: 3px solid var(--accent);
  padding: 10px 0 10px 18px;
}
.u91xt .subsection + .subsection { margin-top: 4px; }
.flow-style .subsection { background: none; border-radius: 0; padding: 12px 0; }
.flow-style .subsection + .subsection { border-top: 1px solid var(--border-section); }
.section-copy { color: var(--text-body); margin-bottom: 12px; font-size: inherit; }
.section-note { color: var(--text-body); margin-top: 12px; font-size: inherit; }
.section-copy-alt { color: var(--text-body); margin-bottom: 10px; }
.marker-list, .step-list { padding-left: 22px; color: var(--text-body); margin: 10px 0; }
.marker-list li, .step-list li { margin-bottom: 6px; }
.step-list li { list-style: decimal; }
.list-style-dot     .marker-list { list-style-type: "● "; }
.gp90q1yk  .marker-list { list-style-type: "■ "; }
.l6wrclmz .marker-list { list-style-type: "◆ "; }
.aksdjhut    .marker-list { list-style-type: "★ "; }
.list-style-dot     .tile-points { list-style-type: "● "; }
.gp90q1yk  .tile-points { list-style-type: "■ "; }
.l6wrclmz .tile-points { list-style-type: "◆ "; }
.aksdjhut    .tile-points { list-style-type: "★ "; }
.list-style-dot    .marker-list li::marker, .list-style-dot    .tile-points li::marker,
.gp90q1yk .marker-list li::marker, .gp90q1yk .tile-points li::marker,
.l6wrclmz .marker-list li::marker, .l6wrclmz .tile-points li::marker,
.aksdjhut   .marker-list li::marker, .aksdjhut   .tile-points li::marker {
  color: var(--cta); font-size: 1em;
}
.list-style-dot .step-list,
.gp90q1yk .step-list,
.l6wrclmz .step-list,
.aksdjhut .step-list {
  list-style: none;
  counter-reset: el-step;
  padding-left: 2.2em;
}
.list-style-dot .step-list li,
.gp90q1yk .step-list li,
.l6wrclmz .step-list li,
.aksdjhut .step-list li {
  list-style: none;
  counter-increment: el-step;
  position: relative;
}
.list-style-dot .step-list li::before,
.gp90q1yk .step-list li::before,
.l6wrclmz .step-list li::before,
.aksdjhut .step-list li::before {
  content: counter(el-step);
  position: absolute; left: -2.2em; top: 0.05em;
  width: 1.45em; height: 1.45em;
  background: var(--accent); color: #fff;
  font-size: 0.72em; font-weight: 700;
  line-height: 1.45em; text-align: center;
}
.list-style-dot     .step-list li::before { border-radius: 50%; }
.gp90q1yk  .step-list li::before { border-radius: 3px; }
.l6wrclmz .step-list li::before { border-radius: 3px; }
.aksdjhut    .step-list li::before { border-radius: 50%; }
.table-scroll { overflow-x: auto; margin: 12px 0; background: var(--accent-bg); border-radius: 10px; border: 1px solid var(--border-alt); }
.xaxki .table-scroll,
.game-panel .table-scroll { background: transparent; border: none; border-radius: 0; }
.data-grid { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-grid th {
  background: var(--bg-raised); color: var(--accent-light);
  padding: 8px 12px; text-align: left; font-weight: 600;
}
.data-grid td { padding: 8px 12px; border-bottom: 1px solid var(--border-alt); color: var(--text-body); }
.data-grid tr:hover td { background: var(--bg-hover); }
.xerc .data-grid tbody tr:nth-child(even) td { background: var(--bg-surface); }
.o4z0 .data-grid { border: 1px solid var(--border-alt); }
.o4z0 .data-grid th,
.o4z0 .data-grid td { border: 1px solid var(--border-alt); }
.n2urh5hm .data-grid th {
  background: transparent; color: var(--accent-light);
  border-bottom: 2px solid var(--accent); padding-bottom: 6px;
}
.n2urh5hm .data-grid td { border-bottom: none; }
.n2urh5hm .data-grid tr:not(:last-child) td { border-bottom: 1px solid var(--border-alt); }
.k49f .data-grid th {
  background: var(--cta); color: #fff; letter-spacing: 0.03em;
}
.table-style-clean .table-scroll {
  overflow: hidden;
}
.table-style-clean .data-grid th { border-bottom: 1px solid var(--border-alt); }
.table-style-clean .data-grid tr:last-child td { border-bottom: none; }
.tile-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin: 12px 0; }
.tile-card { background: var(--bg-card-inner); border-radius: 8px; overflow: hidden; }
.tile-img { width: 100%; aspect-ratio: 1/1; object-fit: contain; display: block; padding: 8px; }
.tile-title { background: var(--accent-bg-light); color: var(--accent-light); font-weight: 700; padding: 10px 14px; font-size: 0.9rem; }
.tile-desc { padding: 10px 14px 4px; font-size: 0.88rem; color: var(--text-sub); }
.tile-points { padding: 4px 14px 12px 28px; font-size: 0.82rem; color: var(--text-muted); }
.tile-points li { margin-bottom: 3px; }
[data-i="f0eb"]::before{content:"\f0eb"} [data-i="f3ed"]::before{content:"\f3ed"}
[data-i="f0e7"]::before{content:"\f0e7"} [data-i="f3a5"]::before{content:"\f3a5"}
[data-i="f005"]::before{content:"\f005"} [data-i="f1b2"]::before{content:"\f1b2"}
[data-i="f201"]::before{content:"\f201"} [data-i="f023"]::before{content:"\f023"}
[data-i="f140"]::before{content:"\f140"} [data-i="f0ac"]::before{content:"\f0ac"}
[data-i="f058"]::before{content:"\f058"} [data-i="f1fe"]::before{content:"\f1fe"}
[data-i="f059"]::before{content:"\f059"} [data-i="f084"]::before{content:"\f084"}
[data-i="f1e0"]::before{content:"\f1e0"} [data-i="f6e2"]::before{content:"\f6e2"}
[data-i="f5da"]::before{content:"\f5da"} [data-i="f024"]::before{content:"\f024"}
[data-i="f0a3"]::before{content:"\f0a3"} [data-i="f6ff"]::before{content:"\f6ff"}
[data-c="a"]{color: var(--accent-light);background:color-mix(in srgb,var(--accent) 15%,transparent)}
[data-c="b"]{color:var(--accent-light);background:color-mix(in srgb,var(--accent-light) 15%,transparent)}
[data-c="c"]{color:var(--c-pros);background:color-mix(in srgb,var(--c-pros) 15%,transparent)}
[data-c="d"]{color:var(--c-stars);background:color-mix(in srgb,var(--c-stars) 15%,transparent)}
[data-c="e"]{color:var(--accent-pale);background:color-mix(in srgb,var(--accent-pale) 15%,transparent)}
[data-c="f"]{color:var(--c-warn-border);background:color-mix(in srgb,var(--c-warn-border) 15%,transparent)}
[data-c="g"]{color:var(--c-tip-border);background:color-mix(in srgb,var(--c-tip-border) 15%,transparent)}
[data-c="h"]{color:var(--c-cons);background:color-mix(in srgb,var(--c-cons) 15%,transparent)}
[data-s="r"]{border-radius:50%}
[data-s="s"]{border-radius:10px}
[data-s="d"]{border-radius:50% 8px}
[data-s="h"]{border-radius:50%;clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%)}
[data-s="b"]{border-radius:60% 40% 50% 50%/50% 60% 40% 50%}
.m9lv5k9x .tile-title { background: transparent; text-align: center; }
.tile-img-wide .tile-img {
  margin: 10px 10px 0; width: calc(100% - 20px);
  aspect-ratio: 16/9; border-radius: 10px;
}
.o1k4ife .tile-img {
  width: 72px; height: 72px; aspect-ratio: 1/1;
  border-radius: 50%; object-fit: cover;
  margin: 16px auto 4px; display: block;
  border: 3px solid var(--accent-bg);
}
.wkkr34 .tile-card { display: grid; grid-template-columns: auto 1fr; }
.wkkr34 .tile-img {
  grid-column: 1; grid-row: 1;
  width: 88px; height: 88px; aspect-ratio: 1/1; object-fit: cover; align-self: center;
}
.wkkr34 .tile-title { grid-column: 2; }
.wkkr34 .tile-desc,
.wkkr34 .tile-points { grid-column: 1 / -1; }
.ebxce .tile-card { display: grid; grid-template-columns: auto 1fr; align-items: start; }
.ebxce .tile-img {
  grid-column: 1; grid-row: 1;
  width: 60px; height: 60px; aspect-ratio: 1/1;
  border-radius: 50%; object-fit: cover;
  margin: 14px 12px; border: 2px solid var(--accent-pale);
}
.ebxce .tile-title { grid-column: 2; }
.ebxce .tile-desc,
.ebxce .tile-points { grid-column: 1 / -1; }
.y8sr .tile-card { border: 1px solid var(--border); border-left: 2px solid var(--accent); }
.y8sr .tile-title { background: none; color: var(--accent-light); font-weight: 700; }
.n09eq9 .tile-card { background: rgba(255,255,255,0.04); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.08); }
.n09eq9 .tile-title { background: none; color: var(--accent-light); font-weight: 700; }
.tile-style-list .tile-card { background: none; border: none; border-radius: 0; border-bottom: 1px solid var(--border); }
.tile-style-list .tile-card:last-child { border-bottom: none; }
.tile-style-list .tile-title { background: none; color: var(--accent-light); font-weight: 700; }
.lpou .tile-card { border: 1px solid var(--border); border-top: 3px solid var(--accent); }
.lpou .tile-title { background: none; color: var(--accent-light); font-weight: 700; padding-top: 13px; }
.fbw84d .tile-grid { counter-reset: card-n; }
.fbw84d .tile-card  { counter-increment: card-n; }
.fbw84d .tile-title { display: flex; align-items: center; gap: 10px; }
.fbw84d .tile-title::before {
  content: counter(card-n);
  flex-shrink: 0; min-width: 26px; height: 26px;
  background: var(--accent); color: #fff; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.76rem; font-weight: 700;
}
.djl8 .tile-card { background: var(--bg-surface); border: 1px solid var(--border); }
.djl8 .tile-title { background: none; color: var(--text-main); font-weight: 700; border-bottom: 1px solid var(--border); }
.callout { display: flex; gap: 14px; align-items: flex-start; border-radius: 8px; padding: 14px 18px; margin: 10px 0; }
.callout-tip  { background: var(--bg-tip);     border-left: 4px solid var(--c-tip-border); }
.callout-warn { background: var(--bg-warning); border-left: 4px solid var(--c-warn-border); }
.callout-info { background: var(--bg-info);    border-left: 4px solid #60a5fa; }
.callout-glyph { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.callout strong { color: var(--text-primary); font-size: 0.95rem; }
.callout p { color: var(--text-muted); font-size: 0.88rem; margin-top: 4px; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 10px 0; }
.compare-pros, .compare-cons { border-radius: 8px; padding: 14px; }
.compare-pros { background: var(--bg-pros); }
.compare-cons { background: var(--bg-cons); }
.compare-label { font-weight: 700; font-size: 0.85rem; margin-bottom: 8px; }
.compare-pros .compare-label { color: var(--c-pros-label); }
.compare-cons .compare-label { color: #f87171; }
.compare-pros ul li { color: var(--c-pros); list-style: none; padding-left: 4px; margin-bottom: 5px; font-size: 0.88rem; }
.compare-cons ul li { color: var(--c-cons); list-style: none; padding-left: 4px; margin-bottom: 5px; font-size: 0.88rem; }
.media-img { width: 100%; height: auto; border-radius: 10px; display: block; }
.btn-mini {
  background: var(--cta); color: #fff; border: none;
  border-radius: 6px; padding: 8px 16px; font-size: 0.88rem; font-weight: 600;
  cursor: pointer; text-decoration: none; display: inline-block; white-space: nowrap;
}
.btn-mini:hover { opacity: 0.85; }
.whgb .btn-mini  { background: transparent; border: 2px solid var(--cta); color: var(--cta-light); }
.whgb .btn-mini:hover  { background: var(--cta-hover); color: #fff; opacity: 1; }
.gp4e2ea .btn-mini  { background: var(--accent-bg); border: 1px solid var(--cta); color: var(--cta-light); }
.gp4e2ea .btn-mini:hover  { background: var(--cta-hover); color: #fff; opacity: 1; }
.button-shape-pill .btn-hero { border-radius: 50px; }
.button-shape-pill .btn-mini  { border-radius: 50px; }
.button-padding-snug .btn-hero { padding-left: 22px; padding-right: 22px; }
.button-padding-snug .btn-mini  { padding-left: 12px; padding-right: 12px; }
.ng5hs .btn-hero { padding-left: 44px; padding-right: 44px; }
.ng5hs .btn-mini  { padding-left: 24px; padding-right: 24px; }
.emoi .btn-hero { padding-left: 56px; padding-right: 56px; }
.emoi .btn-mini  { padding-left: 32px; padding-right: 32px; }
.vv001e   .btn-hero::after, .vv001e   .btn-mini::after,
.sq49ih9m .btn-hero::after, .sq49ih9m .btn-mini::after,
.p60qw    .btn-hero::after, .p60qw    .btn-mini::after,
.r0o3agg    .btn-hero::after, .r0o3agg    .btn-mini::after,
.ml1j    .btn-hero::after, .ml1j    .btn-mini::after,
.s3ray7w1     .btn-hero::after, .s3ray7w1     .btn-mini::after,
.a7de9igi    .btn-hero::after, .a7de9igi    .btn-mini::after,
.dtegmhs   .btn-hero::after, .dtegmhs   .btn-mini::after {
  content: ""; display: inline-block;
  width: 1em; height: 1em; margin-left: 6px; vertical-align: -0.15em;
  background: currentColor;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
}
.vv001e .btn-hero::after, .vv001e .btn-mini::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h16M13 5l7 7-7 7'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h16M13 5l7 7-7 7'/%3E%3C/svg%3E");
}
.sq49ih9m .btn-hero::after, .sq49ih9m .btn-mini::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
}
.p60qw .btn-hero::after, .p60qw .btn-mini::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 4l14 8-14 8z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 4l14 8-14 8z' fill='black'/%3E%3C/svg%3E");
}
.r0o3agg .btn-hero::after, .r0o3agg .btn-mini::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z' fill='black'/%3E%3C/svg%3E");
}
.ml1j .btn-hero::after, .ml1j .btn-mini::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.1 6.3 6.9.7-5 4.8 1.5 6.9L12 17.3l-6.5 3.4 1.5-6.9L2 9l6.9-.7z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.1 6.3 6.9.7-5 4.8 1.5 6.9L12 17.3l-6.5 3.4 1.5-6.9L2 9l6.9-.7z' fill='black'/%3E%3C/svg%3E");
}
.s3ray7w1 .btn-hero::after, .s3ray7w1 .btn-mini::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 3h12l4 6L12 22 2 9z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 3h12l4 6L12 22 2 9z' fill='black'/%3E%3C/svg%3E");
}
.a7de9igi .btn-hero::after, .a7de9igi .btn-mini::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c0 0-7 6-7 12a7 7 0 0 0 14 0c0-3-1.5-5-3.5-6.5 0 3-2 5-3.5 5C14 9 12 2 12 2z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c0 0-7 6-7 12a7 7 0 0 0 14 0c0-3-1.5-5-3.5-6.5 0 3-2 5-3.5 5C14 9 12 2 12 2z' fill='black'/%3E%3C/svg%3E");
}
.dtegmhs .btn-hero::after, .dtegmhs .btn-mini::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 19h20v2H2zM2 17L5.5 7l4.5 5L12 3l2 9 4.5-5L22 17z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 19h20v2H2zM2 17L5.5 7l4.5 5L12 3l2 9 4.5-5L22 17z' fill='black'/%3E%3C/svg%3E");
}
.h9s7   .nav-cta-pill::after, .h9s7   .sticky-cta::after,
.pxjy0xu .nav-cta-pill::after, .pxjy0xu .sticky-cta::after,
.e2759a    .nav-cta-pill::after, .e2759a    .sticky-cta::after,
.r44291    .nav-cta-pill::after, .r44291    .sticky-cta::after,
.zzai    .nav-cta-pill::after, .zzai    .sticky-cta::after,
.rzhi4     .nav-cta-pill::after, .rzhi4     .sticky-cta::after,
.f5medp3    .nav-cta-pill::after, .f5medp3    .sticky-cta::after,
.qjxo   .nav-cta-pill::after, .qjxo   .sticky-cta::after {
  content: "" !important; display: inline-block !important;
  width: 1em; height: 1em; margin-left: 6px; vertical-align: -0.15em;
  background: currentColor !important;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
}
.h9s7 .nav-cta-pill::after, .h9s7 .sticky-cta::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h16M13 5l7 7-7 7'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12h16M13 5l7 7-7 7'/%3E%3C/svg%3E");
}
.pxjy0xu .nav-cta-pill::after, .pxjy0xu .sticky-cta::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l6 6-6 6'/%3E%3C/svg%3E");
}
.e2759a .nav-cta-pill::after, .e2759a .sticky-cta::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 4l14 8-14 8z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 4l14 8-14 8z' fill='black'/%3E%3C/svg%3E");
}
.r44291 .nav-cta-pill::after, .r44291 .sticky-cta::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z' fill='black'/%3E%3C/svg%3E");
}
.zzai .nav-cta-pill::after, .zzai .sticky-cta::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.1 6.3 6.9.7-5 4.8 1.5 6.9L12 17.3l-6.5 3.4 1.5-6.9L2 9l6.9-.7z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.1 6.3 6.9.7-5 4.8 1.5 6.9L12 17.3l-6.5 3.4 1.5-6.9L2 9l6.9-.7z' fill='black'/%3E%3C/svg%3E");
}
.rzhi4 .nav-cta-pill::after, .rzhi4 .sticky-cta::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 3h12l4 6L12 22 2 9z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 3h12l4 6L12 22 2 9z' fill='black'/%3E%3C/svg%3E");
}
.f5medp3 .nav-cta-pill::after, .f5medp3 .sticky-cta::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c0 0-7 6-7 12a7 7 0 0 0 14 0c0-3-1.5-5-3.5-6.5 0 3-2 5-3.5 5C14 9 12 2 12 2z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c0 0-7 6-7 12a7 7 0 0 0 14 0c0-3-1.5-5-3.5-6.5 0 3-2 5-3.5 5C14 9 12 2 12 2z' fill='black'/%3E%3C/svg%3E");
}
.qjxo .nav-cta-pill::after, .qjxo .sticky-cta::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 19h20v2H2zM2 17L5.5 7l4.5 5L12 3l2 9 4.5-5L22 17z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 19h20v2H2zM2 17L5.5 7l4.5 5L12 3l2 9 4.5-5L22 17z' fill='black'/%3E%3C/svg%3E");
}
.skhy .v05p15 { background: var(--bg-raised); }
.lt8ub2li.btn-mini {
  padding: 13px 24px !important;
  font-size: 1rem !important;
  font-weight: 700;
}
@media (max-width: 980px) {
  .ze2yay {
    grid-template-columns: auto auto minmax(0, 1fr);
    grid-template-areas:
      "rank ident rating"
      "pills pills pills"
      "cta   cta   cta";
    row-gap: 14px;
  }
  .ze2yay::before    { grid-area: rank;   }
  .wrcf73o           { grid-area: ident;  }
  .mwz10p     { grid-area: rating; min-width: 0; width: auto; }
  .v9r41f6e           { grid-area: pills;  }
  .lt8ub2li             { grid-area: cta; width: 100%; }
}
@media (max-width: 560px) {
  .ze2yay {
    grid-template-columns: 1fr;
    grid-template-areas:
      "rank"
      "ident"
      "rating"
      "pills"
      "cta";
    text-align: center; padding: 16px;
  }
  .ze2yay::before    { justify-self: center; }
  .wrcf73o           { width: 100%; }
  .mwz10p     { justify-self: center; }
  .v9r41f6e           { grid-template-columns: 1fr; }
}
.rating-stars { color: var(--c-stars); font-size: 1.1rem; }
.pros-list, .cons-list { list-style: none; font-size: 0.9rem; }
.pros-list li { color: var(--c-pros); margin-bottom: 4px; }
.cons-list li { color: var(--c-cons); margin-bottom: 4px; }
.pros-list li::before { content: "✓"; margin-right: 5px; }
.cons-list li::before { content: "✗"; margin-right: 5px; }
.compare-icon-arrow .pros-list li::before { content: "→"; }
.compare-icon-arrow .cons-list li::before { content: "–"; }
.ltb814b  .pros-list li::before { content: "★"; }
.ltb814b  .cons-list li::before { content: "✕"; }
.a6yj3o    .pros-list li::before { content: "◆"; }
.a6yj3o    .cons-list li::before { content: "▲"; }
.f1mox  .pros-list li::before { content: "▶"; }
.f1mox  .cons-list li::before { content: "■"; }
.callout-style-outline .f0bnph { border: none; border-top: 1.5px solid; }
@media (min-width: 860px) {
  .layout-two-col .tfzlh {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start;
  }
  .layout-two-col .ne0i { margin: 0; }
}
.game-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-alt);
  border-radius: 12px;
  margin: 28px 0;
  overflow: hidden;
}
.provider-badge {
  width: 100px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border-radius: 10px; padding: 8px;
  flex-shrink: 0;
}
.provider-badge img { max-width: 100%; max-height: 100%; object-fit: contain; }
.game-title { font-size: 1.15rem; font-weight: 700; color: var(--text); }
.rating-line { display: flex; align-items: center; gap: 8px; }
.rating-line .rating-stars { font-size: .95rem; }
.rating-line strong { font-size: 1.1rem; color: var(--text); }
.play-cell { text-align: center; flex-shrink: 0; }
.spec-cell { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; }
.spec-key { font-size: .82rem; color: var(--text-muted); font-weight: 500; opacity: 0.75; }
.spec-val { font-size: .92rem; font-weight: 800; color: var(--accent); }
.spec-cell-accent .spec-val { font-size: 1.05rem; font-weight: 800; color: var(--accent); }
.game-panel .compare-grid { gap: 10px; }
.game-panel .compare-pros, .game-panel .compare-cons { padding: 12px; }
.game-panel .compare-pros ul, .game-panel .compare-cons ul { margin: 4px 0 0; padding-left: 18px; }
.game-panel .compare-pros li, .game-panel .compare-cons li { font-size: .85rem; margin-bottom: 3px; }
.crmqv .play-cell { width: 100%; margin-top: auto; }
.xop94amd .spec-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--border-alt); border-radius: 8px; overflow: hidden;
}
.xop94amd .spec-cell { border-bottom: 1px solid var(--border-alt); }
.xop94amd .spec-cell:nth-child(odd) { border-right: 1px solid var(--border-alt); }
.xop94amd .spec-cell-accent { grid-column: 1 / -1; background: var(--accent-bg); border-right: none; }
@media (max-width: 720px) {
  .xop94amd { grid-template-columns: 1fr; }
  .crmqv { flex-direction: row; flex-wrap: wrap; gap: 10px; border-right: none; border-bottom: 1px solid var(--border-alt); padding: 16px; }
  .crmqv .provider-badge { width: 72px; height: 50px; }
  .crmqv .mf454 { max-width: 180px; }
  .crmqv .play-cell { width: auto; }
}
.io95uevu .provider-badge { background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border-radius: 10px; }
.io95uevu .game-title { color: #fff; font-size: 1.25rem; }
.io95uevu .rating-line strong { color: #fff; }
.io95uevu .rating-line .rating-stars { filter: brightness(1.2); }
.io95uevu .play-cell { margin-left: auto; white-space: nowrap; }
.ro5ie .play-cell { margin-left: auto; }
.kshm2wpx .spec-grid {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--border-alt); border-radius: 8px; overflow: hidden;
}
.kshm2wpx .spec-cell {
  flex: 1 1 auto; min-width: 120px;
  border-right: 1px solid var(--border-alt); border-bottom: 1px solid var(--border-alt);
}
.kshm2wpx .spec-cell-accent { flex-basis: 100%; background: var(--accent-bg); border-right: none; }
@media (max-width: 720px) {
  .io95uevu { flex-wrap: wrap; gap: 10px; padding: 12px 16px; }
  .ru8401 { padding: 16px; }
  .kshm2wpx .spec-cell { min-width: 50%; }
}
.jv2loerl .game-title { font-size: 1.3rem; }
.gklg .spec-grid { display: flex; flex-direction: column; }
.gklg .spec-cell { border-bottom: 1px solid var(--border-alt); }
.gklg .spec-cell-accent { background: var(--accent-bg); }
.vx753p .compare-grid { grid-template-columns: 1fr; }
@media (max-width: 860px) {
  .y6ljwi { grid-template-columns: 1fr; }
  .uve9q { border-right: none; border-bottom: 1px solid var(--border-alt); }
  .gklg { border-right: none; border-bottom: 1px solid var(--border-alt); }
}
@media (max-width: 540px) {
  .rkll { flex-wrap: wrap; padding: 16px; }
}
.bjmo4 .provider-badge { width: 72px; height: 50px; }
.bjmo4 .game-title { font-size: 1rem; white-space: nowrap; }
.axxtfd .spec-grid { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.axxtfd .spec-cell { padding: 0; flex: 0 0 auto; gap: 6px; }
.axxtfd .spec-cell-accent { display: none; }
.axxtfd .compare-grid { gap: 8px; }
.axxtfd .compare-pros, .axxtfd .compare-cons { padding: 8px; }
@media (max-width: 480px) {
  .shsis2 { flex-direction: column; align-items: stretch; }
}
.wqh2ztyw .provider-badge { width: 48px; height: 48px; }
.wqh2ztyw .game-title { font-size: 0.95rem; font-weight: 700; white-space: nowrap; }
.wqh2ztyw .rating-line { font-size: 0.8rem; }
.wqh2ztyw .rating-line strong { font-size: 0.85rem; }
.oeeyi8w0 .spec-grid {
  display: flex; flex-wrap: wrap; gap: 4px 14px;
}
.oeeyi8w0 .spec-cell { padding: 0; flex: 0 0 auto; gap: 4px; }
.oeeyi8w0 .spec-key { font-size: 0.7rem; }
.oeeyi8w0 .spec-val { font-size: 0.8rem; }
.oeeyi8w0 .spec-cell-accent .spec-val { font-size: 0.85rem; font-weight: 700; }
.oeeyi8w0 .play-cell .btn-mini { padding: 8px 20px; font-size: 0.85rem; }
@media (max-width: 640px) {
  .aasux { flex-direction: column; align-items: stretch; gap: 10px; }
  .oeeyi8w0 .play-cell { text-align: center; }
}
.widget-head {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 24px; border-bottom: 1px solid var(--border-alt);
  background: var(--surface);
}
.widget-head-info { flex: 1; }
.widget-media { max-height: 220px; overflow: hidden; border-bottom: 1px solid var(--border-alt); }
.widget-media img { width: 100%; display: block; object-fit: cover; }
.widget-body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.widget-col-specs { padding: 16px 20px; border-right: 1px solid var(--border-alt); display: flex; flex-direction: column; gap: 14px; }
.widget-col-specs .spec-grid { display: flex; flex-direction: column; border: 1px solid var(--border-alt); border-radius: 8px; overflow: hidden; }
.widget-col-specs .spec-cell { border-bottom: 1px solid var(--border-alt); }
.widget-col-specs .spec-cell:last-child { border-bottom: none; }
.widget-col-specs .spec-cell-accent { background: var(--accent-bg); }
.widget-col-verdict { padding: 16px 20px; }
@media (max-width: 720px) {
  .widget-body { grid-template-columns: 1fr; }
  .widget-col-specs { border-right: none; border-bottom: 1px solid var(--border-alt); }
  .widget-head { flex-wrap: wrap; gap: 10px; padding: 14px 16px; }
}
.fkwhhour .rating-scale { font-size: .9rem; font-weight: 500; color: var(--text-muted); }
.r2llx .rating-stars { font-size: .75rem; margin-top: 2px; }
.yygjjm .spec-grid {
  display: flex; flex-wrap: wrap;
}
.yygjjm .spec-cell {
  flex: 1 1 auto; min-width: 100px;
  border-right: 1px solid var(--border-alt); border-bottom: 1px solid var(--border-alt);
  flex-direction: column; align-items: center; gap: 2px; padding: 12px 8px; text-align: center;
}
.yygjjm .spec-cell:last-child { border-right: none; }
.yygjjm .spec-key { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }
.yygjjm .spec-cell-accent { background: var(--accent-bg); }
@media (max-width: 720px) {
  .kd1zgtb { grid-template-columns: 1fr; }
  .r2llx { width: 100px; height: 100px; margin: 16px auto; }
  .fkwhhour { font-size: 1.4rem; }
  .bov57gs { justify-content: center; }
  .yygjjm .spec-cell { min-width: 50%; }
}
.pc18f83 .spec-grid {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.pc18f83 .spec-cell {
  background: var(--surface); border: 1px solid var(--border-alt);
  border-radius: 20px; padding: 6px 14px; gap: 8px;
}
.pc18f83 .spec-cell-accent {
  background: var(--accent-bg); border-color: var(--accent-pale);
}
.pc18f83 .compare-grid { margin: 0 24px; padding-top: 16px; }
.ey7f0abv .play-cell { display: inline-block; }
@media (max-width: 540px) {
  .nd3mjt0c { flex-wrap: wrap; padding: 14px 16px; }
  .l60thft1 { padding: 12px 16px; }
  .pc18f83 .compare-grid { margin: 0 16px; }
  .pc18f83 .olqtqhf0 { padding: 0 16px; }
  .ey7f0abv { padding: 12px 16px; }
}
.ranking-style-flat .hzus7wd { gap: 0; }
.ranking-style-flat .ze2yay {
  border-radius: 0;
  border-left: none; border-right: none; border-top: none;
  border-bottom: 1px solid var(--border);
  padding-top: 14px; padding-bottom: 14px;
}
.ranking-style-flat .ze2yay:last-child { border-bottom: none; }
.ranking-style-flat .ze2yay:nth-child(even) { background: var(--accent-bg, rgba(0,0,0,.03)); }
.ranking-style-flat .ze2yay:nth-child(even):hover { background: var(--bg-hover); }
.badge-style-pill .yvacqxk {
  background: var(--accent-bg); border-radius: 100px;
  padding: 1px 10px; font-size: 0.75rem;
  color: var(--cta); font-weight: 700; letter-spacing: .5px;
}
.uumi4wd .hrp2koj3 .rating-stars,
.a35l0s8 .hrp2koj3 .rating-stars,
.ljtulz .hrp2koj3 .rating-stars { display: none; }
.uumi4wd .rating-scale { display: none; }
.a35l0s8 .rating-score,
.a35l0s8 .rating-scale { font-size: 1em; }
.ljtulz .rating-scale { display: none; }
.faq-list { margin: 16px 0; }
.faq-item { background: var(--bg-card); border-radius: 8px; margin-bottom: 8px; overflow: hidden; }
.faq-item summary {
  padding: 14px 18px; font-weight: 600; color: var(--accent-pale);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between;
}
.faq-item summary::after { content: "+"; color: var(--accent-light); }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 18px 14px; color: var(--text-body); font-size: 0.95rem; }
.content-section { margin-bottom: 0; }
.lrgo2azl h2.section-heading { color: var(--text-primary); border-color: var(--accent-light); }
.faq-style h2.section-heading { color: var(--text-primary); border-color: var(--accent-light); }
.rbu3tdn .callout-tip     { background: #052e16; border-color: #10b981; }
.rbu3tdn .callout-warn { background: #2d0a1e; border-color: #f43f5e; }
.rbu3tdn .callout-info    { background: #1e1036; border-color: #a855f7; }
.rbu3tdn .callout strong  { color: #f1f5f9; }
.rbu3tdn .callout p       { color: #cbd5e1; }
.rbu3tdn .a1dyfgmt    .callout-tip     .callout-glyph::before,
.rbu3tdn .fgubrm3  .callout-tip     .callout-glyph::before,
.rbu3tdn .callout-icon-b  .callout-tip     .callout-glyph::before,
.rbu3tdn .fz85zam3 .callout-tip     .callout-glyph::before { color: #10b981; }
.rbu3tdn .a1dyfgmt    .callout-warn .callout-glyph::before,
.rbu3tdn .fgubrm3  .callout-warn .callout-glyph::before,
.rbu3tdn .callout-icon-b  .callout-warn .callout-glyph::before,
.rbu3tdn .fz85zam3 .callout-warn .callout-glyph::before { color: #f43f5e; }
.rbu3tdn .a1dyfgmt    .callout-info    .callout-glyph::before,
.rbu3tdn .fgubrm3  .callout-info    .callout-glyph::before,
.rbu3tdn .callout-icon-b  .callout-info    .callout-glyph::before,
.rbu3tdn .fz85zam3 .callout-info    .callout-glyph::before { color: #a855f7; }
.diua1ha .callout-tip     { background: #2d2000; border-color: #eab308; }
.diua1ha .callout-warn { background: #2d0b0b; border-color: #ef4444; }
.diua1ha .callout-info    { background: #2d1600; border-color: #f97316; }
.diua1ha .callout strong  { color: #f1f5f9; }
.diua1ha .callout p       { color: #cbd5e1; }
.diua1ha .a1dyfgmt    .callout-tip     .callout-glyph::before,
.diua1ha .fgubrm3  .callout-tip     .callout-glyph::before,
.diua1ha .callout-icon-b  .callout-tip     .callout-glyph::before,
.diua1ha .fz85zam3 .callout-tip     .callout-glyph::before { color: #eab308; }
.diua1ha .a1dyfgmt    .callout-warn .callout-glyph::before,
.diua1ha .fgubrm3  .callout-warn .callout-glyph::before,
.diua1ha .callout-icon-b  .callout-warn .callout-glyph::before,
.diua1ha .fz85zam3 .callout-warn .callout-glyph::before { color: #ef4444; }
.diua1ha .a1dyfgmt    .callout-info    .callout-glyph::before,
.diua1ha .fgubrm3  .callout-info    .callout-glyph::before,
.diua1ha .callout-icon-b  .callout-info    .callout-glyph::before,
.diua1ha .fz85zam3 .callout-info    .callout-glyph::before { color: #f97316; }
.etx4wfs .callout-tip     { background: #0c1a2e; border-color: #38bdf8; }
.etx4wfs .callout-warn { background: #12103a; border-color: #818cf8; }
.etx4wfs .callout-info    { background: #0a2020; border-color: #2dd4bf; }
.etx4wfs .callout strong  { color: #f1f5f9; }
.etx4wfs .callout p       { color: #cbd5e1; }
.etx4wfs .a1dyfgmt    .callout-tip     .callout-glyph::before,
.etx4wfs .fgubrm3  .callout-tip     .callout-glyph::before,
.etx4wfs .callout-icon-b  .callout-tip     .callout-glyph::before,
.etx4wfs .fz85zam3 .callout-tip     .callout-glyph::before { color: #38bdf8; }
.etx4wfs .a1dyfgmt    .callout-warn .callout-glyph::before,
.etx4wfs .fgubrm3  .callout-warn .callout-glyph::before,
.etx4wfs .callout-icon-b  .callout-warn .callout-glyph::before,
.etx4wfs .fz85zam3 .callout-warn .callout-glyph::before { color: #818cf8; }
.etx4wfs .a1dyfgmt    .callout-info    .callout-glyph::before,
.etx4wfs .fgubrm3  .callout-info    .callout-glyph::before,
.etx4wfs .callout-icon-b  .callout-info    .callout-glyph::before,
.etx4wfs .fz85zam3 .callout-info    .callout-glyph::before { color: #2dd4bf; }
.dbsxz64f .callout-tip     { background: var(--accent-bg); border-color: var(--accent-light); }
.dbsxz64f .callout-warn { background: var(--accent-bg-light); border-color: var(--accent-light); }
.dbsxz64f .callout-info    { background: var(--accent-bg); border-color: var(--accent-pale); }
.dbsxz64f .a1dyfgmt    .callout-glyph::before,
.dbsxz64f .fgubrm3  .callout-glyph::before,
.dbsxz64f .callout-icon-b  .callout-glyph::before,
.dbsxz64f .fz85zam3 .callout-glyph::before { color: var(--accent-light) !important; }
.pros-mark::before,
.cons-mark::before { margin-right: 5px; }
.sev7 .compare-pros ul li,
.sev7 .pros-list li         { color: #4ade80; }
.sev7 .compare-pros .pros-mark { color: #22c55e; }
.sev7 .compare-cons ul li,
.sev7 .cons-list li         { color: #f87171; }
.sev7 .compare-cons .cons-mark { color: #ef4444; }
.tm0uz3 .compare-pros { background: var(--bg-pros); }
.tm0uz3 .compare-cons { background: var(--bg-cons); }
.tm0uz3 .compare-pros .pros-mark { color: var(--c-pros-label); }
.tm0uz3 .compare-cons .cons-mark { color: var(--c-cons); }
.tm0uz3 .compare-pros ul li,
.tm0uz3 .pros-list li            { color: var(--c-pros); }
.tm0uz3 .compare-cons ul li,
.tm0uz3 .cons-list li            { color: var(--c-cons); }
.compare-style-tint .compare-pros { background: var(--bg-pros); }
.compare-style-tint .compare-cons { background: var(--bg-cons); }
.compare-style-tint .compare-pros .pros-mark { color: var(--c-pros-label); }
.compare-style-tint .compare-cons .cons-mark { color: var(--c-cons); }
.compare-style-tint .compare-pros ul li,
.compare-style-tint .pros-list li          { color: var(--c-pros); }
.compare-style-tint .compare-cons ul li,
.compare-style-tint .cons-list li          { color: var(--c-cons); }
.xsvo .pros-mark::before { content: "✓ "; }
.xsvo .cons-mark::before { content: "✗ "; }
.compare-icon-arrow .pros-mark::before { content: "→ "; }
.compare-icon-arrow .cons-mark::before { content: "← "; }
.ltb814b .pros-mark::before { content: "★ "; }
.ltb814b .cons-mark::before { content: "✕ "; }
.a6yj3o .pros-mark::before { content: "◆ "; }
.a6yj3o .cons-mark::before { content: "▲ "; }
.callout-style-outline .callout { background: transparent; border-left: none; border: 1.5px solid; }
.callout-style-outline .callout-tip     { border-color: var(--c-tip-border); }
.callout-style-outline .callout-warn { border-color: var(--c-warn-border); }
.callout-style-outline .callout-info    { border-color: #60a5fa; }
.callout-style-outline .callout strong { color: var(--text-primary); }
.callout-style-outline .callout p      { color: var(--text-muted); }
.nf2l150j .callout { border-left: none; border-top: 4px solid; border-radius: 0 0 8px 8px; }
.nf2l150j .callout-tip     { border-top-color: var(--c-tip-border); }
.nf2l150j .callout-warn { border-top-color: var(--c-warn-border); }
.nf2l150j .callout-info    { border-top-color: #60a5fa; }
.o4rbifql .callout { border-left: none; border-radius: 8px; }
.o4rbifql .callout-tip     { background: #065f46; }
.o4rbifql .callout-warn { background: #92400e; }
.o4rbifql .callout-info    { background: #1e3a8a; }
.o4rbifql .callout strong,
.o4rbifql .callout p { color: #fff; }
.o4rbifql .callout-glyph::before { color: rgba(255,255,255,0.85) !important; }
.rbu3tdn.o4rbifql .callout-tip,
.rbu3tdn .o4rbifql .callout-tip     { background: #052e16; }
.rbu3tdn.o4rbifql .callout-warn,
.rbu3tdn .o4rbifql .callout-warn { background: #2d0a1e; }
.rbu3tdn.o4rbifql .callout-info,
.rbu3tdn .o4rbifql .callout-info    { background: #1e1036; }
.diua1ha.o4rbifql .callout-tip,
.diua1ha .o4rbifql .callout-tip      { background: #2d2000; }
.diua1ha.o4rbifql .callout-warn,
.diua1ha .o4rbifql .callout-warn  { background: #2d0b0b; }
.diua1ha.o4rbifql .callout-info,
.diua1ha .o4rbifql .callout-info     { background: #2d1600; }
.etx4wfs.o4rbifql .callout-tip,
.etx4wfs .o4rbifql .callout-tip      { background: #0c1a2e; }
.etx4wfs.o4rbifql .callout-warn,
.etx4wfs .o4rbifql .callout-warn  { background: #12103a; }
.etx4wfs.o4rbifql .callout-info,
.etx4wfs .o4rbifql .callout-info     { background: #0a2020; }
.bm4zgy6h .callout { border-left: none; border-radius: 6px; padding: 10px 14px; }
.bm4zgy6h .callout-tip     { background: color-mix(in srgb, var(--c-tip-border) 10%, transparent); }
.bm4zgy6h .callout-warn { background: color-mix(in srgb, var(--c-warn-border) 10%, transparent); }
.bm4zgy6h .callout-info    { background: color-mix(in srgb, #60a5fa 10%, transparent); }
.bm4zgy6h .callout strong { color: var(--text-primary); }
.bm4zgy6h .callout p      { color: var(--text-muted); }
.ag0xwwf .callout { border-left: none; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.25); }
.a1dyfgmt .callout-glyph,
.fgubrm3 .callout-glyph,
.callout-icon-b .callout-glyph,
.fz85zam3 .callout-glyph { font-size: 0; width: 1.1rem; flex-shrink: 0; }
.a1dyfgmt .callout-glyph::before,
.fgubrm3 .callout-glyph::before,
.callout-icon-b .callout-glyph::before,
.fz85zam3 .callout-glyph::before {
  display: block; font-size: 1.15rem; line-height: 1.3; font-style: normal;
}
.a1dyfgmt .callout-tip     .callout-glyph::before { content: "✦"; color: var(--c-tip-border); }
.a1dyfgmt .callout-warn .callout-glyph::before { content: "▲"; color: var(--c-warn-border); }
.a1dyfgmt .callout-info    .callout-glyph::before { content: "◉"; color: #60a5fa; }
.fgubrm3 .callout-tip     .callout-glyph::before { content: "★"; color: var(--c-tip-border); }
.fgubrm3 .callout-warn .callout-glyph::before { content: "◆"; color: var(--c-warn-border); }
.fgubrm3 .callout-info    .callout-glyph::before { content: "●"; color: #60a5fa; }
.callout-icon-b .callout-tip     .callout-glyph::before { content: "▶"; color: var(--c-tip-border); }
.callout-icon-b .callout-warn .callout-glyph::before { content: "■"; color: var(--c-warn-border); }
.callout-icon-b .callout-info    .callout-glyph::before { content: "▸"; color: #60a5fa; }
.fz85zam3 .callout-tip     .callout-glyph::before { content: "→"; color: var(--c-tip-border); }
.fz85zam3 .callout-warn .callout-glyph::before { content: "⬥"; color: var(--c-warn-border); }
.fz85zam3 .callout-info    .callout-glyph::before { content: "◈"; color: #60a5fa; }
.e57o .h7rk8gse .subsection,
.e57o .i4er .subsection  { box-shadow: 0 2px 8px rgba(0,0,0,0.22); }
.e57o .tile-card                { box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.e57o .table-scroll          { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.e57o .toc-card                    { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.flat-surface .h7rk8gse .subsection,
.flat-surface .i4er .subsection,
.flat-surface .tile-card,
.flat-surface .ze2yay,
.flat-surface .ne0i,
.flat-surface .table-scroll,
.flat-surface .toc-card,
.flat-surface .ag0xwwf .callout { box-shadow: none; }
.hiop9d   .section-copy-alt, .hiop9d .section-copy, .hiop9d .section-note,
.hiop9d   .section-lede, .hiop9d .section-outro { font-size: 0.9rem; }
.hiop9d   .marker-list, .hiop9d .step-list { font-size: 0.9rem; }
.lsd0tfnr   .section-copy-alt, .lsd0tfnr .section-copy, .lsd0tfnr .section-note,
.lsd0tfnr   .section-lede, .lsd0tfnr .section-outro { font-size: 0.95rem; }
.lsd0tfnr   .marker-list, .lsd0tfnr .step-list { font-size: 0.95rem; }
.text-size-relaxed   .section-copy-alt, .text-size-relaxed .section-copy, .text-size-relaxed .section-note,
.text-size-relaxed   .section-lede, .text-size-relaxed .section-outro { font-size: 1.08rem; }
.text-size-relaxed   .marker-list, .text-size-relaxed .step-list { font-size: 1.05rem; }
.text-size-relaxed   .data-grid { font-size: 0.97rem; }
.hspwlxts .hero-heading      { font-size: 3.2rem; }
.hspwlxts h2.section-heading { font-size: 1.9rem; }
.hspwlxts h3.section-subheading     { font-size: 1.4rem; }
.heading-scale-xl .hero-heading      { font-size: 3.8rem; }
.heading-scale-xl h2.section-heading { font-size: 2.2rem; }
.heading-scale-xl h3.section-subheading     { font-size: 1.6rem; }
.content-section + .content-section { position: relative; }
.rhlgmze   .content-section + .content-section::before,
.cpu5mx  .content-section + .content-section::before,
.pn3wnlxo   .content-section + .content-section::before,
.ivnzk   .content-section + .content-section::before,
.nixi   .content-section + .content-section::before,
.vcy5 .content-section + .content-section::before {
  position: absolute; top: -1px; left: 0; right: 0;
  transform: translateY(-50%);
}
.rhlgmze .content-section + .content-section::before {
  content: ""; height: 1px; background: var(--accent); opacity: 0.5;
}
.cpu5mx .content-section + .content-section::before {
  content: ""; height: 4px;
  background: linear-gradient(90deg, var(--grad-start), var(--accent), var(--grad-end));
}
.pn3wnlxo .content-section + .content-section::before {
  content: "● ● ●";
  text-align: center; font-size: 0.55rem; letter-spacing: 0.5em;
  color: var(--accent-light); opacity: 0.7; line-height: 1;
  padding-top: 6px;
}
.ivnzk .content-section + .content-section::before {
  content: ""; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 25%, var(--accent) 75%, transparent 100%);
  opacity: 0.6;
}
.i96nar .content-section { margin-bottom: 16px; }
.i96nar .content-section + .content-section { margin-top: 0; }
.i96nar .section-frame { padding-top: 0; padding-bottom: 0; }
.nixi .content-section + .content-section::before {
  content: ""; border-top: 2px dashed var(--accent); opacity: 0.5;
}
.vcy5 .content-section + .content-section::before {
  content: ""; border-top: 3px dotted var(--accent); opacity: 0.5;
}
.ygv1l4pn .content-section + .content-section::before,
.yx7hrr .content-section + .content-section::before,
.ovur16f .content-section + .content-section::before {
  content: ""; display: block;
  position: absolute; top: -70px; left: 0; right: 0; height: 70px;
  background: var(--bg-page);
  pointer-events: none; z-index: 2;
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
}
.ib5mo2l .ygv1l4pn .content-section:nth-child(even)::before,
.ib5mo2l .yx7hrr .content-section:nth-child(even)::before,
.ib5mo2l .ovur16f .content-section:nth-child(even)::before { background: var(--bg-surface); }
.yeworpy .ygv1l4pn .content-section:nth-child(even)::before,
.yeworpy .yx7hrr .content-section:nth-child(even)::before,
.yeworpy .ovur16f .content-section:nth-child(even)::before { background: var(--bg-card); }
.ygv1l4pn .content-section + .content-section::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 20 C12 0 37 0 50 20 C63 40 88 40 100 20 L100 50 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 20 C12 0 37 0 50 20 C63 40 88 40 100 20 L100 50 Z' fill='black'/%3E%3C/svg%3E");
}
.yx7hrr .content-section + .content-section::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 20 C8 0 17 0 25 20 C33 40 42 40 50 20 C58 0 67 0 75 20 C83 40 92 40 100 20 L100 50 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 20 C8 0 17 0 25 20 C33 40 42 40 50 20 C58 0 67 0 75 20 C83 40 92 40 100 20 L100 50 Z' fill='black'/%3E%3C/svg%3E");
}
.ovur16f .content-section + .content-section::before {
  height: 80px; top: -80px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 40 C20 0 80 0 100 40 L100 50 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 40 C20 0 80 0 100 40 L100 50 Z' fill='black'/%3E%3C/svg%3E");
}
.ph6nz .hero-media,
.dilw5 .hero-media,
.hero-edge-wave .hero-media { overflow: hidden; }
.ph6nz .hero-content,
.dilw5 .hero-content { margin-bottom: 60px; }
.hero-edge-wave .hero-content { margin-bottom: 70px; }
.hero-edge-wave .jgqho { padding-bottom: 70px; }
.ph6nz .hero-media::before,
.dilw5 .hero-media::before,
.hero-edge-wave .hero-media::before {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--bg-page);
  pointer-events: none; z-index: 2;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.ph6nz .hero-media::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 20 C12 0 37 0 50 20 C63 40 88 40 100 20 L100 50 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 20 C12 0 37 0 50 20 C63 40 88 40 100 20 L100 50 Z' fill='black'/%3E%3C/svg%3E");
}
.dilw5 .hero-media::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 20 C8 0 17 0 25 20 C33 40 42 40 50 20 C58 0 67 0 75 20 C83 40 92 40 100 20 L100 50 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 20 C8 0 17 0 25 20 C33 40 42 40 50 20 C58 0 67 0 75 20 C83 40 92 40 100 20 L100 50 Z' fill='black'/%3E%3C/svg%3E");
}
.hero-edge-wave .hero-media::before {
  height: 70px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 40 C20 0 80 0 100 40 L100 50 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L0 40 C20 0 80 0 100 40 L100 50 Z' fill='black'/%3E%3C/svg%3E");
}
.jqeip3w .hero-media:not(.hero-flat) .hero-veil { background: linear-gradient(225deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 100%); }
.h6pdq .hero-media:not(.hero-flat) .hero-veil { background: linear-gradient(45deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.65) 100%); }
.zvptmcz  .hero-media:not(.hero-flat) .hero-veil { background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 100%); }
.ldnm1s  .hero-media:not(.hero-flat) .hero-veil { background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 100%); }
.hero-tone-accent .hero-flat { background: var(--accent); }
.hero-tone-accent .hero-flat .hero-veil { background: none; }
.hero-tone-accent .t79s9pl { background: var(--accent); }
.hero-tone-accent .hero-duo { background: var(--accent-bg); }
.hero-tone-accent .hero-media:not(.hero-flat) .hero-veil { background: rgba(0,0,0,0.6); }
.y31wnogq .media-frame { float: left; width: 38%; margin: 0 28px 16px 0; }
.y31wnogq .media-frame .media-img { width: 100%; height: auto; max-height: 360px; object-fit: cover; border-radius: 10px; }
.y31wnogq .section-frame::after { content: ''; display: block; clear: both; }
.figure-float-right .media-frame { float: right; width: 38%; margin: 0 0 16px 28px; }
.figure-float-right .media-frame .media-img { width: 100%; height: auto; max-height: 360px; object-fit: cover; border-radius: 10px; }
.figure-float-right .section-frame::after { content: ''; display: block; clear: both; }
.lkk5 .content-section:nth-child(odd)  .media-frame { float: left;  width: 38%; margin: 0 28px 16px 0; }
.lkk5 .content-section:nth-child(even) .media-frame { float: right; width: 38%; margin: 0 0 16px 28px; }
.lkk5 .media-frame .media-img { width: 100%; height: auto; max-height: 360px; object-fit: cover; border-radius: 10px; }
.lkk5 .section-frame::after { content: ''; display: block; clear: both; }
.y31wnogq .tile-grid,
.figure-float-right .tile-grid,
.figure-float-right .hzus7wd,
.lkk5 .tile-grid,
@media (max-width: 900px) {
  .y31wnogq .media-frame,
  .figure-float-right .media-frame,
  .lkk5 .content-section:nth-child(odd)  .media-frame,
  .lkk5 .content-section:nth-child(even) .media-frame {
    float: none !important;
    width: 100% !important;
    margin: 0 0 16px 0 !important;
  }
  .y31wnogq .media-frame .media-img,
  .figure-float-right .media-frame .media-img,
  .lkk5 .media-frame .media-img {
    max-height: none !important;
  }
}
.y31wnogq .marker-list,
.y31wnogq .step-list,
.figure-float-right .marker-list,
.figure-float-right .step-list,
.lkk5 .marker-list,
.lkk5 .step-list { overflow: hidden; }
@media (max-width: 640px) {
  .y31wnogq .media-frame,
  .figure-float-right .media-frame,
  .lkk5 .media-frame { float: none; width: 100%; margin: 0 0 16px 0; }
}
.content-width-standard .page-wrap,
.content-width-standard .section-frame,
.content-width-standard .footer-wrap  { max-width: 1100px; }
.content-width-standard { --content-mw: 1100px; }
.jcd8a .page-wrap,
.jcd8a .section-frame,
.jcd8a .footer-wrap  { max-width: 1200px; }
.ib6c .page-wrap,
.ib6c .section-frame,
.ib6c .footer-wrap  { max-width: 1320px; }
.crumb-bar-inner { font-size: 0.82rem; color: var(--text-muted); }
.crumb-row { display: flex; align-items: center; }
.crumb-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; flex-wrap: wrap; gap: 0;
}
.crumb-item { display: flex; align-items: center; }
.crumb-link { color: var(--accent-light); text-decoration: none; padding: 2px 5px; border-radius: 4px; }
.crumb-link:hover { text-decoration: underline; }
.crumb-sep { margin: 0 3px; opacity: 0.45; }
.crumb-sep::before { content: '/'; }
.crumb-current { padding: 2px 5px; color: var(--text-main); }
.crumb-bar .crumb-bar-inner {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 9px 0;
}
.crumb-bar .crumb-row { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.osr7he .crumb-bar-inner {
  border-left: 3px solid var(--accent);
  padding: 4px 0;
  margin-bottom: 20px;
}
.osr7he .crumb-row { padding: 0 0 0 12px; }
.ji0eme .crumb-row { padding: 0 16px; }
.ji0eme .crumb-bar-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 0;
  box-shadow: 0 4px 18px rgba(0,0,0,0.28);
}
.ji0eme .page-wrap { padding-top: 28px; }
@media (max-width: 720px) {
  .q63vehgs { margin-top: 18px; padding: 0 16px; }
  .ji0eme .page-wrap { padding-top: 16px; }
}
.content-width-standard.crumb-bar .crumb-row { max-width: 1100px; }
.jcd8a.crumb-bar .crumb-row { max-width: 1200px; }
.ib6c.crumb-bar .crumb-row { max-width: 1320px; }
.content-width-standard .q63vehgs { max-width: 1100px; }
.section-spacing-snug .content-section { padding-top: 16px; padding-bottom: 16px; }
.qswygolc .content-section { padding-top: 24px; padding-bottom: 24px; }
.dn0rrbf .content-section { padding-top: 40px; padding-bottom: 40px; }
.gkj8uabo .content-section { padding-top: 52px; padding-bottom: 52px; }
.thnmch6 .content-section:nth-child(4n+1) { padding-top: 20px;  padding-bottom: 20px; }
.thnmch6 .content-section:nth-child(4n+2) { padding-top: 36px;  padding-bottom: 36px; }
.thnmch6 .content-section:nth-child(4n+3) { padding-top: 28px;  padding-bottom: 28px; }
.thnmch6 .content-section:nth-child(4n)   { padding-top: 44px;  padding-bottom: 44px; }
.qvwb .section-frame { padding-top: 10px;  padding-bottom: 10px; }
.inner-spacing-cozy .section-frame { padding-top: 18px;  padding-bottom: 18px; }
.aqmvr .section-frame { padding-top: 36px;  padding-bottom: 36px; }
.suyu .section-frame { padding-top: 48px;  padding-bottom: 48px; }
.mtqfy8h h2.section-heading { font-weight: 600; }
.mtqfy8h h3.section-subheading     { font-weight: 600; }
.lphcx7 h2.section-heading { font-weight: 800; }
.lphcx7 h3.section-subheading     { font-weight: 700; }
.fxdsokmi h2.section-heading { font-weight: 900; }
.fxdsokmi h3.section-subheading     { font-weight: 800; }
.fxdsokmi .callout strong,
.fxdsokmi .callout strong { font-weight: 600; }
.nav-cta-pill {
  margin-left: 16px; flex-shrink: 0;
  padding: 7px 16px; font-size: 0.82rem; font-weight: 700; border-radius: 6px;
}
.ga7bmqbf .nav-cta-pill { display: none; }
@media (max-width: 640px) {
  .vbxpd { display: none; }
  .nav-cta-pill {
    position: absolute !important;
    left: 50% !important; top: 50% !important;
    transform: translate(-50%, -50%);
    padding: 8px 16px !important;
    font-size: 0.82rem !important;
    z-index: 5;
    max-width: 55%;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
}
.nav-cta-pill { background: var(--cta) !important; color: #fff !important; border: none !important; }
.nav-cta-pill:hover { opacity: 0.85; }
.p2xr1l .nav-cta-pill { background: linear-gradient(135deg, var(--cta), var(--cta-light)) !important; }
.d3qs1zrn .nav-cta-pill,
.mwqt3  .nav-cta-pill { background: var(--grad-start) !important; color: #fff !important; border: none !important; }
.d3qs1zrn .nav-cta-pill:hover,
.mwqt3  .nav-cta-pill:hover { opacity: 0.88; }
.p2xr1l.d3qs1zrn .nav-cta-pill,
.p2xr1l.mwqt3  .nav-cta-pill { background: linear-gradient(135deg, var(--grad-start), var(--accent-light)) !important; }
.sticky-cta {
  position: fixed; bottom: 32px; z-index: 900;
  padding: 12px 22px; font-size: 0.9rem; font-weight: 700; border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform .15s, opacity .15s;
}
.sticky-cta:hover { transform: translateY(-2px); opacity: 0.92; }
.sticky-cta { background: var(--cta) !important; color: #fff !important; border: none !important; }
.ajrx .sticky-cta { display: none; }
.floating-cta-right .sticky-cta { right: 32px; }
.nlywi  .sticky-cta { left: 32px; }
@media (max-width: 480px) {
  .floating-cta-right .sticky-cta { right: 20px; bottom: 20px; }
  .nlywi  .sticky-cta { left: 20px; bottom: 20px; }
}
.site-footer { background: var(--bg-surface); border-top: 1px solid var(--border); margin-top: 60px; }
.footer-wrap { max-width: 1100px; margin: 0 auto; padding: 32px 24px; }
.footer-disclaimer { color: var(--text-faint); font-size: 0.85rem; margin-bottom: 6px; }
.footer-fine { color: var(--text-dim); font-size: 0.8rem; }
.footer-brand { display: inline-flex; align-items: center; gap: 8px; color: var(--text); text-decoration: none; font-weight: 700; font-size: 1rem; margin-bottom: 14px; }
.footer-brand img { height: 26px; width: auto; object-fit: contain; }
.v7bt .footer-wrap { text-align: center; }
.v7bt .footer-disclaimer { margin-top: 0; }
@media (max-width: 640px) {
  .footer-wrap { padding-left: 16px; padding-right: 16px; }
  .layout-full-bleed .footer-wrap { padding: 20px 16px; }
  .ejvcge { gap: 4px 12px; }
  .footer-disclaimer { font-size: 0.78rem; }
}
.qto95zy .itelod .footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.05rem; text-decoration: none; margin-bottom: 10px; }
.qto95zy .footer-disclaimer { font-size: 0.78rem; color: var(--text-faint); margin: 14px 0 4px; line-height: 1.5; }
.qto95zy .footer-fine { font-size: 0.78rem; color: var(--text-faint); margin: 0; }
@media (max-width: 768px) { .qto95zy .yqso6 { grid-template-columns: 1fr 1fr; } .qto95zy .itelod { grid-column: 1 / -1; } }
@media (max-width: 480px) { .qto95zy .yqso6 { grid-template-columns: 1fr; } }
.footer-style-compact .footer-top { display: flex; align-items: center; gap: 0; flex-wrap: wrap; padding-bottom: 14px; border-bottom: 1px solid var(--border); margin-bottom: 12px; }
.footer-style-compact .footer-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1rem; text-decoration: none; margin-right: auto; flex-shrink: 0; }
.footer-style-compact .footer-nav { display: flex; flex-wrap: wrap; gap: 4px 16px; margin-right: 24px; }
.footer-style-compact .footer-nav a { font-size: 0.87rem; color: var(--text-muted); text-decoration: none; }
.footer-style-compact .footer-nav a:hover { color: var(--accent-light); }
.footer-copyright { font-size: 0.8rem; color: var(--text-faint); margin: 0; white-space: nowrap; }
.footer-style-compact .footer-bottom { display: flex; align-items: baseline; gap: 1.5rem; flex-wrap: wrap; }
.footer-style-compact .footer-legal { display: flex; flex-wrap: wrap; gap: 4px 14px; }
.footer-style-compact .footer-legal a { font-size: 0.78rem; color: var(--text-faint); text-decoration: none; }
.footer-style-compact .footer-legal a:hover { color: var(--accent-light); }
.footer-style-compact .footer-disclaimer { font-size: 0.78rem; color: var(--text-faint); margin: 0; }
@media (max-width: 640px) { .footer-style-compact .footer-top { gap: 12px; } .footer-style-compact .footer-brand { margin-right: 0; width: 100%; } }
.bolj0 .w2imr .footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.1rem; text-decoration: none; margin-bottom: 10px; }
.bolj0 .footer-disclaimer { font-size: 0.78rem; color: var(--text-faint); margin: 0; flex: 1; }
.bolj0 .footer-fine { font-size: 0.78rem; color: var(--text-faint); margin: 0; white-space: nowrap; }
@media (max-width: 768px) { .bolj0 .orrnk5 { grid-template-columns: 1fr 1fr; } .bolj0 .w2imr { grid-column: 1 / -1; } }
@media (max-width: 480px) { .bolj0 .orrnk5 { grid-template-columns: 1fr; } }
@media (max-width: 760px) { .pketjx .kby2d7xm { grid-template-columns: 1fr 1fr; } .pketjx .arge:first-child { grid-column: 1 / -1; } }
@media (max-width: 480px) { .pketjx .kby2d7xm { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .v9x005 .kby2d7xm { grid-template-columns: 1fr; } }
.onh5hrn .footer-wrap { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.eeajse .site-header      { background: var(--bg-page); border-bottom-color: var(--border-alt); }
.eeajse .site-footer { background: var(--bg-page); border-top-color: var(--border-alt); }
.theme-scheme-slate .site-header      { background: #0d1117; border-bottom-color: #21262d; }
.theme-scheme-slate .brand-link { color: var(--accent-light); }
.theme-scheme-slate .main-nav { --msep-color: #8b949e; }
.theme-scheme-slate .main-nav a { color: #8b949e; }
.theme-scheme-slate .main-nav a:hover { color: var(--accent-light); }
.theme-scheme-slate .nav-toggle { color: #8b949e; }
.theme-scheme-slate .site-footer { background: #0d1117; border-top-color: #21262d; color: #e6edf3; }
.theme-scheme-slate .footer-disclaimer,
.theme-scheme-slate .footer-fine { color: #6e7681; }
.theme-scheme-slate .z8o2c8in a, .theme-scheme-slate .ejvcge a,
.theme-scheme-slate .gzdes2o a, .theme-scheme-slate .footer-nav a,
.theme-scheme-slate .footer-legal a { color: #8b949e; }
.theme-scheme-slate .footer-brand { color: #e6edf3; }
.theme-scheme-slate .z8o2c8in a:hover, .theme-scheme-slate .ejvcge a:hover,
.theme-scheme-slate .gzdes2o a:hover, .theme-scheme-slate .footer-nav a:hover { color: var(--accent-light); }
@media (max-width: 640px) {
  .theme-scheme-slate .main-nav { background: #0d1117; border-top-color: #21262d; }
  .theme-scheme-slate .main-nav li a { border-bottom-color: #21262d; }
}
.wx3xfc1 .site-header      { background: #f0f4f8; border-bottom-color: #cbd5e1; }
.wx3xfc1 .brand-link { color: var(--accent-light); }
.wx3xfc1 .main-nav { --msep-color: #475569; }
.wx3xfc1 .main-nav a { color: #475569; }
.wx3xfc1 .main-nav a:hover { color: var(--accent-light); }
.wx3xfc1 .nav-toggle { color: #64748b; }
.wx3xfc1 .site-footer { background: #f0f4f8; border-top-color: #cbd5e1; }
.wx3xfc1 .footer-disclaimer,
.wx3xfc1 .footer-fine { color: #64748b; }
.wx3xfc1 .gzdes2o a, .wx3xfc1 .footer-nav a,
.wx3xfc1 .footer-legal a, .wx3xfc1 .footer-brand { color: #374151; }
.wx3xfc1 .gzdes2o a:hover, .wx3xfc1 .footer-nav a:hover { color: var(--accent-light); }
@media (max-width: 640px) {
  .wx3xfc1 .main-nav { background: #f0f4f8; border-top-color: #cbd5e1; }
  .wx3xfc1 .main-nav li a { border-bottom-color: #cbd5e1; color: #475569; }
}
.d3qs1zrn .site-header      { background: var(--accent); border-bottom-color: var(--accent-light); }
.d3qs1zrn .brand-link { color: #fff; }
.d3qs1zrn .main-nav { --msep-color: rgba(255,255,255,0.82); }
.d3qs1zrn .main-nav a { color: rgba(255,255,255,0.82); }
.d3qs1zrn .main-nav a:hover { color: #fff; }
.d3qs1zrn .nav-toggle { color: rgba(255,255,255,0.9); }
.d3qs1zrn .nav-subpanel a { color: var(--text-primary) !important; }
.d3qs1zrn .nav-subpanel a:hover { color: var(--accent-light) !important; }
.d3qs1zrn .site-footer { background: var(--accent); border-top-color: var(--accent-light); color: #fff; }
.d3qs1zrn .footer-disclaimer,
.d3qs1zrn .footer-fine { color: rgba(255,255,255,0.72); }
.d3qs1zrn .gzdes2o a, .d3qs1zrn .footer-nav a,
.d3qs1zrn .footer-legal a, .d3qs1zrn .footer-brand { color: #fff; }
.d3qs1zrn .gzdes2o a:hover, .d3qs1zrn .footer-nav a:hover { color: #fff; }
@media (max-width: 640px) {
  .d3qs1zrn .main-nav { background: var(--accent); border-top-color: var(--accent-light); }
  .d3qs1zrn .main-nav li a { border-bottom-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.82); }
}
.mwqt3 .site-header {
  background: color-mix(in srgb, var(--bg-surface) 60%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: color-mix(in srgb, var(--border) 50%, transparent);
}
.mwqt3 .site-footer {
  background: color-mix(in srgb, var(--bg-surface) 60%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top-color: color-mix(in srgb, var(--border) 50%, transparent);
}
@media (max-width: 640px) {
  .mwqt3 .main-nav {
    background: color-mix(in srgb, var(--bg-surface) 85%, transparent);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
}
.jwexqai .header-row { min-height: 52px; height: auto; padding-top: 6px; padding-bottom: 6px; }
.xjzbo .header-row { min-height: 58px; height: auto; padding-top: 8px; padding-bottom: 8px; }
.fsgt4 .header-row { min-height: 72px; height: auto; }
.bpucx .header-row { min-height: 84px; height: auto; }
.layout-full-bleed .header-row { max-width: none; padding: 0 32px; }
.layout-full-bleed .footer-wrap  { max-width: none; padding: 24px 32px; }
.mnrjrv.jcd8a .header-row { max-width: 1200px; }
.mnrjrv.ib6c .header-row { max-width: 1320px; }
.brand-case-capitalize   .brand-link, .brand-case-capitalize   .footer-brand { text-transform: capitalize; }
.w6xd1qva .brand-link, .w6xd1qva .footer-brand { text-transform: lowercase; }
.iclsic .brand-link, .iclsic .footer-brand { text-transform: uppercase; letter-spacing: 0.06em; }
.brand-mark, .footer-brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wqa95p .brand-mark,
.wqa95p .footer-brand-mark { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 8px; padding: 4px; }
.eh12sgl .brand-mark,
.eh12sgl .footer-brand-mark { background: linear-gradient(135deg, color-mix(in srgb, var(--grad-start) var(--logo-bg-opacity, 8%), transparent), color-mix(in srgb, var(--grad-end) var(--logo-bg-opacity, 8%), transparent)); border-radius: 8px; padding: 4px; }
.ar1ifpx4 .brand-mark,
.ar1ifpx4 .footer-brand-mark { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 999px; padding: 4px 8px; }
.c0eq .brand-mark,
.c0eq .footer-brand-mark { background: linear-gradient(135deg, color-mix(in srgb, var(--grad-start) var(--logo-bg-opacity, 8%), transparent), color-mix(in srgb, var(--grad-end) var(--logo-bg-opacity, 8%), transparent)); border-radius: 999px; padding: 4px 8px; }
.z8wc   .main-nav a { font-weight: 500; }
.ukly49 .main-nav a { font-weight: 600; }
.nav-link-weight-bold     .main-nav a { font-weight: 700; }
.e96qn9u    .main-nav a { font-weight: 800; letter-spacing: 0.01em; }
.s31xe     .main-nav > li + li::before,
.hhsg3wbd    .main-nav > li + li::before,
.sxopla    .main-nav > li + li::before,
.cuv53t .main-nav > li + li::before,
.nav-sep-chevron .main-nav > li + li::before,
.nn95x  .main-nav > li + li::before,
.w4sv0    .main-nav > li + li::before {
  margin-right: 10px; margin-left: -10px; opacity: 0.5; color: var(--msep-color);
}
.s31xe     .main-nav > li + li::before { content: "·"; font-size: 1.4em; line-height: 1; vertical-align: middle; }
.hhsg3wbd    .main-nav > li + li::before { content: "|"; }
.sxopla    .main-nav > li + li::before { content: "—"; }
.cuv53t .main-nav > li + li::before { content: "◆"; font-size: 0.45em; vertical-align: middle; }
.nav-sep-chevron .main-nav > li + li::before { content: "›"; font-size: 1.3em; line-height: 1; }
.nn95x  .main-nav > li + li::before { content: "•"; font-size: 0.8em; vertical-align: middle; }
.w4sv0    .main-nav > li + li::before { content: "✦"; font-size: 0.55em; vertical-align: middle; }
@media (max-width: 640px) {

  
  .menu-icon-a .nav-toggle,
  .vbpkxqz .nav-toggle,
  .ptwk5 .nav-toggle,
  .t1dgr7wx .nav-toggle,
  .qyba0n .nav-toggle {
    font-size: 0 !important;
    display: flex !important;
    align-items: center; justify-content: center;
    padding: 0; width: 40px;
  }

  
  .menu-icon-a .nav-toggle::before,
  .vbpkxqz .nav-toggle::before,
  .ptwk5 .nav-toggle::before,
  .t1dgr7wx .nav-toggle::before,
  .qyba0n .nav-toggle::before { content: ""; display: block; flex-shrink: 0; }

  
  .menu-icon-a .nav-toggle::before {
    width: 22px; height: 11px;
    background:
      linear-gradient(currentColor, currentColor) 0 0    / 100% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 100% /  68% 2px no-repeat;
  }

  
  .vbpkxqz .nav-toggle::before {
    width: 22px; height: 17px;
    background:
      linear-gradient(currentColor, currentColor) 0 0    / 100% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 50%  / 100% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 100% / 100% 2px no-repeat;
  }

  
  .ptwk5 .nav-toggle::before {
    width: 22px; height: 17px;
    background:
      linear-gradient(currentColor, currentColor) 0 0    / 100% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 50%  /  70% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 100% /  42% 2px no-repeat;
  }

  
  .t1dgr7wx .nav-toggle::before {
    width: 22px; height: 17px;
    background:
      linear-gradient(currentColor, currentColor) 0 0    / 100% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 50%  /  52% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 100% / 100% 2px no-repeat;
  }

  
  .qyba0n .nav-toggle::before {
    width: 22px; height: 25px;
    background:
      linear-gradient(currentColor, currentColor) 0 0     / 100% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 33.3% /  76% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 66.6% /  52% 2px no-repeat,
      linear-gradient(currentColor, currentColor) 0 100%  /  28% 2px no-repeat;
  }

}
@media (max-width: 640px) {
  .k9rm4 .nav-toggle {
    padding: 5px 14px;
  }
  .k9rm4 .main-nav {
    left: auto; right: 12px; top: 54px;
    width: auto; min-width: 180px;
    border-radius: 14px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
    padding: 6px 0;
  }
  .k9rm4 .main-nav li a {
    border-bottom: none; padding: 10px 22px;
  }
  .k9rm4 .main-nav li a:hover { background: var(--bg-raised); }
  .k9rm4 .nav-scrim,
  .menu-scrim-soft .nav-scrim,
  .menu-mode-sheet .nav-scrim { background: none; backdrop-filter: none; -webkit-backdrop-filter: none; pointer-events: none; }
}
@media (max-width: 640px) {
  .wd121 .nav-toggle {
    padding: 5px 10px;
  }
  .wd121 .main-nav {
    display: flex !important;
    position: fixed;
    top: 0; right: 0; bottom: 0; left: auto;
    width: 72vw; max-width: 280px;
    background: var(--bg-surface);
    border-left: 1px solid var(--border);
    border-top: none; border-radius: 0;
    padding: 72px 0 24px;
    transform: translateX(105%);
    transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
    z-index: 900;
    box-shadow: -4px 0 24px rgba(0,0,0,0.22);
  }
  .wd121 .main-nav.is-open { transform: translateX(0); }
  .wd121 .main-nav li a {
    padding: 14px 28px; font-size: 1rem; border-bottom: 1px solid var(--border);
  }
  .wd121 .main-nav li:last-child a { border-bottom: none; }
  .d3qs1zrn .main-nav,
  .theme-scheme-slate .main-nav { background: var(--accent) !important; }
  .d3qs1zrn .main-nav li a,
  .theme-scheme-slate .main-nav li a { color: rgba(255,255,255,0.82) !important; border-bottom-color: rgba(255,255,255,0.2) !important; }
}
@media (max-width: 640px) {
  .menu-mode-sheet .nav-toggle {
    padding: 5px 10px;
  }
  .menu-mode-sheet .main-nav {
    display: flex !important;
    position: fixed;
    bottom: 0; left: 0; right: 0; top: auto;
    border-radius: 18px 18px 0 0;
    border-top: 1px solid var(--border); border-left: none; border-right: none;
    padding: 20px 0 28px;
    transform: translateY(110%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    z-index: 900;
    box-shadow: 0 -6px 28px rgba(0,0,0,0.2);
  }
  .menu-mode-sheet .main-nav::before {
    content: ""; display: block;
    width: 40px; height: 4px;
    background: var(--border); border-radius: 2px;
    margin: 0 auto 14px;
  }
  .menu-mode-sheet .main-nav.is-open { transform: translateY(0); }
  .menu-mode-sheet .main-nav li a {
    text-align: center; border-bottom: none; padding: 13px 28px; font-size: 1rem;
  }
}
@media (max-width: 640px) {
  .vaqg .nav-toggle {
    padding: 5px 10px;
  }
  .vaqg .main-nav {
    display: flex !important;
    position: fixed; inset: 0;
    background: color-mix(in srgb, var(--bg-surface) 96%, transparent);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 4px; border: none; border-radius: 0; padding: 0;
    opacity: 0; pointer-events: none;
    transition: opacity 0.22s ease; z-index: 900;
  }
  .vaqg .main-nav.is-open { opacity: 1; pointer-events: auto; }
  .vaqg .main-nav li a {
    font-size: 1.5rem; font-weight: 700; border-bottom: none;
    padding: 14px 48px; letter-spacing: 0.01em;
  }
}
@media (max-width: 640px) {
  .io0k     .nav-toggle { border-radius: 0 !important; }
  .menu-btn-rounded   .nav-toggle { border-radius: 8px !important; }
  .ds3ma .nav-toggle { border-radius: 50% !important; }
  .ufog1kc   .nav-toggle { border-radius: 999px !important; }
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-head { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0; background: var(--bg-card-inner);
}
.review-avatar-fallback {
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 700; color: var(--accent-light);
}
.review-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.review-name { font-weight: 700; color: var(--text-primary); font-size: 0.98rem; }
.review-stars { color: var(--cta); font-size: 0.95rem; letter-spacing: 1px; }
.review-stars .review-star-off { color: var(--text-faint); }
.review-text { color: var(--text-body); font-size: 0.94rem; line-height: 1.5; margin: 0; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 20px;
}
.yxzm4n .review-card { flex-direction: row; align-items: flex-start; gap: 16px; }
.yxzm4n .review-head { flex: 0 0 auto; flex-direction: column; align-items: center; min-width: 90px; }
.yxzm4n .review-avatar { width: 64px; height: 64px; }
.yxzm4n .review-meta { align-items: center; text-align: center; }
.yxzm4n .review-text { flex: 1 1 auto; }
.j23obzv .review-card {
  padding: 14px 16px;
  gap: 8px;
  border: none;
  border-left: 3px solid var(--cta);
  border-radius: 0 8px 8px 0;
  background: var(--bg-card-inner);
}
.j23obzv .review-avatar { width: 40px; height: 40px; }
.j23obzv .review-text { font-size: 0.88rem; }
@media (max-width: 640px) {
  .yxzm4n .review-card { flex-direction: column; align-items: stretch; }
  .yxzm4n .review-head { flex-direction: row; min-width: auto; }
  .yxzm4n .review-meta { align-items: flex-start; text-align: left; }
}
.flush-style,
.flush-style.content-section,
.ib5mo2l .flush-style,
.ie0x9 .flush-style,
.yeworpy .flush-style,
.wwbriq .flush-style {
  padding: 0 !important;
  min-height: auto !important;
  background: transparent !important;
  border: none !important;
}
.promo-banner {
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-hover) 100%);
  border-radius: 16px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 16px 0;
}
.promo-copy { flex: 1 1 280px; min-width: 0; }
.promo-title {
  margin: 0 0 6px 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.promo-sub {
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
  line-height: 1.4;
}
.promo-btn {
  background: #fff !important;
  color: var(--cta) !important;
  padding: 14px 44px !important;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.15s, opacity 0.2s;
  white-space: nowrap;
}
.promo-btn:hover { transform: translateY(-1px); opacity: 0.95; }
.outline-style .promo-banner {
  background: var(--bg-card);
  border: 2px solid var(--cta);
}
.outline-style .promo-title { color: var(--cta); }
.outline-style .promo-sub { color: var(--text-body); }
.outline-style .promo-btn {
  background: var(--cta) !important;
  color: #fff !important;
}
.xmco .promo-banner {
  background: var(--bg-card);
  border-left: 6px solid var(--cta);
  border-radius: 4px 16px 16px 4px;
}
.xmco .promo-title { color: var(--text-primary); }
.xmco .promo-sub { color: var(--text-body); }
.xmco .promo-btn {
  background: var(--cta) !important;
  color: #fff !important;
}
@media (max-width: 640px) {
  .promo-banner {
    padding: 20px 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .promo-copy { flex: 0 0 auto; }
  .promo-title { font-size: 1.2rem; }
  .promo-btn { width: 100%; text-align: center; padding: 14px 28px !important; }
}
.kr83r .brand-logo { height: 36px; }
.wy5sgw .brand-logo { height: 60px; max-width: 200px; }
.b2u2ar0b .brand-logo { height: 56px; max-width: 180px; }
.zyvyuw    .yvacqxk, .zyvyuw    .rating-stars { color: #f59e0b; }
.r6pzw      .rating-stars   { font-size: 1.35rem; }
.hilh1g1    .yvacqxk, .hilh1g1    .rating-stars { color: var(--text-muted); opacity: 0.7; letter-spacing: 2px; }
.nta0sj     .yvacqxk, .nta0sj     .rating-stars { color: var(--cta); letter-spacing: 3px; font-size: 0.7rem; }
.ictyfp .yvacqxk, .ictyfp .rating-stars { color: var(--cta); letter-spacing: 2px; }
.k4kw   .yvacqxk, .k4kw   .rating-stars { color: #e91e63; letter-spacing: 2px; }
.igzbx9zb  .yvacqxk, .igzbx9zb  .rating-stars { color: var(--cta); letter-spacing: 2px; font-size: 0.65rem; }
.ygu25x     .yvacqxk, .ygu25x     .rating-stars { color: var(--cta); letter-spacing: 2px; font-size: 0.7rem; }
@media (min-width: 720px) {
  .jf956r6 .hzus7wd {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px 20px; counter-reset: cs-rank;
    align-items: start;  
  }
  .jf956r6 .ze2yay {
    margin-bottom: 0;
    justify-content: flex-start;  
    gap: 12px;
  }
}
@media (max-width: 820px) {
  .jf956r6 .ze2yay { padding: 40px 16px 20px; }
  .jf956r6 .anhaap {
    flex-direction: row; justify-content: space-between; align-items: baseline;
    width: 100%; border-top: 1px solid var(--border); padding-top: 8px;
  }
  .jf956r6 .lt8ub2li { width: 100%; min-width: 0; }
}
@media (max-width: 820px) {
  .vh7f .ze2yay {
    flex-direction: column; align-items: center; text-align: center;
    padding: 22px 16px 18px; gap: 14px;
  }
  .vh7f .ze2yay::before {
    position: absolute; top: 14px; left: 14px;
  }
  .vh7f .wrcf73o {
    flex-direction: column; align-items: center; gap: 10px; min-width: 0; width: 100%;
  }
  .vh7f .aoh42g { white-space: normal; text-align: center; font-size: 1.2rem; }
  .vh7f .anhaap {
    flex-direction: row; justify-content: space-between; align-items: baseline;
    width: 100%; border-top: 1px solid var(--border); padding-top: 8px; flex-basis: auto;
  }
  .vh7f .lt8ub2li { width: 100%; min-width: 0; }
  .vh7f .yvacqxk { min-width: 0; }
}
.ranking-style-b .ze2yay::before {
  font-size: 1.8rem; font-weight: 900;
  color: var(--accent-light); opacity: 0.35;
  min-width: 32px;
}
.k4juwbk .faq-item {
  background: none; border-radius: 0; margin-bottom: 0;
  border-bottom: 1px solid var(--border); overflow: visible;
}
.k4juwbk .faq-item summary { padding: 16px 2px; color: var(--text-primary); font-size: 0.98rem; }
.k4juwbk .faq-item p { padding: 0 2px 16px; }
.jy5v3f .faq-item { background: none; border-radius: 0; overflow: visible; margin-bottom: 12px; }
.jy5v3f .faq-item summary {
  background: var(--accent-bg); border-radius: 100px;
  padding: 10px 22px; color: var(--accent-light); font-weight: 700;
}
.jy5v3f .faq-item summary::after { content: "›"; font-size: 1.2em; }
.jy5v3f .faq-item[open] summary::after { content: "‹"; }
.jy5v3f .faq-item p { padding: 10px 22px 4px; }
.faq-style-accent .faq-item {
  background: var(--bg-card); border-radius: 0;
  border-left: 3px solid var(--accent); overflow: hidden;
  margin-bottom: 10px;
}
.faq-style-accent .faq-item summary { color: var(--text-primary); padding-left: 16px; }
.faq-style-accent .faq-item summary::after { content: "›"; font-size: 1.1em; }
.faq-style-accent .faq-item[open] summary::after { content: "‹"; }
.faq-style-accent .faq-item p { padding-left: 16px; }
.isrwsgq .faq-list { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.isrwsgq .faq-item {
  background: var(--bg-card); border-radius: 0; margin-bottom: 0;
  border-bottom: 1px solid var(--border);
}
.isrwsgq .faq-item:last-child { border-bottom: none; }
.isrwsgq .faq-item summary { color: var(--text-primary); border-radius: 0; }
.isrwsgq .faq-item summary::after { content: "›"; font-size: 1.1em; }
.isrwsgq .faq-item[open] summary::after { content: "‹"; }
.zsfkx .faq-item { overflow: hidden; }
.zsfkx .faq-item summary {
  background: var(--accent); color: #fff; border-radius: 0;
}
.zsfkx .faq-item summary::after { color: rgba(255,255,255,.75); }
.zsfkx .faq-item[open] summary { border-radius: 0; }
.vvgq { max-width: 1100px; margin: 0 auto; padding: 40px 24px 80px; }
.bbeqv {
  text-align: center; padding: 48px 0 36px;
  border-bottom: 1px solid var(--border); margin-bottom: 44px;
}
.x4z08 {
  font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800;
  color: var(--text-primary); margin-bottom: 12px;
}
.zvp0b6w { color: var(--text-muted); font-size: 1.05rem; }
.j73ir {
  background: var(--bg-card); border: 1px solid var(--border-alt);
  border-radius: 14px; padding: 32px;
}
.ytj9q { margin-bottom: 20px; }
.ehlkkqdz {
  display: block; color: var(--text-muted); font-size: 0.78rem;
  font-weight: 600; margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.th7lpm81 {
  width: 100%; background: var(--bg-page);
  border: 1px solid var(--border-alt); border-radius: 8px;
  padding: 10px 14px; color: var(--text-primary);
  font-size: 0.95rem; font-family: inherit;
  outline: none; transition: border-color .15s; box-sizing: border-box;
}
.th7lpm81:focus { border-color: var(--accent-light); box-shadow: 0 0 0 2px var(--accent-bg); }
.x5lqpt6y { resize: vertical; min-height: 130px; }
.ejwp0e0v { width: 100%; margin-top: 8px; }
.g2sa {
  margin-top: 48px; padding-top: 40px;
  border-top: 1px solid var(--border);
}
.ohdro {
  font-size: 1.25rem; font-weight: 700; color: var(--accent-light);
  margin-bottom: 14px;
}
.jce7 { color: var(--text-muted); line-height: 1.75; }
.e0roalg1 { color: var(--text-muted); line-height: 1.75; padding-left: 1.4em; }
.e0roalg1 li { margin-bottom: 6px; }
.w2wo602w { max-width: 760px; margin: 0 auto; }
.qck2vklg { color: var(--text-muted); line-height: 1.75; margin-bottom: 36px; }
.d1a5e9 { max-width: 760px; margin: 0 auto; }
.c99xrz { margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--border); }
.c99xrz:last-child { border-bottom: none; }
.fux0l { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.c99xrz p { color: var(--text-muted); line-height: 1.75; margin: 0; }
.c99xrz ul.e0roalg1 { margin: 0; }
.tbvbvhp .fux0l { margin: 0; font-size: 1rem; }
@media (max-width: 640px) { .tbvbvhp { grid-template-columns: 1fr; gap: 10px; } }
.vpg98u .fux0l { font-size: 1.2rem; font-weight: 700; color: var(--text-primary); margin-bottom: 14px; }
.ppbwb .e0roalg1 { margin: 0; font-size: 0.9rem; }
@media (max-width: 640px) { .qtxw98et { grid-template-columns: 1fr; } }
.ke2si ul.e0roalg1 { margin: 0; }
.pmt4mw3 .e0roalg1,
.z5g8 .e0roalg1,
.gkbx .e0roalg1,
.s34pdu .e0roalg1 {
  text-align: left;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
}
@media (max-width: 640px) { .rr81 { grid-template-columns: 1fr; text-align: center; justify-items: center; } }
@media (max-width: 860px) { .npbvg { grid-template-columns: 1fr; } .w4l4ds { position: static; text-align: center; } }
@media (max-width: 860px) { .pwgc8 { grid-template-columns: 1fr; } }
.s34pdu .e0roalg1 { margin: 0; font-size: 0.9rem; }
@media (max-width: 640px) { .alrua { flex-direction: column; text-align: center; } .krkjzxh2 { grid-template-columns: 1fr; } }
.mrsdyun0 {
  background: var(--accent-bg); border-radius: 14px;
  border-bottom: none; padding: 44px 36px; margin-bottom: 44px;
}
.mrsdyun0 .x4z08 { color: var(--accent-light); }
.s1dq9 .x4z08 { font-size: 2rem; }
.s1dq9 .zvp0b6w { max-width: 680px; }
.odd1 .x4z08 { margin: 0; font-size: 1.8rem; flex-shrink: 0; max-width: 45%; }
.odd1 .zvp0b6w  { margin: 0; }
@media (max-width: 640px) { .odd1 { flex-direction: column; } }
.z2w7 .x4z08 { color: var(--accent-light); }
.s304 .x4z08 { color: #fff; }
.s304 .zvp0b6w  { color: rgba(255,255,255,0.85); }
.xba4 { max-width: 680px; margin: 0 auto; }
.isa2y51t {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px;
}
@media (max-width: 540px) { .isa2y51t { grid-template-columns: 1fr; } }
.m4974 .th7lpm81 {
  border: none; border-bottom: 2px solid var(--border-alt);
  border-radius: 0; background: transparent; padding-left: 0; padding-right: 0;
}
.m4974 .th7lpm81:focus { border-bottom-color: var(--accent-light); box-shadow: none; }
.vvua .th7lpm81 { background: var(--bg-raised); border-color: transparent; }
.vvua .th7lpm81:focus { background: var(--bg-card); border-color: var(--accent-light); }
.tzm5 .th7lpm81 { border-radius: 100px; padding: 11px 20px; }
.tzm5 .x5lqpt6y { border-radius: 14px; }
.ey60 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 640px) { .ey60 { grid-template-columns: 1fr; } }
.yzhrt {
  background: var(--bg-card); border: 1px solid var(--border-alt);
  border-radius: 12px; padding: 22px 24px;
}
.yzhrt h2 {
  font-size: 1rem; font-weight: 700; color: var(--accent-light); margin-bottom: 10px;
}
.yzhrt p { color: var(--text-muted); line-height: 1.7; margin: 0; font-size: 0.9rem; }
.an25nfsx { counter-reset: priv-count; }
.nmzply {
  counter-increment: priv-count;
  display: grid; grid-template-columns: 52px 1fr; gap: 0 20px;
  margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border);
}
.nmzply:last-child { border-bottom: none; }
.y3xhf {
  font-size: 2.4rem; font-weight: 800; color: var(--accent-light);
  opacity: 0.3; line-height: 1.1; font-variant-numeric: tabular-nums;
}
.nmzply h2 {
  font-size: 1.1rem; font-weight: 700; color: var(--accent-light); margin-bottom: 10px;
}
.nmzply p { color: var(--text-muted); line-height: 1.75; margin: 0; }
.hggaiojy { color: var(--text-muted); line-height: 1.75; padding-left: 1.4em; margin: 0; }
.hggaiojy li { margin-bottom: 6px; }
.hero-frame{position:relative;overflow:visible}
.util-show-block .a5fozsa5{display:block}
.meta-style-fine .ad83h{font-size:.78rem;color:var(--text-faint);letter-spacing:.02em}
.date-accent-bg{--date-bg:var(--accent-bg)}
.icon-reset .jdc4d::before{content:""}
.divider-style-topline .ikib7{border-top:3px solid var(--accent);padding-top:18px}
@media(max-width:640px){
  .ikib7{flex-direction:column;align-items:center;text-align:center;gap:10px;padding:16px}
  .rqsxg{max-width:100%}
}
.info-aside{margin:24px 0 32px;padding:0;list-style:none}
.info-aside-soft{padding:18px 22px;border-radius:var(--radius);
  background:var(--surface);border:1px solid var(--border, rgba(255,255,255,.08))}
.info-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:14px 22px}
.info-row{display:flex;flex-direction:column;gap:4px;padding:8px 4px}
.info-key{font-size:11px;letter-spacing:.05em;text-transform:uppercase;opacity:.55}
.info-val{font-size:15px;font-weight:600;line-height:1.3}
.fnleko{margin:18px 0 28px}
.fnleko .table-scroll{margin:0}
@media (max-width:560px){
  .info-grid{grid-template-columns:repeat(2,1fr);gap:12px}
}
@keyframes ctaPopupFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes ctaPopupRise { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@media (max-width: 480px) {
  .axqiyska { padding: 28px 18px 20px; }
  .kjqcc1 { font-size: 1.2rem; }
  .u52uih { max-width: 220px; max-height: 80px; }
}
.zbxjk .utqjpfx2 { border-radius: 22px; }
.s6wkucyh .promo-banner {
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .utqjpfx2 { width: 80px; height: 80px; padding: 8px; margin-right: 0; margin-bottom: 8px; }
}
.qv61 .content-section {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}
.qv61 .section-frame {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}
.qv61 .promo-banner {
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}
[dir="rtl"] { text-align: right; }
[dir="rtl"] body { direction: rtl; }
[dir="rtl"] .header-row { flex-direction: row-reverse; }
[dir="rtl"] .main-nav { flex-direction: row-reverse; }
[dir="rtl"] .nav-subpanel { right: 50%; left: auto; transform: translateX(50%); }
[dir="rtl"] .floating-cta-right .sticky-cta { right: auto; left: 32px; }
[dir="rtl"] .nlywi  .sticky-cta { left: auto;  right: 32px; }
@media (max-width: 480px) {
  [dir="rtl"] .floating-cta-right .sticky-cta { right: auto; left: 20px; }
  [dir="rtl"] .nlywi  .sticky-cta { left: auto;  right: 20px; }
}
[dir="rtl"] .y31wnogq .media-frame  { float: right; margin: 0 0 16px 28px; }
[dir="rtl"] .figure-float-right .media-frame { float: left;  margin: 0 28px 16px 0; }
[dir="rtl"] ul, [dir="rtl"] ol { padding-right: 1.2em; padding-left: 0; }
[dir="rtl"] .marker-list, [dir="rtl"] .step-list { padding-right: 1.2em; padding-left: 0; }
[dir="rtl"] .compare-pros { border-left: none; border-right: 3px solid var(--c-pros); padding-left: 0; padding-right: 14px; }
[dir="rtl"] .compare-cons { border-left: none; border-right: 3px solid var(--c-cons); padding-left: 0; padding-right: 14px; }
[dir="rtl"] .callout { border-left: none !important; border-right: 4px solid currentColor; padding-left: 18px; padding-right: 18px; }
[dir="rtl"] .promo-banner { direction: rtl; }
[dir="rtl"] .crumb-bar-inner { direction: rtl; }
[dir="rtl"] .toc-card { direction: rtl; }
[dir="rtl"] .toc-links { padding-right: 1em; padding-left: 0; }
[dir="rtl"] .list-style-dot .step-list,
[dir="rtl"] .gp90q1yk .step-list,
[dir="rtl"] .l6wrclmz .step-list,
[dir="rtl"] .aksdjhut .step-list {
  padding-left: 0; padding-right: 2.2em;
}
[dir="rtl"] .list-style-dot .step-list li::before,
[dir="rtl"] .gp90q1yk .step-list li::before,
[dir="rtl"] .l6wrclmz .step-list li::before,
[dir="rtl"] .aksdjhut .step-list li::before {
  left: auto; right: -2.2em;
}
[dir="rtl"] .hero-media.hero-align-start .hero-content,
[dir="rtl"] .rhl6v.hero-align-start .hero-content,
[dir="rtl"] .hero-flat.hero-align-start .hero-content,
[dir="rtl"] .ysxyh68.hero-align-start .hero-content,
[dir="rtl"] .qviib9d.hero-align-start .hero-content { text-align: right; }
[dir="rtl"] .hero-duo.hero-align-start .jgqho { align-items: flex-end; text-align: right; }
[dir="rtl"] .section-frame,
[dir="rtl"] .section-lede,
[dir="rtl"] .section-outro,
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .j73ir,
[dir="rtl"] .ehlkkqdz,
[dir="rtl"] .th7lpm81,
[dir="rtl"] .x5lqpt6y { text-align: right; direction: rtl; }
[dir="rtl"] .tzm5 .th7lpm81,
[dir="rtl"] .m4974 .th7lpm81 { padding-right: 20px; padding-left: 20px; }
:root {
  --accent:          #6d1330;
  --brand:           #6d1330;
  --brand-light:     #8f1c3f;
  --brand-pale:      #b23a54;
  --grad-start:      #6d1330;
  --grad-end:        #c05a1f;
  --accent-light:    var(--brand-light);
  --accent-pale:     var(--brand-pale);
  --cta:             #0d8f7f;
  --cta-light:       #12a893;
  --cta-hover:       #0a6f63;
  --bg-page:         #faf7f3;
  --bg-surface:      #ffffff;
  --bg-card:         #ffffff;
  --bg-card-inner:   #f5efe7;
  --bg-raised:       #efe3d6;
  --bg-hover:        #f5efe7;
  --border:          #e8dccc;
  --border-alt:      #d8c7b0;
  --border-section:  #e8dccc;
  --text-primary:    #241812;
  --text-muted:      #5a4c42;
  --text-body:       #362a23;
  --text-sub:        #4e4038;
  --text-faint:      #83705f;
  --text-dim:        #9c8a79;
  --text-label:      #6b594c;
  --text-value:      #3e332b;
  --accent-bg:       #f3e1e6;
  --accent-bg-light: #ecd0d8;
  --bg-tip:          #eaf6f3;
  --bg-warning:      #faf2e5;
  --bg-info:         #f3ece5;
  --bg-pros:         #eaf6f3;
  --bg-cons:         #faeceb;
  --c-pros:          #0d8f7f;
  --c-cons:          #a13a2c;
  --c-pros-label:    #0a9987;
  --c-tip-border:    #0d8f7f;
  --c-warn-border:   #b87a1f;
  --c-stars:         #c05a1f;
  --c-arrow:         var(--cta);
  --c-tag-pay:       #0d8f7f;
}
:root { --logo-bg-opacity: 79%; }
body, button, input { font-family: "Plus Jakarta Sans", sans-serif; }
h1, h2, h3,
.hero-heading, .section-heading, .section-subheading,
.promo-title, .toc-label, .tile-title { font-family: "Fraunces", serif; }
.section-heading::before {
  content: ""; display: block; width: 46px; height: 4px; margin-bottom: 12px;
  background: linear-gradient(90deg, var(--grad-start), var(--grad-end));
  border-radius: 2px;
}
.hero-min-height-lg .hero, .hero-min-height-lg .hero-duo { min-height: 520px; }
.btn-icon-fa .btn-hero::after, .btn-icon-fa .btn-mini::after {  content: ""; font-family: "Font Awesome 6 Free"; font-weight: 900;  display: inline-block; margin-left: 6px; vertical-align: -0.05em;  font-size: 0.8em; line-height: 1; }
.btn-icon-fa-alt .nav-cta-pill::after,.btn-icon-fa-alt .sticky-cta::after {  content: "" !important; font-family: "Font Awesome 6 Free" !important;  font-weight: 900 !important; display: inline-block !important;  margin-left: 6px; vertical-align: -0.05em; font-size: 0.8em; line-height: 1; }
.crumb-sep::before { content: '|'; opacity: 0.3; }