@font-face {
  font-family: "Golos Text";
  src: url("../fonts/golos-400-700-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --article-ink: #080a10;
  --article-soft: #2a2f3a;
  --article-accent: #2a52e2;
  --article-accent-dark: #1f43c3;
  --article-gray: #697184;
  --article-border: #e3e6ef;
  --article-table: #e9ebf2;
  --article-tint: #f6f8ff;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 24px; }
body.research-page {
  --bg: #fff;
  --bg2: #fff;
  --panel: #fff;
  --panel2: #f8faff;
  --line: rgba(16, 24, 52, .1);
  --line2: rgba(16, 24, 52, .17);
  --ink: #080a10;
  --muted: #697184;
  --dim: #7b8497;
  --head-bg: rgba(255, 255, 255, .95);
  background: #fff;
  color: var(--article-ink);
  font-family: "Golos Text", -apple-system, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.research-page .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--article-border);
}
.research-page .site-header .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.research-page .site-link {
  color: var(--article-gray);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}
.research-page .site-link:hover { color: var(--article-accent); }
.research-page .theme-btn { display: none; }
.research-page .site-header .head-in {
  width: 100%;
  max-width: 1180px;
  height: 72px;
  margin: 0 auto;
  padding: 0 28px;
}

.research-page .hero {
  position: static;
  display: block;
  min-height: 0;
  overflow: visible;
  max-width: 860px;
  margin: 0 auto;
  padding: 70px 24px 16px;
  background: #fff;
}
.research-page .hero > div { width: 100%; }
.research-page .chip {
  display: inline-block;
  margin-bottom: 24px;
  padding: 6px 15px;
  border-radius: 999px;
  background: rgba(42, 82, 226, .08);
  color: var(--article-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.research-page .hero h1 {
  margin: 0 0 22px;
  font-size: clamp(34px, 5.2vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.research-page .hero .subtitle {
  margin: 0 0 22px;
  color: var(--article-soft);
  font-size: 21px;
  font-style: italic;
  line-height: 1.5;
}
.research-page .meta {
  color: var(--article-gray);
  font-size: 15px;
}

.research-page .article { padding: 28px 24px 76px; }
.research-page .article > * {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.research-page .article > :first-child { margin-top: 0; }
.research-page .article p { margin-top: 1.25em; margin-bottom: 1.25em; }
.research-page .article .lead {
  color: var(--article-soft);
  font-size: 20px;
  line-height: 1.65;
}
.research-page .article h2,
.research-page .article h3 {
  color: var(--article-ink);
  font-weight: 800;
  letter-spacing: -.018em;
  line-height: 1.2;
}
.research-page .article h2 {
  margin-top: 2.7em;
  margin-bottom: .8em;
  font-size: 32px;
}
.research-page .article h3 {
  margin-top: 2.5em;
  margin-bottom: .72em;
  font-size: 25px;
}
.research-page .article h2::before,
.research-page .article h3::before {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  margin-bottom: 16px;
  border-radius: 99px;
  background: var(--article-accent);
}
.research-page .article a {
  color: var(--article-accent);
  text-decoration: underline;
  text-decoration-color: rgba(42, 82, 226, .3);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}
.research-page .article a:hover { text-decoration-color: currentColor; }
.research-page .article ul,
.research-page .article ol {
  margin: 1.25em auto;
  padding-left: 28px;
}
.research-page .article li { margin: 9px 0; }
.research-page .article li::marker { color: var(--article-accent); }
.research-page .article code {
  padding: 1px 6px;
  border-radius: 5px;
  background: rgba(42, 82, 226, .07);
  color: var(--article-soft);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: .88em;
}

.research-page .key-result,
.research-page .hero-result {
  max-width: 1000px;
  margin-top: 0;
  margin-bottom: 4em;
  padding: 34px;
  border: 1px solid #dce3ff;
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(42, 82, 226, .13), transparent 35%),
    linear-gradient(145deg, #f8faff, #fff 60%);
  box-shadow: 0 24px 70px -46px rgba(26, 51, 141, .55);
}
.research-page .key-result h2,
.research-page .hero-result h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(29px, 4vw, 38px);
  line-height: 1.14;
}
.research-page .key-result h2::before,
.research-page .hero-result h2::before { display: none; }
.research-page .key-result-kicker {
  margin: 0 0 10px;
  color: var(--article-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.research-page .key-result-deck {
  max-width: 780px;
  margin: 15px 0 0;
  color: var(--article-soft);
  font-size: 19px;
  line-height: 1.55;
}
.research-page .metric-grid,
.research-page .result-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}
.research-page .metric,
.research-page .result-stat {
  padding: 16px 18px;
  border: 1px solid var(--article-table);
  border-radius: 12px;
  background: rgba(255, 255, 255, .86);
}
.research-page .metric strong,
.research-page .result-stat strong {
  display: block;
  color: var(--article-accent);
  font-size: 25px;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.research-page .metric span,
.research-page .result-stat span {
  display: block;
  margin-top: 5px;
  color: var(--article-gray);
  font-size: 13px;
  line-height: 1.35;
}
.research-page .aside,
.research-page .callout,
.research-page blockquote {
  margin-top: 1.8em;
  margin-bottom: 1.8em;
  padding: 15px 22px;
  border: 0;
  border-left: 4px solid var(--article-accent);
  border-radius: 0 12px 12px 0;
  background: var(--article-tint);
  color: #3d4454;
}

.research-page figure,
.research-page .table-breakout {
  max-width: 1000px;
  margin-top: 2.5em;
  margin-bottom: 2.5em;
}
.research-page figcaption,
.research-page .table-note {
  margin-top: 12px;
  color: var(--article-gray);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}
.research-page .table-wrap {
  overflow-x: auto;
  border: 1px solid var(--article-table);
  border-radius: 13px;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}
.research-page table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 1.42;
}
.research-page th,
.research-page td {
  padding: 12px 16px;
  border: 0;
  text-align: left;
  vertical-align: top;
}
.research-page thead th {
  border-bottom: 1px solid var(--article-table);
  color: var(--article-gray);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.research-page tbody tr + tr td { border-top: 1px solid var(--article-table); }
.research-page th.num,
.research-page td.num {
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}
.research-page tr.highlight { background: rgba(42, 82, 226, .055); }

.research-page .data-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 2.4em;
  margin-bottom: 2.4em;
  padding: 25px 27px;
  border: 1px solid #dce3ff;
  border-radius: 16px;
  background: var(--article-tint);
}
.research-page .data-cta p { margin: 0; color: var(--article-soft); }
.research-page .data-cta a,
.research-page a.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--article-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.research-page .data-cta a:hover,
.research-page a.button-link:hover { background: var(--article-accent-dark); }

.research-page .result-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--article-table);
}
.research-page .result-share > p {
  max-width: 620px;
  margin: 0;
  color: var(--article-soft);
  font-size: 15px;
  line-height: 1.5;
}
.research-page .share-action { position: relative; flex: 0 0 auto; }
.research-page .share-button {
  appearance: none;
  padding: 12px 18px;
  border: 0;
  border-radius: 11px;
  background: var(--article-accent);
  color: #fff;
  cursor: pointer;
  font: 700 14px/1.2 "Golos Text", sans-serif;
}
.research-page .share-button:hover,
.research-page .share-button[aria-expanded="true"] {
  background: var(--article-accent-dark);
}
.research-page .share-button:focus-visible,
.research-page .share-option:focus-visible {
  outline: 3px solid rgba(42, 82, 226, .24);
  outline-offset: 2px;
}
.research-page .share-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  right: 0;
  width: 300px;
  padding: 8px;
  border: 1px solid var(--article-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 55px -24px rgba(8, 10, 16, .45);
}
.research-page .share-menu[hidden] { display: none; }
.research-page .share-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  padding: 10px 11px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--article-ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  text-decoration: none;
}
.research-page .share-option:hover {
  background: #f4f6fc;
  color: var(--article-ink);
  text-decoration: none;
}
.research-page .share-option-icon {
  display: inline-flex;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #eef2ff;
  color: var(--article-accent);
  font-size: 13px;
  font-weight: 800;
}
.research-page .share-option-telegram .share-option-icon {
  background: #229ed9;
  color: #fff;
}
.research-page .share-option-copy .share-option-icon {
  background: #edf7f1;
  color: #187a45;
}
.research-page .share-option-text strong,
.research-page .share-option-text small { display: block; }
.research-page .share-option-text strong { font-size: 14px; line-height: 1.3; }
.research-page .share-option-text small {
  margin-top: 2px;
  color: var(--article-gray);
  font-size: 12px;
  line-height: 1.35;
}
.research-page .share-status {
  display: block;
  min-height: 1.4em;
  margin-top: 6px;
  color: var(--article-gray);
  font-size: 12px;
}

.research-page .site-footer {
  padding: 42px 24px 58px;
  border-top: 1px solid var(--article-border);
  color: var(--article-gray);
  font-size: 14px;
  text-align: center;
}
.research-page .site-footer a { color: inherit; text-decoration: none; }
.research-page .site-footer a:hover { color: var(--article-accent); }

@media (max-width: 680px) {
  body.research-page { font-size: 17px; }
  .research-page .site-header .inner { padding: 15px 20px; }
  .research-page .hero { padding: 44px 20px 8px; }
  .research-page .hero h1 { font-size: 32px; }
  .research-page .hero .subtitle { font-size: 18px; }
  .research-page .article { padding: 20px 20px 58px; }
  .research-page .article h2 { font-size: 26px; }
  .research-page .article h3 { font-size: 22px; }
  .research-page .key-result,
  .research-page .hero-result {
    margin-right: -4px;
    margin-left: -4px;
    padding: 23px 18px;
    border-radius: 17px;
  }
  .research-page .metric-grid,
  .research-page .result-stats { grid-template-columns: 1fr; gap: 8px; }
  .research-page .metric,
  .research-page .result-stat {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 12px 14px;
  }
  .research-page .metric span,
  .research-page .result-stat span { margin-top: 0; }
  .research-page .data-cta { grid-template-columns: 1fr; gap: 16px; }
  .research-page .data-cta a { white-space: normal; text-align: center; }
  .research-page .result-share { align-items: stretch; flex-direction: column; }
  .research-page .share-button { width: 100%; padding: 14px 18px; }
  .research-page .share-menu { position: static; width: 100%; margin-top: 8px; }
  .research-page table { font-size: 14px; }
  .research-page th,
  .research-page td { padding: 10px 12px; }
}
