
@import url("https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700;800&family=Geist+Mono:wght@500;600;700;800&family=Manrope:wght@500;600;700;800&family=Noto+Sans+Arabic:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f5f7fa;
  --paper: #f8fafc;
  --surface: #ffffff;
  --surface-2: #f2f4f7;
  --surface-raised: #ffffff;
  --surface-glass: rgb(255 255 255 / 94%);
  --surface-muted: #eef2f6;
  --ink: #101828;
  --ink-2: #344054;
  --muted: #475467;
  --muted-2: #667085;
  --line: rgba(16, 24, 40, .14);
  --line-soft: rgba(16, 24, 40, .08);
  --line-strong: rgba(16, 24, 40, .2);
  --blue: #175cd3;
  --blue-2: #1849a9;
  --blue-soft: #eff4ff;
  --focus-ring: #1570ef;
  --green: #067647;
  --green-soft: #e8f7f0;
  --amber: #b54708;
  --amber-soft: #fff5dd;
  --red: #b42318;
  --red-soft: #fff0ee;
  --shadow-xs: 0 1px 2px rgb(16 24 40 / 5%);
  --shadow-sm: 0 2px 8px rgb(16 24 40 / 6%);
  --shadow: 0 8px 24px rgb(16 24 40 / 8%);
  --shadow-deep: 0 16px 40px rgb(16 24 40 / 10%);
  --radius: 10px;
  --radius-md: 8px;
  --radius-sm: 6px;
  --radius-xs: 4px;
  --max: 1320px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; overflow-x: clip; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: Geist, Manrope, "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI Variable", "Segoe UI", system-ui, sans-serif;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
  text-rendering: geometricPrecision;
}
html:lang(ko) body { font-family: "Malgun Gothic", "Apple SD Gothic Neo", Geist, sans-serif; word-break: keep-all; }
html:lang(ko) h1 { word-break: keep-all; overflow-wrap: anywhere; text-wrap: balance; }
html:lang(ja) body { font-family: "Yu Gothic UI", "Yu Gothic", Meiryo, Geist, sans-serif; }
html:lang(ja) h1 { word-break: auto-phrase; }
html:lang(ja) .page-reviews .home-intro h1 { max-width: 800px; font-size: clamp(48px, 4.5vw, 64px); text-wrap: wrap; }
html:lang(zh-Hans) body { font-family: "Microsoft YaHei UI", "PingFang SC", Geist, sans-serif; }
html:lang(zh-Hant) body { font-family: "Microsoft JhengHei UI", "PingFang TC", Geist, sans-serif; }
html:lang(hi) body,
html:lang(bn) body { font-family: "Nirmala UI", "Kohinoor Devanagari", Geist, sans-serif; }
html:lang(ar) body,
html:lang(ur) body { font-family: "Noto Sans Arabic", "Segoe UI", "Nirmala UI", Arial, sans-serif; }
html:lang(th) body { font-family: "Leelawadee UI", Tahoma, Geist, sans-serif; }
html[dir="rtl"] body { direction: rtl; }
html[dir="rtl"] .topbar,
html[dir="rtl"] .nav,
html[dir="rtl"] .nav a,
html[dir="rtl"] .nav-actions,
html[dir="rtl"] .language-popover { direction: rtl; }
html[dir="rtl"] .brand { direction: rtl; justify-self: start; }
html[dir="rtl"] .brand > span:last-child,
html[dir="rtl"] .broker-cell strong,
html[dir="rtl"] .home-rank-broker strong,
html[dir="rtl"] .mobile-rank-name strong,
html[dir="rtl"] .promotion-brand strong,
html[dir="rtl"] .broker-card-title strong { direction: ltr; unicode-bidi: isolate; }
html[dir="rtl"] .home-kicker { border-left: 0; border-right: 2px solid rgb(7 10 15 / 18%); padding-left: 0; padding-right: 16px; }
html[dir="rtl"] .page-anchor-nav a::after { transform-origin: right; }
html[dir="rtl"] .arrow { transform: scaleX(-1); }
html[dir="rtl"] .btn:hover .arrow,
html[dir="rtl"] .link:hover .arrow { transform: translateX(-2px) scaleX(-1); }
html[dir="rtl"] .compare-matrix td:first-child,
html[dir="rtl"] .compare-matrix th:first-child { left: auto; right: 0; }
html[dir="rtl"] .score,
html[dir="rtl"] .rank-cell,
html[dir="rtl"] .mobile-rank-number,
html[dir="rtl"] time,
html[dir="rtl"] code,
html[dir="rtl"] a[href^="mailto:"] { direction: ltr; unicode-bidi: isolate; }
html[dir="rtl"] .mini-field strong,
html[dir="rtl"] .metric-primary,
html[dir="rtl"] .metric-note,
html[dir="rtl"] .home-mobile-max,
html[dir="rtl"] .filter-status,
html[dir="rtl"] .promo-status-tab strong { unicode-bidi: plaintext; }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .32;
  background:
    linear-gradient(90deg, rgb(16 24 40 / .025) 1px, transparent 1px),
    linear-gradient(180deg, rgb(16 24 40 / .022) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, black 0 24%, transparent 58%);
}
body::after { display: none; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; letter-spacing: 0; }
img { max-width: 100%; }
:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--focus-ring);
}
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 100; padding: 10px 14px; border-radius: 8px; background: var(--ink); color: #fff; font-weight: 800; }
.skip-link:focus { top: 16px; }
.shell { width: min(var(--max), calc(100% - 56px)); margin-inline: auto; }
.topbar {
  position: sticky;
  top: 8px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 60px;
  margin-top: 8px;
  padding: 8px 10px 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 92%);
  box-shadow: var(--shadow-sm);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
}
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 220px; font-family: Geist, Manrope, system-ui, sans-serif; font-size: 16px; font-weight: 700; white-space: nowrap; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: var(--radius-sm); background: #0b111b; box-shadow: inset 0 1px 0 rgb(255 255 255 / 12%), 0 13px 28px rgb(15 92 255 / 16%); overflow: hidden; }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nav { display: flex; justify-content: center; gap: 2px; color: #4c5667; font-size: 13px; font-weight: 700; }
.nav a { position: relative; display: inline-flex; align-items: center; min-height: 40px; padding: 0 12px; border-radius: 8px; white-space: nowrap; transition: color .22s var(--ease), background .22s var(--ease); }
.nav a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 7px; height: 2px; transform: scaleX(0); transform-origin: center; background: var(--blue); transition: transform .24s var(--ease); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); background: rgb(255 255 255 / 62%); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.page-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 14px;
  padding: 10px 0 4px;
  color: #596579;
  font-size: 12px;
  font-weight: 700;
}
.page-anchor-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 5px;
}
.page-anchor-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  transform: scaleX(.18);
  transform-origin: left;
  background: rgb(15 92 255 / 42%);
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.page-anchor-nav a:hover { color: var(--ink); }
.page-anchor-nav a:hover::after { transform: scaleX(1); background: var(--blue); }
.metric-symbol {
  --symbol-accent: var(--blue);
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 5px;
  background: linear-gradient(145deg, rgb(255 255 255 / 94%), rgb(226 235 249 / 86%));
  border: 1px solid rgb(15 23 42 / 12%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 92%);
}
.metric-symbol::before,
.metric-symbol::after,
.metric-symbol i {
  content: "";
  position: absolute;
  display: block;
}
.metric-symbol--verdict::before { width: 10px; height: 7px; border-left: 2px solid var(--symbol-accent); border-bottom: 2px solid var(--symbol-accent); transform: rotate(-45deg) translate(1px, -1px); }
.metric-symbol--payout::before { left: 4px; bottom: 4px; width: 3px; height: 6px; background: var(--symbol-accent); box-shadow: 5px -3px 0 var(--symbol-accent), 10px -6px 0 var(--symbol-accent); border-radius: 2px; }
.metric-symbol--payout::after { right: 3px; top: 3px; width: 4px; height: 4px; border-radius: 50%; background: #0b111b; opacity: .78; }
.metric-symbol--assets::before { width: 11px; height: 11px; background: linear-gradient(90deg, var(--symbol-accent) 0 4px, transparent 4px 7px, var(--symbol-accent) 7px), linear-gradient(0deg, var(--symbol-accent) 0 4px, transparent 4px 7px, var(--symbol-accent) 7px); opacity: .9; border-radius: 2px; }
.metric-symbol--otc::before { left: 4px; top: 8px; width: 10px; height: 2px; background: rgb(15 23 42 / 42%); border-radius: 2px; }
.metric-symbol--otc::after { left: 3px; top: 6px; width: 5px; height: 5px; border-radius: 50%; background: var(--symbol-accent); box-shadow: 8px 0 0 #0b111b; }
.metric-symbol--expiry::before { width: 11px; height: 11px; border: 2px solid var(--symbol-accent); border-radius: 50%; }
.metric-symbol--expiry::after { left: 9px; top: 5px; width: 2px; height: 6px; background: #0b111b; border-radius: 2px; transform-origin: bottom; transform: rotate(38deg); }
.metric-symbol--deposit::before { left: 4px; right: 4px; bottom: 4px; height: 5px; border: 2px solid var(--symbol-accent); border-top: 0; border-radius: 0 0 3px 3px; }
.metric-symbol--deposit::after { top: 3px; left: 8px; width: 2px; height: 8px; background: #0b111b; border-radius: 2px; box-shadow: -3px 4px 0 -1px #0b111b, 3px 4px 0 -1px #0b111b; }
.metric-symbol--withdrawal::before { left: 4px; right: 4px; bottom: 4px; height: 5px; border: 2px solid var(--symbol-accent); border-top: 0; border-radius: 0 0 3px 3px; }
.metric-symbol--withdrawal::after { bottom: 5px; left: 8px; width: 2px; height: 9px; background: #0b111b; border-radius: 2px; box-shadow: -3px -1px 0 -1px #0b111b, 3px -1px 0 -1px #0b111b; }
.metric-symbol--support::before { left: 3px; top: 5px; width: 9px; height: 7px; border: 2px solid var(--symbol-accent); border-radius: 5px; }
.metric-symbol--support::after { right: 3px; bottom: 5px; width: 7px; height: 5px; border: 2px solid #0b111b; border-radius: 4px; opacity: .72; }
.metric-symbol--bonus::before { width: 11px; height: 8px; border: 2px solid var(--symbol-accent); border-radius: 3px; transform: rotate(-8deg); }
.metric-symbol--bonus::after { width: 2px; height: 10px; background: #0b111b; opacity: .68; transform: rotate(-8deg); }
.metric-symbol--platform::before { width: 12px; height: 10px; border: 2px solid var(--symbol-accent); border-radius: 3px; }
.metric-symbol--platform::after { left: 6px; bottom: 4px; width: 6px; height: 2px; background: #0b111b; border-radius: 2px; box-shadow: 6px 0 0 rgb(15 23 42 / 28%); }
.nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; min-width: 50px; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
[data-language-switcher] { position: relative; }
.language-switcher { position: relative; }
.language-switcher > summary {
  min-width: 126px;
  min-height: 44px;
  padding: 0 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgb(255 255 255 / 78%);
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 88%);
}
.language-switcher > summary::-webkit-details-marker { display: none; }
.language-switcher > summary:hover,
.language-switcher[open] > summary { border-color: rgb(15 92 255 / 28%); background: #fff; color: var(--ink); }
.language-flag { width: 27px; height: 20px; flex: 0 0 27px; display: grid; place-items: center; overflow: hidden; border: 1px solid rgb(7 10 15 / 16%); border-radius: 4px; background: #fff; box-shadow: 0 1px 3px rgb(7 10 15 / 9%); font-size: 0; line-height: 1; }
.language-flag img { display: block; width: 100%; height: 100%; object-fit: cover; }
.language-current { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; unicode-bidi: isolate; }
.language-chevron { margin-inline-start: auto; color: var(--muted); font-size: 14px; transition: transform .2s var(--ease); }
.language-switcher[open] .language-chevron { transform: rotate(180deg); }
.language-popover {
  position: absolute;
  inset-inline-end: 0;
  top: calc(100% + 10px);
  z-index: 80;
  width: min(520px, calc(100vw - 32px));
  max-height: min(610px, calc(100dvh - 100px));
  padding: 14px;
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 97%);
  box-shadow: var(--shadow-deep);
  -webkit-backdrop-filter: blur(24px) saturate(155%);
  backdrop-filter: blur(24px) saturate(155%);
}
.language-popover-head { min-height: 34px; padding: 0 4px 10px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line-soft); }
.language-popover-head strong { font-size: 14px; }
.language-popover-head span { color: var(--muted); font-family: "Geist Mono", monospace; font-size: 10px; font-weight: 800; }
.language-search { display: block; margin: 12px 0; }
.language-search input { width: 100%; min-height: 42px; padding: 0 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #f8fafc; color: var(--ink); }
.language-search input:focus { background: #fff; }
.language-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px 12px; }
.language-grid a {
  position: relative;
  min-width: 0;
  min-height: 48px;
  padding: 7px 34px 7px 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 700;
  unicode-bidi: isolate;
}
.language-grid a:hover { color: var(--blue-2); background: var(--blue-soft); }
.language-grid a.is-current { color: var(--blue-2); background: rgb(236 243 255 / 66%); }
.language-grid a.is-current::after { content: "✓"; position: absolute; inset-inline-end: 10px; color: var(--blue); font-size: 14px; }
.language-grid .language-flag { width: 29px; height: 22px; flex-basis: 29px; }
.language-grid .language-name { min-width: 0; unicode-bidi: isolate; }
.language-empty { margin: 10px 4px 2px; color: var(--muted); font-size: 12px; }
.menu-button { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); color: var(--ink); cursor: pointer; }
.hamburger { position: relative; display: block; width: 18px; height: 14px; margin: auto; }
.hamburger span { position: absolute; left: 0; width: 18px; height: 2px; border-radius: 4px; background: currentColor; transition: transform .25s var(--ease), top .25s var(--ease), opacity .2s var(--ease); }
.hamburger span:nth-child(1){ top:0; } .hamburger span:nth-child(2){ top:6px; } .hamburger span:nth-child(3){ top:12px; }
body.menu-open .hamburger span:nth-child(1){ top:6px; transform:rotate(45deg); }
body.menu-open .hamburger span:nth-child(2){ opacity:0; }
body.menu-open .hamburger span:nth-child(3){ top:6px; transform:rotate(-45deg); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 42px; padding: 0 15px; border: 1px solid transparent; border-radius: var(--radius-sm); background: var(--ink); color: #fff; font-size: 13px; font-weight: 700; white-space: nowrap; cursor: pointer; box-shadow: none; transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease; }
.btn:hover { background: #1d2939; }
.btn:active { transform: translateY(1px); }
.btn.blue { background: var(--blue); box-shadow: none; }
.btn.blue:hover { background: var(--blue-2); }
.btn.secondary { border-color: var(--line); background: #fff; color: var(--ink); box-shadow: none; }
.btn.small { min-height: 34px; padding: 0 11px; font-size: 12px; border-radius: var(--radius-xs); }
.btn.text { min-height: auto; padding: 0; border: 0; border-radius: 0; background: transparent; color: var(--blue); }
.btn.text:hover { box-shadow: none; transform: none; color: var(--blue-2); }
.arrow { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 6px; background: rgb(255 255 255 / 16%); transition: transform .22s var(--ease); }
.btn:hover .arrow { transform: translateX(2px); }
.secondary .arrow { background: #eef2f7; }
.action-stack .btn.secondary,
.mobile-rank-actions .btn.secondary {
  border-color: #b2ccff;
  background: var(--blue-soft);
  color: var(--blue-2);
  box-shadow: none;
}
.action-stack .btn.secondary:hover,
.mobile-rank-actions .btn.secondary:hover {
  border-color: #84adff;
  background: #dbe8ff;
  color: var(--blue-2);
}
main { padding: 20px 0 72px; }
.hero { display: grid; grid-template-columns: minmax(0, .88fr) minmax(420px, .82fr); gap: 34px; align-items: center; padding: 30px 0 16px; }
.hero > *,
.ranking-hero > *,
.tool-hero > *,
.home-intro > *,
.article-row > * { min-width: 0; }
.page-hero { padding-top: 22px; }
.ranking-hero { display: grid; grid-template-columns: minmax(0, .95fr) minmax(260px, .45fr); gap: 20px; align-items: end; padding: 24px 0 8px; }
.ranking-hero h1 { max-width: 820px; font-size: clamp(42px, 5vw, 68px); line-height: 1.1; }
.ranking-hero .lead { max-width: 620px; }
.topic-ranking-hero { align-items: center; }
.tool-hero { display: grid; grid-template-columns: minmax(0, .82fr) minmax(440px, .78fr); gap: 22px; align-items: end; padding: 24px 0 4px; }
.tool-hero h1 { max-width: 720px; font-size: clamp(42px, 5.2vw, 68px); line-height: 1.1; }
.home-hero { padding: 28px 0 10px; }
.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .72fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 22px;
}
.home-intro h1 { max-width: 760px; padding-bottom: .12em; font-size: clamp(48px, 5vw, 68px); line-height: 1.04; letter-spacing: 0; }
.home-intro .lead { max-width: 500px; color: var(--ink-2); font-size: 16px; line-height: 1.5; font-weight: 500; }
.page-reviews .home-hero { padding-top: 24px; }
.page-reviews .home-intro { margin-bottom: 14px; }
.page-reviews .home-intro h1 { max-width: 660px; font-size: clamp(48px, 5vw, 72px); line-height: 1.1; }
.intro-aside { justify-self: end; max-width: 430px; padding: 0 0 5px; }
.home-kicker { display: grid; gap: 9px; border-left: 2px solid rgb(7 10 15 / 18%); padding-left: 16px; }
.home-kicker strong { font-size: 15px; line-height: 1.25; }
.home-kicker span { color: var(--muted); font-size: 13px; line-height: 1.45; font-weight: 600; }
.ranking-stage {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.ranking-stage::before { display: none; }
.ranking-stage::after { display: none; }
.ranking-stage-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px 15px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--surface);
}
.ranking-stage-header h2 { font-size: 27px; letter-spacing: 0; }
.ranking-stage-header .lead { max-width: 580px; margin-top: 6px; font-size: 14px; font-weight: 500; }
.eyebrow { display: block; padding: 0; border: 0; background: transparent; color: var(--blue); font-family: "Geist Mono", monospace; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; }
h1 {
  max-width: 690px;
  margin: 12px 0 0;
  font-family: Geist, Manrope, "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", system-ui, sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 650;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  padding-bottom: .05em;
}
h1 strong { font-weight: 800; }
.accent-word { display: inline-block; color: var(--blue); font-weight: 800; text-shadow: none; }
.accent-word.green { color: var(--green); text-shadow: none; }
.accent-word.amber { color: var(--amber); text-shadow: none; }
h2 { margin: 0; font-family: Geist, Manrope, system-ui, sans-serif; font-size: 34px; line-height: 1.16; font-weight: 700; text-wrap: balance; }
h3 { margin: 0; font-family: Geist, Manrope, system-ui, sans-serif; font-size: 19px; line-height: 1.28; font-weight: 700; }
h1 { overflow-wrap: anywhere; }
p { text-wrap: pretty; }
.lead { max-width: 600px; margin: 12px 0 0; color: var(--muted); font-size: 15px; line-height: 1.55; font-weight: 500; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.commercial-disclosure { max-width: 720px; margin: 12px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.commercial-disclosure strong { color: var(--ink); }
.feature-strip { display: flex; flex-wrap: wrap; gap: 0; margin-top: 14px; max-width: 650px; color: var(--muted); }
.feature-strip span { display: inline-flex; align-items: center; min-height: auto; padding: 0 11px 0 0; margin-right: 10px; border: 0; border-right: 1px solid var(--line); color: var(--ink-2); font-size: 12px; font-weight: 700; }
.feature-strip span:last-child { margin-right: 0; padding-right: 0; border-right: 0; }
.info-bar { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; margin-top: 30px; max-width: 780px; }
.info-item { min-height: 74px; padding: 13px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
.info-item span { display: block; color: var(--muted); font-size: 11px; font-weight: 800; }
.info-item strong { display: block; margin-top: 8px; font-size: 18px; font-weight: 800; }
.visual-frame {
  position: relative;
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface-muted);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}
.visual-frame::before { content: ""; position: absolute; inset: 8px; border: 1px solid rgb(7 10 15 / 9%); border-radius: var(--radius-md); box-shadow: inset 0 1px 0 rgb(255 255 255 / 84%); pointer-events: none; z-index: 1; }
.visual-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: linear-gradient(100deg, #e6edf6 18%, #fbfdff 38%, #e6edf6 58%);
  background-size: 220% 100%;
  animation: visual-frame-loading 1.35s ease-in-out infinite;
  filter: saturate(.98) contrast(1.01);
}
@keyframes visual-frame-loading {
  to { background-position-x: -220%; }
}
.concept-card::after { background: linear-gradient(180deg, rgb(4 8 14 / 4%) 0%, rgb(4 8 14 / 54%) 44%, rgb(4 8 14 / 92%) 100%); }
.concept-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 46%, rgb(3 7 13 / 78%)); pointer-events: none; }
.concept-media .media-caption { z-index: 2; }
.research-overlay { position: absolute; left: 18px; right: 18px; bottom: 18px; display: grid; gap: 5px; padding: 12px 14px; border: 1px solid rgb(255 255 255 / 72%); border-radius: 12px; background: rgb(255 255 255 / 90%); box-shadow: 0 16px 40px rgb(16 24 40 / 12%); z-index: 2; }
.research-overlay strong { font-size: 15px; line-height: 1.28; }
.research-overlay span { color: var(--muted); font-size: 12px; line-height: 1.28; font-weight: 700; }
.risk-note { margin-top: 14px; padding: 0 0 0 11px; border: 0; border-left: 2px solid rgb(187 35 24 / 48%); background: transparent; color: var(--red); font-size: 12px; line-height: 1.34; font-weight: 700; }
.notice-strip { display: grid; gap: 7px; margin-bottom: 14px; padding: 14px 16px; border: 1px solid rgb(7 10 15 / 10%); border-left: 3px solid var(--blue); border-radius: 10px; background: rgb(255 255 255 / 72%); color: var(--ink-2); box-shadow: var(--shadow-sm); }
.notice-strip strong { font-size: 13px; }
.notice-strip span { color: var(--muted); font-size: 12px; line-height: 1.45; font-weight: 700; }
.ranking-first { margin-top: 18px; }
.ranking-tools { display: grid; gap: 12px; margin-top: 16px; }
.ranking-tools-top { margin-top: 0; margin-bottom: 14px; }
.ranking-tools-top .filter-panel { margin-bottom: 0; }
.calendar-hero-simple { display: block; }
.calendar-primary { margin-top: 20px; }
.calendar-primary > .filter-panel { margin-bottom: 16px; }
.calendar-event-cell strong { display: block; color: var(--ink); font-size: 13px; line-height: 1.35; }
.calendar-event-cell small { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; line-height: 1.35; font-weight: 700; }
.calendar-empty-row td { padding: 46px 24px; text-align: center; }
.calendar-empty-row strong,
.calendar-empty-row span,
.calendar-empty strong,
.calendar-empty span { display: block; }
.calendar-empty-row strong,
.calendar-empty strong { color: var(--ink); font-size: 15px; }
.calendar-empty-row span,
.calendar-empty span { margin-top: 6px; color: var(--muted); font-size: 12px; font-weight: 600; }
.calendar-empty-mobile { display: none; padding: 28px 20px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface-raised); text-align: center; }
.subnav {
  position: sticky;
  top: 92px;
  z-index: 45;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 48px;
  margin-top: 14px;
  padding: 7px;
  border: 1px solid rgb(255 255 255 / 74%);
  border-radius: 12px;
  background: rgb(255 255 255 / 82%);
  box-shadow: 0 1px 0 rgb(255 255 255 / 86%) inset, 0 18px 50px rgb(18 31 52 / 10%);
  backdrop-filter: blur(20px) saturate(1.08);
}
.subnav-label {
  padding-left: 10px;
  color: var(--ink);
  font-family: Geist, Manrope, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.subnav-links {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}
.subnav-links::-webkit-scrollbar { display: none; }
.subnav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 7px;
  color: #526071;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  transition: background .22s var(--ease), color .22s var(--ease), transform .22s var(--ease);
}
.subnav a:hover { background: rgb(7 10 15 / 5%); color: var(--ink); }
.subnav a[aria-current="page"] {
  background: #0b111b;
  color: #fff;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 12%);
}
.subnav a .metric-symbol,
.page-anchor-nav a .metric-symbol { width: 16px; height: 16px; border-radius: 5px; }
.subnav a[aria-current="page"] .metric-symbol { border-color: rgb(255 255 255 / 22%); background: rgb(255 255 255 / 12%); }
.subnav a[aria-current="page"] .metric-symbol::before,
.subnav a[aria-current="page"] .metric-symbol::after { filter: brightness(1.8); }
.section { margin-top: 62px; scroll-margin-top: 112px; }
.anchor-section { scroll-margin-top: 124px; }
.section-head { display: flex; justify-content: space-between; gap: 18px; align-items: end; margin-bottom: 18px; }
.panel { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-xs); overflow: hidden; }
.panel.pad { padding: 24px; }
.verdict-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}
.verdict-heading h2 { margin: 0; }
.verdict-reason-strip {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 10px;
  margin-top: 18px;
}
.verdict-reason {
  display: grid;
  gap: 6px;
  min-height: 104px;
  padding: 13px;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(160deg, rgba(255,255,255,.94), rgba(237,244,255,.68));
}
.verdict-reason .metric-symbol { width: 24px; height: 24px; border-radius: 7px; }
.verdict-reason strong { font-size: 13px; line-height: 1.28; }
.verdict-reason span:last-child { color: var(--muted); font-size: 11.5px; line-height: 1.35; font-weight: 600; }
.filter-panel {
  display: grid;
  grid-template-columns: 150px minmax(0,1fr);
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  background: rgb(255 255 255 / 92%);
  box-shadow: var(--shadow-xs);
  -webkit-backdrop-filter: blur(10px) saturate(115%);
  backdrop-filter: blur(10px) saturate(115%);
}
.filter-controls { display: contents; }
.filter-mobile-toggle { display: none; }
.filter-panel label { font-size: 13px; font-weight: 800; }
.filter-panel .search-input { min-height: 42px; margin-top: 0; }
.filter-tools { grid-column: 2 / -1; display: grid; grid-template-columns: repeat(6,minmax(118px,1fr)) auto auto; align-items: center; gap: 8px; }
.filter-select, .filter-reset { min-height: 42px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink); font-size: 12px; font-weight: 800; }
.filter-select { padding: 0 34px 0 11px; }
.filter-reset { padding: 0 12px; cursor: pointer; }
.filter-status { justify-self: start; color: var(--muted); font-family: "Geist Mono", monospace; font-size: 11px; font-weight: 800; white-space: nowrap; }
.filter-empty { margin: 12px 0 0; color: var(--muted); font-size: 13px; font-weight: 700; }
.ranking-priority {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 14px 18px;
  margin-bottom: 12px;
  padding: 18px;
  overflow: hidden;
}
.ranking-priority-heading { display: flex; align-items: start; justify-content: space-between; gap: 12px; }
.ranking-priority-heading h2 { margin-top: 4px; font-size: 22px; line-height: 1.15; }
.ranking-priority-limit { color: var(--muted); font-family: "Geist Mono", monospace; font-size: 11px; font-weight: 800; }
.ranking-priority-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.ranking-priority-options button {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 45px;
  padding: 8px 10px;
  border: 0;
  border-left: 1px solid var(--line-soft);
  border-top: 1px solid var(--line-soft);
  background: transparent;
  color: var(--ink-2);
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}
.ranking-priority-options button:nth-child(3n + 1) { border-left: 0; }
.ranking-priority-options button:nth-child(-n + 3) { border-top: 0; }
.ranking-priority-options button:hover { background: var(--surface-muted); }
.ranking-priority-options button[aria-pressed="true"] { background: #eaf2ff; color: var(--blue); box-shadow: inset 0 0 0 1px rgb(15 92 255 / 28%); }
.ranking-priority-options .metric-symbol { width: 24px; height: 24px; border-radius: 7px; }
.ranking-priority-footer { grid-column: 2; display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 28px; }
.ranking-priority-footer strong { color: var(--muted); font-family: "Geist Mono", monospace; font-size: 11px; }
.ranking-priority.is-personalized .ranking-priority-footer strong { color: var(--blue); }
.ranking-priority-reset { border: 0; background: transparent; color: var(--blue); font-size: 12px; font-weight: 800; cursor: pointer; }
.ranking-priority-reset:disabled { color: var(--muted); cursor: default; opacity: .55; }
.directory-grid { margin-top: 14px; }
@media (min-width: 721px) {
  .page-reviews .filter-panel {
    grid-template-columns: 140px minmax(0, 1fr) auto;
    gap: 10px;
    padding-block: 12px;
  }
  .page-reviews .filter-panel .filter-tools {
    grid-column: auto;
    display: flex;
    align-items: center;
    gap: 8px;
  }
}
.grid-2 { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; }
.review-grid { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface-raised); transition: transform .42s var(--ease), border-color .42s var(--ease), box-shadow .42s var(--ease); }
.card:hover { transform: translateY(-3px); border-color: rgb(15 92 255 / 24%); box-shadow: 0 22px 54px rgb(16 24 40 / 9%); }
.card p { color: var(--muted); font-size: 14px; line-height: 1.55; font-weight: 600; }
.field-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.field-tile { padding: 18px; border-radius: var(--radius-md); border: 1px solid var(--line); background: var(--surface-raised); box-shadow: var(--shadow-xs); }
.field-tile h3 { margin-top: 10px; font-size: 20px; }
.field-tile p { margin: 9px 0 0; color: var(--muted); font-size: 14px; line-height: 1.5; font-weight: 600; }
.plain-list { display: grid; gap: 8px; margin: 14px 0 0; padding: 0; list-style: none; }
.plain-list li { position: relative; padding-left: 16px; color: var(--ink-2); font-size: 13px; line-height: 1.42; font-weight: 700; }
.plain-list li::before { content: ""; position: absolute; left: 0; top: .62em; width: 6px; height: 6px; border-radius: 2px; background: var(--blue); }
.score-stack { display: grid; gap: 11px; margin-top: 16px; }
.score-row { display: grid; grid-template-columns: 86px 1fr 38px; align-items: center; gap: 10px; }
.score-row span { color: var(--muted); font-size: 12px; font-weight: 700; }
.score-track { height: 8px; border-radius: 4px; background: #e9eef6; overflow: hidden; }
.score-fill { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #0b111b, var(--blue)); }
.content-update-list { display: grid; gap: 12px; }
.content-update {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid var(--line-soft);
}
.content-update:first-child { border-top: 0; padding-top: 0; }
.content-update time { color: var(--muted); font-family: "Geist Mono", monospace; font-size: 11px; font-weight: 700; }
.content-update h3 { font-size: 17px; }
.content-update p { margin: 6px 0 0; color: var(--muted); font-size: 13px; line-height: 1.45; font-weight: 600; }
.comparison-answer-section { padding-top: 6px; }
.comparison-answer-list { border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.comparison-answer {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line-soft);
}
.comparison-answer:first-child { border-top: 0; }
.comparison-answer > span { color: var(--blue); font-family: "Geist Mono", monospace; font-size: 11px; font-weight: 800; }
.comparison-answer h3 { font-size: 19px; line-height: 1.25; }
.comparison-answer p { max-width: 68ch; margin: 7px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; font-weight: 600; }
.direct-answer { margin-top: 20px; padding: 18px 20px; border-left: 3px solid var(--blue); background: rgb(255 255 255 / 48%); }
.direct-answer h2 { margin-top: 5px; font-size: 23px; line-height: 1.2; }
.direct-answer p { max-width: 68ch; margin: 7px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; font-weight: 600; }
html[dir="rtl"] .direct-answer { border-right: 3px solid var(--blue); border-left: 0; }
.source-list { display: grid; gap: 10px; margin-top: 14px; }
.source-item { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; align-items: center; padding: 12px 0; border-top: 1px solid var(--line-soft); }
.source-item:first-child { border-top: 0; }
.source-item strong { display: block; font-size: 14px; }
.source-item small { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; line-height: 1.35; font-weight: 600; }
.source-note { display: block; margin-top: 5px; color: var(--ink-2); font-size: 12px; line-height: 1.4; font-weight: 600; }
.editorial-block {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(340px, .7fr);
  gap: 18px;
  align-items: stretch;
}
.article-panel {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-glass);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 88%), var(--shadow-sm);
}
.editorial-block > * { min-width: 0; }
.article-panel p {
  max-width: 60ch;
  margin: 12px 0 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.62;
  font-weight: 600;
}
.article-panel .lead { color: var(--muted); }
.article-panel h2 + p { margin-top: 16px; }
.article-panel h3 { margin-top: 22px; }
.article-panel h3:first-child { margin-top: 0; }
.article-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-family: "Geist Mono", monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.media-panel {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #101722;
  color: #fff;
  box-shadow: var(--shadow);
}
.media-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(.98) contrast(1.02);
}
.media-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(4 8 14 / 4%), rgb(4 8 14 / 86%));
}
.media-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 6px;
}
.media-caption strong { font-family: Geist, Manrope, system-ui, sans-serif; font-size: 24px; line-height: 1.2; }
.media-caption span { color: rgb(255 255 255 / 78%); font-size: 13px; line-height: 1.42; font-weight: 600; }
.insight-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.insight-card {
  min-height: 170px;
  padding: 20px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: linear-gradient(180deg, rgb(255 255 255 / 86%), rgb(246 249 253 / 72%));
}
.insight-card p { margin: 9px 0 0; color: var(--muted); font-size: 13px; line-height: 1.46; font-weight: 600; }
.story-rail { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1fr); gap: 16px; align-items: stretch; }
.story-copy { display: grid; align-content: start; min-height: 330px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-glass); box-shadow: inset 0 1px 0 rgb(255 255 255 / 88%), var(--shadow-sm); }
.story-copy p { max-width: 60ch; margin: 12px 0 0; color: var(--ink-2); font-size: 15px; line-height: 1.58; font-weight: 600; }
.story-media-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.story-media-grid .image-card { min-height: 220px; }
.story-media-grid .image-card img { object-position: top center; }
.story-media-grid .image-card.wide { grid-column: span 2; min-height: 270px; }
.snapshot-strip { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.snapshot-card { position: relative; min-height: 260px; overflow: hidden; border-radius: 16px; background: #0b111b; color: #fff; box-shadow: var(--shadow-sm); }
.snapshot-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: saturate(.98) contrast(1.01); }
.snapshot-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgb(5 9 15 / 6%), rgb(5 9 15 / 82%)); }
.snapshot-card-body { position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 1; display: grid; gap: 7px; }
.snapshot-card-body h3 { color: #fff; font-size: 21px; }
.snapshot-card-body p { margin: 0; color: rgb(255 255 255 / 78%); font-size: 12px; line-height: 1.38; font-weight: 600; }
.review-feature-visual {
  margin: 0;
  display: grid;
  grid-template-rows: auto auto;
  align-self: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgb(247 249 252 / 92%);
  box-shadow: var(--shadow-sm);
}
.review-feature-media {
  padding: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #f7f9fc, #e9eef5);
}
.review-feature-media img { width: 100%; height: auto; max-height: 520px; display: block; }
.review-feature-visual figcaption { padding: 17px 18px 19px; display: grid; gap: 5px; border-top: 1px solid var(--line-soft); background: rgb(255 255 255 / 94%); }
.review-feature-visual figcaption strong { color: var(--ink); font-size: 18px; line-height: 1.2; }
.review-feature-visual figcaption > span:last-child { color: var(--muted); font-size: 12px; line-height: 1.45; font-weight: 650; }
.workflow-evidence-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 12px; }
.evidence-visual-card { min-width: 0; display: grid; grid-template-rows: auto 1fr; overflow: hidden; border: 1px solid var(--line-soft); border-radius: 12px; background: rgb(255 255 255 / 88%); }
.evidence-visual-media { aspect-ratio: 16 / 10; padding: 10px; display: grid; place-items: center; background: linear-gradient(145deg, #f5f7fa, #e8edf4); }
.evidence-visual-media img { width: 100%; height: 100%; min-width: 0; display: block; }
.evidence-visual-copy { padding: 15px 16px 17px; display: grid; align-content: start; gap: 7px; border-top: 1px solid var(--line-soft); }
.evidence-visual-copy h3 { color: var(--ink); font-size: 16px; line-height: 1.3; text-wrap: pretty; overflow-wrap: anywhere; }
.evidence-visual-copy p { margin: 0; color: var(--ink-2); font-size: 12.5px; line-height: 1.48; font-weight: 600; }
.evidence-visual-copy small { margin-top: 2px; color: var(--muted); font-size: 10.5px; line-height: 1.4; font-weight: 650; }
.editorial-kpi { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; margin-top: 18px; }
.text-link-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.text-link-list a { min-height: 42px; padding: 0 13px; display: inline-flex; align-items: center; border: 1px solid var(--line-soft); border-radius: 9px; background: rgb(255 255 255 / 82%); color: var(--ink); font-size: 12px; font-weight: 800; }
.text-link-list a::after { content: "->"; margin-left: 8px; color: var(--blue); }
.comparison-lens { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.comparison-lens .article-panel { min-height: 100%; }
.article-list { display: grid; gap: 12px; margin-top: 18px; }
.article-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.article-row:first-child { padding-top: 0; border-top: 0; }
.article-row span { color: var(--blue); font-family: "Geist Mono", monospace; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; overflow-wrap: anywhere; }
.article-row strong { display: block; font-size: 15px; font-weight: 800; }
.article-row p { margin: 5px 0 0; color: var(--muted); font-size: 13px; line-height: 1.45; font-weight: 600; }
.article-row.compact { grid-template-columns: 52px minmax(0, 1fr); }
.article-rich > p { font-size: 16px; line-height: 1.68; }
.info-table { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; margin-top: 20px; }
.info-table div { min-height: 92px; padding: 14px; border: 1px solid var(--line-soft); border-radius: 10px; background: linear-gradient(180deg, rgb(255 255 255 / 92%), rgb(246 249 253 / 86%)); }
.info-table span { display: block; color: var(--muted); font-family: "Geist Mono", monospace; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.info-table strong { display: block; margin-top: 10px; color: var(--ink); font-size: 15px; line-height: 1.25; font-weight: 800; }
.glossary-list { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.glossary-term { display: flex; min-height: 230px; flex-direction: column; }
.glossary-term-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--muted); font-family: "Geist Mono", monospace; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.glossary-term-meta > span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.glossary-term h3 { margin-top: 18px; }
.glossary-term p { margin-top: 12px; }
.glossary-term { color: inherit; transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease); }
.glossary-term:hover { transform: translateY(-3px); border-color: rgb(20 96 255 / 34%); box-shadow: 0 18px 38px rgb(23 43 77 / 10%); }
.glossary-term-action { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 18px; color: var(--blue); font-size: 12px; font-weight: 800; }
.glossary-term-action::after { content: "->"; font-family: "Geist Mono", monospace; }
.glossary-entry-hero h1 { max-width: 16ch; text-wrap: balance; overflow-wrap: anywhere; }
.glossary-back-link { width: max-content; margin-bottom: 20px; display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 12px; font-weight: 800; }
.glossary-back-link::before { content: "←"; color: var(--blue); }
.glossary-context-media { align-self: stretch; overflow: hidden; }
.glossary-context-media > img { width: 100%; height: 100%; min-height: 310px; object-fit: cover; }
.glossary-related-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(300px,.85fr); gap: 14px; align-items: start; }
.glossary-related-terms { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 18px; margin-top: 16px; border-top: 1px solid var(--line-soft); }
.glossary-related-terms a { min-width: 0; min-height: 66px; padding: 12px 2px; display: flex; flex-direction: column; justify-content: center; gap: 4px; border-bottom: 1px solid var(--line-soft); color: var(--ink); transition: color .2s var(--ease), padding .2s var(--ease); }
.glossary-related-terms a:hover { padding-left: 6px; color: var(--blue); }
.glossary-related-terms span { font-size: 14px; line-height: 1.3; font-weight: 800; overflow-wrap: anywhere; }
.glossary-related-terms small { color: var(--muted); font-size: 10px; line-height: 1.35; font-weight: 700; }
.glossary-related-terms p { margin: 2px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; }
.glossary-faq { padding-bottom: 86px; }
.is-progressive-hidden { display: none !important; }
.glossary-more { display: flex; justify-content: center; margin-top: 22px; }
.glossary-more .btn { min-width: 180px; }
.related-list { display: grid; gap: 0; margin-top: 12px; border-top: 1px solid var(--line-soft); }
.related-list a { display: flex; align-items: center; justify-content: space-between; min-height: 50px; padding: 0 4px; border: 0; border-bottom: 1px solid var(--line-soft); border-radius: 0; background: transparent; font-weight: 700; transition: color .2s var(--ease), padding .2s var(--ease); }
.related-list a:hover { padding-left: 8px; color: var(--blue-2); }
.related-list a::after { content: "->"; color: var(--blue); }
.restriction-list { display: flex; flex-wrap: wrap; gap: 8px; }
.restriction-list span { display: inline-flex; align-items: center; min-height: 32px; padding: 0 10px; border: 1px solid var(--line-soft); border-radius: 7px; background: rgb(255 255 255 / 78%); color: var(--ink-2); font-size: 12px; font-weight: 700; }
.search-input { width: 100%; min-height: 48px; border: 1px solid var(--line); border-radius: 9px; padding: 0 14px; background: #fff; color: var(--ink); box-shadow: inset 0 1px 0 rgb(255 255 255 / 82%); }
.image-card { position: relative; display: flex; min-height: 270px; overflow: hidden; border-radius: 16px; background: #111821; color: #fff; isolation: isolate; box-shadow: 0 18px 44px rgb(20 30 46 / 13%); transition: transform .48s var(--ease), box-shadow .48s var(--ease); }
.image-card:hover { transform: translateY(-5px); box-shadow: 0 34px 86px rgb(20 30 46 / 20%); }
.image-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.96) contrast(1.02); transform: scale(1.02); transition: transform .7s var(--ease); z-index: -2; }
.image-card:hover img { transform: scale(1.06); }
.image-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgb(4 8 14 / 0%) 0%, rgb(4 8 14 / 48%) 42%, rgb(4 8 14 / 92%) 100%); z-index: -1; }
.image-card-content { align-self: end; display: grid; gap: 8px; width: 100%; padding: 18px; }
.image-card h3 { color: #fff; text-shadow: 0 2px 22px rgb(0 0 0 / 26%); }
.image-card p { margin: 0; color: rgb(255 255 255 / 78%); font-size: 12px; line-height: 1.35; font-weight: 600; }
.image-card .tag { width: max-content; color: rgb(255 255 255 / 72%); }
.image-card.tall { min-height: 440px; }
.image-card.wide { min-height: 360px; grid-column: span 2; }
.tag { display: inline; padding: 0; border: 0; background: transparent; color: var(--ink-2); font-family: "Geist Mono", monospace; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.tag.blue { color: var(--blue); }
.tag.green { color: var(--green); }
.tag.amber { color: var(--amber); }
.tag.red { color: var(--red); }
.link { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-size: 13px; font-weight: 800; white-space: nowrap; }
.link .arrow { display: inline-block; width: auto; height: auto; border-radius: 0; background: none; line-height: 1; }
.link:hover .arrow { transform: translateX(2px); }
html[dir="rtl"] .link:hover .arrow { transform: translateX(-2px) scaleX(-1); }
.link:hover { color: var(--blue-2); }
.table-wrap { position: relative; width: 100%; overflow: auto; overscroll-behavior-x: contain; }
.table-wrap::after { content: ""; position: sticky; right: 0; display: block; width: 28px; height: 0; margin-left: auto; pointer-events: none; box-shadow: -24px 0 30px rgb(249 251 253 / 90%); }
table { width: 100%; min-width: 1240px; border-collapse: separate; border-spacing: 0; }
caption { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.home-table { min-width: 0; }
.promo-table { min-width: 1120px; }
thead { background: rgb(247 249 252 / 90%); }
th, td { padding: 13px 14px; border-bottom: 1px solid var(--line-soft); text-align: left; vertical-align: middle; }
th { position: sticky; top: 0; z-index: 2; color: var(--muted); background: #f8fafc; font-family: Geist, Manrope, system-ui, sans-serif; font-size: 10.5px; font-weight: 700; text-transform: none; letter-spacing: 0; }
td { font-size: 13px; font-weight: 600; background: #fff; }
tbody tr { transition: background .22s var(--ease), transform .22s var(--ease); }
tbody tr:hover td { background: #f7fbff; }
.rank-table td:first-child, .rank-table th:first-child { width: 62px; color: var(--ink); font-family: "Geist Mono", monospace; font-weight: 800; }
.rank-table td:nth-child(2), .rank-table th:nth-child(2) { position: sticky; left: 0; z-index: 3; box-shadow: 1px 0 0 var(--line-soft); }
.rank-table td:nth-child(2) { background: rgb(255 255 255 / 96%); }
.rank-table th:nth-child(2) { background: rgb(247 249 252 / 98%); }
.reason-cell { min-width: 260px; color: var(--ink-2); line-height: 1.35; font-weight: 700; }
.reason-cell small { display: block; margin-top: 5px; color: var(--muted); font-size: 11px; line-height: 1.35; }
.broker-cell { display: grid; grid-template-columns: 44px minmax(0,1fr); gap: 12px; align-items: center; min-width: 230px; }
.broker-cell strong { font-size: 14px; font-weight: 800; }
.broker-cell small { color: var(--muted); font-size: 12px; font-weight: 600; line-height: 1.3; }
.actions-cell { width: 210px; }
.action-stack { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.action-stack > .btn,
.action-stack > .affiliate-action { flex: 1 1 0; }
.action-stack .btn { min-width: 86px; padding-inline: 10px; }
.affiliate-action { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; min-width: 0; }
.affiliate-action > .btn { width: 100%; }
.affiliate-action > small { color: var(--muted); font-size: 12px; font-weight: 700; line-height: 1.2; letter-spacing: 0; }
.home-details-cell .affiliate-action > small { font-size: 9px; white-space: nowrap; }
.hero-actions .affiliate-action { align-items: flex-start; }
.promotion-actions .affiliate-action { width: 100%; }
.broker-symbol { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); box-shadow: var(--shadow-xs); overflow: hidden; }
.broker-symbol img { width: 29px; height: 29px; object-fit: contain; display: block; }
.broker-symbol.empty::before { content: ""; width: 18px; height: 18px; border: 5px solid rgb(15 92 255 / 74%); border-radius: 50%; box-shadow: 11px 0 0 -6px rgb(8 127 91 / 72%); }
.broker-cell strong,
.home-rank-broker strong,
.home-mobile-broker strong,
.mobile-rank-name strong,
.ledger-title strong,
.platform-preview-caption span:first-child { direction: ltr; unicode-bidi: isolate; }
.score { display: inline-grid; gap: 1px; color: var(--ink); font-family: "Geist Mono", monospace; font-size: 17px; font-weight: 800; }
.score::after { content: "/100"; color: var(--muted-2); font-size: 10px; font-weight: 700; }
.mobile-rank-list { display: none; }
.home-rank-table-wrap { overflow: visible; }
.home-rank-table-wrap::after { display: none; }
.home-rank-table {
  min-width: 0;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  background: rgb(255 255 255 / 92%);
}
.home-rank-table th,
.home-rank-table td {
  padding: 11px 9px;
  font-size: 12px;
  line-height: 1.32;
}
.home-rank-table th {
  position: static;
  color: #5f6878;
  background: rgb(247 249 252 / 94%);
  font-size: 9px;
  letter-spacing: .055em;
}
.home-rank-table td {
  background: rgb(255 255 255 / 96%);
  font-weight: 600;
}
.home-rank-table .rank-cell {
  color: var(--ink);
  font-family: "Geist Mono", monospace;
  font-size: 15px;
  font-weight: 700;
}
.home-rank-table .metric-primary,
.home-rank-table .metric-note { white-space: normal; overflow: visible; text-overflow: clip; overflow-wrap: anywhere; }
.home-rank-broker {
  display: grid;
  grid-template-columns: 38px minmax(0,1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
}
.home-rank-broker .broker-symbol {
  width: 38px;
  height: 38px;
  border-radius: 9px;
}
.home-rank-broker .broker-symbol img { width: 26px; height: 26px; }
.home-rank-broker strong {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.05;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.home-rank-broker:hover strong { color: var(--blue); }
.home-details-cell { display: grid; gap: 4px; align-items: center; }
.home-review-link,
.home-visit-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 28px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  background: var(--surface);
  color: var(--ink-2);
  font-size: 10.5px;
  line-height: 1.2;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.home-visit-link {
  border: 1px solid rgb(15 92 255 / 24%);
  background:
    linear-gradient(180deg, rgb(255 255 255 / 74%), rgb(255 255 255 / 28%)),
    linear-gradient(180deg, rgb(15 92 255 / 13%), rgb(15 92 255 / 5%));
  color: #0b55e8;
  font-weight: 800;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 80%),
    0 7px 18px rgb(15 92 255 / 7%);
}
.home-review-link:hover { border-color: rgb(15 92 255 / 22%); background: var(--blue-soft); color: var(--blue-2); }
.home-visit-link:hover {
  border-color: rgb(15 92 255 / 28%);
  background:
    linear-gradient(180deg, rgb(255 255 255 / 80%), rgb(255 255 255 / 34%)),
    linear-gradient(180deg, rgb(15 92 255 / 17%), rgb(15 92 255 / 8%));
  color: #083fbe;
}
.metric-primary {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-size: 12.2px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.metric-note {
  display: block;
  overflow: hidden;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.price-market { color: var(--green); }
.price-mixed { color: var(--amber); }
.price-synthetic { color: #6d5bd0; }
.home-rank-mobile { display: none; }
.home-rank-mobile .mobile-rank-card { background: #fff; }
.home-mobile-head {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 10px;
  align-items: center;
}
.home-mobile-broker { min-width: 0; }
.home-mobile-broker strong { font-size: 15px; font-weight: 700; }
.mobile-broker-identity {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
}
.mobile-broker-identity .broker-symbol { width: 36px; height: 36px; }
.mobile-broker-identity .broker-symbol img { width: 24px; height: 24px; }
.mobile-rank-copy { display: grid; gap: 2px; min-width: 0; }
.home-mobile-max {
  display: grid;
  gap: 2px;
  justify-items: end;
  color: var(--blue);
  font-family: "Geist Mono", monospace;
  font-size: 15px;
  font-weight: 700;
}
.home-mobile-max span {
  color: var(--muted);
  font-family: Geist, Manrope, system-ui, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.mobile-rank-card {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 16px;
  border-top: 1px solid var(--line-soft);
  background: #fff;
}
.mobile-rank-card:first-child { border-top: 0; }
.mobile-rank-top { display: grid; grid-template-columns: 34px 1fr auto; gap: 10px; align-items: center; }
.mobile-rank-top.topic-rank-top { grid-template-columns: 34px minmax(0,1fr); }
.topic-rank-top .mobile-rank-name { max-width: calc(100vw - 90px); }
.mobile-rank-number { font-family: "Geist Mono", monospace; font-size: 13px; font-weight: 800; color: var(--muted); }
.mobile-rank-name { min-width: 0; }
.mobile-rank-name strong { font-size: 15px; font-weight: 800; }
.mobile-rank-name small { color: var(--muted); font-size: 12px; line-height: 1.25; font-weight: 600; overflow-wrap: anywhere; }
.topic-rank-top .mobile-rank-name small {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mobile-rank-facts { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
.mobile-rank-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; gap: 8px; }
.mobile-rank-actions > :is(.btn, .affiliate-action) { min-width: 0; }
.mobile-rank-actions > .affiliate-action,
.mobile-rank-actions > .affiliate-action > .btn { width: 100%; height: 100%; }
.mobile-rank-actions .btn,
.home-details-cell :is(.home-review-link, .home-visit-link) { white-space: nowrap; }
.mobile-review-cta { display: none; }
.broker-shot { position: relative; overflow: hidden; border-radius: var(--radius-md); background: var(--surface-muted); aspect-ratio: 16/9; border: 1px solid var(--line); }
.broker-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; filter: saturate(.95) contrast(.98); }
.broker-shot::after { content: ""; position: absolute; inset: auto 0 0; height: 40%; background: linear-gradient(180deg,transparent,rgb(8 11 16 / 34%)); pointer-events: none; }
.broker-card, .strategy-card-lite { display: grid; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface-raised); box-shadow: var(--shadow-xs); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.broker-card:hover, .strategy-card-lite:hover { transform: translateY(-2px); border-color: rgb(23 92 211 / 22%); box-shadow: var(--shadow); }
.broker-card:nth-child(4n + 1) { transform-origin: 30% 0; }
.broker-card:nth-child(4n + 2) .broker-card-media > img { object-position: center top; }
.broker-card:nth-child(4n + 3) .broker-card-media { aspect-ratio: 1.72; }
.broker-card:nth-child(4n + 4) .broker-card-media > img { object-position: right top; }
.broker-card-media, .strategy-card-media { position: relative; display: block; aspect-ratio: 16/9; overflow: hidden; background: #eef2f7; }
.broker-card-media > img, .strategy-card-media > img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; filter: saturate(.96) contrast(.99); transform: scale(1.01); transition: transform .7s var(--ease); }
.broker-card:hover .broker-card-media > img, .strategy-card-lite:hover .strategy-card-media > img { transform: scale(1.035); }
.broker-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 24%, rgb(3 7 13 / 74%) 100%); pointer-events: none; }
.broker-card-title { position: absolute; left: 13px; right: 13px; bottom: 13px; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 12px; color: #fff; }
.broker-card-title .broker-cell { min-width: 0; grid-template-columns: 40px minmax(0,1fr); }
.broker-card-title .broker-symbol { flex: 0 0 40px; width: 40px; height: 40px; border-color: rgb(255 255 255 / 38%); background: rgb(255 255 255 / 92%); }
.broker-card-title .broker-symbol img { width: 28px; height: 28px; object-fit: contain; transform: none; filter: none; transition: none; }
.broker-card-title .broker-cell small { color: rgb(255 255 255 / 70%); }
.broker-card-title .score { color: #fff; text-align: right; }
.broker-card-title .score::after { color: rgb(255 255 255 / 58%); }
.broker-card-body, .strategy-card-body { display: grid; gap: 12px; padding: 15px; }
.broker-card-verdict { margin: 0; color: var(--ink-2); font-size: 13px; line-height: 1.42; font-weight: 600; }
.broker-card-verdict { min-height: 56px; }
html[dir="rtl"] .broker-card-verdict { padding-bottom: 4px; }
.broker-card-meta { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
.broker-card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 2px; }
.broker-example-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.broker-example-card { overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: rgb(255 255 255 / 92%); box-shadow: 0 14px 40px rgb(16 24 40 / 8%); }
.broker-example-media { position: relative; aspect-ratio: 16 / 8.8; overflow: hidden; background: #eef2f7; }
.broker-example-media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.broker-example-rank { position: absolute; top: 10px; right: 10px; display: inline-grid; place-items: center; min-width: 34px; height: 30px; padding: 0 8px; border: 1px solid rgb(255 255 255 / 70%); border-radius: 7px; background: rgb(7 15 27 / 78%); color: #fff; font-size: 12px; font-weight: 800; backdrop-filter: blur(12px); }
.broker-example-body { display: grid; gap: 12px; padding: 16px; }
.broker-example-body p { margin: 0; color: var(--ink-2); font-size: 13px; line-height: 1.52; }
.broker-example-limit { padding-top: 10px; border-top: 1px solid var(--line); }
.strategy-card-lite h3 { min-height: 44px; }
.strategy-card-lite p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.43; font-weight: 600; }
.mini-field { padding: 10px; border: 1px solid var(--line-soft); border-radius: 9px; background: #fbfcfe; }
.mini-field span { display: block; color: var(--muted); font-size: 11px; font-weight: 700; }
.mini-field strong, .card h3 { overflow-wrap: anywhere; }
.mini-field strong { display: block; margin-top: 6px; font-size: 14px; }
.ops-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 12px; }
.ops-card { display: grid; gap: 8px; padding: 18px; border: 1px solid var(--line-soft); border-radius: 12px; background: linear-gradient(180deg, rgb(255 255 255 / 90%), rgb(248 251 255 / 76%)); box-shadow: inset 0 1px 0 rgb(255 255 255 / 80%); }
.ops-card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ops-card time { color: var(--muted); font-family: "Geist Mono", monospace; font-size: 11px; font-weight: 700; }
.ops-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; font-weight: 600; }
.ops-card a { color: var(--blue); font-size: 12px; font-weight: 800; }
.promo-status-tabs {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 1px;
  padding: 6px;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 76%), rgb(240 247 255 / 54%)),
    rgb(255 255 255 / 58%);
  box-shadow: 0 18px 60px rgb(24 37 64 / 10%), inset 0 1px 0 rgb(255 255 255 / 80%);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}
.promo-status-tab {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 10px;
  min-width: 0;
  min-height: 76px;
  padding: 15px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  color: var(--ink);
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background .24s var(--ease), border-color .24s var(--ease), transform .24s var(--ease), box-shadow .24s var(--ease);
}
.promo-status-tab > * { min-width: 0; }
.promo-status-tab:hover {
  transform: translateY(-1px);
  background: rgb(255 255 255 / 70%);
  border-color: rgb(15 92 255 / 14%);
}
.promo-status-tab.is-active {
  background: #fff;
  border-color: rgb(15 92 255 / 22%);
  box-shadow: 0 12px 34px rgb(15 92 255 / 10%), inset 0 1px 0 rgb(255 255 255 / 92%);
}
.promo-status-tab.is-active::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 3px;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(90deg, #0f5cff, #57a6ff);
}
.promo-status-tab span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.promo-status-tab strong {
  display: block;
  margin-top: 7px;
  font-size: 30px;
  line-height: .95;
  letter-spacing: 0;
}
.promo-status-tab small {
  align-self: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-align: right;
}
.promotion-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.promotion-card { display: grid; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface-raised); box-shadow: var(--shadow-xs); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.promotion-card:hover { transform: translateY(-2px); border-color: rgb(23 92 211 / 22%); box-shadow: var(--shadow); }
.promotion-media { position: relative; min-height: 190px; overflow: hidden; background: var(--surface-muted); }
.promotion-media > img { width: 100%; height: 100%; min-height: 190px; object-fit: cover; object-position: top center; display: block; filter: saturate(.96) contrast(1.02); }
.promotion-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgb(4 9 17 / 0%) 30%, rgb(4 9 17 / 74%) 100%); }
.promotion-brand { position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 12px; color: #fff; }
.promotion-brand .broker-symbol { width: 40px; height: 40px; background: rgb(255 255 255 / 94%); border-color: rgb(255 255 255 / 44%); }
.promotion-brand .broker-symbol img { width: 28px; height: 28px; object-fit: contain; transform: none; filter: none; transition: none; }
.promotion-brand strong { display: block; font-size: 14px; }
.promotion-brand small { display: block; margin-top: 2px; color: rgb(255 255 255 / 72%); font-size: 11px; font-weight: 700; }
.promotion-body { display: grid; gap: 12px; padding: 16px; }
.promotion-body h3 { font-size: 18px; line-height: 1.3; }
.promotion-body p { margin: 0; color: var(--ink-2); font-size: 13px; line-height: 1.42; font-weight: 600; }
.promotion-meta { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
.promotion-actions { display: grid; grid-template-columns: 1fr; gap: 8px; }
.broker-metric-section { margin-top: 34px; }
.decision-summary-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 90%);
  box-shadow: var(--shadow-sm);
}
.decision-summary-item {
  min-width: 0;
  min-height: 98px;
  padding: 17px 16px;
  border-left: 1px solid var(--line-soft);
  border-top: 1px solid var(--line-soft);
}
.decision-summary-item:nth-child(5n + 1) { border-left: 0; }
.decision-summary-item:nth-child(-n + 5) { border-top: 0; }
.decision-summary-item span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.decision-summary-item strong {
  display: block;
  margin-top: 9px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 760;
  overflow-wrap: anywhere;
}
.metric-detail-panel { display: grid; gap: 18px; }
.metric-detail-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}
.metric-lead-title {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.metric-lead-visual {
  position: relative;
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgb(15 23 42 / 10%);
  background: #edf4ff;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 78%), 0 16px 30px rgb(15 23 42 / 10%);
}
.metric-lead-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.96) contrast(1.04);
}
.metric-lead-visual .metric-symbol {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: rgb(255 255 255 / 92%);
}
.metric-detail-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.metric-detail-lead strong {
  max-width: 18ch;
  color: var(--ink);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.14;
  letter-spacing: 0;
  text-align: right;
  overflow-wrap: anywhere;
}
.metric-facts { margin-top: 0; }
.broker-metric-section .metric-facts { gap: 10px; }
.broker-metric-section .metric-fact {
  padding: 12px;
  border-radius: 9px;
  background: #fbfcfe;
}
.broker-metric-section .metric-fact span {
  font-size: 10.5px;
  line-height: 1.24;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.broker-metric-section .metric-fact strong {
  margin-top: 6px;
  font-size: 13.5px;
  line-height: 1.25;
  font-weight: 800;
}
.broker-metric-section .metric-fact p {
  margin: 7px 0 0;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}
.metric-copy-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.metric-copy-card {
  display: grid;
  gap: 7px;
  padding: 15px;
  border: 1px solid var(--line-soft);
  border-radius: 11px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.metric-copy-card--why { border-left: 3px solid rgb(15 92 255 / 74%); }
.metric-copy-card--verify { border-left: 3px solid rgb(245 158 11 / 72%); }
.metric-copy-card .metric-symbol { width: 22px; height: 22px; border-radius: 7px; margin-bottom: 2px; }
.metric-copy-card > span:not(.metric-symbol) {
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.metric-copy-card p { margin: 0; color: var(--ink-2); font-size: 13px; line-height: 1.48; font-weight: 600; }
.metric-detail-content { display: grid; gap: 16px; }
.metric-detail-content.has-evidence-visual { grid-template-columns: minmax(0, 1.12fr) minmax(280px, .88fr); align-items: start; }
.metric-detail-copy { min-width: 0; display: grid; gap: 16px; }
.review-detail-block {
  display: grid;
  gap: 16px;
  margin-top: 4px;
  padding: 20px 0 2px;
  border-top: 1px solid var(--line);
}
.review-detail-heading { display: grid; gap: 5px; }
.review-detail-heading h3 { font-size: 20px; }
.review-detail-heading p {
  max-width: 78ch;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
}
.review-detail-columns,
.review-theme-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.review-theme-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.review-detail-columns > div,
.review-theme-columns > div {
  min-width: 0;
  padding: 16px;
  border-left: 1px solid var(--line-soft);
}
.review-detail-columns > div:first-child,
.review-theme-columns > div:first-child { border-left: 0; }
.review-detail-block h4 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
}
.detail-list { margin-top: 0; }
.detail-list li { color: var(--ink-2); font-size: 12.5px; line-height: 1.45; }
.review-detail-callout {
  padding: 15px 16px;
  border-left: 3px solid var(--blue);
  background: linear-gradient(90deg, rgb(15 92 255 / 6%), transparent 72%);
}
.detail-table-wrap { border: 1px solid var(--line-soft); border-radius: var(--radius-sm); background: #fff; }
.detail-table { min-width: 920px; }
.detail-table th { padding: 11px 12px; background: #f3f6fa; font-size: 9px; }
.detail-table td { padding: 12px; vertical-align: top; font-size: 11.5px; line-height: 1.4; }
.detail-table td:first-child { min-width: 110px; }
.legal-recourse-detail { margin-top: 20px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); background: rgb(255 255 255 / 48%); }
.faq-item summary {
  position: relative;
  min-height: 60px;
  padding: 18px 48px 18px 4px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 760;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  font-size: 18px;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item > div { padding: 0 48px 20px 4px; }
.faq-item p { max-width: 82ch; margin: 0; color: var(--ink-2); font-size: 13.5px; line-height: 1.58; font-weight: 600; }
.alternative-list { border-top: 1px solid var(--line); }
.alternative-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
}
.alternative-row .broker-symbol { width: 44px; height: 44px; }
.alternative-row h3 { font-size: 16px; }
.alternative-row p { margin: 5px 0 0; color: var(--muted); font-size: 12.5px; line-height: 1.42; font-weight: 600; }
.alternative-actions { display: flex; gap: 8px; }
.metric-evidence-visual { min-width: 0; margin: 0; overflow: hidden; border: 1px solid var(--line-soft); border-radius: 10px; background: #f3f6fa; }
.metric-evidence-visual > div { aspect-ratio: 16 / 10; padding: 10px; display: grid; place-items: center; }
.metric-evidence-visual img { width: 100%; height: 100%; min-width: 0; display: block; }
.metric-evidence-visual figcaption { padding: 10px 12px 12px; border-top: 1px solid var(--line-soft); background: rgb(255 255 255 / 86%); color: var(--muted); font-size: 11px; line-height: 1.42; font-weight: 650; }
.metric-platform-stack { display: grid; gap: 16px; }
.platform-preview-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .75fr);
  gap: 16px;
  align-items: stretch;
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(240,246,255,.82));
  box-shadow: 0 18px 44px rgba(15, 23, 42, .08);
}
.platform-preview-media {
  position: relative;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 12px;
  background:
    radial-gradient(circle at 18% 18%, rgba(15, 92, 255, .10), transparent 34%),
    linear-gradient(135deg, #eef4f7, #f8fbff 56%, #dfe7ea);
  border: 1px solid rgba(15, 23, 42, .12);
}
.platform-preview-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  display: block;
  padding: 8px;
}
.platform-preview-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(3, 7, 18, 0) 62%, rgba(3, 7, 18, .34));
}
.platform-preview-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 13px;
  z-index: 1;
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: end;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.platform-preview-copy { display: grid; align-content: center; gap: 13px; padding: 10px 8px; }
.platform-preview-copy h3 { font-size: clamp(22px, 2.4vw, 32px); line-height: 1.18; letter-spacing: 0; }
.platform-preview-copy p { margin: 0; color: var(--ink-2); font-size: 13px; line-height: 1.5; font-weight: 600; }
.platform-preview-points { display: grid; gap: 8px; }
.platform-preview-points span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 11px;
  border-radius: 10px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.platform-preview-points strong {
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  text-align: right;
}
.metric-workflow-strip { margin-top: 0; }
.metric-workflow-strip .snapshot-card { min-height: 220px; border-radius: 12px; }
.metric-workflow-strip .snapshot-card-body h3 { font-size: 15px; line-height: 1.22; }
.metric-workflow-strip .snapshot-card-body p { font-size: 11.5px; line-height: 1.36; }
.promotion-summary-compact { display: grid; gap: 14px; }
.promotion-compact-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.promotion-compact-card {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 13px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.promotion-compact-card h3 { font-size: 16px; line-height: 1.3; }
.promotion-compact-card p { margin: 0; color: var(--ink-2); font-size: 12px; line-height: 1.4; font-weight: 600; }
.metric-note-line { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.4; font-weight: 700; }
.mobile-ledger { display: none; }
.ledger-row {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 15px;
  border-top: 1px solid var(--line-soft);
  background: rgb(255 255 255 / 80%);
}
.ledger-row:first-child { border-top: 0; }
.ledger-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.ledger-title { display: grid; gap: 3px; min-width: 0; }
.ledger-title strong { font-size: 15px; line-height: 1.3; font-weight: 800; }
.ledger-title small { color: var(--muted); font-size: 12px; line-height: 1.28; font-weight: 600; }
.ledger-fields { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
.ledger-note { margin: 0; color: var(--ink-2); font-size: 13px; line-height: 1.38; font-weight: 600; }
.split { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 20px; align-items: start; }
.compare-matrix td:first-child, .compare-matrix th:first-child { position: sticky; left: 0; background: #fff; z-index: 4; }
.footer { margin-top: 96px; padding: 34px 0 44px; border-top: 1px solid var(--line); color: var(--muted); }
.footer-main { display: grid; gap: 18px; }
.footer-brandline { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 16px; color: var(--ink); }
.footer-brandline strong { font-size: 14px; font-weight: 800; }
.footer-brandline span { color: var(--muted); font-size: 13px; font-weight: 600; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 18px; padding: 14px 0; border-top: 1px solid rgb(7 10 15 / 7%); border-bottom: 1px solid rgb(7 10 15 / 7%); }
.footer-links a { color: var(--ink-2); font-size: 12px; font-weight: 700; }
.footer-links a:hover { color: var(--blue); }
.footer-notice { max-width: 90ch; color: #5f6876; font-size: 11px; line-height: 1.56; }
.footer-notice p { margin: 0 0 9px; }
.footer-notice strong { color: var(--ink-2); }
.disclosure { margin-top: 22px; color: #5f6876; font-size: 12px; line-height: 1.5; }
.mobile-menu-backdrop { display: none; }

/* Full right-to-left layout for Arabic and Urdu. */
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .article-kicker,
html[dir="rtl"] .metric-detail-label,
html[dir="rtl"] .tag,
html[dir="rtl"] .nav,
html[dir="rtl"] .subnav,
html[dir="rtl"] .page-anchor-nav {
  font-family: "Noto Sans Arabic", "Segoe UI", "Nirmala UI", Arial, sans-serif;
}
html[dir="rtl"] .skip-link { left: auto; right: 16px; }
html[dir="rtl"] .nav-actions { justify-content: flex-start; }
html[dir="rtl"] .language-grid a { padding: 7px 6px 7px 34px; }
html[dir="rtl"] .language-search input,
html[dir="rtl"] .search-input,
html[dir="rtl"] .filter-select { text-align: right; }
html[dir="rtl"] .filter-select { padding: 0 11px 0 34px; }
html[dir="rtl"] .intro-aside { justify-self: start; }
html[dir="rtl"] .feature-strip span {
  padding: 0 0 0 11px;
  margin-right: 0;
  margin-left: 10px;
  border-right: 0;
  border-left: 1px solid var(--line);
}
html[dir="rtl"] .feature-strip span:last-child { margin-left: 0; padding-left: 0; border-left: 0; }
html[dir="rtl"] .risk-note { padding: 0 11px 0 0; border-left: 0; border-right: 2px solid rgb(187 35 24 / 48%); }
html[dir="rtl"] .notice-strip { border-left-width: 1px; border-right: 3px solid var(--blue); }
html[dir="rtl"] .subnav-label { padding-left: 0; padding-right: 10px; }
html[dir="rtl"] .subnav-links,
html[dir="rtl"] .page-anchor-nav,
html[dir="rtl"] .footer-links,
html[dir="rtl"] .text-link-list { direction: rtl; }
html[dir="rtl"] .section-head,
html[dir="rtl"] .ranking-stage-header,
html[dir="rtl"] .source-item,
html[dir="rtl"] .content-update,
html[dir="rtl"] .comparison-answer { direction: rtl; }
html[dir="rtl"] .plain-list li { padding-left: 0; padding-right: 16px; }
html[dir="rtl"] .plain-list li::before { left: auto; right: 0; }
html[dir="rtl"] .text-link-list a::after { content: "←"; margin-left: 0; margin-right: 8px; }
html[dir="rtl"] .related-list a:hover { padding-left: 4px; padding-right: 8px; }
html[dir="rtl"] .related-list a::after { content: "←"; }
html[dir="rtl"] .glossary-back-link::before { content: "→"; }
html[dir="rtl"] .glossary-related-terms a:hover { padding-left: 2px; padding-right: 6px; }
html[dir="rtl"] th,
html[dir="rtl"] td,
html[dir="rtl"] .promo-status-tab,
html[dir="rtl"] .platform-preview-points strong,
html[dir="rtl"] .metric-detail-lead strong { text-align: right; }
html[dir="rtl"] table,
html[dir="rtl"] .table-wrap { direction: rtl; }
html[dir="rtl"] .table-wrap::after {
  left: 0;
  right: auto;
  margin-left: 0;
  margin-right: auto;
  box-shadow: 24px 0 30px rgb(249 251 253 / 90%);
}
html[dir="rtl"] .rank-table td:nth-child(2),
html[dir="rtl"] .rank-table th:nth-child(2) {
  left: auto;
  right: 0;
  box-shadow: -1px 0 0 var(--line-soft);
}
html[dir="rtl"] .broker-cell,
html[dir="rtl"] .home-rank-broker,
html[dir="rtl"] .mobile-rank-top,
html[dir="rtl"] .home-mobile-head { direction: rtl; }
html[dir="rtl"] .broker-cell strong,
html[dir="rtl"] .home-rank-broker strong,
html[dir="rtl"] .mobile-rank-name strong { text-align: right; }
html[dir="rtl"] .action-stack,
html[dir="rtl"] .broker-card-actions,
html[dir="rtl"] .mobile-rank-actions,
html[dir="rtl"] .promotion-actions { direction: rtl; }
html[dir="rtl"] .broker-card-title .score { text-align: left; }
html[dir="rtl"] .broker-example-rank { left: 10px; right: auto; }
html[dir="rtl"] .promotion-brand,
html[dir="rtl"] .broker-card-title,
html[dir="rtl"] .promo-status-tab,
html[dir="rtl"] .promo-status-tabs { direction: rtl; }
html[dir="rtl"] .promo-status-tab small { text-align: left; }
html[dir="rtl"] .metric-lead-visual .metric-symbol { left: 6px; right: auto; }
html[dir="rtl"] .metric-copy-card--why { border-left-width: 1px; border-right: 3px solid rgb(15 92 255 / 74%); }
html[dir="rtl"] .metric-copy-card--verify { border-left-width: 1px; border-right: 3px solid rgb(245 158 11 / 72%); }
html[dir="rtl"] .decision-summary-item { border-left: 0; border-right: 1px solid var(--line-soft); }
html[dir="rtl"] .decision-summary-item:nth-child(5n + 1) { border-right: 0; }
html[dir="rtl"] .review-detail-columns > div,
html[dir="rtl"] .review-theme-columns > div { border-left: 0; border-right: 1px solid var(--line-soft); }
html[dir="rtl"] .review-detail-columns > div:first-child,
html[dir="rtl"] .review-theme-columns > div:first-child { border-right: 0; }
html[dir="rtl"] .review-detail-callout {
  border-left: 0;
  border-right: 3px solid var(--blue);
  background: linear-gradient(270deg, rgb(15 92 255 / 6%), transparent 72%);
}
html[dir="rtl"] .faq-item summary { padding-left: 48px; padding-right: 4px; }
html[dir="rtl"] .faq-item summary::after { left: 8px; right: auto; }
html[dir="rtl"] .faq-item > div { padding-left: 48px; padding-right: 4px; }
html[dir="rtl"] .alternative-row,
html[dir="rtl"] .alternative-actions { direction: rtl; }
html[dir="rtl"] .platform-preview-caption,
html[dir="rtl"] .snapshot-card-body,
html[dir="rtl"] .media-caption,
html[dir="rtl"] .research-overlay { text-align: right; }
html[dir="rtl"] .footer-notice { margin-left: auto; margin-right: 0; }
html[dir="rtl"] :where(.eyebrow, .article-kicker, .tag, th, .decision-summary-item span, .metric-detail-label, .metric-fact span, .metric-copy-card > span, .platform-preview-points span) {
  font-family: "Noto Sans Arabic", "Segoe UI", "Nirmala UI", Arial, sans-serif;
  letter-spacing: 0;
  text-transform: none;
}
html:is(:lang(ko), :lang(ja), :lang(zh-CN), :lang(zh-TW)) :where(.article-panel p, .story-copy p, .comparison-answer p, .direct-answer p, .footer-notice) { max-width: 46em; }

.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 1120px) {
  .glossary-related-grid { grid-template-columns: 1fr; }
  .topbar { grid-template-columns: 1fr auto; }
  .nav { position: absolute; top: calc(100% + 8px); left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; padding: 8px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow); }
  body.menu-open .nav { display: flex; }
  .nav a { justify-content: flex-start; min-height: 44px; padding: 0 14px; }
  .nav-actions .btn { display: none; }
  .language-switcher > summary { min-width: 112px; }
  .menu-button { display: grid; }
  main { padding-top: 28px; }
  .hero, .split, .home-intro, .ranking-hero, .tool-hero { grid-template-columns: 1fr; }
  .editorial-block { grid-template-columns: 1fr; }
  .story-rail, .comparison-lens { grid-template-columns: 1fr; }
  .intro-aside { justify-self: start; max-width: 620px; }
  .hero { padding-top: 34px; }
  .home-rank-table-wrap,
  .rank-table-wrap { display: none; }
  .home-rank-mobile,
  .mobile-rank-list { display: grid; }
  .home-rank-mobile,
  .mobile-rank-list { background: transparent; }
  .filter-panel { grid-template-columns: 1fr; align-items: stretch; }
  .filter-tools {
    grid-column: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .filter-status { align-self: center; }
  .mobile-rank-card {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 250px);
    gap: 10px 16px;
    padding: 14px 16px;
  }
  .mobile-rank-top,
  .home-mobile-head { grid-column: 1 / -1; }
  .mobile-rank-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 9px 0;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
  }
  .home-rank-mobile .mobile-rank-facts { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .mobile-rank-facts .mini-field {
    min-width: 0;
    padding: 0 10px;
    border: 0;
    border-left: 1px solid var(--line-soft);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .mobile-rank-facts .mini-field:first-child,
  .home-rank-mobile .mobile-rank-facts .mini-field:nth-child(4n + 1) { border-left: 0; }
  .home-rank-mobile .mobile-rank-facts .mini-field:nth-child(n + 5) {
    margin-top: 9px;
    padding-top: 9px;
    border-top: 1px solid var(--line-soft);
  }
  .topic-rank-top + .mobile-rank-facts .mobile-rank-reason strong { font-size: 12px; line-height: 1.35; }
  .mobile-rank-actions { align-self: end; }
  .mobile-rank-actions .btn { min-height: 40px; }
  .grid-4, .grid-3 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .promotion-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .broker-example-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .promotion-compact-grid { grid-template-columns: 1fr; }
  .snapshot-strip { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .glossary-list { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .decision-summary-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .decision-summary-item:nth-child(5n + 1),
  .decision-summary-item:nth-child(-n + 5) { border-left: 1px solid var(--line-soft); border-top: 1px solid var(--line-soft); }
  .decision-summary-item:nth-child(3n + 1) { border-left: 0; }
  .decision-summary-item:nth-child(-n + 3) { border-top: 0; }
  html[dir="rtl"] .mobile-rank-facts .mini-field {
    border-left: 0;
    border-right: 1px solid var(--line-soft);
  }
  html[dir="rtl"] .mobile-rank-facts .mini-field:first-child,
  html[dir="rtl"] .home-rank-mobile .mobile-rank-facts .mini-field:nth-child(4n + 1) { border-right: 0; }
  html[dir="rtl"] .decision-summary-item,
  html[dir="rtl"] .decision-summary-item:nth-child(5n + 1),
  html[dir="rtl"] .decision-summary-item:nth-child(-n + 5) { border-left: 0; border-right: 1px solid var(--line-soft); }
  html[dir="rtl"] .decision-summary-item:nth-child(3n + 1) { border-right: 0; }
}
@media (max-width: 720px) {
  .glossary-entry-hero h1 { max-width: 100%; }
  .glossary-context-media > img { min-height: 210px; }
  .glossary-related-terms { grid-template-columns: 1fr; }
  .shell { width: min(var(--max), calc(100% - 30px)); }
  main { padding-top: 8px; }
  .topbar { top: 8px; min-height: 54px; margin-top: 8px; padding: 5px 8px 5px 10px; }
  .brand { min-width: 0; gap: 8px; font-size: 14px; }
  .brand-mark { width: 34px; height: 34px; border-radius: var(--radius-sm); }
  .nav-actions { gap: 6px; }
  .language-switcher > summary { width: 44px; min-width: 44px; height: 44px; padding: 0; justify-content: center; }
  .language-switcher > summary .language-current,
  .language-switcher > summary .language-chevron { display: none; }
  .language-popover { position: fixed; top: 70px; left: 15px; right: 15px; width: auto; max-height: calc(100dvh - 86px); padding: 12px; }
  .language-grid { grid-template-columns: 1fr; gap: 0; }
  .language-grid a { min-height: 50px; }
  .menu-button { width: 44px; height: 44px; }
  h1 { font-size: 38px; line-height: 1.08; overflow-wrap: normal; word-break: normal; text-wrap: wrap; }
  .article-hero h1 { max-width: 100%; font-size: 32px; line-height: 1.16; overflow-wrap: anywhere; }
  .home-intro h1 { font-size: clamp(36px, 10vw, 42px); line-height: 1.06; max-width: 100%; padding-bottom: .1em; }
  .page-reviews .home-intro h1 { font-size: 38px; line-height: 1.14; }
  .ranking-hero, .tool-hero { padding: 10px 0 0; gap: 12px; }
  .ranking-hero h1, .tool-hero h1 { max-width: 100%; font-size: 30px; line-height: 1.16; }
  .lead { max-width: 100%; overflow-wrap: break-word; text-wrap: wrap; }
  h2 { font-size: 29px; }
  .hero { padding-top: 10px; padding-bottom: 28px; gap: 16px; }
  .home-hero { padding-top: 14px; }
  .home-intro { margin-bottom: 14px; gap: 14px; }
  .home-kicker { padding-left: 12px; }
  .subnav {
    top: 68px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    margin-top: 8px;
    margin-left: 15px;
    margin-right: 15px;
    padding: 7px;
    width: calc(100vw - 30px);
    max-width: calc(100vw - 30px);
  }
  .subnav-label { padding-left: 4px; }
  .subnav a { min-height: 44px; padding: 0 9px; }
  .subnav-links {
    display: flex;
    gap: 2px;
    justify-self: stretch;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 5px;
    scroll-padding-inline: 12px;
    scrollbar-width: thin;
    scrollbar-color: rgb(15 92 255 / 42%) transparent;
  }
  .subnav-links a { justify-content: center; white-space: nowrap; text-align: center; line-height: 1.24; padding: 5px 9px; }
  .subnav-links::-webkit-scrollbar { display: block; height: 4px; }
  .subnav-links::-webkit-scrollbar-thumb { border-radius: 4px; background: rgb(15 92 255 / 42%); }
  .metric-detail-lead { grid-template-columns: 1fr; align-items: start; gap: 8px; }
  .metric-detail-lead strong { max-width: none; font-size: 32px; text-align: left; }
  .metric-lead-visual { width: 48px; height: 48px; border-radius: 12px; }
  .metric-lead-visual .metric-symbol { width: 21px; height: 21px; }
  .metric-copy-grid { grid-template-columns: 1fr; }
  .metric-detail-content.has-evidence-visual { grid-template-columns: 1fr; }
  .broker-metric-section .metric-facts { grid-template-columns: 1fr; }
  .platform-preview-card { grid-template-columns: 1fr; padding: 10px; }
  .platform-preview-media { width: 100%; min-width: 0; min-height: 0; aspect-ratio: 16 / 10; }
  .platform-preview-media img { min-height: 0; }
  .platform-preview-copy { padding: 4px 2px 2px; }
  .platform-preview-points span { align-items: flex-start; flex-direction: column; gap: 4px; }
  .platform-preview-points strong { text-align: left; }
  .hero:not(.broker-hero):not(.article-hero) .visual-frame { display: none; }
  .article-hero .visual-frame { max-height: 220px; }
  .topic-ranking-hero .visual-frame { display: none; }
  .ranking-stage { border-radius: var(--radius); }
  .ranking-stage-header { align-items: flex-start; flex-direction: column; padding: 16px; }
  .ranking-stage-header h2 { font-size: 26px; }
  .lead { font-size: 15px; font-weight: 500; }
  .hero-actions { margin-top: 18px; gap: 8px; }
  .hero-actions .btn { width: 100%; min-height: 44px; }
  .hero-actions .btn.secondary { width: 100%; min-height: 44px; padding: 0 15px; border: 1px solid var(--line); background: var(--surface-raised); }
  .hero-actions .affiliate-action { width: 100%; align-items: stretch; }
  .hero-actions .affiliate-action .btn.secondary { width: 100%; min-height: 44px; padding: 0 15px; border: 1px solid var(--line); background: rgb(255 255 255 / 76%); }
  .btn,
  .search-input,
  .filter-select,
  .filter-reset,
  .page-anchor-nav a,
  .footer-links a,
  .home-mobile-broker,
  .mobile-rank-name { min-block-size: 44px; }
  .page-anchor-nav a,
  .footer-links a { min-inline-size: 44px; align-items: center; }
  .broker-hero .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
  .broker-hero .hero-actions > .affiliate-action { grid-column: 1 / -1; }
  .home-review-snapshots-cta { display: none; }
  .mobile-rank-actions .affiliate-action { width: 100%; }
  .feature-strip { flex-wrap: nowrap; overflow-x: auto; margin-top: 12px; }
  .info-bar, .grid-4, .grid-3, .grid-2, .field-grid, .glossary-list, .footer-grid, .review-grid, .info-table { grid-template-columns: 1fr; }
  .verdict-reason-strip { grid-template-columns: 1fr; }
  .promotion-grid { grid-template-columns: 1fr; }
  .broker-example-grid { grid-template-columns: 1fr; }
  .promotion-compact-grid { grid-template-columns: 1fr; }
  .promo-status-tabs { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 4px; padding: 4px; border-radius: var(--radius-md); }
  .promo-status-tab { grid-template-columns: 1fr; align-items: start; gap: 2px; min-height: 72px; padding: 10px 8px; border-radius: var(--radius-sm); }
  .promo-status-tab span { font-size: 9px; letter-spacing: .04em; }
  .promo-status-tab strong { margin-top: 3px; font-size: 24px; line-height: 1; }
  .promo-status-tab small { display: none; }
  .promotion-actions, .promotion-meta { grid-template-columns: 1fr; }
  .promotion-grid { grid-template-columns: 1fr; }
  .insight-grid { grid-template-columns: 1fr; }
  .story-copy { min-height: auto; padding: 22px; }
  .review-feature-media { padding: 10px; }
  .review-feature-media img { min-height: 0; max-height: 460px; }
  .review-feature-visual figcaption { padding: 14px 15px 16px; }
  .workflow-evidence-grid { grid-template-columns: 1fr; }
  .evidence-visual-copy { padding: 14px 15px 16px; }
  .story-media-grid { grid-template-columns: 1fr; }
  .story-media-grid .image-card.wide { grid-column: auto; min-height: 260px; }
  .editorial-kpi { grid-template-columns: 1fr 1fr; }
  .article-panel { padding: 20px; overflow-wrap: anywhere; }
  .article-panel h2 { font-size: 29px; line-height: 1.2; overflow-wrap: anywhere; }
  .article-row,
  .article-row.compact { grid-template-columns: 32px minmax(0, 1fr); gap: 10px; }
  .media-panel { min-height: 310px; }
  .section { margin-top: 50px; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .filter-panel { display: block; padding: 8px; }
  .filter-mobile-toggle {
    display: flex;
    width: 100%;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 10px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
  }
  .filter-mobile-toggle span:last-child { color: var(--blue); font-family: "Geist Mono", monospace; font-size: 18px; font-weight: 600; }
  .filter-controls { display: none; }
  .filter-panel.is-expanded .filter-controls { display: grid; grid-template-columns: 1fr; gap: 8px; padding: 4px 2px 2px; }
  .filter-controls > label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .filter-tools { grid-column: auto; grid-template-columns: 1fr; }
  .ranking-priority { grid-template-columns: 1fr; gap: 12px; margin-bottom: 10px; padding: 14px; }
  .ranking-priority-heading { align-items: center; }
  .ranking-priority-heading h2 { font-size: 18px; }
  .ranking-priority-options { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ranking-priority-options button { grid-template-columns: 1fr; justify-items: center; gap: 4px; min-height: 58px; padding: 6px 4px; font-size: 10px; line-height: 1.15; text-align: center; }
  .ranking-priority-footer { grid-column: auto; }
  table { min-width: 980px; }
  .promo-table-wrap, .audit-table-wrap { display: none; }
  .calendar-table-wrap { display: none; }
  .calendar-empty-mobile { display: block; }
  .mobile-ledger { display: grid; }
  .mobile-rank-card { grid-template-columns: 1fr; gap: 12px; padding: 15px; }
  .mobile-rank-top,
  .home-mobile-head { grid-column: auto; }
  .mobile-rank-facts,
  .home-rank-mobile .mobile-rank-facts { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 0; }
  .mobile-rank-facts .mini-field,
  .home-rank-mobile .mobile-rank-facts .mini-field:nth-child(n + 5) { min-height: 56px; margin-top: 0; padding: 9px 10px; border: 0; border-left: 1px solid var(--line-soft); border-radius: 0; background: transparent; }
  .mobile-rank-facts .mini-field:nth-child(odd) { border-left: 0; }
  .mobile-rank-facts .mini-field:nth-child(n + 3) { border-top: 1px solid var(--line-soft); }
  .mobile-rank-facts .mini-field span { font-size: 10px; line-height: 1.2; }
  .mobile-rank-facts .mini-field strong { margin-top: 4px; font-size: 12px; line-height: 1.25; }
  .topic-rank-top + .mobile-rank-facts .mobile-rank-reason { grid-column: 1 / -1; }
  .ledger-fields { grid-template-columns: 1fr; }
  .mobile-rank-actions { grid-template-columns: 1fr 1fr; }
  .btn.small,
  .mobile-rank-actions .btn,
  .broker-card-actions .btn,
  .promotion-actions .btn { min-height: 44px; }
  .content-update { grid-template-columns: 1fr; gap: 8px; }
  .comparison-answer { grid-template-columns: 34px minmax(0, 1fr); gap: 10px; padding: 18px 0; }
  .comparison-answer h3 { font-size: 17px; }
  .direct-answer { margin-top: 14px; padding: 15px 16px; }
  .direct-answer h2 { font-size: 19px; }
  .source-item { grid-template-columns: 1fr; }
  .home-table { min-width: 0; }
  th, td { padding: 12px 11px; }
  .image-card { min-height: 280px; }
  .broker-card-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .broker-card-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .decision-summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .decision-summary-item,
  .decision-summary-item:nth-child(3n + 1),
  .decision-summary-item:nth-child(-n + 3) { min-height: 88px; border-left: 1px solid var(--line-soft); border-top: 1px solid var(--line-soft); }
  .decision-summary-item:nth-child(odd) { border-left: 0; }
  .decision-summary-item:nth-child(-n + 2) { border-top: 0; }
  .review-detail-columns,
  .review-theme-columns { grid-template-columns: 1fr; }
  .review-detail-columns > div,
  .review-theme-columns > div { border-left: 0; border-top: 1px solid var(--line-soft); }
  .review-detail-columns > div:first-child,
  .review-theme-columns > div:first-child { border-top: 0; }
  .review-detail-callout { padding: 14px; }
  .detail-table { min-width: 820px; }
  .faq-item summary { padding-left: 0; padding-right: 44px; font-size: 14px; }
  .faq-item > div { padding-left: 0; padding-right: 4px; }
  .alternative-row { grid-template-columns: 42px minmax(0, 1fr); align-items: start; }
  .alternative-row .broker-symbol { width: 40px; height: 40px; }
  .alternative-actions { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .research-overlay { position: static; margin-top: 10px; }
  .visual-frame::before { display: none; }
  html[dir="rtl"] .mobile-rank-facts .mini-field,
  html[dir="rtl"] .home-rank-mobile .mobile-rank-facts .mini-field:nth-child(n + 5) {
    border-left: 0;
    border-right: 1px solid var(--line-soft);
  }
  html[dir="rtl"] .mobile-rank-facts .mini-field:nth-child(odd) { border-right: 0; }
  html[dir="rtl"] .nav a { justify-content: flex-start; text-align: right; }
  html[dir="rtl"] .ranking-priority-options button { border-left: 0; border-right: 1px solid var(--line-soft); text-align: right; }
  html[dir="rtl"] .ranking-priority-options button:nth-child(3n + 1) { border-right: 0; }
  html[dir="rtl"] .ranking-priority-options button:nth-child(-n + 3) { border-top: 0; }
  html[dir="rtl"] .home-kicker { padding-left: 0; padding-right: 12px; }
  html[dir="rtl"] .subnav-label { padding-left: 0; padding-right: 4px; }
  html[dir="rtl"] .metric-detail-lead strong,
  html[dir="rtl"] .platform-preview-points strong { text-align: right; }
  html[dir="rtl"] .decision-summary-item,
  html[dir="rtl"] .decision-summary-item:nth-child(3n + 1),
  html[dir="rtl"] .decision-summary-item:nth-child(-n + 3) { border-left: 0; border-right: 1px solid var(--line-soft); }
  html[dir="rtl"] .decision-summary-item:nth-child(odd) { border-right: 0; }
  html[dir="rtl"] .review-detail-columns > div,
  html[dir="rtl"] .review-theme-columns > div { border-right: 0; }
  html[dir="rtl"] .faq-item summary { padding-left: 44px; padding-right: 0; }
  html[dir="rtl"] .faq-item > div { padding-left: 4px; padding-right: 0; }
  .page-broker-review { padding-bottom: 78px; }
  .mobile-review-cta {
    position: fixed;
    z-index: 70;
    left: 50%;
    bottom: max(10px, env(safe-area-inset-bottom));
    display: grid;
    width: min(460px, calc(100% - 20px));
    grid-template-columns: 36px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    padding: 8px;
    border: 1px solid rgb(255 255 255 / 82%);
    border-radius: 12px;
    background: rgb(255 255 255 / 94%);
    box-shadow: 0 16px 42px rgb(16 24 40 / 20%);
    -webkit-backdrop-filter: blur(18px) saturate(125%);
    backdrop-filter: blur(18px) saturate(125%);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, calc(100% + 24px));
    transition: opacity .2s ease, transform .24s var(--ease);
  }
  .mobile-review-cta.is-visible { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
  .mobile-review-cta .broker-symbol { width: 36px; height: 36px; }
  .mobile-review-cta .broker-symbol img { width: 26px; height: 26px; }
  .mobile-review-cta > span:not(.broker-symbol, .affiliate-action) { min-width: 0; }
  .mobile-review-cta strong,
  .mobile-review-cta small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .mobile-review-cta strong { font-size: 12px; }
  .mobile-review-cta small { margin-top: 2px; color: var(--muted); font-size: 10px; font-weight: 650; }
  .mobile-review-cta .btn { min-height: 38px; padding-inline: 13px; white-space: nowrap; }
}
@media (min-width: 341px) and (max-width: 720px) {
  .home-rank-mobile .mobile-rank-facts { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .home-rank-mobile .mobile-rank-facts .mini-field { border-left: 1px solid var(--line-soft); }
  .home-rank-mobile .mobile-rank-facts .mini-field:nth-child(4n + 1) { border-left: 0; }
  .home-rank-mobile .mobile-rank-facts .mini-field:nth-child(-n + 4) { border-top: 0; }
  .home-rank-mobile .mobile-rank-facts .mini-field:nth-child(n + 5) { border-top: 1px solid var(--line-soft); }
  .home-rank-mobile .mobile-rank-facts .mini-field { padding-inline: 8px; }
  .home-rank-mobile .mobile-rank-facts .mini-field strong {
    font-size: 11px;
    line-height: 1.25;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
  html[dir="rtl"] .home-rank-mobile .mobile-rank-facts .mini-field { border-left: 0; border-right: 1px solid var(--line-soft); }
  html[dir="rtl"] .home-rank-mobile .mobile-rank-facts .mini-field:nth-child(4n + 1) { border-right: 0; }
}
@media (max-width: 340px) {
  .topbar { gap: 8px; }
  .brand { width: 34px; }
  .brand > span:last-child { display: none; }
  .broker-hero .hero-actions { grid-template-columns: 1fr; }
  .broker-hero .hero-actions > .affiliate-action { grid-column: auto; }
}
@media (min-width: 1121px) {
  .subnav-links { flex-wrap: wrap; overflow: visible; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; animation: none !important; }
}

/* Keep multi-line display type clear in scripts with taller glyphs and diacritics. */
html:is([lang="ko"], [lang="ja"], [lang="zh-Hans"], [lang="zh-Hant"]) :is(h1, .ranking-hero h1, .tool-hero h1, .home-intro h1) { line-height: 1.2; }
html:is([lang="ko"], [lang="ja"], [lang="zh-Hans"], [lang="zh-Hant"]) h2 { line-height: 1.24; }
html:is([lang="ko"], [lang="ja"], [lang="zh-Hans"], [lang="zh-Hant"]) h3 { line-height: 1.34; }
html:is([lang="ar"], [lang="ur"], [lang="hi"], [lang="bn"], [lang="th"]) :is(h1, .ranking-hero h1, .tool-hero h1, .home-intro h1) { line-height: 1.26; }
html:is([lang="ar"], [lang="ur"], [lang="hi"], [lang="bn"], [lang="th"]) h2 { line-height: 1.32; }
html:is([lang="ar"], [lang="ur"], [lang="hi"], [lang="bn"], [lang="th"]) h3 { line-height: 1.42; }

/* Keep canonical contract labels readable inside RTL summaries. */
html[dir="rtl"] .decision-summary-item strong { unicode-bidi: plaintext; }

body.page-not-found { min-height: 100dvh; display: flex; flex-direction: column; }
body.page-not-found main { flex: 1; }
