:root {
  --cmc-blue: #3861fb;
  --cmc-blue-hover: #2448d8;
  --text: #0d1421;
  --muted: #58667e;
  --soft-muted: #8a94a6;
  --border: #eff2f5;
  --surface: #f8fafd;
  --surface-strong: #f0f3f7;
  --green: #16c784;
  --red: #ea3943;
  --brand-dark: #10131c;
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; overflow-x: hidden; overscroll-behavior-y: contain; background: #fff; font-size: 16px; line-height: 1.6; }
body, button, input, select { font-family: inherit; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, select, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
button, select { cursor: pointer; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.cmc-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 66px;
  border-bottom: 1px solid #e5e8ee;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 1px 2px rgba(14, 24, 40, .03);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  width: min(1680px, calc(100% - 28px));
  height: 100%;
  margin-inline: auto;
  align-items: center;
  gap: 28px;
}

.cmc-logo { display: inline-flex; flex: 0 0 auto; align-items: center; }
.cmc-logo img { width: 168px; height: auto; }
.cmc-nav { display: flex; align-items: stretch; gap: 30px; }
.cmc-nav a {
  display: flex;
  min-height: 44px;
  align-items: center;
  color: #0d1421;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease;
}
.cmc-nav a:hover { color: var(--cmc-blue); }

.cmc-actions { display: flex; min-width: 0; align-items: center; gap: 8px; margin-inline-start: auto; }
.cmc-utility {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 6px;
  color: #323c52;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease;
}
.cmc-utility:hover { color: var(--cmc-blue); }
.cmc-utility svg { width: 17px; height: 17px; fill: #a6b0c3; }
.cmc-search {
  display: flex;
  width: 218px;
  height: 38px;
  align-items: center;
  gap: 8px;
  padding: 0 8px 0 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #f0f3f7;
  color: #a0aabd;
  transition: border-color .2s ease, background .2s ease;
}
.cmc-search:focus-within { border-color: #aebcf7; background: #fff; box-shadow: 0 0 0 3px rgba(56, 97, 251, .12); }
.cmc-search svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.cmc-search input { min-width: 0; flex: 1; border: 0; outline: 0; background: transparent; color: var(--text); font-size: 12px; font-weight: 500; }
.cmc-search input::placeholder { color: #9aa6bb; }
.cmc-search kbd { display: grid; width: 20px; height: 22px; place-items: center; border-radius: 5px; background: #dce2eb; color: #75829a; font-size: 11px; font-weight: 700; }

.language-picker { position: relative; z-index: 62; flex: 0 0 auto; }
.language-trigger {
  display: flex;
  height: 38px;
  min-width: 116px;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid #dfe3eb;
  border-radius: 10px;
  background: #fff;
  color: #323c52;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.language-trigger:hover { border-color: #cbd3df; background: #f8f9fb; }
.language-trigger[aria-expanded="true"] { border-color: #9eb0f8; box-shadow: 0 0 0 3px rgba(56, 97, 251, .12); }
.lang-flag { width: 24px; height: 16px; flex: 0 0 24px; overflow: hidden; border: 1px solid rgba(13, 20, 33, .12); border-radius: 4px; box-shadow: 0 1px 2px rgba(13, 20, 33, .08); }
.language-current { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.language-chevron { width: 16px; height: 16px; margin-inline-start: auto; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease; }
.language-trigger[aria-expanded="true"] .language-chevron { transform: rotate(180deg); }
.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 372px;
  max-height: min(520px, calc(100dvh - 88px));
  padding: 14px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid #e1e5eb;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 56px rgba(14, 24, 40, .18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  backdrop-filter: blur(18px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.language-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.language-menu-title { margin: 0 4px 10px; color: #58667e; font-size: 12px; font-weight: 700; }
.language-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
.language-option {
  display: grid;
  min-width: 0;
  min-height: 52px;
  grid-template-columns: 24px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 9px;
  padding: 7px 9px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: #323c52;
  text-align: left;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.language-option:hover { background: #f4f6f9; }
.language-option[aria-selected="true"] { border-color: #cfd9ff; background: #edf2ff; color: #2448d8; }
.language-option > span { min-width: 0; }
.language-option strong, .language-option small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.language-option strong { font-size: 12px; line-height: 1.35; }
.language-option small { margin-top: 1px; color: #8a94a6; font-size: 9px; line-height: 1.25; letter-spacing: .08em; }
.language-check { width: 17px; height: 17px; opacity: 0; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.language-option[aria-selected="true"] .language-check { opacity: 1; }

.icon-button, .login-button, .menu-button, .avatar-button {
  display: grid;
  min-width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #e2e6ed;
  border-radius: 10px;
  background: #f5f7fa;
  color: #7d899e;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.icon-button:hover, .menu-button:hover, .avatar-button:hover { border-color: #cfd6e2; background: #edf1f6; color: #46516a; }
.icon-button svg, .avatar-button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.theme-toggle .sun-icon { display: none; }
.theme-toggle .moon-icon { display: block; }
.login-button { display: inline-flex; min-width: auto; padding: 0 17px; border-color: var(--cmc-blue); background: var(--cmc-blue); color: #fff; font-size: 12px; font-weight: 700; }
.login-button:hover { border-color: var(--cmc-blue-hover); background: var(--cmc-blue-hover); }
.profile-pill { display: flex; height: 40px; align-items: center; padding: 2px; border: 1px solid #d8dee8; border-radius: 22px; background: #fff; }
.menu-button, .avatar-button { width: 32px; min-width: 32px; height: 32px; padding: 0; border: 0; background: transparent; }
.menu-button { display: grid; align-content: center; gap: 4px; padding-inline: 7px; }
.menu-button span { display: block; width: 18px; height: 1.5px; border-radius: 2px; background: #708098; transition: transform .2s ease, opacity .2s ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.avatar-button { border-radius: 50%; background: #f0f3f7; }

.page-main { width: 100%; }
.article { width: min(800px, calc(100% - 32px)); margin: 0 auto; padding: 82px 0 0; }
.article-category { margin: 0 40px 12px; color: #7a8496; font-size: 15px; }
.article > h1 { margin: 0 40px 36px; color: #0d1421; font-size: clamp(34px, 4vw, 44px); font-weight: 700; line-height: 1.18; letter-spacing: -.032em; }
.author-row { display: flex; align-items: center; gap: 8px; margin: 0 40px 32px; }
.author-logo { display: block; width: 56px; height: 56px; flex: 0 0 56px; overflow: hidden; border-radius: 50%; background: #000; box-shadow: 0 0 0 1px #dce2ea; }
.author-logo img { width: 100%; height: 100%; object-fit: cover; }
.author-row p { display: flex; align-items: center; gap: 4px; margin: 0 0 8px; color: #58667e; font-size: 16px; line-height: 1.25; }
.author-row strong { color: #0d1421; font-weight: 700; }
.author-row div > span { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; color: #58667e; font-size: 14px; line-height: 1.35; }
.author-row i { font-style: normal; color: #b4bcc9; }
.hero-media { margin: 0; overflow: hidden; border-radius: 16px; background: #07110e; }
.hero-media img { width: 100%; aspect-ratio: 8 / 5; object-fit: cover; }

.toc { display: grid; gap: 8px; margin: 40px 40px 0; padding: 28px 30px; border: 1px solid #e7ebf1; border-radius: 14px; background: #f8f9fb; }
.toc strong { margin-bottom: 2px; color: #0d1421; font-size: 18px; }
.toc a { position: relative; padding-left: 17px; color: var(--cmc-blue); font-size: 14px; text-decoration: none; }
.toc a::before { content: ""; position: absolute; top: .76em; left: 2px; width: 4px; height: 4px; border-radius: 50%; background: var(--cmc-blue); }
.toc a:hover { text-decoration: underline; }

.article-copy { padding-inline: 40px; }
.intro h2 { margin: 52px 0 26px; color: #0d1421; font-size: 31px; font-weight: 700; line-height: 1.35; letter-spacing: -.02em; }
.article-copy p, .why-grid p { color: #323c52; font-size: 16px; line-height: 1.72; }
.article-copy p { margin: 0 0 18px; }
.primary-button, .green-button, .related-more {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: var(--cmc-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, box-shadow .2s ease;
}
.primary-button:hover, .related-more:hover { background: var(--cmc-blue-hover); box-shadow: 0 5px 16px rgba(56, 97, 251, .2); }
.primary-button svg, .green-button svg, .related-more svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.intro-button { width: max-content; margin: 0 auto 30px; }

.data-card { margin-top: 36px; padding: 28px 28px 12px; overflow: hidden; border-radius: 14px; background: #151a24; color: #fff; box-shadow: 0 12px 34px rgba(24, 31, 45, .12); }
.data-card h2 { margin: 0 0 4px; text-align: center; font-size: 23px; line-height: 1.3; }
.chart-svg { display: block; width: 100%; height: auto; }
.grid-lines { fill: none; stroke: #303848; stroke-width: 1; }
.axis-labels, .month-labels { fill: #8b96aa; font-size: 11px; font-weight: 500; }
.month-labels text { text-anchor: middle; }
.chart-area.volume-area { fill: url(#volume-fill); }
.chart-area.users-area { fill: url(#users-fill); }
.chart-line { fill: none; stroke-width: 4; stroke-linejoin: round; stroke-linecap: round; }
.volume-line { stroke: #16c784; }
.users-line { stroke: #4a8cff; }
.volume-points { fill: #16c784; }
.users-points { fill: #4a8cff; }
.point-values { fill: #32d49a; font-size: 11px; font-weight: 700; text-anchor: middle; }
.blue-values { fill: #6e9cff; }

.market-insight { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: 36px 40px 0; padding: 25px 28px; overflow: hidden; border-radius: 14px; background: radial-gradient(circle at 85% 120%, #3861fb 0, transparent 40%), linear-gradient(120deg, #142854, #203c7a); color: #fff; }
.market-insight h2 { margin: 0 0 3px; font-size: 22px; line-height: 1.25; }
.market-insight p { max-width: 370px; margin: 0; color: #d8e1f7; font-size: 13px; line-height: 1.45; }
.market-insight .primary-button { flex: 0 0 auto; background: #5c7dff; }
.market-insight .primary-button:hover { background: #6f8dff; }

.section-block, .why-section { margin-top: 52px; scroll-margin-top: 88px; }
.section-block > h2, .section-heading-row h2, .why-section > h2 { margin: 0 40px 24px; color: #0d1421; font-size: 30px; line-height: 1.28; letter-spacing: -.02em; }
.section-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.section-heading-row .primary-button { margin: 0 40px 24px 0; flex: 0 0 auto; }
.table-wrap { overflow-x: auto; border: 1px solid #e5e9ef; border-radius: 12px; background: #fff; overscroll-behavior-inline: contain; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: #aeb8ca transparent; }
.table-wrap::-webkit-scrollbar { height: 6px; }
.table-wrap::-webkit-scrollbar-thumb { border-radius: 999px; background: #aeb8ca; }
.table-wrap::-webkit-scrollbar-track { background: transparent; }
.table-wrap:focus-visible { outline: 3px solid rgba(56, 97, 251, .35); outline-offset: 3px; }
table { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; color: #323c52; font-size: 12px; }
th, td { padding: 12px 13px; border-right: 1px solid #e7ebf0; border-bottom: 1px solid #e7ebf0; text-align: center; white-space: nowrap; }
th:last-child, td:last-child { border-right: 0; }
tbody tr:last-child td { border-bottom: 0; }
th:first-child, td:first-child { min-width: 175px; text-align: left; white-space: normal; }
th { background: #f7f8fa; color: #0d1421; font-weight: 700; }
td:first-child { color: #58667e; font-weight: 600; }
.positive { color: #0c9d69; font-weight: 600; }
.negative { color: var(--red); font-weight: 600; }
.comparison table { min-width: 900px; font-size: 10px; }
.comparison th:first-child, .comparison td:first-child { min-width: 192px; }
.featured { background: #edf2ff !important; box-shadow: inset 1px 0 #bcc9fb, inset -1px 0 #bcc9fb; }
.score td { color: #0d1421; font-size: 14px; font-weight: 800; }

.winner-card { position: relative; height: 276px; margin: 38px 40px 0; overflow: hidden; border-radius: 16px; background: #05110f; }
.winner-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.winner-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 0 36%, rgba(3, 14, 14, .55) 54%, rgba(3, 14, 14, .93) 100%); }
.winner-content { position: absolute; z-index: 2; top: 50%; right: 34px; display: flex; width: 43%; transform: translateY(-50%); flex-direction: column; align-items: center; color: #fff; text-align: center; }
.winner-content p { margin: 0 0 10px; color: #d9e6e1; font-size: 17px; font-weight: 600; }
.winner-content > img { width: 170px; }
.winner-content strong { margin: 5px 0 17px; color: #00e88f; font-size: 20px; }

.why-grid { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 20px 26px; padding: 0 40px; }
.why-grid p { margin: 0; }
.product-shot { margin: 0; overflow: hidden; border: 1px solid #e0e5ec; border-radius: 14px; background: #10131c; box-shadow: 0 14px 34px rgba(14, 24, 40, .12); }
.product-shot img { width: 100%; height: 100%; object-fit: cover; }
.why-highlight { grid-column: 1 / -1; padding: 18px 20px; border-left: 3px solid var(--cmc-blue); border-radius: 0 10px 10px 0; background: #f4f7ff; color: #283754 !important; }
.why-grid p:last-child { grid-column: 1 / -1; }

.final-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin: 38px 40px 0; padding: 28px 30px; overflow: hidden; border-radius: 16px; background: radial-gradient(circle at 90% 120%, rgba(0, 232, 143, .26), transparent 45%), #0b1b17; color: #fff; }
.final-cta > div > img { width: 128px; margin-bottom: 10px; }
.final-cta h2 { margin: 0 0 3px; font-size: 24px; line-height: 1.3; }
.final-cta p { max-width: 450px; margin: 0; color: #b8cbc5; font-size: 13px; line-height: 1.5; }
.green-button { flex: 0 0 auto; background: #00e88f; color: #061711; }
.green-button:hover { background: #20f4a3; box-shadow: 0 5px 18px rgba(0, 232, 143, .2); }

.related-articles { margin-top: 74px; padding: 40px; border-radius: 14px; background: #f7f8fa; }
.related-articles > h2 { margin: 0 0 28px; color: #0d1421; font-size: 21px; line-height: 1.35; }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px 14px; }
.related-card { min-width: 0; }
.related-card a { display: block; color: inherit; text-decoration: none; }
.related-card img { width: 100%; height: 128px; border-radius: 9px; object-fit: cover; background: #dfe3e9; }
.related-category { display: block; margin-top: 10px; color: var(--cmc-blue); font-size: 10px; }
.related-card h3 { margin: 4px 0 7px; color: #0d1421; font-size: 15px; line-height: 1.28; transition: color .2s ease; }
.related-card p { display: -webkit-box; margin: 0; overflow: hidden; color: #58667e; font-size: 10px; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.related-card small { display: block; margin-top: 13px; color: #69758a; font-size: 9px; line-height: 1.6; }
.related-card a:hover h3 { color: var(--cmc-blue); }
.related-more { display: flex; width: max-content; min-height: 40px; margin: 30px auto 0; padding-inline: 17px; background: #222531; font-size: 11px; }
.related-more:hover { background: #0d1421; }

.article-subscribe { position: relative; margin: 16px 12px 0; padding: 34px 40px; background: #f8f9fb; text-align: center; }
.article-subscribe > p:first-child { margin: 0 0 10px; color: var(--cmc-blue); font-size: 12px; }
.article-subscribe h2 { margin: 0 auto 22px; color: #0d1421; font-size: 15px; }
.article-subscribe form { display: flex; max-width: 500px; margin: auto; gap: 8px; }
.article-subscribe label { flex: 1; }
.article-subscribe input { width: 100%; height: 42px; padding: 0 13px; border: 1px solid #dce2ea; border-radius: 7px; outline: 0; background: #fff; color: #0d1421; font-size: 13px; }
.article-subscribe input:focus { border-color: #9eb0f8; box-shadow: 0 0 0 3px rgba(56, 97, 251, .12); }
.article-subscribe button { height: 42px; padding: 0 18px; border: 0; border-radius: 7px; background: var(--cmc-blue); color: #fff; font-size: 12px; font-weight: 700; }
.article-subscribe button:hover { background: var(--cmc-blue-hover); }
.article-subscribe .form-status { min-height: 20px; margin: 10px 0 -10px; color: #0c9d69; font-size: 12px; }

.cmc-footer { margin-top: 76px; padding: 34px 0 40px; border-top: 1px solid #e8ebf0; background: #fff; }
.footer-inner { width: min(1440px, calc(100% - 40px)); margin: auto; }
.footer-inner > img { width: 150px; }
.footer-inner p { margin: 14px 0 0; color: #7a8496; font-size: 11px; }

:focus-visible { outline: 3px solid rgba(56, 97, 251, .48); outline-offset: 3px; }

@media (max-width: 1480px) {
  .header-inner { gap: 20px; }
  .cmc-nav { gap: 19px; }
  .cmc-search { width: 168px; }
  .cmc-utility span { display: none; }
}

@media (max-width: 1180px) {
  .cmc-nav a:nth-child(2), .cmc-nav a:nth-child(6) { display: none; }
  .cmc-search { width: 150px; }
  .qr-button { display: none; }
}

@media (max-width: 1480px) {
  .cmc-nav {
    position: absolute;
    top: 66px;
    right: 12px;
    left: 12px;
    display: none;
    padding: 10px;
    border: 1px solid #e1e5eb;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(14, 24, 40, .14);
  }
  .cmc-nav.is-open { display: grid; grid-template-columns: repeat(2, 1fr); }
  .cmc-nav a, .cmc-nav a:nth-child(n) { display: flex; min-height: 46px; padding: 0 12px; border-radius: 8px; }
  .cmc-nav a:hover { background: #f4f6f9; }
  .cmc-utility { display: none; }
  .cmc-search { width: min(280px, 34vw); }
}

@media (max-width: 720px) {
  html { scroll-padding-top: calc(80px + env(safe-area-inset-top)); }
  .cmc-header { height: calc(64px + env(safe-area-inset-top)); padding-top: env(safe-area-inset-top); }
  .header-inner { width: calc(100% - 24px); height: 64px; gap: 8px; }
  .cmc-logo img { width: 145px; }
  .cmc-nav {
    top: calc(64px + env(safe-area-inset-top));
    right: 8px;
    left: 8px;
    max-height: calc(100dvh - 80px - env(safe-area-inset-top));
    overflow-y: auto;
    padding: 8px;
    border-radius: 14px;
  }
  .cmc-nav.is-open { grid-template-columns: 1fr; }
  .cmc-nav a, .cmc-nav a:nth-child(n) { min-height: 48px; padding-inline: 14px; }
  .cmc-search, .qr-button, .login-button { display: none; }
  .cmc-actions { gap: 8px; }
  .language-picker { margin-inline-start: auto; }
  .language-trigger { min-width: 110px; height: 44px; }
  .language-menu {
    position: fixed;
    top: calc(72px + env(safe-area-inset-top));
    right: 8px;
    left: 8px;
    width: auto;
    max-height: calc(100dvh - 88px - env(safe-area-inset-top));
  }
  .icon-button { min-width: 44px; height: 44px; }
  .profile-pill { height: 44px; margin-left: 0; }
  .menu-button, .avatar-button { width: 36px; min-width: 36px; height: 36px; }
  .article { width: 100%; padding-top: 40px; }
  .article-category, .article > h1, .author-row { margin-inline: 20px; }
  .article-category { margin-bottom: 10px; font-size: 14px; }
  .article > h1 { margin-bottom: 26px; font-size: clamp(28px, 7.5vw, 34px); line-height: 1.18; letter-spacing: -.035em; }
  .author-row { align-items: flex-start; margin-bottom: 26px; }
  .author-logo { width: 52px; height: 52px; flex-basis: 52px; }
  .author-row p { margin-bottom: 6px; font-size: 15px; }
  .author-row div > span { gap: 5px 7px; font-size: 13px; }
  .hero-media { margin-inline: 16px; border-radius: 14px; }
  .hero-media img { aspect-ratio: 16 / 10; }
  .toc { gap: 4px; margin: 28px 16px 0; padding: 20px; }
  .toc strong { margin-bottom: 4px; font-size: 17px; }
  .toc a { display: flex; min-height: 44px; align-items: center; padding-left: 18px; font-size: 14px; }
  .article-copy { padding-inline: 20px; }
  .intro h2 { margin-top: 38px; font-size: 24px; line-height: 1.35; }
  .article-copy p, .why-grid p { font-size: 16px; line-height: 1.65; }
  .intro-button { width: 100%; }
  .data-card { margin: 28px 16px 0; padding: 20px 8px 8px; border-radius: 14px; }
  .data-card h2 { font-size: 20px; }
  .market-insight { display: block; margin: 28px 16px 0; padding: 24px 22px; }
  .market-insight h2 { font-size: 20px; }
  .market-insight .primary-button { width: 100%; margin-top: 18px; }
  .section-block, .why-section { margin-top: 42px; }
  .section-block > h2, .section-heading-row h2, .why-section > h2 { margin-inline: 20px; font-size: 25px; }
  .section-heading-row { display: block; }
  .section-heading-row .primary-button { width: calc(100% - 40px); margin: 0 20px 22px; }
  .table-wrap { position: relative; margin-inline: 16px; border-radius: 10px; }
  table { min-width: 630px; }
  .comparison table { min-width: 900px; }
  th, td { padding-block: 13px; }
  th:first-child, td:first-child { position: sticky; left: 0; z-index: 1; background: #fff; box-shadow: 1px 0 #e7ebf0; }
  th:first-child { z-index: 2; background: #f7f8fa; }
  .winner-card { height: 410px; margin: 30px 16px 0; }
  .winner-card::after { background: linear-gradient(0deg, rgba(3, 14, 14, .96) 0 51%, rgba(3, 14, 14, .1) 82%); }
  .winner-bg { object-position: 25% center; }
  .winner-content { top: auto; right: 20px; bottom: 24px; left: 20px; width: auto; transform: none; }
  .winner-content p { font-size: 16px; }
  .winner-content .primary-button { width: 100%; }
  .why-grid { grid-template-columns: 1fr; gap: 18px; padding: 0 20px; }
  .product-shot { grid-row: 2; }
  .why-highlight, .why-grid p:last-child { grid-column: auto; }
  .final-cta { display: block; margin: 30px 16px 0; padding: 25px 22px; }
  .final-cta h2 { font-size: 22px; }
  .green-button { width: 100%; margin-top: 20px; }
  .related-articles { margin: 52px 16px 0; padding: 24px 16px; border-radius: 14px; }
  .related-articles > h2 { font-size: 20px; }
  .related-grid { grid-template-columns: 1fr; gap: 30px; }
  .related-card a { border-radius: 12px; }
  .related-card img { height: auto; aspect-ratio: 16 / 9; }
  .related-card h3 { font-size: 18px; }
  .related-card p { font-size: 13px; }
  .related-card small { font-size: 11px; }
  .article-subscribe { margin: 16px 16px 0; padding: 28px 20px; border-radius: 14px; }
  .article-subscribe form { display: grid; }
  .article-subscribe input, .article-subscribe button { height: 48px; font-size: 16px; }
  .article-subscribe button { width: 100%; }
  .cmc-footer { margin-top: 48px; padding-bottom: calc(32px + env(safe-area-inset-bottom)); }
  .footer-inner { width: calc(100% - 32px); }
}

@media (max-width: 420px) {
  .header-inner { width: calc(100% - 16px); gap: 6px; }
  .cmc-logo img { width: 134px; }
  .cmc-actions { gap: 6px; }
  .language-trigger { width: 44px; min-width: 44px; justify-content: center; padding: 0; }
  .language-current, .language-chevron { display: none; }
  .profile-pill { height: 44px; }
  .avatar-button { display: none; }
  .menu-button { width: 40px; min-width: 40px; height: 40px; }
  .article > h1 { font-size: clamp(27px, 8.2vw, 31px); }
  .chart-svg { min-width: 440px; transform: translateX(-32px); }
  .data-card { overflow: hidden; }
  .winner-card { height: 390px; }
  .winner-content { right: 16px; bottom: 20px; left: 16px; }
}

@media (max-width: 350px) {
  .cmc-logo img { width: 124px; }
  .header-inner, .cmc-actions { gap: 4px; }
  .article-category, .article > h1, .author-row, .section-block > h2, .section-heading-row h2, .why-section > h2 { margin-inline: 16px; }
  .article-copy, .why-grid { padding-inline: 16px; }
  .author-row div > span { display: block; }
  .author-row i { margin-inline: 5px; }
}

body, .cmc-header, .cmc-nav, .cmc-search, .language-trigger, .language-menu, .icon-button, .profile-pill,
.toc, .table-wrap, table, th, td, .related-articles, .article-subscribe, .cmc-footer, .why-highlight {
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

html[data-theme="dark"] {
  --text: #f5f7fb;
  --muted: #a6b0c3;
  --soft-muted: #858ca2;
  --border: #2a2e3d;
  --surface: #171924;
  --surface-strong: #222531;
  color-scheme: dark;
  background: #0b0e17;
}

html[data-theme="dark"] body { background: #0b0e17; color: #f5f7fb; }
html[data-theme="dark"] .cmc-header { border-bottom-color: #222531; background: rgba(11, 14, 23, .97); box-shadow: 0 1px 2px rgba(0, 0, 0, .28); }
html[data-theme="dark"] .cmc-logo img,
html[data-theme="dark"] .footer-inner > img { filter: brightness(0) invert(1); }
html[data-theme="dark"] .cmc-nav a { color: #f5f7fb; }
html[data-theme="dark"] .cmc-nav a:hover { color: #6f8dff; }
html[data-theme="dark"] .cmc-utility { color: #c4cad6; }
html[data-theme="dark"] .cmc-utility svg { fill: #8b96aa; }
html[data-theme="dark"] .cmc-search { border-color: #252a38; background: #171b26; color: #7f8ba2; }
html[data-theme="dark"] .cmc-search:focus-within { border-color: #4d67bf; background: #171b26; box-shadow: 0 0 0 3px rgba(56, 97, 251, .18); }
html[data-theme="dark"] .cmc-search input { color: #f5f7fb; }
html[data-theme="dark"] .cmc-search input::placeholder { color: #717d91; }
html[data-theme="dark"] .cmc-search kbd { background: #2a3040; color: #a6b0c3; }
html[data-theme="dark"] .language-trigger { border-color: #2b3140; background: #171b26; color: #eef2f8; }
html[data-theme="dark"] .language-trigger:hover { border-color: #3b4356; background: #222735; }
html[data-theme="dark"] .lang-flag { border-color: rgba(255, 255, 255, .16); box-shadow: 0 1px 2px rgba(0, 0, 0, .28); }
html[data-theme="dark"] .language-menu { border-color: #2a3040; background: #11151f; box-shadow: 0 20px 56px rgba(0, 0, 0, .42); }
html[data-theme="dark"] .language-menu-title { color: #9da7ba; }
html[data-theme="dark"] .language-option { color: #d9deea; }
html[data-theme="dark"] .language-option:hover { background: #1b202c; }
html[data-theme="dark"] .language-option[aria-selected="true"] { border-color: #3b57b7; background: #172b60; color: #8ea5ff; }
html[data-theme="dark"] .language-option small { color: #7f899d; }
html[data-theme="dark"] .icon-button,
html[data-theme="dark"] .menu-button,
html[data-theme="dark"] .avatar-button { border-color: #2b3140; background: #171b26; color: #9aa6bb; }
html[data-theme="dark"] .icon-button:hover,
html[data-theme="dark"] .menu-button:hover,
html[data-theme="dark"] .avatar-button:hover { border-color: #3b4356; background: #222735; color: #d9deea; }
html[data-theme="dark"] .profile-pill { border-color: #313849; background: #11151f; }
html[data-theme="dark"] .menu-button { background: transparent; }
html[data-theme="dark"] .menu-button span { background: #9aa6bb; }
html[data-theme="dark"] .avatar-button { background: #222735; }
html[data-theme="dark"] .theme-toggle .moon-icon { display: none; }
html[data-theme="dark"] .theme-toggle .sun-icon { display: block; }
html[data-theme="dark"] .article-category { color: #8b96aa; }
html[data-theme="dark"] .article > h1,
html[data-theme="dark"] .toc strong,
html[data-theme="dark"] .intro h2,
html[data-theme="dark"] .section-block > h2,
html[data-theme="dark"] .section-heading-row h2,
html[data-theme="dark"] .why-section > h2,
html[data-theme="dark"] .related-articles > h2,
html[data-theme="dark"] .related-card h3,
html[data-theme="dark"] .article-subscribe h2 { color: #f5f7fb; }
html[data-theme="dark"] .author-logo { box-shadow: 0 0 0 1px #2d3342; }
html[data-theme="dark"] .author-row p,
html[data-theme="dark"] .author-row div > span { color: #a6b0c3; }
html[data-theme="dark"] .author-row strong { color: #f5f7fb; }
html[data-theme="dark"] .author-row i { color: #667085; }
html[data-theme="dark"] .hero-media { background: #050b09; }
html[data-theme="dark"] .toc { border-color: #292e3b; background: #171924; }
html[data-theme="dark"] .article-copy p,
html[data-theme="dark"] .why-grid p { color: #c3cad7; }
html[data-theme="dark"] .table-wrap { border-color: #2a3040; background: #151923; }
html[data-theme="dark"] table { background: #151923; color: #c5cbd7; }
html[data-theme="dark"] th,
html[data-theme="dark"] td { border-color: #2a3040; }
html[data-theme="dark"] th { background: #202532; color: #eef2f8; }
html[data-theme="dark"] td:first-child { color: #aeb7c7; }
html[data-theme="dark"] .featured { background: #172b60 !important; box-shadow: inset 1px 0 #3861fb, inset -1px 0 #3861fb; }
html[data-theme="dark"] .score td { color: #f5f7fb; }
html[data-theme="dark"] .product-shot { border-color: #28303d; box-shadow: 0 14px 34px rgba(0, 0, 0, .28); }
html[data-theme="dark"] .why-highlight { border-left-color: #5f7fff; background: #17213a; color: #d4dcf0 !important; }
html[data-theme="dark"] .related-articles { background: #11151f; }
html[data-theme="dark"] .related-card p { color: #9da7ba; }
html[data-theme="dark"] .related-card small { color: #7f899d; }
html[data-theme="dark"] .article-subscribe { background: #11151f; }
html[data-theme="dark"] .article-subscribe input { border-color: #303747; background: #0d111a; color: #f5f7fb; }
html[data-theme="dark"] .article-subscribe input:focus { border-color: #526dc9; box-shadow: 0 0 0 3px rgba(56, 97, 251, .18); }
html[data-theme="dark"] .cmc-footer { border-top-color: #222531; background: #090c13; }
html[data-theme="dark"] .footer-inner p { color: #7f899d; }

html[dir="rtl"] .language-menu { right: auto; left: 0; }
html[dir="rtl"] .language-option { text-align: right; }
html[dir="rtl"] .toc a { padding-right: 17px; padding-left: 0; }
html[dir="rtl"] .toc a::before { right: 2px; left: auto; }
html[dir="rtl"] th:first-child,
html[dir="rtl"] td:first-child { text-align: right; }
html[dir="rtl"] .why-highlight { border-right: 3px solid var(--cmc-blue); border-left: 0; border-radius: 10px 0 0 10px; }
html[dir="rtl"] .primary-button svg,
html[dir="rtl"] .green-button svg,
html[dir="rtl"] .related-more svg { transform: scaleX(-1); }

@media (max-width: 720px) {
  html[dir="rtl"] .language-menu { right: 8px; left: 8px; }
  html[dir="rtl"] th:first-child,
  html[dir="rtl"] td:first-child { right: 0; left: auto; }
  html[data-theme="dark"] th:first-child,
  html[data-theme="dark"] td:first-child { background: #151923; box-shadow: 1px 0 #2a3040; }
  html[data-theme="dark"] th:first-child { background: #202532; }
}

@media (max-width: 1480px) {
  html[data-theme="dark"] .cmc-nav { border-color: #2a3040; background: #11151f; box-shadow: 0 18px 50px rgba(0, 0, 0, .38); }
  html[data-theme="dark"] .cmc-nav a:hover { background: #1b202c; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
