:root {
  --color-accent: #000000;
  --color-cta: #eab308;
  --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;
}
.site-header__bar {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 62px; display: flex; align-items: center;
  justify-content: space-between; position: relative;
}
.site-header__brand {
  color: var(--accent-light);
  font-weight: 800; font-size: 1.15rem;
  text-decoration: none; display: flex; align-items: center; gap: 4px;
}
.site-header__logo-img { height: 46px; width: auto; max-width: 140px; object-fit: contain; border-radius: 6px; }
.site-header__menu { list-style: none; display: flex; column-gap: 20px; row-gap: 6px; flex-wrap: wrap; align-items: center; --msep-color: var(--text-primary); }
.site-header__menu a {
  color: var(--text-muted); white-space: nowrap;
  text-decoration: none; font-size: 0.88rem; transition: color 0.2s;
}
.site-header__menu a:hover { color: var(--accent-light); }
.site-header__menu-item--dropdown { position: relative; }
.site-header__submenu {
  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;
}
.submenu-style-square   .site-header__submenu { border-radius: 0; }
.submenu-style-soft     .site-header__submenu { border-radius: 6px; }
.submenu-style-round  .site-header__submenu { border-radius: 14px; }
.submenu-style-pill     .site-header__submenu { border-radius: 24px; padding: 8px; }
.submenu-style-soft .site-header__submenu li:first-child a { border-top-left-radius: 4px; border-top-right-radius: 4px; }
.submenu-style-soft .site-header__submenu li:last-child a { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; }
.submenu-style-round .site-header__submenu li:first-child a { border-top-left-radius: 10px; border-top-right-radius: 10px; }
.submenu-style-round .site-header__submenu li:last-child a { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; }
.submenu-style-pill .site-header__submenu li a { border-radius: 16px; }
.submenu-divider-solid  .site-header__submenu li + li { border-top: 1px solid var(--border-alt); }
.submenu-divider-dashed .site-header__submenu li + li { border-top: 1px dashed var(--border-alt); }
.submenu-divider-dotted .site-header__submenu li + li { border-top: 1px dotted var(--border-alt); }
.submenu-divider-double .site-header__submenu li + li { border-top: 3px double var(--border-alt); }
.site-header__menu-item--dropdown::after {
  content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 10px;
}
.site-header__menu-item--dropdown:hover .site-header__submenu,
.site-header__menu-item--dropdown:focus-within .site-header__submenu { display: block; }
.site-header__submenu 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;
}
.site-header__submenu li a:hover {
  color: var(--accent-light); background: var(--bg-hover);
}
@media (max-width: 640px) {
  .site-header__submenu {
    position: static; transform: none; box-shadow: none;
    border: none; border-radius: 0; background: transparent;
    padding: 0 0 4px 16px;
  }
  .site-header__menu-item--dropdown:hover .site-header__submenu,
  .site-header__menu-item--dropdown:focus-within .site-header__submenu { display: block; }
  .site-header__submenu li a { padding: 8px 16px; font-size: 0.88rem; }
}
.site-header__menu-toggle {
  display: none; background: none; border: none;
  color: var(--text-muted); font-size: 1.4rem; cursor: pointer; padding: 4px 8px; line-height: 1;
}
.site-header__menu-overlay { display: none; }
@media (max-width: 640px) {
  .site-header__menu-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    z-index: 899; backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
  }
  .site-header__menu-overlay.is-open { display: block; }
}
@media (max-width: 640px) {
  .site-header__menu-toggle { display: block; }
  .site-header__menu > li + li::before { display: none !important; }
  .site-header__menu {
    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;
  }
  .site-header__menu.is-open { display: flex; }
  .site-header__menu li a {
    display: block; padding: 11px 24px; font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
  }
  .site-header__menu li:last-child a { border-bottom: none; }
}
.hero { min-height: 480px; }
.hero__title {
  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--left .hero__lede { margin-left: 0; margin-right: 0; }
.btn-primary {
  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;
}
.hero--cta-below .btn-primary { margin-top: 24px; }
.btn-primary: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__scrim {
  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__inner {
  position: relative; z-index: 1;
  width: 100%; max-width: 1100px; padding: 48px 24px;
}
.hero--media .hero__title { text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.hero--media .hero__lede { color: #e2e8f0; }
.hero--media.hero--center .hero__inner { text-align: center; }
.hero--media.hero--left   .hero__inner { text-align: left; }
.hero--plain .hero__inner {
  width: 100%; max-width: 1100px; padding: 24px 24px;
}
.hero--plain .hero__title { color: var(--text-primary); text-shadow: none; }
.hero--plain .hero__lede { color: var(--text-muted); }
.hero--plain .btn-primary { margin-top: 16px; }
.hero--plain, .hero--plain.hero { min-height: auto !important; }
.hero--plain.hero--center .hero__inner { text-align: center; }
.hero--plain.hero--left   .hero__inner { 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; }
}
.hero-fx-grain .hero--media .hero__scrim {
  overflow: hidden;
}
.hero-fx-grain .hero--media .hero__scrim::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); }
}
.hero-fx-glow .hero--media .hero__scrim {
  overflow: hidden;
}
.hero-fx-glow .hero--media .hero__scrim::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-fx-fadein .hero--media .hero__scrim {
  animation: hg-fadein 1.2s ease-out both;
}
@keyframes hg-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero-fx-shimmer .hero--media .hero__scrim {
  overflow: hidden;
}
.hero-fx-shimmer .hero--media .hero__scrim::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;
}
.hero-fx-breathe .hero--media .hero__scrim {
  animation: hg-breathe 10s ease-in-out infinite;
}
.hero--solid-brand .hero__scrim {
  background: none;
}
.hero--solid-brand .hero__title { color: #fff; }
.hero--solid-brand .hero__lede { color: rgba(255,255,255,0.85); }
.hero--solid-brand .btn-primary { background: #fff; color: var(--cta); }
.hero--solid-brand .btn-primary:hover { opacity: 0.92; }
.hero--split .hero__title { text-shadow: none; color: var(--text-primary); }
.hero--split .hero__lede { color: var(--text-muted); }
body.hero-title--accent .hero__title {
  color: var(--accent-light) !important;
  text-shadow: none !important;
}
body.hero-title--brand .hero__title {
  color: var(--cta) !important;
  text-shadow: none !important;
}
.hero.hero--solid-brand .hero__title,
section.hero--solid-brand .hero__title {
  color: #fff !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35) !important;
}
.hero--split.hero--left   .hero-split__text { align-items: flex-start; text-align: left; }
.hero .hero-rank-bar--full-bleed {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  left: auto !important;
  transform: none !important;
  overflow-x: visible !important;
  padding: 0;
}
.hero-rank-bar--full-bleed .btn-cta--table-row.btn-cta {
  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;
}
.hero-rank-bar--full-bleed .btn-cta--table-row.btn-cta:hover { opacity: 0.85; }
.hero--stacked .hero__inner { padding-bottom: 24px; }
.hero--cta-below .hero__inner { max-width: 1100px; }
@media (max-width: 700px) {
  .hero--split { grid-template-columns: 1fr !important; grid-template-areas: "text" "media" !important; }
  
  .hero--split:not(.hero-split--media-first) .hero-split__media { display: none !important; }
  .hero-split--media-first .hero-split__media { padding: 16px; }
  .hero-split__text  { padding: 36px 24px; }
  .hero--split~.hero__floating-panel,.hero--split-alt~.hero__floating-panel{max-width:100%;left:0;right:0;transform:none;padding:0 24px}
  .hero, .hero--split { min-height: 320px !important; }
  .hero__title { font-size: clamp(1.7rem, 5.5vw, 2.4rem) !important; }
  
  .stat-grid,
  .info-grid,
  .highlight-grid { grid-template-columns: 1fr !important; }

  

  
  .hero--stacked { display: flex !important; flex-direction: column !important; }
  .hero--stacked .hero__inner { display: contents; }
  .hero--stacked .hero__scrim { order: 0; }
  .hero--stacked .hero__title { order: 1; padding: 32px 24px 0; margin-bottom: 12px; }
  .hero--stacked .stat-grid { order: 2; padding: 0 16px 12px !important; }
  .hero--stacked .hero__lede { order: 3; padding: 0 24px 24px; margin: 0 auto; }

  
  .hero--cta-below .hero__inner { display: flex; flex-direction: column; }
  .hero--cta-below .hero__inner .hero__title { order: 1; }
  .hero--cta-below .hero__inner .highlight-grid { order: 2; margin: 8px 0 24px !important; }
  .hero--cta-below .hero__inner .hero__lede { order: 3; }
  .hero--cta-below .hero__inner .btn-primary { order: 4; align-self: center; margin-top: 0; }

  
  .hero--split.hero-split--media-first {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    grid-template-areas: none !important;
  }
  .hero--split.hero-split--media-first .hero-split__text { display: contents; padding: 0; }
  .hero--split.hero-split--media-first .hero-split__text .hero__title { order: 1; padding: 32px 24px 0; margin-bottom: 0; }
  .hero--split.hero-split--media-first .hero-split__media { order: 2; padding: 12px 16px; }
  .hero--split.hero-split--media-first .hero-split__text .hero__lede { order: 3; padding: 0 24px; margin: 0 auto; }
  .hero--split.hero-split--media-first .hero-split__text .btn-primary { order: 4; align-self: center; margin: 8px 0 32px; }
}
.media-frame { position: relative; overflow: hidden; margin: 16px 0; line-height: 0; }
.content-image { width: 100%; height: auto; display: block; border-radius: 10px; }
.media-frame--radius-lg .media-frame        { border-radius: 16px; }
.media-frame--radius-lg .content-image  { border-radius: 16px; }
.media-frame--shadow .media-frame         { box-shadow: 0 4px 14px rgba(0,0,0,0.18); border-radius: 8px; }
.media-frame--shadow .content-image   { border-radius: 8px; }
.content-wrap { max-width: 1100px; margin: 0 auto; padding: 40px 24px 32px; }
.section { width: 100%; padding: 32px 0; position: relative; }
.section__inner { max-width: 1100px; margin: 0 auto; padding: 24px 24px; position: relative; z-index: 1; }
.sections--zebra-page-surface .section:nth-child(even) { background: var(--bg-surface); }
.sections--zebra-page-surface .section:nth-child(odd)  { background: var(--bg-page); }
.sections--zebra-card .section:nth-child(even) { background: var(--bg-card); }
.sections--zebra-card .section:nth-child(odd)  { background: var(--bg-page); }
.sections--zebra-page-surface .section:nth-child(odd)  .section__inner { background: var(--bg-card); border-radius: 6px; }
.sections--zebra-page-surface .section:nth-child(even) .section__inner { background: var(--bg-raised); border-radius: 6px; }
.sections--zebra-card .section:nth-child(odd)  .section__inner { background: var(--bg-card); border-radius: 6px; }
.sections--zebra-card .section:nth-child(even) .section__inner { background: var(--bg-raised); border-radius: 6px; }
.sections--zebra-page-surface .section:nth-child(even) .callouts--card-bg .callout-block,
.sections--zebra-card .section:nth-child(even) .callouts--card-bg .callout-block { background: var(--bg-card); box-shadow: 0 1px 4px rgba(0,0,0,0.2); }
.sections--zebra-page-surface .section:nth-child(odd) .callouts--card-bg .callout-block,
.sections--zebra-card .section:nth-child(odd) .callouts--card-bg .callout-block { background: var(--bg-card-inner); }
.sections--zebra-page-surface .section:nth-child(even) .callouts--zebra .callout-block:nth-child(odd),
.sections--zebra-card .section:nth-child(even) .callouts--zebra .callout-block:nth-child(odd)  { background: var(--bg-card); }
.sections--zebra-page-surface .section:nth-child(even) .callouts--zebra .callout-block:nth-child(even),
.sections--zebra-card .section:nth-child(even) .callouts--zebra .callout-block: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; }
.heading-style-left-bar h2.section__heading {
  border-left: 4px solid var(--accent); padding-left: 14px;
}
.heading-style-underline h2.section__heading {
  border-bottom: 2px solid var(--accent); padding-bottom: 10px;
  display: inline-block;
}
.heading-style-top-bar h2.section__heading {
  border-top: 3px solid var(--accent); padding-top: 12px;
  color: var(--text-primary);
}
.heading-style-bullet h2.section__heading::before {
  content: ""; display: inline-block; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  margin-right: 12px; vertical-align: middle;
}
.heading-style-large h2.section__heading {
  color: var(--text-primary); font-size: 1.7rem;
}
.heading-style-slash h2.section__heading::before {
  content: "/"; color: var(--accent-light); font-weight: 800;
  margin-right: 10px;
}
.heading-style-eyebrow 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) { .u-hide-mobile { 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-box {
  background: var(--bg-surface);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 20px 24px; margin: 28px 0;
}
.toc-box__title { font-weight: 700; color: var(--accent-light); margin-bottom: 12px; font-size: 1rem; }
.toc-box__list { padding-left: 20px; }
.toc-box__list li { margin-bottom: 6px; }
.toc-box__list a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; }
.toc-box__list a:hover { color: var(--accent-light); }
.toc--no-title .toc-box__title { display: none; }
.toc--dash-list .toc-box__title { display: none; }
.toc--dash-list .toc-box__list { padding-left: 0; list-style: none; }
.toc--dash-list .toc-box__list li::before { content: "—"; margin-right: 9px; color: var(--accent-light); opacity: 0.7; }
.toc--dash-list .toc-box__list a { font-size: 0.92rem; }
.toc--pill-tags .toc-box { background: none; border: none; box-shadow: none !important; padding: 12px 0; }
.toc--pill-tags .toc-box__title { display: none; }
.toc--pill-tags .toc-box__list { padding-left: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.toc--pill-tags .toc-box__list li { margin-bottom: 0; }
.toc--pill-tags .toc-box__list 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;
}
.toc--pill-tags .toc-box__list a:hover { background: var(--accent); color: #fff; border-color: var(--accent-light); }
.toc--numbered-grid .toc-box { padding: 20px 20px 16px; }
.toc--numbered-grid .toc-box__list {
  padding-left: 0; list-style: none;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px;
  counter-reset: toc-c;
}
.toc--numbered-grid .toc-box__list li { counter-increment: toc-c; margin-bottom: 0; display: flex; }
.toc--numbered-grid .toc-box__list 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--numbered-grid .toc-box__list 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--numbered-grid .toc-box__list a:hover { color: var(--accent-light); border-color: var(--accent-light); }
.toc--numbered-grid .toc-box__list a:focus,
.toc--numbered-grid .toc-box__list a:focus-visible,
.toc--numbered-grid .toc-box__list a:target { outline: none; }
.toc--numbered-grid .toc-box__list li:target a { border-color: var(--border); color: var(--text-muted); }
.toc--inline-csv .toc-box { background: none; border: none; box-shadow: none !important; padding: 8px 0; margin: 16px 0; }
.toc--inline-csv .toc-box__title { display: none; }
.toc--inline-csv .toc-box__list { padding-left: 0; list-style: none; display: flex; flex-wrap: wrap; }
.toc--inline-csv .toc-box__list li { margin-bottom: 0; }
.toc--inline-csv .toc-box__list li::after { content: ","; color: var(--text-muted); margin-right: 10px; }
.toc--inline-csv .toc-box__list li:last-child::after { content: ""; margin-right: 0; }
.toc--inline-csv .toc-box__list a { font-size: 0.9rem; }
.callout-block { padding: 14px 20px 18px; margin-bottom: 12px; border-radius: 10px; }
.callouts--card-bg .callout-block { background: var(--bg-card); }
.callouts--zebra .callout-block:nth-child(odd)  { background: var(--bg-card); }
.callouts--zebra .callout-block:nth-child(even) { background: var(--bg-raised); }
.callouts--divided .callout-block {
  background: none; border-radius: 0;
  border-bottom: 1px solid var(--border);
  padding: 22px 4px;
}
.callouts--divided .callout-block:last-child { border-bottom: none; }
.callouts--divided h3.section__subheading { border-bottom: 2px solid var(--accent); padding-bottom: 6px; display: inline-block; }
.callouts--left-rule .callout-block {
  background: none; border-radius: 0;
  border-left: 3px solid var(--accent);
  padding: 10px 0 10px 18px;
}
.callouts--left-rule .callout-block + .callout-block { margin-top: 4px; }
.callouts--plain-divided .callout-block { background: none; border-radius: 0; padding: 12px 0; }
.callouts--plain-divided .callout-block + .callout-block { border-top: 1px solid var(--border-section); }
.callout-block__lede { color: var(--text-body); margin-bottom: 12px; font-size: inherit; }
.callout-block__note { color: var(--text-body); margin-top: 12px; font-size: inherit; }
.generic-paragraph { color: var(--text-body); margin-bottom: 10px; }
.bullet-list, .step-list { padding-left: 22px; color: var(--text-body); margin: 10px 0; }
.bullet-list li, .step-list li { margin-bottom: 6px; }
.step-list li { list-style: decimal; }
.list-marker-dot     .bullet-list { list-style-type: "● "; }
.list-marker-square  .bullet-list { list-style-type: "■ "; }
.list-marker-diamond .bullet-list { list-style-type: "◆ "; }
.list-marker-star    .bullet-list { list-style-type: "★ "; }
.list-marker-dot     .card-list { list-style-type: "● "; }
.list-marker-square  .card-list { list-style-type: "■ "; }
.list-marker-diamond .card-list { list-style-type: "◆ "; }
.list-marker-star    .card-list { list-style-type: "★ "; }
.list-marker-dot    .bullet-list li::marker, .list-marker-dot    .card-list li::marker,
.list-marker-square .bullet-list li::marker, .list-marker-square .card-list li::marker,
.list-marker-diamond .bullet-list li::marker, .list-marker-diamond .card-list li::marker,
.list-marker-star   .bullet-list li::marker, .list-marker-star   .card-list li::marker {
  color: var(--cta); font-size: 1em;
}
.list-marker-dot .step-list,
.list-marker-square .step-list,
.list-marker-diamond .step-list,
.list-marker-star .step-list {
  list-style: none;
  counter-reset: el-step;
  padding-left: 2.2em;
}
.list-marker-dot .step-list li,
.list-marker-square .step-list li,
.list-marker-diamond .step-list li,
.list-marker-star .step-list li {
  list-style: none;
  counter-increment: el-step;
  position: relative;
}
.list-marker-dot .step-list li::before,
.list-marker-square .step-list li::before,
.list-marker-diamond .step-list li::before,
.list-marker-star .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-marker-dot     .step-list li::before { border-radius: 50%; }
.list-marker-square  .step-list li::before { border-radius: 3px; }
.list-marker-diamond .step-list li::before { border-radius: 3px; }
.list-marker-star    .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); }
.table-wrap--plain .table-scroll,
.rating-card .table-scroll { background: transparent; border: none; border-radius: 0; }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-table th {
  background: var(--bg-raised); color: var(--accent-light);
  padding: 8px 12px; text-align: left; font-weight: 600;
}
.data-table td { padding: 8px 12px; border-bottom: 1px solid var(--border-alt); color: var(--text-body); }
.data-table tr:hover td { background: var(--bg-hover); }
.data-table--striped .data-table tbody tr:nth-child(even) td { background: var(--bg-surface); }
.data-table--bordered .data-table { border: 1px solid var(--border-alt); }
.data-table--bordered .data-table th,
.data-table--bordered .data-table td { border: 1px solid var(--border-alt); }
.data-table--minimal .data-table th {
  background: transparent; color: var(--accent-light);
  border-bottom: 2px solid var(--accent); padding-bottom: 6px;
}
.data-table--minimal .data-table td { border-bottom: none; }
.data-table--minimal .data-table tr:not(:last-child) td { border-bottom: 1px solid var(--border-alt); }
.data-table--brand-header .data-table th {
  background: var(--cta); color: #fff; letter-spacing: 0.03em;
}
.data-table--clean-rows .table-scroll {
  overflow: hidden;
}
.data-table--clean-rows .data-table th { border-bottom: 1px solid var(--border-alt); }
.data-table--clean-rows .data-table tr:last-child td { border-bottom: none; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin: 12px 0; }
.feature-card { background: var(--bg-card-inner); border-radius: 8px; overflow: hidden; }
.feature-card__icon { width: 100%; aspect-ratio: 1/1; object-fit: contain; display: block; padding: 8px; }
.feature-card__title { background: var(--accent-bg-light); color: var(--accent-light); font-weight: 700; padding: 10px 14px; font-size: 0.9rem; }
.feature-card__text { padding: 10px 14px 4px; font-size: 0.88rem; color: var(--text-sub); }
.card-list { padding: 4px 14px 12px 28px; font-size: 0.82rem; color: var(--text-muted); }
.card-list 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%}
.feature-card--centered-title .feature-card__title { background: transparent; text-align: center; }
.feature-card--media-16-9 .feature-card__icon {
  margin: 10px 10px 0; width: calc(100% - 20px);
  aspect-ratio: 16/9; border-radius: 10px;
}
.feature-card--avatar-round .feature-card__icon {
  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);
}
.feature-card--icon-left-lg .feature-card { display: grid; grid-template-columns: auto 1fr; }
.feature-card--icon-left-lg .feature-card__icon {
  grid-column: 1; grid-row: 1;
  width: 88px; height: 88px; aspect-ratio: 1/1; object-fit: cover; align-self: center;
}
.feature-card--icon-left-lg .feature-card__title { grid-column: 2; }
.feature-card--icon-left-lg .feature-card__text,
.feature-card--icon-left-lg .card-list { grid-column: 1 / -1; }
.feature-card--icon-left-sm .feature-card { display: grid; grid-template-columns: auto 1fr; align-items: start; }
.feature-card--icon-left-sm .feature-card__icon {
  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);
}
.feature-card--icon-left-sm .feature-card__title { grid-column: 2; }
.feature-card--icon-left-sm .feature-card__text,
.feature-card--icon-left-sm .card-list { grid-column: 1 / -1; }
.feature-card--outline-accent .feature-card { border: 1px solid var(--border); border-left: 2px solid var(--accent); }
.feature-card--outline-accent .feature-card__title { background: none; color: var(--accent-light); font-weight: 700; }
.feature-card--glass .feature-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); }
.feature-card--glass .feature-card__title { background: none; color: var(--accent-light); font-weight: 700; }
.feature-card--list-row .feature-card { background: none; border: none; border-radius: 0; border-bottom: 1px solid var(--border); }
.feature-card--list-row .feature-card:last-child { border-bottom: none; }
.feature-card--list-row .feature-card__title { background: none; color: var(--accent-light); font-weight: 700; }
.feature-card--top-accent .feature-card { border: 1px solid var(--border); border-top: 3px solid var(--accent); }
.feature-card--top-accent .feature-card__title { background: none; color: var(--accent-light); font-weight: 700; padding-top: 13px; }
.feature-card--numbered .feature-grid { counter-reset: card-n; }
.feature-card--numbered .feature-card  { counter-increment: card-n; }
.feature-card--numbered .feature-card__title { display: flex; align-items: center; gap: 10px; }
.feature-card--numbered .feature-card__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;
}
.feature-card--bordered-surface .feature-card { background: var(--bg-surface); border: 1px solid var(--border); }
.feature-card--bordered-surface .feature-card__title { background: none; color: var(--text-main); font-weight: 700; border-bottom: 1px solid var(--border); }
.note-box { display: flex; gap: 14px; align-items: flex-start; border-radius: 8px; padding: 14px 18px; margin: 10px 0; }
.note-box--tip  { background: var(--bg-tip);     border-left: 4px solid var(--c-tip-border); }
.note-box--warning { background: var(--bg-warning); border-left: 4px solid var(--c-warn-border); }
.note-box--info { background: var(--bg-info);    border-left: 4px solid #60a5fa; }
.note-box__icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.note-box strong { color: var(--text-primary); font-size: 0.95rem; }
.note-box p { color: var(--text-muted); font-size: 0.88rem; margin-top: 4px; }
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 10px 0; }
.pros-list, .cons-list { border-radius: 8px; padding: 14px; }
.pros-list { background: var(--bg-pros); }
.cons-list { background: var(--bg-cons); }
.pros-cons__label { font-weight: 700; font-size: 0.85rem; margin-bottom: 8px; }
.pros-list .pros-cons__label { color: var(--c-pros-label); }
.cons-list .pros-cons__label { color: #f87171; }
.pros-list ul li { color: var(--c-pros); list-style: none; padding-left: 4px; margin-bottom: 5px; font-size: 0.88rem; }
.cons-list ul li { color: var(--c-cons); list-style: none; padding-left: 4px; margin-bottom: 5px; font-size: 0.88rem; }
.content-image { width: 100%; height: auto; border-radius: 10px; display: block; }
.btn-cta {
  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-cta:hover { opacity: 0.85; }
.btn-cta--outline .btn-cta  { background: transparent; border: 2px solid var(--cta); color: var(--cta-light); }
.btn-cta--outline .btn-cta:hover  { background: var(--cta-hover); color: #fff; opacity: 1; }
.btn-cta--tinted-outline .btn-cta  { background: var(--accent-bg); border: 1px solid var(--cta); color: var(--cta-light); }
.btn-cta--tinted-outline .btn-cta:hover  { background: var(--cta-hover); color: #fff; opacity: 1; }
.buttons--pill .btn-primary { border-radius: 50px; }
.buttons--pill .btn-cta  { border-radius: 50px; }
.buttons--padding-sm .btn-primary { padding-left: 22px; padding-right: 22px; }
.buttons--padding-sm .btn-cta  { padding-left: 12px; padding-right: 12px; }
.buttons--padding-lg .btn-primary { padding-left: 44px; padding-right: 44px; }
.buttons--padding-lg .btn-cta  { padding-left: 24px; padding-right: 24px; }
.buttons--padding-xl .btn-primary { padding-left: 56px; padding-right: 56px; }
.buttons--padding-xl .btn-cta  { padding-left: 32px; padding-right: 32px; }
.btn-icon-arrow   .btn-primary::after, .btn-icon-arrow   .btn-cta::after,
.btn-icon-chevron .btn-primary::after, .btn-icon-chevron .btn-cta::after,
.btn-icon-play    .btn-primary::after, .btn-icon-play    .btn-cta::after,
.btn-icon-bolt    .btn-primary::after, .btn-icon-bolt    .btn-cta::after,
.btn-icon-star    .btn-primary::after, .btn-icon-star    .btn-cta::after,
.btn-icon-gem     .btn-primary::after, .btn-icon-gem     .btn-cta::after,
.btn-icon-flame    .btn-primary::after, .btn-icon-flame    .btn-cta::after,
.btn-icon-chart   .btn-primary::after, .btn-icon-chart   .btn-cta::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;
}
.btn-icon-arrow .btn-primary::after, .btn-icon-arrow .btn-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");
}
.btn-icon-chevron .btn-primary::after, .btn-icon-chevron .btn-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");
}
.btn-icon-play .btn-primary::after, .btn-icon-play .btn-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");
}
.btn-icon-bolt .btn-primary::after, .btn-icon-bolt .btn-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");
}
.btn-icon-star .btn-primary::after, .btn-icon-star .btn-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");
}
.btn-icon-gem .btn-primary::after, .btn-icon-gem .btn-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");
}
.btn-icon-flame .btn-primary::after, .btn-icon-flame .btn-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");
}
.btn-icon-chart .btn-primary::after, .btn-icon-chart .btn-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");
}
.badge-icon-arrow   .header-cta-btn::after, .badge-icon-arrow   .sticky-cta-btn::after,
.badge-icon-chevron .header-cta-btn::after, .badge-icon-chevron .sticky-cta-btn::after,
.badge-icon-play    .header-cta-btn::after, .badge-icon-play    .sticky-cta-btn::after,
.badge-icon-bolt    .header-cta-btn::after, .badge-icon-bolt    .sticky-cta-btn::after,
.badge-icon-star    .header-cta-btn::after, .badge-icon-star    .sticky-cta-btn::after,
.badge-icon-gem     .header-cta-btn::after, .badge-icon-gem     .sticky-cta-btn::after,
.badge-icon-flame    .header-cta-btn::after, .badge-icon-flame    .sticky-cta-btn::after,
.badge-icon-chart   .header-cta-btn::after, .badge-icon-chart   .sticky-cta-btn::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;
}
.badge-icon-arrow .header-cta-btn::after, .badge-icon-arrow .sticky-cta-btn::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");
}
.badge-icon-chevron .header-cta-btn::after, .badge-icon-chevron .sticky-cta-btn::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");
}
.badge-icon-play .header-cta-btn::after, .badge-icon-play .sticky-cta-btn::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");
}
.badge-icon-bolt .header-cta-btn::after, .badge-icon-bolt .sticky-cta-btn::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");
}
.badge-icon-star .header-cta-btn::after, .badge-icon-star .sticky-cta-btn::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");
}
.badge-icon-gem .header-cta-btn::after, .badge-icon-gem .sticky-cta-btn::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");
}
.badge-icon-flame .header-cta-btn::after, .badge-icon-flame .sticky-cta-btn::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");
}
.badge-icon-chart .header-cta-btn::after, .badge-icon-chart .sticky-cta-btn::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");
}
.surface-block--near-black .surface-block__inner    { background: #1a1a1a; }
.btn-cta--table-row.btn-cta {
  padding: 13px 24px !important;
  font-size: 1rem !important;
  font-weight: 700;
}
@media (max-width: 980px) {
  .rating-card__row {
    grid-template-columns: auto auto minmax(0, 1fr);
    grid-template-areas:
      "rank ident rating"
      "pills pills pills"
      "cta   cta   cta";
    row-gap: 14px;
  }
  .rating-card__row::before    { grid-area: rank;   }
  .rating-card__identity           { grid-area: ident;  }
  .rating-card__score     { grid-area: rating; min-width: 0; width: auto; }
  .rating-card__tags           { grid-area: pills;  }
  .btn-cta--table-row             { grid-area: cta; width: 100%; }
}
@media (max-width: 560px) {
  .rating-card__row {
    grid-template-columns: 1fr;
    grid-template-areas:
      "rank"
      "ident"
      "rating"
      "pills"
      "cta";
    text-align: center; padding: 16px;
  }
  .rating-card__row::before    { justify-self: center; }
  .rating-card__identity           { width: 100%; }
  .rating-card__score     { justify-self: center; }
  .rating-card__tags           { grid-template-columns: 1fr; }
}
.star-rating { color: var(--c-stars); font-size: 1.1rem; }
.pros-list--inline, .cons-list--inline { list-style: none; font-size: 0.9rem; }
.pros-list--inline li { color: var(--c-pros); margin-bottom: 4px; }
.cons-list--inline li { color: var(--c-cons); margin-bottom: 4px; }
.pros-list--inline li::before { content: "✓"; margin-right: 5px; }
.cons-list--inline li::before { content: "✗"; margin-right: 5px; }
.marker-style-arrow .pros-list--inline li::before { content: "→"; }
.marker-style-arrow .cons-list--inline li::before { content: "–"; }
.marker-style-star  .pros-list--inline li::before { content: "★"; }
.marker-style-star  .cons-list--inline li::before { content: "✕"; }
.marker-style-diamond    .pros-list--inline li::before { content: "◆"; }
.marker-style-diamond    .cons-list--inline li::before { content: "▲"; }
.marker-style-triangle  .pros-list--inline li::before { content: "▶"; }
.marker-style-triangle  .cons-list--inline li::before { content: "■"; }
.accent-style--top-bar .rating-card__accent-strip { border-top-width: 4px !important; border-radius: 0 0 8px 8px; }
@media (min-width: 860px) {
  .rating-card--two-col .rating-card__body {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start;
  }
  .rating-card--two-col .rating-card__desc { margin: 0; }
}
.rating-card {
  background: var(--bg-card);
  border: 1px solid var(--border-alt);
  border-radius: 12px;
  margin: 28px 0;
  overflow: hidden;
}
.compare-card__logo {
  width: 100px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border-radius: 10px; padding: 8px;
  flex-shrink: 0;
}
.compare-card__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.compare-card__name { font-size: 1.15rem; font-weight: 700; color: var(--text); }
.compare-card__rating { display: flex; align-items: center; gap: 8px; }
.compare-card__rating .star-rating { font-size: .95rem; }
.compare-card__rating strong { font-size: 1.1rem; color: var(--text); }
.compare-card__action { text-align: center; flex-shrink: 0; }
.compare-card__stat-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; }
.compare-card__stat-label { font-size: .82rem; color: var(--text-muted); font-weight: 500; opacity: 0.75; }
.compare-card__stat-value { font-size: .92rem; font-weight: 800; color: var(--accent); }
.compare-card__stat-row--cta .compare-card__stat-value { font-size: 1.05rem; font-weight: 800; color: var(--accent); }
.rating-card .pros-cons-grid { gap: 10px; }
.rating-card .pros-list, .rating-card .cons-list { padding: 12px; }
.rating-card .pros-list ul, .rating-card .cons-list ul { margin: 4px 0 0; padding-left: 18px; }
.rating-card .pros-list li, .rating-card .cons-list li { font-size: .85rem; margin-bottom: 3px; }
.compare-card--side-logo .compare-card__action { width: 100%; margin-top: auto; }
.compare-card-stats--grid-2col .compare-card__stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--border-alt); border-radius: 8px; overflow: hidden;
}
.compare-card-stats--grid-2col .compare-card__stat-row { border-bottom: 1px solid var(--border-alt); }
.compare-card-stats--grid-2col .compare-card__stat-row:nth-child(odd) { border-right: 1px solid var(--border-alt); }
.compare-card-stats--grid-2col .compare-card__stat-row--cta { grid-column: 1 / -1; background: var(--accent-bg); border-right: none; }
@media (max-width: 720px) {
  .compare-card-stats--grid-2col { grid-template-columns: 1fr; }
  .compare-card--side-logo { flex-direction: row; flex-wrap: wrap; gap: 10px; border-right: none; border-bottom: 1px solid var(--border-alt); padding: 16px; }
  .compare-card--side-logo .compare-card__logo { width: 72px; height: 50px; }
  .compare-card--side-logo .compare-card__name-wrap { max-width: 180px; }
  .compare-card--side-logo .compare-card__action { width: auto; }
}
.compare-card--header-banner .compare-card__logo { background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border-radius: 10px; }
.compare-card--header-banner .compare-card__name { color: #fff; font-size: 1.25rem; }
.compare-card--header-banner .compare-card__rating strong { color: #fff; }
.compare-card--header-banner .compare-card__rating .star-rating { filter: brightness(1.2); }
.compare-card--header-banner .compare-card__action { margin-left: auto; white-space: nowrap; }
.compare-card__action--auto-margin .compare-card__action { margin-left: auto; }
.compare-card-stats--flex-wrap .compare-card__stats {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid var(--border-alt); border-radius: 8px; overflow: hidden;
}
.compare-card-stats--flex-wrap .compare-card__stat-row {
  flex: 1 1 auto; min-width: 120px;
  border-right: 1px solid var(--border-alt); border-bottom: 1px solid var(--border-alt);
}
.compare-card-stats--flex-wrap .compare-card__stat-row--cta { flex-basis: 100%; background: var(--accent-bg); border-right: none; }
@media (max-width: 720px) {
  .compare-card--header-banner { flex-wrap: wrap; gap: 10px; padding: 12px 16px; }
  .compare-card__footer--pad { padding: 16px; }
  .compare-card-stats--flex-wrap .compare-card__stat-row { min-width: 50%; }
}
.compare-card--name-lg .compare-card__name { font-size: 1.3rem; }
.compare-card-stats--column .compare-card__stats { display: flex; flex-direction: column; }
.compare-card-stats--column .compare-card__stat-row { border-bottom: 1px solid var(--border-alt); }
.compare-card-stats--column .compare-card__stat-row--cta { background: var(--accent-bg); }
.pros-cons-grid--single-col .pros-cons-grid { grid-template-columns: 1fr; }
@media (max-width: 860px) {
  .compare-card--grid { grid-template-columns: 1fr; }
  .compare-card { border-right: none; border-bottom: 1px solid var(--border-alt); }
  .compare-card-stats--column { border-right: none; border-bottom: 1px solid var(--border-alt); }
}
@media (max-width: 540px) {
  .compare-card__footer-row { flex-wrap: wrap; padding: 16px; }
}
.compare-card--logo-sm .compare-card__logo { width: 72px; height: 50px; }
.compare-card--logo-sm .compare-card__name { font-size: 1rem; white-space: nowrap; }
.compare-card-stats--inline-compact .compare-card__stats { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.compare-card-stats--inline-compact .compare-card__stat-row { padding: 0; flex: 0 0 auto; gap: 6px; }
.compare-card-stats--inline-compact .compare-card__stat-row--cta { display: none; }
.compare-card-stats--inline-compact .pros-cons-grid { gap: 8px; }
.compare-card-stats--inline-compact .pros-list, .compare-card-stats--inline-compact .cons-list { padding: 8px; }
@media (max-width: 480px) {
  .compare-card-footer--stack-mobile { flex-direction: column; align-items: stretch; }
}
.compare-card--compact .compare-card__logo { width: 48px; height: 48px; }
.compare-card--compact .compare-card__name { font-size: 0.95rem; font-weight: 700; white-space: nowrap; }
.compare-card--compact .compare-card__rating { font-size: 0.8rem; }
.compare-card--compact .compare-card__rating strong { font-size: 0.85rem; }
.compare-card-stats--tight .compare-card__stats {
  display: flex; flex-wrap: wrap; gap: 4px 14px;
}
.compare-card-stats--tight .compare-card__stat-row { padding: 0; flex: 0 0 auto; gap: 4px; }
.compare-card-stats--tight .compare-card__stat-label { font-size: 0.7rem; }
.compare-card-stats--tight .compare-card__stat-value { font-size: 0.8rem; }
.compare-card-stats--tight .compare-card__stat-row--cta .compare-card__stat-value { font-size: 0.85rem; font-weight: 700; }
.compare-card-stats--tight .compare-card__action .btn-cta { padding: 8px 20px; font-size: 0.85rem; }
@media (max-width: 640px) {
  .compare-card-footer--stack { flex-direction: column; align-items: stretch; gap: 10px; }
  .compare-card-stats--tight .compare-card__action { text-align: center; }
}
.compare-card__header {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 24px; border-bottom: 1px solid var(--border-alt);
  background: var(--surface);
}
.compare-card__header-text { flex: 1; }
.compare-card__cover-image { max-height: 220px; overflow: hidden; border-bottom: 1px solid var(--border-alt); }
.compare-card__cover-image img { width: 100%; display: block; object-fit: cover; }
.compare-card__columns {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.compare-card__column { padding: 16px 20px; border-right: 1px solid var(--border-alt); display: flex; flex-direction: column; gap: 14px; }
.compare-card__column .compare-card__stats { display: flex; flex-direction: column; border: 1px solid var(--border-alt); border-radius: 8px; overflow: hidden; }
.compare-card__column .compare-card__stat-row { border-bottom: 1px solid var(--border-alt); }
.compare-card__column .compare-card__stat-row:last-child { border-bottom: none; }
.compare-card__column .compare-card__stat-row--cta { background: var(--accent-bg); }
.compare-card__column-body { padding: 16px 20px; }
@media (max-width: 720px) {
  .compare-card__columns { grid-template-columns: 1fr; }
  .compare-card__column { border-right: none; border-bottom: 1px solid var(--border-alt); }
  .compare-card__header { flex-wrap: wrap; gap: 10px; padding: 14px 16px; }
}
.compare-card--big-score .rating-card__note { font-size: .9rem; font-weight: 500; color: var(--text-muted); }
.compare-card__score-badge .star-rating { font-size: .75rem; margin-top: 2px; }
.compare-card-stats--bordered-grid .compare-card__stats {
  display: flex; flex-wrap: wrap;
}
.compare-card-stats--bordered-grid .compare-card__stat-row {
  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;
}
.compare-card-stats--bordered-grid .compare-card__stat-row:last-child { border-right: none; }
.compare-card-stats--bordered-grid .compare-card__stat-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }
.compare-card-stats--bordered-grid .compare-card__stat-row--cta { background: var(--accent-bg); }
@media (max-width: 720px) {
  .compare-card--stats-grid { grid-template-columns: 1fr; }
  .compare-card__score-badge { width: 100px; height: 100px; margin: 16px auto; }
  .compare-card--big-score { font-size: 1.4rem; }
  .compare-card__cta-align { justify-content: center; }
  .compare-card-stats--bordered-grid .compare-card__stat-row { min-width: 50%; }
}
.compare-card-stats--chips .compare-card__stats {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.compare-card-stats--chips .compare-card__stat-row {
  background: var(--surface); border: 1px solid var(--border-alt);
  border-radius: 20px; padding: 6px 14px; gap: 8px;
}
.compare-card-stats--chips .compare-card__stat-row--cta {
  background: var(--accent-bg); border-color: var(--accent-pale);
}
.compare-card-stats--chips .pros-cons-grid { margin: 0 24px; padding-top: 16px; }
.compare-card__action--block .compare-card__action { display: inline-block; }
@media (max-width: 540px) {
  .compare-card__header--wrap-mobile { flex-wrap: wrap; padding: 14px 16px; }
  .compare-card__column-body--pad { padding: 12px 16px; }
  .compare-card-stats--chips .pros-cons-grid { margin: 0 16px; }
  .compare-card-stats--chips .compare-card-stats__chips-row { padding: 0 16px; }
  .compare-card__action--block { padding: 12px 16px; }
}
.rating-card--top-accent .rating-card__row {
  border-top: 4px solid var(--accent);
  padding-top: 22px;
}
.rating-card--hide-icon-dup .rating-card__icon-wrap .star-rating,
.rating-card--inline-note .rating-card__icon-wrap .star-rating,
.rating-card--hide-note .rating-card__icon-wrap .star-rating { display: none; }
.rating-card--hide-icon-dup .rating-card__note { display: none; }
.rating-card--inline-note .rating-card__meta-text,
.rating-card--inline-note .rating-card__note { font-size: 1em; }
.rating-card--hide-note .rating-card__note { 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; }
.section { margin-bottom: 0; }
.faq-section--heading-a h2.section__heading { color: var(--text-primary); border-color: var(--accent-light); }
.faq-section--heading-b h2.section__heading { color: var(--text-primary); border-color: var(--accent-light); }
.note-box-theme--jewel .note-box--tip     { background: #052e16; border-color: #10b981; }
.note-box-theme--jewel .note-box--warning { background: #2d0a1e; border-color: #f43f5e; }
.note-box-theme--jewel .note-box--info    { background: #1e1036; border-color: #a855f7; }
.note-box-theme--jewel .note-box strong  { color: #f1f5f9; }
.note-box-theme--jewel .note-box p       { color: #cbd5e1; }
.note-box-theme--jewel .note-icons-style-a    .note-box--tip     .note-box__icon::before,
.note-box-theme--jewel .note-icons-style-b  .note-box--tip     .note-box__icon::before,
.note-box-theme--jewel .note-icons-style-c  .note-box--tip     .note-box__icon::before,
.note-box-theme--jewel .note-icons-style-d .note-box--tip     .note-box__icon::before { color: #10b981; }
.note-box-theme--jewel .note-icons-style-a    .note-box--warning .note-box__icon::before,
.note-box-theme--jewel .note-icons-style-b  .note-box--warning .note-box__icon::before,
.note-box-theme--jewel .note-icons-style-c  .note-box--warning .note-box__icon::before,
.note-box-theme--jewel .note-icons-style-d .note-box--warning .note-box__icon::before { color: #f43f5e; }
.note-box-theme--jewel .note-icons-style-a    .note-box--info    .note-box__icon::before,
.note-box-theme--jewel .note-icons-style-b  .note-box--info    .note-box__icon::before,
.note-box-theme--jewel .note-icons-style-c  .note-box--info    .note-box__icon::before,
.note-box-theme--jewel .note-icons-style-d .note-box--info    .note-box__icon::before { color: #a855f7; }
.note-box-theme--amber .note-box--tip     { background: #2d2000; border-color: #eab308; }
.note-box-theme--amber .note-box--warning { background: #2d0b0b; border-color: #ef4444; }
.note-box-theme--amber .note-box--info    { background: #2d1600; border-color: #f97316; }
.note-box-theme--amber .note-box strong  { color: #f1f5f9; }
.note-box-theme--amber .note-box p       { color: #cbd5e1; }
.note-box-theme--amber .note-icons-style-a    .note-box--tip     .note-box__icon::before,
.note-box-theme--amber .note-icons-style-b  .note-box--tip     .note-box__icon::before,
.note-box-theme--amber .note-icons-style-c  .note-box--tip     .note-box__icon::before,
.note-box-theme--amber .note-icons-style-d .note-box--tip     .note-box__icon::before { color: #eab308; }
.note-box-theme--amber .note-icons-style-a    .note-box--warning .note-box__icon::before,
.note-box-theme--amber .note-icons-style-b  .note-box--warning .note-box__icon::before,
.note-box-theme--amber .note-icons-style-c  .note-box--warning .note-box__icon::before,
.note-box-theme--amber .note-icons-style-d .note-box--warning .note-box__icon::before { color: #ef4444; }
.note-box-theme--amber .note-icons-style-a    .note-box--info    .note-box__icon::before,
.note-box-theme--amber .note-icons-style-b  .note-box--info    .note-box__icon::before,
.note-box-theme--amber .note-icons-style-c  .note-box--info    .note-box__icon::before,
.note-box-theme--amber .note-icons-style-d .note-box--info    .note-box__icon::before { color: #f97316; }
.note-box-theme--ocean .note-box--tip     { background: #0c1a2e; border-color: #38bdf8; }
.note-box-theme--ocean .note-box--warning { background: #12103a; border-color: #818cf8; }
.note-box-theme--ocean .note-box--info    { background: #0a2020; border-color: #2dd4bf; }
.note-box-theme--ocean .note-box strong  { color: #f1f5f9; }
.note-box-theme--ocean .note-box p       { color: #cbd5e1; }
.note-box-theme--ocean .note-icons-style-a    .note-box--tip     .note-box__icon::before,
.note-box-theme--ocean .note-icons-style-b  .note-box--tip     .note-box__icon::before,
.note-box-theme--ocean .note-icons-style-c  .note-box--tip     .note-box__icon::before,
.note-box-theme--ocean .note-icons-style-d .note-box--tip     .note-box__icon::before { color: #38bdf8; }
.note-box-theme--ocean .note-icons-style-a    .note-box--warning .note-box__icon::before,
.note-box-theme--ocean .note-icons-style-b  .note-box--warning .note-box__icon::before,
.note-box-theme--ocean .note-icons-style-c  .note-box--warning .note-box__icon::before,
.note-box-theme--ocean .note-icons-style-d .note-box--warning .note-box__icon::before { color: #818cf8; }
.note-box-theme--ocean .note-icons-style-a    .note-box--info    .note-box__icon::before,
.note-box-theme--ocean .note-icons-style-b  .note-box--info    .note-box__icon::before,
.note-box-theme--ocean .note-icons-style-c  .note-box--info    .note-box__icon::before,
.note-box-theme--ocean .note-icons-style-d .note-box--info    .note-box__icon::before { color: #2dd4bf; }
.note-box-theme--brand .note-box--tip     { background: var(--accent-bg); border-color: var(--accent-light); }
.note-box-theme--brand .note-box--warning { background: var(--accent-bg-light); border-color: var(--accent-light); }
.note-box-theme--brand .note-box--info    { background: var(--accent-bg); border-color: var(--accent-pale); }
.note-box-theme--brand .note-icons-style-a    .note-box__icon::before,
.note-box-theme--brand .note-icons-style-b  .note-box__icon::before,
.note-box-theme--brand .note-icons-style-c  .note-box__icon::before,
.note-box-theme--brand .note-icons-style-d .note-box__icon::before { color: var(--accent-light) !important; }
.pros-label-inline::before,
.cons-label-inline::before { margin-right: 5px; }
.pros-cons--flat-green-red .pros-list ul li,
.pros-cons--flat-green-red .pros-list--inline li         { color: #4ade80; }
.pros-cons--flat-green-red .pros-list .pros-label-inline { color: #22c55e; }
.pros-cons--flat-green-red .cons-list ul li,
.pros-cons--flat-green-red .cons-list--inline li         { color: #f87171; }
.pros-cons--flat-green-red .cons-list .cons-label-inline { color: #ef4444; }
.pros-cons--brand-colors .pros-list { background: var(--bg-pros); }
.pros-cons--brand-colors .cons-list { background: var(--bg-cons); }
.pros-cons--brand-colors .pros-list .pros-label-inline { color: var(--c-pros-label); }
.pros-cons--brand-colors .cons-list .cons-label-inline { color: var(--c-cons); }
.pros-cons--brand-colors .pros-list ul li,
.pros-cons--brand-colors .pros-list--inline li            { color: var(--c-pros); }
.pros-cons--brand-colors .cons-list ul li,
.pros-cons--brand-colors .cons-list--inline li            { color: var(--c-cons); }
.pros-cons--soft-colors .pros-list { background: var(--bg-pros); }
.pros-cons--soft-colors .cons-list { background: var(--bg-cons); }
.pros-cons--soft-colors .pros-list .pros-label-inline { color: var(--c-pros-label); }
.pros-cons--soft-colors .cons-list .cons-label-inline { color: var(--c-cons); }
.pros-cons--soft-colors .pros-list ul li,
.pros-cons--soft-colors .pros-list--inline li          { color: var(--c-pros); }
.pros-cons--soft-colors .cons-list ul li,
.pros-cons--soft-colors .cons-list--inline li          { color: var(--c-cons); }
.marker-style-check .pros-label-inline::before { content: "✓ "; }
.marker-style-check .cons-label-inline::before { content: "✗ "; }
.marker-style-arrow .pros-label-inline::before { content: "→ "; }
.marker-style-arrow .cons-label-inline::before { content: "← "; }
.marker-style-star .pros-label-inline::before { content: "★ "; }
.marker-style-star .cons-label-inline::before { content: "✕ "; }
.marker-style-diamond .pros-label-inline::before { content: "◆ "; }
.marker-style-diamond .cons-label-inline::before { content: "▲ "; }
.note-box--outline .note-box { background: transparent; border-left: none; border: 1.5px solid; }
.note-box--outline .note-box--tip     { border-color: var(--c-tip-border); }
.note-box--outline .note-box--warning { border-color: var(--c-warn-border); }
.note-box--outline .note-box--info    { border-color: #60a5fa; }
.note-box--outline .note-box strong { color: var(--text-primary); }
.note-box--outline .note-box p      { color: var(--text-muted); }
.accent-style--top-bar .note-box { border-left: none; border-top: 4px solid; border-radius: 0 0 8px 8px; }
.accent-style--top-bar .note-box--tip     { border-top-color: var(--c-tip-border); }
.accent-style--top-bar .note-box--warning { border-top-color: var(--c-warn-border); }
.accent-style--top-bar .note-box--info    { border-top-color: #60a5fa; }
.note-box--solid-fill .note-box { border-left: none; border-radius: 8px; }
.note-box--solid-fill .note-box--tip     { background: #065f46; }
.note-box--solid-fill .note-box--warning { background: #92400e; }
.note-box--solid-fill .note-box--info    { background: #1e3a8a; }
.note-box--solid-fill .note-box strong,
.note-box--solid-fill .note-box p { color: #fff; }
.note-box--solid-fill .note-box__icon::before { color: rgba(255,255,255,0.85) !important; }
.note-box-theme--jewel.note-box--solid-fill .note-box--tip,
.note-box-theme--jewel .note-box--solid-fill .note-box--tip     { background: #052e16; }
.note-box-theme--jewel.note-box--solid-fill .note-box--warning,
.note-box-theme--jewel .note-box--solid-fill .note-box--warning { background: #2d0a1e; }
.note-box-theme--jewel.note-box--solid-fill .note-box--info,
.note-box-theme--jewel .note-box--solid-fill .note-box--info    { background: #1e1036; }
.note-box-theme--amber.note-box--solid-fill .note-box--tip,
.note-box-theme--amber .note-box--solid-fill .note-box--tip      { background: #2d2000; }
.note-box-theme--amber.note-box--solid-fill .note-box--warning,
.note-box-theme--amber .note-box--solid-fill .note-box--warning  { background: #2d0b0b; }
.note-box-theme--amber.note-box--solid-fill .note-box--info,
.note-box-theme--amber .note-box--solid-fill .note-box--info     { background: #2d1600; }
.note-box-theme--ocean.note-box--solid-fill .note-box--tip,
.note-box-theme--ocean .note-box--solid-fill .note-box--tip      { background: #0c1a2e; }
.note-box-theme--ocean.note-box--solid-fill .note-box--warning,
.note-box-theme--ocean .note-box--solid-fill .note-box--warning  { background: #12103a; }
.note-box-theme--ocean.note-box--solid-fill .note-box--info,
.note-box-theme--ocean .note-box--solid-fill .note-box--info     { background: #0a2020; }
.note-box--tinted .note-box { border-left: none; border-radius: 6px; padding: 10px 14px; }
.note-box--tinted .note-box--tip     { background: color-mix(in srgb, var(--c-tip-border) 10%, transparent); }
.note-box--tinted .note-box--warning { background: color-mix(in srgb, var(--c-warn-border) 10%, transparent); }
.note-box--tinted .note-box--info    { background: color-mix(in srgb, #60a5fa 10%, transparent); }
.note-box--tinted .note-box strong { color: var(--text-primary); }
.note-box--tinted .note-box p      { color: var(--text-muted); }
.note-box--floating .note-box { border-left: none; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.25); }
.note-icons-style-a .note-box__icon,
.note-icons-style-b .note-box__icon,
.note-icons-style-c .note-box__icon,
.note-icons-style-d .note-box__icon { font-size: 0; width: 1.1rem; flex-shrink: 0; }
.note-icons-style-a .note-box__icon::before,
.note-icons-style-b .note-box__icon::before,
.note-icons-style-c .note-box__icon::before,
.note-icons-style-d .note-box__icon::before {
  display: block; font-size: 1.15rem; line-height: 1.3; font-style: normal;
}
.note-icons-style-a .note-box--tip     .note-box__icon::before { content: "✦"; color: var(--c-tip-border); }
.note-icons-style-a .note-box--warning .note-box__icon::before { content: "▲"; color: var(--c-warn-border); }
.note-icons-style-a .note-box--info    .note-box__icon::before { content: "◉"; color: #60a5fa; }
.note-icons-style-b .note-box--tip     .note-box__icon::before { content: "★"; color: var(--c-tip-border); }
.note-icons-style-b .note-box--warning .note-box__icon::before { content: "◆"; color: var(--c-warn-border); }
.note-icons-style-b .note-box--info    .note-box__icon::before { content: "●"; color: #60a5fa; }
.note-icons-style-c .note-box--tip     .note-box__icon::before { content: "▶"; color: var(--c-tip-border); }
.note-icons-style-c .note-box--warning .note-box__icon::before { content: "■"; color: var(--c-warn-border); }
.note-icons-style-c .note-box--info    .note-box__icon::before { content: "▸"; color: #60a5fa; }
.note-icons-style-d .note-box--tip     .note-box__icon::before { content: "→"; color: var(--c-tip-border); }
.note-icons-style-d .note-box--warning .note-box__icon::before { content: "⬥"; color: var(--c-warn-border); }
.note-icons-style-d .note-box--info    .note-box__icon::before { content: "◈"; color: #60a5fa; }
.shadows--soft .callouts--card-bg .callout-block,
.shadows--soft .callouts--zebra .callout-block  { box-shadow: 0 2px 8px rgba(0,0,0,0.22); }
.shadows--soft .feature-card                { box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.shadows--soft .table-scroll          { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.shadows--soft .toc-box                    { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
.shadows--none .callouts--card-bg .callout-block,
.shadows--none .callouts--zebra .callout-block,
.shadows--none .feature-card,
.shadows--none .rating-card__row,
.shadows--none .rating-card__desc,
.shadows--none .table-scroll,
.shadows--none .toc-box,
.shadows--none .note-box--floating .note-box { box-shadow: none; }
.text-density--compact   body, .text-density--compact   { font-size: 0.9rem; }
.text-density--compact   .generic-paragraph, .text-density--compact .callout-block__lede, .text-density--compact .callout-block__note,
.text-density--compact   .section__lede, .text-density--compact .section__outro { font-size: 0.9rem; }
.text-density--compact   .bullet-list, .text-density--compact .step-list { font-size: 0.9rem; }
.text-density--comfortable   .generic-paragraph, .text-density--comfortable .callout-block__lede, .text-density--comfortable .callout-block__note,
.text-density--comfortable   .section__lede, .text-density--comfortable .section__outro { font-size: 0.95rem; }
.text-density--comfortable   .bullet-list, .text-density--comfortable .step-list { font-size: 0.95rem; }
.text-density--relaxed   .generic-paragraph, .text-density--relaxed .callout-block__lede, .text-density--relaxed .callout-block__note,
.text-density--relaxed   .section__lede, .text-density--relaxed .section__outro { font-size: 1.08rem; }
.text-density--relaxed   .bullet-list, .text-density--relaxed .step-list { font-size: 1.05rem; }
.text-density--relaxed   .data-table { font-size: 0.97rem; }
.heading-scale--lg .hero__title      { font-size: 3.2rem; }
.heading-scale--lg h2.section__heading { font-size: 1.9rem; }
.heading-scale--lg h3.section__subheading     { font-size: 1.4rem; }
.heading-scale--xl .hero__title      { font-size: 3.8rem; }
.heading-scale--xl h2.section__heading { font-size: 2.2rem; }
.heading-scale--xl h3.section__subheading     { font-size: 1.6rem; }
.section + .section { position: relative; }
.section-divider--line   .section + .section::before,
.section-divider--gradient  .section + .section::before,
.section-divider--dots   .section + .section::before,
.section-divider--fade-line   .section + .section::before,
.section-divider--dashed   .section + .section::before,
.section-divider--dotted-thick .section + .section::before {
  position: absolute; top: -1px; left: 0; right: 0;
  transform: translateY(-50%);
}
.section-divider--line .section + .section::before {
  content: ""; height: 1px; background: var(--accent); opacity: 0.5;
}
.section-divider--gradient .section + .section::before {
  content: ""; height: 4px;
  background: linear-gradient(90deg, var(--grad-start), var(--accent), var(--grad-end));
}
.section-divider--dots .section + .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;
}
.section-divider--fade-line .section + .section::before {
  content: ""; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 25%, var(--accent) 75%, transparent 100%);
  opacity: 0.6;
}
.sections--tight-stack .section { margin-bottom: 16px; }
.sections--tight-stack .section + .section { margin-top: 0; }
.sections--tight-stack .section__inner { padding-top: 0; padding-bottom: 0; }
.section-divider--dashed .section + .section::before {
  content: ""; border-top: 2px dashed var(--accent); opacity: 0.5;
}
.section-divider--dotted-thick .section + .section::before {
  content: ""; border-top: 3px dotted var(--accent); opacity: 0.5;
}
.section-divider--wave-single .section + .section::before,
.section-divider--wave-double .section + .section::before,
.section-divider--arc .section + .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%;
}
.sections--zebra-page-surface .section-divider--wave-single .section:nth-child(even)::before,
.sections--zebra-page-surface .section-divider--wave-double .section:nth-child(even)::before,
.sections--zebra-page-surface .section-divider--arc .section:nth-child(even)::before { background: var(--bg-surface); }
.sections--zebra-card .section-divider--wave-single .section:nth-child(even)::before,
.sections--zebra-card .section-divider--wave-double .section:nth-child(even)::before,
.sections--zebra-card .section-divider--arc .section:nth-child(even)::before { background: var(--bg-card); }
.section-divider--wave-single .section + .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");
}
.section-divider--wave-double .section + .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");
}
.section-divider--arc .section + .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");
}
.hero-edge-wave-a .hero--media,
.hero-edge-wave-b .hero--media,
.hero-edge-wave-c .hero--media { overflow: hidden; }
.hero-edge-wave-a .hero__inner,
.hero-edge-wave-b .hero__inner { margin-bottom: 60px; }
.hero-edge-wave-c .hero__inner { margin-bottom: 70px; }
.hero-edge-wave-a .hero-split__text,
.hero-edge-wave-a .hero--media::before,
.hero-edge-wave-b .hero--media::before,
.hero-edge-wave-c .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%;
}
.hero-edge-wave-a .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");
}
.hero-edge-wave-b .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-c .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");
}
.hero-scrim-diagonal-a .hero--media:not(.hero--solid-brand) .hero__scrim { background: linear-gradient(225deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 100%); }
.hero-scrim-diagonal-b .hero--media:not(.hero--solid-brand) .hero__scrim { background: linear-gradient(45deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.65) 100%); }
.hero-scrim-horizontal  .hero--media:not(.hero--solid-brand) .hero__scrim { background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 100%); }
.hero-scrim-vertical  .hero--media:not(.hero--solid-brand) .hero__scrim { background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 100%); }
.hero-scrim-diagonal-b .hero--solid-brand { background: linear-gradient(45deg, var(--accent) 0%, var(--accent-light) 100%); }
.hero-scrim-diagonal-b .featured-badge { background: linear-gradient(45deg, var(--accent), var(--accent-light)); }
.hero-scrim-diagonal-b .hero--split { background: linear-gradient(45deg, var(--bg-surface) 0%, var(--accent-bg) 100%); }
.hero-scrim--flat .hero--solid-brand .hero__scrim { background: none; }
.hero-scrim--flat .hero--media:not(.hero--solid-brand) .hero__scrim { background: rgba(0,0,0,0.6); }
.section--image-float-left .media-frame { float: left; width: 38%; margin: 0 28px 16px 0; }
.section--image-float-left .media-frame .content-image { width: 100%; height: auto; max-height: 360px; object-fit: cover; border-radius: 10px; }
.section--image-float-left .section__inner::after { content: ''; display: block; clear: both; }
.section--image-float-right .media-frame { float: right; width: 38%; margin: 0 0 16px 28px; }
.section--image-float-right .media-frame .content-image { width: 100%; height: auto; max-height: 360px; object-fit: cover; border-radius: 10px; }
.section--image-float-right .section__inner::after { content: ''; display: block; clear: both; }
.section--image-float-alternate .section:nth-child(odd)  .media-frame { float: left;  width: 38%; margin: 0 28px 16px 0; }
.section--image-float-alternate .section:nth-child(even) .media-frame { float: right; width: 38%; margin: 0 0 16px 28px; }
.section--image-float-alternate .media-frame .content-image { width: 100%; height: auto; max-height: 360px; object-fit: cover; border-radius: 10px; }
.section--image-float-alternate .section__inner::after { content: ''; display: block; clear: both; }
.section--image-float-left .feature-grid,
.section--image-float-right .feature-grid,
.section--image-float-alternate .feature-grid,
@media (max-width: 900px) {
  .section--image-float-left .media-frame,
  .section--image-float-right .media-frame,
  .section--image-float-alternate .section:nth-child(odd)  .media-frame,
  .section--image-float-alternate .section:nth-child(even) .media-frame {
    float: none !important;
    width: 100% !important;
    margin: 0 0 16px 0 !important;
  }
  .section--image-float-left .media-frame .content-image,
  .section--image-float-right .media-frame .content-image,
  .section--image-float-alternate .media-frame .content-image {
    max-height: none !important;
  }
}
.section--image-float-left .bullet-list,
.section--image-float-left .step-list,
.section--image-float-right .bullet-list,
.section--image-float-right .step-list,
.section--image-float-alternate .bullet-list,
.section--image-float-alternate .step-list { overflow: hidden; }
@media (max-width: 640px) {
  .section--image-float-left .media-frame,
  .section--image-float-right .media-frame,
  .section--image-float-alternate .media-frame { float: none; width: 100%; margin: 0 0 16px 0; }
}
.content-width--md .content-wrap,
.content-width--md .section__inner,
.content-width--md .site-footer__inner  { max-width: 1100px; }
.content-width--md { --content-mw: 1100px; }
.content-width--lg .content-wrap,
.content-width--lg .section__inner,
.content-width--lg .site-footer__inner  { max-width: 1200px; }
.content-width--xl .content-wrap,
.content-width--xl .section__inner,
.content-width--xl .site-footer__inner  { max-width: 1320px; }
.breadcrumb { font-size: 0.82rem; color: var(--text-muted); }
.breadcrumb__row { display: flex; align-items: center; }
.breadcrumb__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; flex-wrap: wrap; gap: 0;
}
.breadcrumb__item { display: flex; align-items: center; }
.breadcrumb__link { color: var(--accent-light); text-decoration: none; padding: 2px 5px; border-radius: 4px; }
.breadcrumb__link:hover { text-decoration: underline; }
.breadcrumb__sep { margin: 0 3px; opacity: 0.45; }
.breadcrumb__sep::before { content: '/'; }
.breadcrumb__current { padding: 2px 5px; color: var(--text-main); }
.breadcrumb--bar .breadcrumb {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 9px 0;
}
.breadcrumb--bar .breadcrumb__row { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.breadcrumb--rule-left .breadcrumb {
  border-left: 3px solid var(--accent);
  padding: 4px 0;
  margin-bottom: 20px;
}
.breadcrumb--rule-left .breadcrumb__row { padding: 0 0 0 12px; }
.breadcrumb--card .breadcrumb__row { padding: 0 16px; }
.breadcrumb--card .breadcrumb {
  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);
}
.breadcrumb--card .content-wrap { padding-top: 28px; }
@media (max-width: 720px) {
  .breadcrumb--inline { margin-top: 18px; padding: 0 16px; }
  .breadcrumb--card .content-wrap { padding-top: 16px; }
}
.content-width--md.breadcrumb--bar .breadcrumb__row { max-width: 1100px; }
.content-width--lg.breadcrumb--bar .breadcrumb__row { max-width: 1200px; }
.content-width--xl.breadcrumb--bar .breadcrumb__row { max-width: 1320px; }
.content-width--md .breadcrumb--inline { max-width: 1100px; }
.section-padding--sm .section { padding-top: 16px; padding-bottom: 16px; }
.section-padding--md .section { padding-top: 24px; padding-bottom: 24px; }
.section-padding--lg .section { padding-top: 40px; padding-bottom: 40px; }
.section-padding--xl .section { padding-top: 52px; padding-bottom: 52px; }
.section-padding--rhythmic .section:nth-child(4n+1) { padding-top: 20px;  padding-bottom: 20px; }
.section-padding--rhythmic .section:nth-child(4n+2) { padding-top: 36px;  padding-bottom: 36px; }
.section-padding--rhythmic .section:nth-child(4n+3) { padding-top: 28px;  padding-bottom: 28px; }
.section-padding--rhythmic .section:nth-child(4n)   { padding-top: 44px;  padding-bottom: 44px; }
.section-inner-padding--xs .section__inner { padding-top: 10px;  padding-bottom: 10px; }
.section-inner-padding--sm .section__inner { padding-top: 18px;  padding-bottom: 18px; }
.section-inner-padding--md .section__inner { padding-top: 36px;  padding-bottom: 36px; }
.section-inner-padding--lg .section__inner { padding-top: 48px;  padding-bottom: 48px; }
.weight-scale--light h2.section__heading { font-weight: 600; }
.weight-scale--light h3.section__subheading     { font-weight: 600; }
.weight-scale--medium h2.section__heading { font-weight: 800; }
.weight-scale--medium h3.section__subheading     { font-weight: 700; }
.weight-scale--bold { font-weight: 600; }
.weight-scale--bold h2.section__heading { font-weight: 900; }
.weight-scale--bold h3.section__subheading     { font-weight: 800; }
.weight-scale--bold .note-box strong,
.weight-scale--bold .note-box strong { font-weight: 600; }
.header-cta-btn {
  margin-left: 16px; flex-shrink: 0;
  padding: 7px 16px; font-size: 0.82rem; font-weight: 700; border-radius: 6px;
}
.header-cta--hide-badge .header-cta-btn { display: none; }
@media (max-width: 640px) {
  .u-hide-below-640 { display: none; }
  .header-cta-btn {
    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;
  }
}
.header-cta-btn { background: var(--cta) !important; color: #fff !important; border: none !important; }
.header-cta-btn:hover { opacity: 0.85; }
.header-cta--gradient .header-cta-btn { background: linear-gradient(135deg, var(--cta), var(--cta-light)) !important; }
.theme-header-brand .header-cta-btn,
.theme-header-glass  .header-cta-btn { background: var(--grad-start) !important; color: #fff !important; border: none !important; }
.theme-header-brand .header-cta-btn:hover,
.theme-header-glass  .header-cta-btn:hover { opacity: 0.88; }
.header-cta--gradient.theme-header-brand .header-cta-btn,
.header-cta--gradient.theme-header-glass  .header-cta-btn { background: linear-gradient(135deg, var(--grad-start), var(--accent-light)) !important; }
.sticky-cta-btn {
  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-btn:hover { transform: translateY(-2px); opacity: 0.92; }
.sticky-cta-btn { background: var(--cta) !important; color: #fff !important; border: none !important; }
.sticky-cta--hidden .sticky-cta-btn { display: none; }
.sticky-cta--right .sticky-cta-btn { right: 32px; }
.sticky-cta--left  .sticky-cta-btn { left: 32px; }
@media (max-width: 480px) {
  .sticky-cta--right .sticky-cta-btn { right: 20px; bottom: 20px; }
  .sticky-cta--left  .sticky-cta-btn { left: 20px; bottom: 20px; }
}
.site-footer { background: var(--bg-surface); border-top: 1px solid var(--border); margin-top: 60px; }
.site-footer__inner { max-width: 1100px; margin: 0 auto; padding: 32px 24px; }
.site-footer__tagline { color: var(--text-faint); font-size: 0.85rem; margin-bottom: 6px; }
.site-footer__copyright { color: var(--text-dim); font-size: 0.8rem; }
.site-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; }
.site-footer__brand img { height: 26px; width: auto; object-fit: contain; }
.site-footer--centered .site-footer__inner { text-align: center; }
.site-footer--centered .site-footer__tagline { margin-top: 0; }
@media (max-width: 640px) {
  .site-footer__inner { padding-left: 16px; padding-right: 16px; }
  .layout--full-bleed .site-footer__inner { padding: 20px 16px; }
  .site-footer__meta--tight { gap: 4px 12px; }
  .site-footer__tagline { font-size: 0.78rem; }
}
.site-footer--columns .footer-columns__brand-col .site-footer__brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.05rem; text-decoration: none; margin-bottom: 10px; }
.site-footer--columns .site-footer__tagline { font-size: 0.78rem; color: var(--text-faint); margin: 14px 0 4px; line-height: 1.5; }
.site-footer--columns .site-footer__copyright { font-size: 0.78rem; color: var(--text-faint); margin: 0; }
@media (max-width: 768px) { .site-footer--columns .footer-columns__grid { grid-template-columns: 1fr 1fr; } .site-footer--columns .footer-columns__brand-col { grid-column: 1 / -1; } }
@media (max-width: 480px) { .site-footer--columns .footer-columns__grid { grid-template-columns: 1fr; } }
.site-footer--bar .footer-bar__top { display: flex; align-items: center; gap: 0; flex-wrap: wrap; padding-bottom: 14px; border-bottom: 1px solid var(--border); margin-bottom: 12px; }
.site-footer--bar .site-footer__brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1rem; text-decoration: none; margin-right: auto; flex-shrink: 0; }
.site-footer--bar .footer-bar__nav { display: flex; flex-wrap: wrap; gap: 4px 16px; margin-right: 24px; }
.site-footer--bar .footer-bar__nav a { font-size: 0.87rem; color: var(--text-muted); text-decoration: none; }
.site-footer--bar .footer-bar__nav a:hover { color: var(--accent-light); }
.footer-bar__copyright { font-size: 0.8rem; color: var(--text-faint); margin: 0; white-space: nowrap; }
.site-footer--bar .footer-bar__bottom { display: flex; align-items: baseline; gap: 1.5rem; flex-wrap: wrap; }
.site-footer--bar .footer-bar__legal-nav { display: flex; flex-wrap: wrap; gap: 4px 14px; }
.site-footer--bar .footer-bar__legal-nav a { font-size: 0.78rem; color: var(--text-faint); text-decoration: none; }
.site-footer--bar .footer-bar__legal-nav a:hover { color: var(--accent-light); }
.site-footer--bar .site-footer__tagline { font-size: 0.78rem; color: var(--text-faint); margin: 0; }
@media (max-width: 640px) { .site-footer--bar .footer-bar__top { gap: 12px; } .site-footer--bar .site-footer__brand { margin-right: 0; width: 100%; } }
.site-footer--split .footer-split__brand-col .site-footer__brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.1rem; text-decoration: none; margin-bottom: 10px; }
.site-footer--split .site-footer__tagline { font-size: 0.78rem; color: var(--text-faint); margin: 0; flex: 1; }
.site-footer--split .site-footer__copyright { font-size: 0.78rem; color: var(--text-faint); margin: 0; white-space: nowrap; }
@media (max-width: 768px) { .site-footer--split .footer-split__grid { grid-template-columns: 1fr 1fr; } .site-footer--split .footer-split__brand-col { grid-column: 1 / -1; } }
@media (max-width: 480px) { .site-footer--split .footer-split__grid { grid-template-columns: 1fr; } }
@media (max-width: 760px) { .site-footer--grid-a .footer-grid { grid-template-columns: 1fr 1fr; } .site-footer--grid-a .footer-grid__col:first-child { grid-column: 1 / -1; } }
@media (max-width: 480px) { .site-footer--grid-a .footer-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .site-footer--grid-b .footer-grid { grid-template-columns: 1fr; } }
.site-footer--stacked-center .site-footer__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.theme-header-flat .site-header      { background: var(--bg-page); border-bottom-color: var(--border-alt); }
.theme-header-flat .site-footer { background: var(--bg-page); border-top-color: var(--border-alt); }
.theme-header-dark .site-header      { background: #0d1117; border-bottom-color: #21262d; }
.theme-header-dark .site-header__brand { color: var(--accent-light); }
.theme-header-dark .site-header__menu { --msep-color: #8b949e; }
.theme-header-dark .site-header__menu a { color: #8b949e; }
.theme-header-dark .site-header__menu a:hover { color: var(--accent-light); }
.theme-header-dark .site-header__menu-toggle { color: #8b949e; }
.theme-header-dark .site-footer { background: #0d1117; border-top-color: #21262d; color: #e6edf3; }
.theme-header-dark .site-footer__tagline,
.theme-header-dark .site-footer__copyright { color: #6e7681; }
.theme-header-dark .footer-bar__nav-alt a, .theme-header-dark .footer-bar__nav a,
.theme-header-dark .footer-bar__legal-nav a { color: #8b949e; }
.theme-header-dark .site-footer__brand { color: #e6edf3; }
.theme-header-dark .footer-bar__nav-alt a:hover, .theme-header-dark .footer-bar__nav a:hover { color: var(--accent-light); }
@media (max-width: 640px) {
  .theme-header-dark .site-header__menu { background: #0d1117; border-top-color: #21262d; }
  .theme-header-dark .site-header__menu li a { border-bottom-color: #21262d; }
}
.theme-header-light .site-header      { background: #f0f4f8; border-bottom-color: #cbd5e1; }
.theme-header-light .site-header__brand { color: var(--accent-light); }
.theme-header-light .site-header__menu { --msep-color: #475569; }
.theme-header-light .site-header__menu a { color: #475569; }
.theme-header-light .site-header__menu a:hover { color: var(--accent-light); }
.theme-header-light .site-header__menu-toggle { color: #64748b; }
.theme-header-light .site-footer { background: #f0f4f8; border-top-color: #cbd5e1; }
.theme-header-light .site-footer__tagline,
.theme-header-light .site-footer__copyright { color: #64748b; }
.theme-header-light .footer-bar__nav-alt a, .theme-header-light .footer-bar__nav a,
.theme-header-light .footer-bar__legal-nav a, .theme-header-light .site-footer__brand { color: #374151; }
.theme-header-light .footer-bar__nav-alt a:hover, .theme-header-light .footer-bar__nav a:hover { color: var(--accent-light); }
@media (max-width: 640px) {
  .theme-header-light .site-header__menu { background: #f0f4f8; border-top-color: #cbd5e1; }
  .theme-header-light .site-header__menu li a { border-bottom-color: #cbd5e1; color: #475569; }
}
.theme-header-brand .site-header      { background: var(--accent); border-bottom-color: var(--accent-light); }
.theme-header-brand .site-header__brand { color: #fff; }
.theme-header-brand .site-header__menu { --msep-color: rgba(255,255,255,0.82); }
.theme-header-brand .site-header__menu a { color: rgba(255,255,255,0.82); }
.theme-header-brand .site-header__menu a:hover { color: #fff; }
.theme-header-brand .site-header__menu-toggle { color: rgba(255,255,255,0.9); }
.theme-header-brand .site-header__submenu a { color: var(--text-primary) !important; }
.theme-header-brand .site-header__submenu a:hover { color: var(--accent-light) !important; }
.theme-header-brand .site-footer { background: var(--accent); border-top-color: var(--accent-light); color: #fff; }
.theme-header-brand .site-footer__tagline,
.theme-header-brand .site-footer__copyright { color: rgba(255,255,255,0.72); }
.theme-header-brand .footer-bar__nav-alt a, .theme-header-brand .footer-bar__nav a,
.theme-header-brand .footer-bar__legal-nav a, .theme-header-brand .site-footer__brand { color: #fff; }
.theme-header-brand .footer-bar__nav-alt a:hover, .theme-header-brand .footer-bar__nav a:hover { color: #fff; }
@media (max-width: 640px) {
  .theme-header-brand .site-header__menu { background: var(--accent); border-top-color: var(--accent-light); }
  .theme-header-brand .site-header__menu li a { border-bottom-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.82); }
}
.theme-header-glass .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);
}
.theme-header-glass .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) {
  .theme-header-glass .site-header__menu {
    background: color-mix(in srgb, var(--bg-surface) 85%, transparent);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
}
.header-size-compact .site-header__bar { min-height: 52px; height: auto; padding-top: 6px; padding-bottom: 6px; }
.header-size-cozy .site-header__bar { min-height: 58px; height: auto; padding-top: 8px; padding-bottom: 8px; }
.header-size-tall .site-header__bar { min-height: 72px; height: auto; }
.header-size-xtall .site-header__bar { min-height: 84px; height: auto; }
.layout--full-bleed .site-header__bar { max-width: none; padding: 0 32px; }
.layout--full-bleed .site-footer__inner  { max-width: none; padding: 24px 32px; }
.header-width-match-content.content-width--lg .site-header__bar { max-width: 1200px; }
.header-width-match-content.content-width--xl .site-header__bar { max-width: 1320px; }
.brand-case-capitalize   .site-header__brand, .brand-case-capitalize   .site-footer__brand { text-transform: capitalize; }
.brand-case-lowercase .site-header__brand, .brand-case-lowercase .site-footer__brand { text-transform: lowercase; }
.brand-case-uppercase .site-header__brand, .brand-case-uppercase .site-footer__brand { text-transform: uppercase; letter-spacing: 0.06em; }
.site-header__brand-mark, .site-footer__brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-badge-tint-soft .site-header__brand-mark,
.logo-badge-tint-soft .site-footer__brand-mark { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 8px; padding: 4px; }
.logo-badge-gradient-soft .site-header__brand-mark,
.logo-badge-gradient-soft .site-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; }
.logo-badge-tint-pill .site-header__brand-mark,
.logo-badge-tint-pill .site-footer__brand-mark { background: color-mix(in srgb, var(--accent) var(--logo-bg-opacity, 8%), transparent); border-radius: 999px; padding: 4px 8px; }
.logo-badge-gradient-pill .site-header__brand-mark,
.logo-badge-gradient-pill .site-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; }
.nav-weight-regular   .site-header__menu a { font-weight: 500; }
.nav-weight-medium .site-header__menu a { font-weight: 600; }
.nav-weight-semibold     .site-header__menu a { font-weight: 700; }
.nav-weight-bold    .site-header__menu a { font-weight: 800; letter-spacing: 0.01em; }
.nav-sep-dot     .site-header__menu > li + li::before,
.nav-sep-pipe    .site-header__menu > li + li::before,
.nav-sep-dash    .site-header__menu > li + li::before,
.nav-sep-diamond .site-header__menu > li + li::before,
.nav-sep-chevron .site-header__menu > li + li::before,
.nav-sep-bullet  .site-header__menu > li + li::before,
.nav-sep-sparkle    .site-header__menu > li + li::before {
  margin-right: 10px; margin-left: -10px; opacity: 0.5; color: var(--msep-color);
}
.nav-sep-dot     .site-header__menu > li + li::before { content: "·"; font-size: 1.4em; line-height: 1; vertical-align: middle; }
.nav-sep-pipe    .site-header__menu > li + li::before { content: "|"; }
.nav-sep-dash    .site-header__menu > li + li::before { content: "—"; }
.nav-sep-diamond .site-header__menu > li + li::before { content: "◆"; font-size: 0.45em; vertical-align: middle; }
.nav-sep-chevron .site-header__menu > li + li::before { content: "›"; font-size: 1.3em; line-height: 1; }
.nav-sep-bullet  .site-header__menu > li + li::before { content: "•"; font-size: 0.8em; vertical-align: middle; }
.nav-sep-sparkle    .site-header__menu > li + li::before { content: "✦"; font-size: 0.55em; vertical-align: middle; }
@media (max-width: 640px) {

  
  .menu-icon-2-line .site-header__menu-toggle,
  .menu-icon-3-line .site-header__menu-toggle,
  .menu-icon-3-line-asc .site-header__menu-toggle,
  .menu-icon-3-line-desc .site-header__menu-toggle,
  .menu-icon-4-line .site-header__menu-toggle {
    font-size: 0 !important;
    display: flex !important;
    align-items: center; justify-content: center;
    padding: 0; width: 40px;
  }

  
  .menu-icon-2-line .site-header__menu-toggle::before,
  .menu-icon-3-line .site-header__menu-toggle::before,
  .menu-icon-3-line-asc .site-header__menu-toggle::before,
  .menu-icon-3-line-desc .site-header__menu-toggle::before,
  .menu-icon-4-line .site-header__menu-toggle::before { content: ""; display: block; flex-shrink: 0; }

  
  .menu-icon-2-line .site-header__menu-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;
  }

  
  .menu-icon-3-line .site-header__menu-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;
  }

  
  .menu-icon-3-line-asc .site-header__menu-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;
  }

  
  .menu-icon-3-line-desc .site-header__menu-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;
  }

  
  .menu-icon-4-line .site-header__menu-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) {
  .mobile-nav--dropdown .site-header__menu-toggle {
    padding: 5px 14px;
  }
  .mobile-nav--dropdown .site-header__menu {
    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;
  }
  .mobile-nav--dropdown .site-header__menu li a {
    border-bottom: none; padding: 10px 22px;
  }
  .mobile-nav--dropdown .site-header__menu li a:hover { background: var(--bg-raised); }
  .mobile-nav--dropdown .site-header__menu-overlay,
  .mobile-nav--overlay-none .site-header__menu-overlay,
  .mobile-nav--sheet .site-header__menu-overlay { background: none; backdrop-filter: none; -webkit-backdrop-filter: none; pointer-events: none; }
}
@media (max-width: 640px) {
  .mobile-nav--drawer .site-header__menu-toggle {
    padding: 5px 10px;
  }
  .mobile-nav--drawer .site-header__menu {
    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);
  }
  .mobile-nav--drawer .site-header__menu.is-open { transform: translateX(0); }
  .mobile-nav--drawer .site-header__menu li a {
    padding: 14px 28px; font-size: 1rem; border-bottom: 1px solid var(--border);
  }
  .mobile-nav--drawer .site-header__menu li:last-child a { border-bottom: none; }
  .theme-header-brand .site-header__menu,
  .theme-header-dark .site-header__menu { background: var(--accent) !important; }
  .theme-header-brand .site-header__menu li a,
  .theme-header-dark .site-header__menu li a { color: rgba(255,255,255,0.82) !important; border-bottom-color: rgba(255,255,255,0.2) !important; }
}
@media (max-width: 640px) {
  .mobile-nav--sheet .site-header__menu-toggle {
    padding: 5px 10px;
  }
  .mobile-nav--sheet .site-header__menu {
    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);
  }
  .mobile-nav--sheet .site-header__menu::before {
    content: ""; display: block;
    width: 40px; height: 4px;
    background: var(--border); border-radius: 2px;
    margin: 0 auto 14px;
  }
  .mobile-nav--sheet .site-header__menu.is-open { transform: translateY(0); }
  .mobile-nav--sheet .site-header__menu li a {
    text-align: center; border-bottom: none; padding: 13px 28px; font-size: 1rem;
  }
}
@media (max-width: 640px) {
  .mobile-nav--fullscreen .site-header__menu-toggle {
    padding: 5px 10px;
  }
  .mobile-nav--fullscreen .site-header__menu {
    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;
  }
  .mobile-nav--fullscreen .site-header__menu.is-open { opacity: 1; pointer-events: auto; }
  .mobile-nav--fullscreen .site-header__menu li a {
    font-size: 1.5rem; font-weight: 700; border-bottom: none;
    padding: 14px 48px; letter-spacing: 0.01em;
  }
}
@media (max-width: 640px) {
  .menu-toggle-square     .site-header__menu-toggle { border-radius: 0 !important; }
  .menu-toggle-soft   .site-header__menu-toggle { border-radius: 8px !important; }
  .menu-toggle-circle .site-header__menu-toggle { border-radius: 50% !important; }
  .menu-toggle-pill   .site-header__menu-toggle { border-radius: 999px !important; }
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.testimonial-card__meta { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0; background: var(--bg-card-inner);
}
.testimonial-card__avatar--initial {
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 700; color: var(--accent-light);
}
.testimonial-card__author { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.testimonial-card__name { font-weight: 700; color: var(--text-primary); font-size: 0.98rem; }
.testimonial-card__stars { color: var(--cta); font-size: 0.95rem; letter-spacing: 1px; }
.testimonial-card__stars .testimonial-card__star--empty { color: var(--text-faint); }
.testimonial-card__text { color: var(--text-body); font-size: 0.94rem; line-height: 1.5; margin: 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 20px;
}
.testimonials-grid--row-layout .testimonial-card { flex-direction: row; align-items: flex-start; gap: 16px; }
.testimonials-grid--row-layout .testimonial-card__meta { flex: 0 0 auto; flex-direction: column; align-items: center; min-width: 90px; }
.testimonials-grid--row-layout .testimonial-card__avatar { width: 64px; height: 64px; }
.testimonials-grid--row-layout .testimonial-card__author { align-items: center; text-align: center; }
.testimonials-grid--row-layout .testimonial-card__text { flex: 1 1 auto; }
.testimonial-card--compact .testimonial-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);
}
.testimonial-card--compact .testimonial-card__avatar { width: 40px; height: 40px; }
.testimonial-card--compact .testimonial-card__text { font-size: 0.88rem; }
@media (max-width: 640px) {
  .testimonials-grid--row-layout .testimonial-card { flex-direction: column; align-items: stretch; }
  .testimonials-grid--row-layout .testimonial-card__meta { flex-direction: row; min-width: auto; }
  .testimonials-grid--row-layout .testimonial-card__author { align-items: flex-start; text-align: left; }
}
.section--banner-shell,
.section--banner-shell.section,
.sections--zebra-page-surface .section--banner-shell,
.sections--zebra-tint .section--banner-shell,
.sections--zebra-card .section--banner-shell,
.sections--zebra-alt2 .section--banner-shell {
  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-banner__text { flex: 1 1 280px; min-width: 0; }
.promo-banner__title {
  margin: 0 0 6px 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.promo-banner__subtitle {
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
  line-height: 1.4;
}
.promo-banner__cta {
  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-banner__cta:hover { transform: translateY(-1px); opacity: 0.95; }
.promo-banner--outline .promo-banner {
  background: var(--bg-card);
  border: 2px solid var(--cta);
}
.promo-banner--outline .promo-banner__title { color: var(--cta); }
.promo-banner--outline .promo-banner__subtitle { color: var(--text-body); }
.promo-banner--outline .promo-banner__cta {
  background: var(--cta) !important;
  color: #fff !important;
}
.promo-banner--side-accent .promo-banner {
  background: var(--bg-card);
  border-left: 6px solid var(--cta);
  border-radius: 4px 16px 16px 4px;
}
.promo-banner--side-accent .promo-banner__title { color: var(--text-primary); }
.promo-banner--side-accent .promo-banner__subtitle { color: var(--text-body); }
.promo-banner--side-accent .promo-banner__cta {
  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-banner__text { flex: 0 0 auto; }
  .promo-banner__title { font-size: 1.2rem; }
  .promo-banner__cta { width: 100%; text-align: center; padding: 14px 28px !important; }
}
.logo-compact .site-header__logo-img { height: 36px; }
.logo-large .site-header__logo-img { height: 60px; max-width: 200px; }
.logo-medium .site-header__logo-img { height: 56px; max-width: 180px; }
.rating-style-amber    .rating-card__score-text, .rating-style-amber    .star-rating { color: #f59e0b; }
.rating-style-large      .star-rating   { font-size: 1.35rem; }
.rating-style-muted    .rating-card__score-text, .rating-style-muted    .star-rating { color: var(--text-muted); opacity: 0.7; letter-spacing: 2px; }
.rating-style-label-wide     .rating-card__score-text, .rating-style-label-wide     .star-rating { color: var(--cta); letter-spacing: 3px; font-size: 0.7rem; }
.rating-style-brand .rating-card__score-text, .rating-style-brand .star-rating { color: var(--cta); letter-spacing: 2px; }
.rating-style-pink   .rating-card__score-text, .rating-style-pink   .star-rating { color: #e91e63; letter-spacing: 2px; }
.rating-style-brand-sm  .rating-card__score-text, .rating-style-brand-sm  .star-rating { color: var(--cta); letter-spacing: 2px; font-size: 0.65rem; }
.rating-style-brand-caps     .rating-card__score-text, .rating-style-brand-caps     .star-rating { color: var(--cta); letter-spacing: 2px; font-size: 0.7rem; }
@media (min-width: 720px) {
  .ranking-list--grid .ranking-list {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px 20px; counter-reset: cs-rank;
    align-items: start;  
  }
  .ranking-list--grid .rating-card__row {
    margin-bottom: 0;
    justify-content: flex-start;  
    gap: 12px;
  }
}
@media (max-width: 820px) {
  .ranking-list--grid .rating-card__row { padding: 40px 16px 20px; }
  .ranking-list--grid .rating-card__meta-row {
    flex-direction: row; justify-content: space-between; align-items: baseline;
    width: 100%; border-top: 1px solid var(--border); padding-top: 8px;
  }
  .ranking-list--grid .btn-cta--table-row { width: 100%; min-width: 0; }
}
@media (max-width: 820px) {
  .rating-card--stacked-mobile .rating-card__row {
    flex-direction: column; align-items: center; text-align: center;
    padding: 22px 16px 18px; gap: 14px;
  }
  .rating-card--stacked-mobile .rating-card__row::before {
    position: absolute; top: 14px; left: 14px;
  }
  .rating-card--stacked-mobile .rating-card__identity {
    flex-direction: column; align-items: center; gap: 10px; min-width: 0; width: 100%;
  }
  .rating-card--stacked-mobile .rating-card__name { white-space: normal; text-align: center; font-size: 1.2rem; }
  .rating-card--stacked-mobile .rating-card__meta-row {
    flex-direction: row; justify-content: space-between; align-items: baseline;
    width: 100%; border-top: 1px solid var(--border); padding-top: 8px; flex-basis: auto;
  }
  .rating-card--stacked-mobile .btn-cta--table-row { width: 100%; min-width: 0; }
  .rating-card--stacked-mobile .rating-card__score-text { min-width: 0; }
}
.faq--underline .faq-item {
  background: none; border-radius: 0; margin-bottom: 0;
  border-bottom: 1px solid var(--border); overflow: visible;
}
.faq--underline .faq-item summary { padding: 16px 2px; color: var(--text-primary); font-size: 0.98rem; }
.faq--underline .faq-item p { padding: 0 2px 16px; }
.faq--pill .faq-item { background: none; border-radius: 0; overflow: visible; margin-bottom: 12px; }
.faq--pill .faq-item summary {
  background: var(--accent-bg); border-radius: 100px;
  padding: 10px 22px; color: var(--accent-light); font-weight: 700;
}
.faq--pill .faq-item summary::after { content: "›"; font-size: 1.2em; }
.faq--pill .faq-item[open] summary::after { content: "‹"; }
.faq--pill .faq-item p { padding: 10px 22px 4px; }
.faq--accent-rule .faq-item {
  background: var(--bg-card); border-radius: 0;
  border-left: 3px solid var(--accent); overflow: hidden;
  margin-bottom: 10px;
}
.faq--accent-rule .faq-item summary { color: var(--text-primary); padding-left: 16px; }
.faq--accent-rule .faq-item summary::after { content: "›"; font-size: 1.1em; }
.faq--accent-rule .faq-item[open] summary::after { content: "‹"; }
.faq--accent-rule .faq-item p { padding-left: 16px; }
.faq--bordered-group .faq-list { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.faq--bordered-group .faq-item {
  background: var(--bg-card); border-radius: 0; margin-bottom: 0;
  border-bottom: 1px solid var(--border);
}
.faq--bordered-group .faq-item:last-child { border-bottom: none; }
.faq--bordered-group .faq-item summary { color: var(--text-primary); border-radius: 0; }
.faq--bordered-group .faq-item summary::after { content: "›"; font-size: 1.1em; }
.faq--bordered-group .faq-item[open] summary::after { content: "‹"; }
.faq--solid-header .faq-item { overflow: hidden; }
.faq--solid-header .faq-item summary {
  background: var(--accent); color: #fff; border-radius: 0;
}
.faq--solid-header .faq-item summary::after { color: rgba(255,255,255,.75); }
.faq--solid-header .faq-item[open] summary { border-radius: 0; }
.legal-page { max-width: 1100px; margin: 0 auto; padding: 40px 24px 80px; }
.legal-page__header {
  text-align: center; padding: 48px 0 36px;
  border-bottom: 1px solid var(--border); margin-bottom: 44px;
}
.page-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800;
  color: var(--text-primary); margin-bottom: 12px;
}
.page-subtitle { color: var(--text-muted); font-size: 1.05rem; }
.contact-form-card {
  background: var(--bg-card); border: 1px solid var(--border-alt);
  border-radius: 14px; padding: 32px;
}
.form-field { margin-bottom: 20px; }
.form-field__label {
  display: block; color: var(--text-muted); font-size: 0.78rem;
  font-weight: 600; margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.form-field__input {
  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;
}
.form-field__input:focus { border-color: var(--accent-light); box-shadow: 0 0 0 2px var(--accent-bg); }
.form-field__textarea { resize: vertical; min-height: 130px; }
.form-submit-btn { width: 100%; margin-top: 8px; }
.contact-info-block {
  margin-top: 48px; padding-top: 40px;
  border-top: 1px solid var(--border);
}
.contact-info-block__title {
  font-size: 1.25rem; font-weight: 700; color: var(--accent-light);
  margin-bottom: 14px;
}
.contact-info-block__text { color: var(--text-muted); line-height: 1.75; }
.contact-info-block__list { color: var(--text-muted); line-height: 1.75; padding-left: 1.4em; }
.contact-info-block__list li { margin-bottom: 6px; }
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content__intro { color: var(--text-muted); line-height: 1.75; margin-bottom: 36px; }
.legal-section { margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--border); }
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font-size: 1.1rem; font-weight: 700; color: var(--accent-light);
  margin-bottom: 12px;
}
.legal-section p { color: var(--text-muted); line-height: 1.75; margin: 0; }
.legal-content--alt { max-width: 760px; margin: 0 auto; }
.legal-section--alt { margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--border); }
.legal-section--alt:last-child { border-bottom: none; }
.legal-section__title { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.legal-section--alt p { color: var(--text-muted); line-height: 1.75; margin: 0; }
.legal-section--alt ul.contact-info-block__list { margin: 0; }
.legal-section--grid .legal-section__title { margin: 0; font-size: 1rem; }
@media (max-width: 640px) { .legal-section--grid { grid-template-columns: 1fr; gap: 10px; } }
.legal-section__title--lg .legal-section__title { font-size: 1.2rem; font-weight: 700; color: var(--text-primary); margin-bottom: 14px; }
.legal-section-list--sm .contact-info-block__list { margin: 0; font-size: 0.9rem; }
@media (max-width: 640px) { .legal-grid--1col-mobile { grid-template-columns: 1fr; } }
.legal-section-list--flush ul.contact-info-block__list { margin: 0; }
.about-list--centered-a .contact-info-block__list,
.about-list--centered-b .contact-info-block__list,
.about-list--centered-c .contact-info-block__list,
.about-list--centered-d .contact-info-block__list {
  text-align: left;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
}
@media (max-width: 640px) { .about-grid--center-mobile { grid-template-columns: 1fr; text-align: center; justify-items: center; } }
@media (max-width: 860px) { .compare-card-layout--stack-mobile { grid-template-columns: 1fr; } .compare-card__logo-aside { position: static; text-align: center; } }
@media (max-width: 860px) { .u-grid-1col-860 { grid-template-columns: 1fr; } }
.about-list--centered-d .contact-info-block__list { margin: 0; font-size: 0.9rem; }
@media (max-width: 640px) { .about-row--center-mobile { flex-direction: column; text-align: center; } .about-grid--1col-mobile { grid-template-columns: 1fr; } }
.about-content { max-width: 760px; margin: 0 auto; }
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--border); }
.timeline__item { position: relative; display: flex; gap: 20px; padding-bottom: 32px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot { position: absolute; left: -28px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--accent); border: 3px solid var(--bg-surface); flex-shrink: 0; }
.timeline__body h2 { font-size: 1.05rem; font-weight: 700; color: var(--accent-light); margin: 0 0 8px; }
.timeline__body p { color: var(--text-muted); line-height: 1.75; margin: 0; }
.page-title--accent .page-title { color: var(--accent-light); }
.page-header--compact .page-title { font-size: 2rem; }
.page-header--compact .page-subtitle { max-width: 680px; }
.page-header--inline .page-title { margin: 0; font-size: 1.8rem; flex-shrink: 0; max-width: 45%; }
.page-header--inline .page-subtitle  { margin: 0; }
@media (max-width: 640px) { .page-header--inline { flex-direction: column; } }
.page-header--banner {
  background: linear-gradient(135deg, var(--accent-bg) 0%, var(--bg-surface) 100%);
  border-bottom: none; padding: 40px 32px 36px; margin-bottom: 32px; border-radius: 0 0 16px 16px;
}
.page-header--banner .page-title { color: var(--accent-light); }
.page-header--on-dark .page-title { color: #fff; }
.page-header--on-dark .page-subtitle  { color: rgba(255,255,255,0.85); }
.page-header__lede-wrap { max-width: 680px; margin: 0 auto; }
.contact-form__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px;
}
@media (max-width: 540px) { .contact-form__row { grid-template-columns: 1fr; } }
.form-field--underline .form-field__input {
  border: none; border-bottom: 2px solid var(--border-alt);
  border-radius: 0; background: transparent; padding-left: 0; padding-right: 0;
}
.form-field--underline .form-field__input:focus { border-bottom-color: var(--accent-light); box-shadow: none; }
.form-field--filled .form-field__input { background: var(--bg-raised); border-color: transparent; }
.form-field--filled .form-field__input:focus { background: var(--bg-card); border-color: var(--accent-light); }
.form-field--pill .form-field__input { border-radius: 100px; padding: 11px 20px; }
.form-field--pill .form-field__textarea { border-radius: 14px; }
@media (max-width: 640px) { .u-grid-1col-640 { grid-template-columns: 1fr; } }
.info-list { color: var(--text-muted); line-height: 1.75; padding-left: 1.4em; margin: 0; }
.info-list li { margin-bottom: 6px; }
.article-shell{position:relative;overflow:visible}
.post-meta--show-badge .post-meta__badge{display:block}
.post-meta--rule-style-a .post-meta__date{border-left:2px solid var(--accent);padding-left:8px;font-size:.78rem}
.post-meta--rule-style-a .post-meta__icon::before{content:""}
.post-meta__date--tinted{--date-bg:var(--accent-bg-light)}
.post-meta--rule-style-b .post-meta__icon::before{content:""}
.post-meta--panel .post-meta__panel-inner{background:var(--surface-alt);border-radius:var(--radius, 8px);border:1px solid var(--border)}
@media(max-width:640px){
  .post-meta__panel-inner{flex-direction:column;align-items:center;text-align:center;gap:10px;padding:16px}
  .post-meta__panel-col{max-width:100%}
}
.trust-badges{margin:24px 0 32px;padding:0;list-style:none}
.trust-badges__panel{padding:18px 22px;border-radius:var(--radius);
  background:var(--surface);border:1px solid var(--border, rgba(255,255,255,.08))}
.trust-badges__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:14px 22px}
.trust-badges__item{display:flex;flex-direction:column;gap:4px;padding:8px 4px}
.trust-badges__label{font-size:11px;letter-spacing:.05em;text-transform:uppercase;opacity:.55}
.trust-badges__value{font-size:15px;font-weight:600;line-height:1.3}
.payment-badges{display:flex;flex-wrap:wrap;gap:12px;padding:16px 0;justify-content:center}
.payment-badges__pill{display:inline-flex;align-items:center;gap:8px;padding:10px 16px;
  border-radius:999px;background:var(--surface);
  border:1px solid var(--border, rgba(255,255,255,.1));font-size:13px;font-weight:500}
.payment-badges__dot{width:14px;height:14px;border-radius:50%;background:var(--accent);
  display:inline-block;flex-shrink:0}
.table-block--tight-margin{margin:18px 0 28px}
.table-block--tight-margin .table-scroll{margin:0}
@media (max-width:560px){
  .trust-badges__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) {
  .cta-popup { padding: 28px 18px 20px; }
  .cta-popup__title { font-size: 1.2rem; }
  .cta-popup__image { max-width: 220px; max-height: 80px; }
}
.cta-popup--round-image .cta-popup__icon-badge { border-radius: 22px; }
.promo-banner--centered .promo-banner {
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .cta-popup__icon-badge { width: 80px; height: 80px; padding: 8px; margin-right: 0; margin-bottom: 8px; }
}
.promo-banner--flush .section {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}
.promo-banner--flush .section__inner {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}
.promo-banner--flush .promo-banner {
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}
[dir="rtl"] { text-align: right; }
[dir="rtl"] body { direction: rtl; }
[dir="rtl"] .site-header__bar { flex-direction: row-reverse; }
[dir="rtl"] .site-header__menu { flex-direction: row-reverse; }
[dir="rtl"] .site-header__submenu { right: 50%; left: auto; transform: translateX(50%); }
[dir="rtl"] .sticky-cta--right .sticky-cta-btn { right: auto; left: 32px; }
[dir="rtl"] .sticky-cta--left  .sticky-cta-btn { left: auto;  right: 32px; }
@media (max-width: 480px) {
  [dir="rtl"] .sticky-cta--right .sticky-cta-btn { right: auto; left: 20px; }
  [dir="rtl"] .sticky-cta--left  .sticky-cta-btn { left: auto;  right: 20px; }
}
[dir="rtl"] .section--image-float-left .media-frame  { float: right; margin: 0 0 16px 28px; }
[dir="rtl"] .section--image-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"] .bullet-list, [dir="rtl"] .step-list { padding-right: 1.2em; padding-left: 0; }
[dir="rtl"] .pros-list { border-left: none; border-right: 3px solid var(--c-pros); padding-left: 0; padding-right: 14px; }
[dir="rtl"] .cons-list { border-left: none; border-right: 3px solid var(--c-cons); padding-left: 0; padding-right: 14px; }
[dir="rtl"] .note-box { border-left: none !important; border-right: 4px solid currentColor; padding-left: 18px; padding-right: 18px; }
[dir="rtl"] .promo-banner { direction: rtl; }
[dir="rtl"] .breadcrumb { direction: rtl; }
[dir="rtl"] .toc-box { direction: rtl; }
[dir="rtl"] .toc-box__list { padding-right: 1em; padding-left: 0; }
[dir="rtl"] .list-marker-dot .step-list,
[dir="rtl"] .list-marker-square .step-list,
[dir="rtl"] .list-marker-diamond .step-list,
[dir="rtl"] .list-marker-star .step-list {
  padding-left: 0; padding-right: 2.2em;
}
[dir="rtl"] .list-marker-dot .step-list li::before,
[dir="rtl"] .list-marker-square .step-list li::before,
[dir="rtl"] .list-marker-diamond .step-list li::before,
[dir="rtl"] .list-marker-star .step-list li::before {
  left: auto; right: -2.2em;
}
[dir="rtl"] .hero--media.hero--left .hero__inner,
[dir="rtl"] .hero--plain.hero--left .hero__inner,
[dir="rtl"] .hero--solid-brand.hero--left .hero__inner,
[dir="rtl"] .hero--stacked.hero--left .hero__inner,
[dir="rtl"] .hero--cta-below.hero--left .hero__inner { text-align: right; }
[dir="rtl"] .hero--split.hero--left .hero-split__text { align-items: flex-end; text-align: right; }
[dir="rtl"] .section__inner,
[dir="rtl"] .section__lede,
[dir="rtl"] .section__outro,
[dir="rtl"] .hero__inner { text-align: right; }
[dir="rtl"] .contact-form-card,
[dir="rtl"] .form-field__label,
[dir="rtl"] .form-field__input,
[dir="rtl"] .form-field__textarea { text-align: right; direction: rtl; }
[dir="rtl"] .form-field--pill .form-field__input,
[dir="rtl"] .form-field--underline .form-field__input { padding-right: 20px; padding-left: 20px; }
:root {
  --accent:          #15130f;
  --brand:           #15130f;
  --brand-light:     #d69a1f;
  --brand-pale:      #d69a1f;
  --grad-start:      #2a2620;
  --grad-end:        #453f34;
  --accent-light:    var(--brand-light);
  --accent-pale:     var(--brand-pale);
  --cta:             #d69a1f;
  --cta-light:       #b17f16;
  --cta-hover:       #9c6e11;
  --bg-page:         #faf8f3;
  --bg-surface:      #ffffff;
  --bg-card:         #ffffff;
  --bg-card-inner:   #f2ede1;
  --bg-raised:       #ece4d2;
  --bg-hover:        #f5f0e4;
  --border:          #e8e0cd;
  --border-alt:      #d9cead;
  --border-section:  #e8e0cd;
  --text-primary:    #1c1912;
  --text-muted:      #5c5545;
  --text-body:       #2e2a1f;
  --text-sub:        #4a4436;
  --text-faint:      #7a7362;
  --text-dim:        #948c79;
  --text-label:      #635c4b;
  --text-value:      #3a3527;
  --accent-bg:       #f0e6cc;
  --accent-bg-light: #f6efdd;
  --bg-tip:          #eff8ee;
  --bg-warning:      #fbf3e0;
  --bg-info:         #eef1f7;
  --bg-pros:         #eff8ee;
  --bg-cons:         #faf1f0;
  --c-pros:          #256b26;
  --c-cons:          #93221f;
  --c-pros-label:    #2d7f2c;
  --c-tip-border:    #359a34;
  --c-warn-border:   #a8760f;
  --c-stars:         var(--cta);
  --c-arrow:         var(--cta);
  --c-tag-pay:       #256b26;
}
:root { --logo-bg-opacity: 59%; }
body, input, textarea { font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, sans-serif; }
h1, h2, h3, h4,
button,
.btn-primary, .btn-cta, .promo-banner__cta, .promo-banner__title,
.site-header__brand, .site-footer__brand, .site-footer__brand-mark,
.hero__title, .page-title, .compare-card__name, .rating-card__name,
.faq-item summary, .cta-popup__title {
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.005em;
}
.marker-style-fa-icons .pros-list--inline li::before, .marker-style-fa-icons .cons-list--inline li::before {  font-family: "Font Awesome 6 Free"; font-weight: 900; margin-right: 5px;  font-size: 0.85em; line-height: 1; vertical-align: 0.05em; }.marker-style-fa-icons .pros-list--inline li::before { content: ""; }.marker-style-fa-icons .cons-list--inline li::before { content: ""; }.marker-style-fa-icons .pros-label-inline::before, .marker-style-fa-icons .cons-label-inline::before {  font-family: "Font Awesome 6 Free"; font-weight: 900;  font-size: 0.85em; margin-right: 5px; line-height: 1; }.marker-style-fa-icons .pros-label-inline::before { content: ""; }.marker-style-fa-icons .cons-label-inline::before { content: ""; }
.hero-height--tall .hero, .hero-height--tall .hero--split { min-height: 420px; }
.breadcrumb__sep::before { content: '·'; font-size: 1.3em; line-height: 1; }