/* ============================================
   Про рейтинг — Design System
   ============================================ */

:root {
  /* Colors */
  --paper: #F6F5F2;
  --paper-warm: #EFEDE6;
  --white: #FFFFFF;
  --ink: #0E1620;
  --ink-2: #1E2A3A;
  --ink-3: #4A5566;
  --ink-4: #7A8494;
  --line: #E4E2DC;
  --line-2: #D6D3CB;
  --line-dark: rgba(255, 255, 255, 0.12);

  --accent: #1B3A6B;        /* deep editorial blue */
  --accent-2: #2A5AA8;
  --accent-tint: #DDE5F0;
  --accent-tint-2: #EAEFF7;
  --accent-ink: #0B1F3A;

  --warn: #B3421E;          /* subtle warm accent for tickers */
  --success: #1B6B47;

  /* Type */
  --font-display: 'Space Grotesk', 'Manrope', -apple-system, sans-serif;
  --font-text: 'Manrope', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Space */
  --pad-x: clamp(20px, 4vw, 64px);
  --maxw: 1400px;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.4, 0, 0.6, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img, svg { display: block; max-width: 100%; }

/* ============================================
   Cursor blob
   ============================================ */
.cursor-blob {
  position: fixed;
  top: 0; left: 0;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 58, 107, 0.16), rgba(27, 58, 107, 0));
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s var(--ease);
  will-change: transform;
  mix-blend-mode: multiply;
}
@media (pointer: coarse) {
  .cursor-blob { display: none; }
}

/* ============================================
   Layout helpers
   ============================================ */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  position: relative;
}
.section {
  padding-top: clamp(64px, 8vw, 120px);
  padding-bottom: clamp(64px, 8vw, 120px);
  position: relative;
}
.section--tight { padding-top: clamp(48px, 6vw, 80px); padding-bottom: clamp(48px, 6vw, 80px); }

.divider-top { border-top: 1px solid var(--line); }
.divider-bottom { border-bottom: 1px solid var(--line); }

/* ============================================
   Typography
   ============================================ */
.kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.kicker::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.kicker--plain::before { display: none; }
.kicker--accent { color: var(--accent); }

.h-display {
  font-family: var(--font-display);
  font-size: clamp(44px, 7.2vw, 108px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 0;
  text-wrap: balance;
}
.h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 0;
  text-wrap: balance;
}
.h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 500;
  margin: 0;
}
.lead {
  font-family: var(--font-text);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.5;
  color: var(--ink-3);
  max-width: 640px;
  font-weight: 400;
}
.body-sm {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.55;
}
.meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}

.serif-italic {
  font-family: 'Fraunces', 'Georgia', serif;
  font-style: italic;
  font-weight: 300;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  min-height: 46px;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}
.btn--accent {
  background: var(--accent);
  color: var(--white);
}
.btn--accent:hover {
  background: var(--accent-ink);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--white);
}
.btn--light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--light:hover {
  border-color: var(--ink);
}
.btn--sm { padding: 9px 16px; font-size: 13px; min-height: 36px; }

.btn .arrow {
  transition: transform 0.3s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Text link with ink underline animation */
.link-ink {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 500;
  padding-bottom: 2px;
}
.link-ink::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 0.4s var(--ease);
}
.link-ink:hover::after {
  transform-origin: left;
  transform: scaleX(1);
  animation: linkWipe 0.5s var(--ease);
}
@keyframes linkWipe {
  0% { transform: scaleX(1); transform-origin: right; }
  49% { transform: scaleX(0); transform-origin: right; }
  50% { transform: scaleX(0); transform-origin: left; }
  100% { transform: scaleX(1); transform-origin: left; }
}
.link-ink .arrow { transition: transform 0.3s var(--ease); }
.link-ink:hover .arrow { transform: translateX(4px); }

/* ============================================
   Tags & pills
   ============================================ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: var(--white);
}
.tag--live {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.tag--live::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.tag--example {
  background: transparent;
  color: var(--ink-3);
  border-style: dashed;
}
.tag--type {
  border: none;
  padding: 0;
  color: var(--accent);
  background: transparent;
}

/* ============================================
   Reveal on scroll
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* Grouped blocks: reveal the content in a controlled editorial cascade.
   The parent is observed by app.js; children only animate after it enters
   the viewport, so below-the-fold content does not animate prematurely. */
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal-stagger].in > * {
  opacity: 1;
  transform: none;
}
[data-reveal-stagger].in > *:nth-child(1) { transition-delay: 0.08s; }
[data-reveal-stagger].in > *:nth-child(2) { transition-delay: 0.16s; }
[data-reveal-stagger].in > *:nth-child(3) { transition-delay: 0.24s; }
[data-reveal-stagger].in > *:nth-child(4) { transition-delay: 0.32s; }
[data-reveal-stagger].in > *:nth-child(5) { transition-delay: 0.40s; }
[data-reveal-stagger].in > *:nth-child(6) { transition-delay: 0.48s; }

/* The process track already has a line-fill observer. Stagger only the
   markers/text after the track appears, keeping the sequence readable. */
.process__track.reveal.in .step {
  animation: stepSettle 0.65s var(--ease) both;
}
.process__track.reveal.in .step:nth-child(1) { animation-delay: 0.10s; }
.process__track.reveal.in .step:nth-child(2) { animation-delay: 0.20s; }
.process__track.reveal.in .step:nth-child(3) { animation-delay: 0.30s; }
.process__track.reveal.in .step:nth-child(4) { animation-delay: 0.40s; }
.process__track.reveal.in .step:nth-child(5) { animation-delay: 0.50s; }
@keyframes stepSettle {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  [data-reveal-stagger] > *,
  .process__track.reveal.in .step { opacity: 1; transform: none; animation: none; transition: none; }
  * { animation: none !important; transition: none !important; }
}

/* ============================================
   Header
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246, 245, 242, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(246, 245, 242, 0.94);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 76px;
  padding-block: 8px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: var(--ink);
}
.logo__mark {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.logo__mark-svg {
  display: block;
  width: 58px;
  height: 58px;
  overflow: visible;
}
.logo__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.logo__text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.logo__line {
  display: block;
  width: 100%;
  max-width: 158px;
  height: 1px;
  margin: 5px 0 6px;
  background: var(--line);
}
.logo__sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__item {
  padding: 8px 12px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 6px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
  position: relative;
}
.nav__item:hover { color: var(--accent); }
.nav__item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.header__cta {
  margin-left: 8px;
}

.burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line-2);
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.burger__lines {
  width: 20px; height: 12px;
  position: relative;
}
.burger__lines::before,
.burger__lines::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), top 0.3s var(--ease), bottom 0.3s var(--ease);
}
.burger__lines::before { top: 2px; }
.burger__lines::after { bottom: 2px; }
.burger.open .burger__lines::before {
  top: 5.5px;
  transform: rotate(45deg);
}
.burger.open .burger__lines::after {
  bottom: 5px;
  transform: rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--paper);
  z-index: 55;
  padding: 32px var(--pad-x) 40px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.mobile-menu__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.mobile-menu__cta {
  margin-top: 32px;
}
.mobile-menu__foot {
  margin-top: auto;
  padding-top: 24px;
  color: var(--ink-4);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================
   Ticker
   ============================================ */
.ticker {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 40px;
}
.ticker__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  height: 100%;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.ticker__label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.6s infinite;
}
.ticker__viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}
.ticker__track {
  display: flex;
  gap: 40px;
  align-items: center;
  height: 100%;
  animation: tickerScroll 55s linear infinite;
  width: max-content;
  padding-left: 40px;
}
.ticker__item {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-2);
  white-space: nowrap;
}
.ticker__item strong {
  color: var(--accent);
  font-weight: 500;
}
.ticker__item .sep {
  color: var(--ink-4);
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker:hover .ticker__track { animation-play-state: paused; }

/* ============================================
   Hero
   ============================================ */
.hero {
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(64px, 8vw, 120px);
  position: relative;
}
.hero__meta-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(40px, 6vw, 72px);
  gap: 20px;
  flex-wrap: wrap;
}
.hero__meta-strip .meta { display: flex; gap: 16px; }
.hero__meta-strip .meta span { color: var(--ink-3); }
.hero__meta-strip .meta strong { color: var(--ink); font-weight: 500; }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.hero__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hero__title-wrap {
  position: relative;
}
.hero__title {
  font-size: clamp(52px, 8vw, 118px);
}
.hero__title .accent {
  color: var(--accent);
  font-style: italic;
  font-family: 'Fraunces', 'Georgia', serif;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.hero__lead {
  max-width: 560px;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-top: 16px;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.hero__stat-lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero diagram (legacy) */
.hero__diagram {
  position: relative;
  aspect-ratio: 1 / 1.05;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
}
.hero__diagram svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Hero: sample rating card preview */
.hero__sample {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}
.sample-card {
  display: block;
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
}
.sample-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
}
.sample-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 0 20px 40px -24px rgba(14, 22, 32, 0.35);
}
.sample-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.sample-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sample-card__id {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-4);
  letter-spacing: 0.08em;
  font-weight: 500;
}
.sample-card__meta {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.sample-card__dot { color: var(--line-2); }
.sample-card__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  color: var(--ink);
  text-wrap: balance;
}
.sample-card__leaders {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-bottom: 20px;
}
.sample-card__leaders-hdr {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
  margin-bottom: 6px;
}
.sample-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 90px 44px;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  font-size: 14px;
}
.sample-row:last-child { border-bottom: none; }
.sample-row__pos {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}
.sample-row__name {
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sample-row__bar {
  position: relative;
  height: 4px;
  background: var(--line);
  overflow: hidden;
}
.sample-row__bar-fill {
  display: block;
  height: 100%;
  background: var(--accent);
  width: var(--w, 0%);
  transform-origin: left;
  transform: scaleX(0);
  animation: barFill 1s var(--ease) forwards;
  animation-delay: 1.4s;
}
.sample-row:nth-child(3) .sample-row__bar-fill { animation-delay: 1.55s; }
.sample-row:nth-child(4) .sample-row__bar-fill { animation-delay: 1.7s; }
@keyframes barFill { to { transform: scaleX(1); } }
.sample-row__score {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  text-align: right;
}
.sample-card__foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.sample-card__crit {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 12px;
  border-right: 1px solid var(--line);
}
.sample-card__crit:last-child { border-right: none; }
.sample-card__crit:first-child { padding-left: 0; }
.sample-card__crit-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.sample-card__crit-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
}
.sample-card__go {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.sample-card:hover .sample-card__go { color: var(--accent); }
.sample-card:hover .sample-card__go svg { transform: translateX(4px); }
.sample-card__go svg { transition: transform 0.3s var(--ease); }
.sample-card__mark {
  position: absolute;
  top: 12px; right: -32px;
  transform: rotate(35deg);
  padding: 3px 32px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.85;
  pointer-events: none;
}

.diagram-line {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawLine 2s var(--ease) forwards;
}
.diagram-line--accent { stroke: var(--accent); }
.diagram-line--light { stroke: var(--line-2); stroke-width: 0.75; }
.diagram-line--dash { stroke-dasharray: 3 4; animation: none; stroke-dashoffset: 0; opacity: 0.5; }

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

.diagram-dot {
  fill: var(--white);
  stroke: var(--ink);
  stroke-width: 1;
  opacity: 0;
  animation: dotIn 0.4s var(--ease) forwards;
}
.diagram-dot--accent { fill: var(--accent); stroke: var(--accent); }
@keyframes dotIn {
  to { opacity: 1; }
}
.diagram-num {
  font-family: var(--font-mono);
  font-size: 11px;
  fill: var(--ink-3);
  opacity: 0;
  animation: dotIn 0.4s var(--ease) forwards;
}
.diagram-label {
  font-family: var(--font-mono);
  font-size: 10px;
  fill: var(--ink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  animation: dotIn 0.5s var(--ease) forwards;
}
.diagram-big-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 92px;
  fill: var(--ink);
  letter-spacing: -0.04em;
}
.diagram-big-num.accent { fill: var(--accent); }

/* ============================================
   Section: Principles
   ============================================ */
.principles {
  background: var(--paper);
  position: relative;
}
.principles__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: clamp(24px, 4vw, 64px);
  margin-bottom: 56px;
  align-items: end;
}
.principles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.principle {
  background: var(--paper);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: background 0.3s var(--ease);
}
.principle:hover { background: var(--white); }
.principle__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
}
.principle__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--ink);
}
.principle__desc {
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.5;
}
.principle__mark {
  position: absolute;
  top: 32px; right: 32px;
  width: 28px; height: 28px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink-3);
  font-family: var(--font-mono);
  font-size: 11px;
  transition: all 0.3s var(--ease);
}
.principle:hover .principle__mark {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

/* ============================================
   Section: Ratings
   ============================================ */
.ratings {
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ratings__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  margin-bottom: 48px;
  align-items: end;
}
.ratings__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 24px;
}
.ratings__side {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.rating-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease), box-shadow 0.4s var(--ease);
  overflow: hidden;
  cursor: pointer;
}
.rating-card:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: 0 14px 30px -20px rgba(14, 22, 32, 0.35);
}
.rating-card__hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.rating-card__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.rating-card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.08em;
}
.rating-card__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  transition: color 0.3s var(--ease);
}
.rating-card:hover .rating-card__title { color: var(--accent); }
.rating-card__desc {
  color: var(--ink-3);
  font-size: 14.5px;
  line-height: 1.5;
}
.rating-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin-top: auto;
  gap: 16px;
}
.rating-card__attrs {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.03em;
}
.rating-card__attrs span { display: flex; gap: 6px; }
.rating-card__attrs strong { color: var(--ink); font-weight: 500; }

/* Feature (large) card */
.rating-card--feature {
  padding: 36px;
  min-height: 100%;
  gap: 24px;
}
.rating-card--feature .rating-card__title {
  font-size: clamp(28px, 2.6vw, 42px);
}
.rating-card--feature .rating-card__desc {
  font-size: 16px;
  max-width: 520px;
}
.rating-card__leaderboard {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.leaderboard-row {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  font-size: 14.5px;
}
.leaderboard-row__pos {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
}
.leaderboard-row__pos.top {
  color: var(--accent);
  font-weight: 600;
}
.leaderboard-row__name {
  color: var(--ink);
  font-weight: 500;
}
.leaderboard-row__score {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
}

/* Small ratings */
.rating-card--sm {
  padding: 22px;
  gap: 12px;
}
.rating-card--sm .rating-card__title {
  font-size: 17px;
  line-height: 1.2;
}
.rating-card--sm .rating-card__foot {
  padding-top: 12px;
  font-size: 12px;
}
.rating-card--sm .rating-card__attrs { font-size: 10.5px; }
.rating-card--sm .rating-card__desc {
  font-size: 13.5px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ratings__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  gap: 20px;
  flex-wrap: wrap;
}

/* ============================================
   Section: Process (How a rating is born)
   ============================================ */
.process {
  background: var(--paper);
}
.process__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}
.process__lead { color: var(--ink-3); max-width: 480px; }

.process__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.process__line {
  position: absolute;
  left: 0; right: 0;
  top: 44px;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.process__line-fill {
  position: absolute;
  left: 0;
  top: 44px;
  height: 1px;
  background: var(--accent);
  z-index: 1;
  width: 0;
  transition: width 1.6s var(--ease);
}
.process.in .process__line-fill { width: 100%; }

.step {
  position: relative;
  padding: 0 20px 0 0;
  z-index: 2;
}
.step__marker {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
  transition: all 0.4s var(--ease);
  position: relative;
}
.step__marker::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px dashed var(--line-2);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.step:hover .step__marker {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.step:hover .step__marker::before {
  opacity: 1;
  border-color: rgba(255,255,255,0.3);
}
.step__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.2;
}
.step__desc {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.45;
}

/* ============================================
   Section: Editorial team
   ============================================ */
.editorial {
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.editorial__head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 48px;
  margin-bottom: 56px;
  align-items: end;
}
.editorial__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr);
  gap: 24px;
}
.commission-card {
  background: var(--ink);
  color: var(--white);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.commission-card__kicker {
  color: rgba(255,255,255,0.6);
}
.commission-card__kicker::before { background: rgba(255,255,255,0.4); }
.commission-card__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--white);
  margin: 0;
}
.commission-card__desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  max-width: 380px;
}
.commission-card__roles {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: auto;
  border-top: 1px solid var(--line-dark);
}
.commission-card__role {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}
.commission-card__role strong {
  color: var(--white);
  font-weight: 500;
}

.experts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.expert {
  background: var(--white);
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s var(--ease);
}
.expert:hover { background: var(--paper); }
.expert__row {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Team photography follows the editorial page: compact round portraits. */
.expert__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  flex: 0 0 56px;
}

.expert__avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.expert__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 2px;
}
.expert__role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.expert__linked {
  font-size: 13px;
  color: var(--ink-3);
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.expert__linked strong {
  color: var(--ink);
  font-weight: 500;
  display: block;
  margin-top: 2px;
}

.editorial__foot {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}

/* ============================================
   Section: Articles
   ============================================ */
.articles {
  background: var(--paper);
}
.articles__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.articles__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 48px;
}
.article-feature {
  display: flex;
  flex-direction: column;
  gap: 20px;
  group: article;
}

.article-feature__visual-link {
  display: block;
}

.article-feature:hover {
  transform: scale(1.03);
}

.article-feature__img {
  position: relative;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.06), transparent 30%),
    linear-gradient(135deg, #17324d 0%, #0f1a2b 100%);
  border: 1px solid rgba(255,255,255,0.06);
}

.article-feature__img-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
}

.article-feature__art {
  display: block;
  width: 100%;
  height: 100%;
}

.article-feature__title {
  text-wrap: balance;
}

.article-feature__title a,
.article-item__title a {
  color: inherit;
  text-decoration: none;
}

.article-feature__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.article-feature__meta .dot { color: var(--line-2); }

.article-feature:hover .article-feature__title { color: var(--accent); }
.article-feature:hover .article-feature__title a { color: var(--accent); }
.article-feature__lead {
  color: var(--ink-3);
  font-size: 15.5px;
  line-height: 1.5;
  max-width: 560px;
}
.article-feature__linked {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.article-feature__linked a {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
}

.article-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.article-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: padding-left 0.4s var(--ease);
}
.article-item:first-child { padding-top: 0; }
.article-item:hover { padding-left: 12px; }
.article-item__meta {
  display: flex;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.article-item__meta .dot { color: var(--line-2); }
.article-item__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
  transition: color 0.3s var(--ease);
}
.article-item:hover .article-item__title { color: var(--accent); }
.article-item:hover .article-item__title a { color: var(--accent); }
.article-item__lead {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================
   Section: For companies
   ============================================ */
.companies {
  background: var(--paper);
  padding-top: 40px;
  padding-bottom: clamp(72px, 8vw, 120px);
}
.companies__card {
  background: var(--white);
  border: 3px solid var(--accent);
  padding: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  position: relative;
}
.companies__card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 14px;
}
.companies__mark {
  position: absolute;
  top: 0; left: 0;
  padding: 10px 14px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.companies__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 20px;
}
.companies__desc {
  color: var(--ink-3);
  font-size: 16px;
  line-height: 1.5;
  max-width: 520px;
}
.companies__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.companies__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  gap: 24px;
  text-align: left;
}
.companies__btn:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: translateX(4px);
}
.companies__btn .arrow {
  color: var(--accent);
  transition: transform 0.3s var(--ease);
}
.companies__btn:hover .arrow {
  color: var(--white);
  transform: translateX(4px);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: clamp(56px, 6vw, 88px) 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) repeat(4, minmax(0, 1fr));
  gap: 40px;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
}
.footer__brand {
  max-width: 340px;
}
.footer__brand .logo__text { color: var(--white); }
.footer__brand .logo__sub { color: rgba(255,255,255,0.5); }
.footer__desc {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
}
.footer__col-hdr {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 20px;
  font-weight: 500;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__list a {
  color: rgba(255,255,255,0.75);
  font-size: 14.5px;
  transition: color 0.2s var(--ease);
}
.footer__list a:hover { color: var(--white); }
.footer__list--platforms a { position: relative; display: inline-flex; align-items: center; gap: 10px; }
.footer__list--platforms a::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-tint); opacity: 0.9; }

.footer__mid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 32px;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__contact-lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer__contact-val {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.footer__disclaimer {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
}

.footer__bot {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.footer__copy {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.footer__trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__trust a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s var(--ease);
}
.footer__trust a:hover { color: var(--white); }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1080px) {
  .nav { display: none; }
  .header__cta { display: none; }
  .burger { display: inline-flex; }

  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__diagram { max-width: 480px; margin: 0 auto; }
  .hero__sample { max-width: 480px; margin: 0 auto; }

  .principles__head { grid-template-columns: 1fr; gap: 24px; }
  .principles__grid { grid-template-columns: 1fr; }

  .ratings__grid { grid-template-columns: 1fr; }
  .ratings__side { grid-template-columns: repeat(2, 1fr); }

  .process__head { grid-template-columns: 1fr; gap: 24px; }
  .process__track { grid-template-columns: 1fr; gap: 32px; }
  .process__line, .process__line-fill { display: none; }
  .step { padding: 0; display: grid; grid-template-columns: 88px 1fr; gap: 24px; align-items: start; }
  .step__marker { margin-bottom: 0; width: 72px; height: 72px; font-size: 26px; }
  .step__body { padding-top: 12px; }

  .editorial__head { grid-template-columns: 1fr; gap: 24px; }
  .editorial__grid { grid-template-columns: 1fr; }

  .articles__grid { grid-template-columns: 1fr; gap: 40px; }

  .companies__card { grid-template-columns: 1fr; gap: 32px; }

  .about-contacts__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-social-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-coverage { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__mid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .hero__meta-strip { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero__meta-strip .meta { flex-wrap: wrap; }
  .hero__stats { gap: 24px; flex-wrap: wrap; }
  .hero__stat-num { font-size: 28px; }

  .ratings__head { grid-template-columns: 1fr; }
  .ratings__side { grid-template-columns: 1fr; }
  .ratings__foot { flex-direction: column; align-items: flex-start; }

  .experts-grid { grid-template-columns: 1fr; }

  .articles__head { flex-direction: column; align-items: flex-start; }
  .about-contact-card { border-right: none; padding-right: 0; border-bottom: 1px solid var(--line); }
  .about-contact-card--last { border-bottom: none; }
  .about-social-grid { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; margin-bottom: 32px; }
  .footer__bot { flex-direction: column; align-items: flex-start; }

  .rating-card--feature { padding: 24px; }
  .rating-card { padding: 20px; }

  .commission-card { padding: 28px 24px; }
}

@media (max-width: 480px) {
  :root { --pad-x: 16px; }
  .header__inner { height: 60px; gap: 16px; }
  .about-hero { padding-top: 32px; }
  .about-hero__title { margin-bottom: 20px; }
  .about-contacts__grid { grid-template-columns: 1fr; gap: 0; }
  .coverage-card,
  .about-social-card { padding-left: 18px; padding-right: 18px; }
  .mobile-menu { inset: 60px 0 0 0; padding: 24px 16px 32px; }
  .mobile-menu__item { font-size: 20px; padding: 16px 0; }
  .logo { gap: 10px; }
  .logo__mark { width: 44px; height: 44px; flex-basis: 44px; }
  .logo__mark-svg { width: 44px; height: 44px; }
  .logo__line { display: none; }
  .logo__sub { display: none; }
  .commission-card__role { flex-direction: column; gap: 2px; }

  /* Sample card compaction */
  .sample-card { padding: 24px 20px; }
  .sample-card__title { font-size: 19px; margin-bottom: 20px; }
  .sample-card__foot { padding: 12px 0; }
  .sample-card__crit { padding: 0 8px; }
  .sample-card__crit-num { font-size: 22px; }
  .sample-card__crit-lbl { font-size: 9px; }
  .sample-card__mark { font-size: 8px; padding: 3px 28px; right: -30px; }
  .sample-row { grid-template-columns: 22px minmax(0, 1fr) 56px 40px; gap: 8px; padding: 8px 0; font-size: 13px; }
  .sample-row__pos { font-size: 11px; }
  .sample-row__score { font-size: 12px; }
  .sample-card__meta { font-size: 10.5px; }

  /* Keep rating metadata and CTA readable on narrow phones. */
  .rating-card__foot {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .rating-card__attrs {
    min-width: 0;
    width: 100%;
  }
  .rating-card__attrs span {
    flex-wrap: wrap;
    line-height: 1.45;
  }
  .rating-card__foot .btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
}

/* ============================================
   Global mobile safety: no horizontal overflow
   ============================================ */
html, body { overflow-x: hidden; max-width: 100%; }
img, svg, video, table { max-width: 100%; }
.wrap { max-width: 100%; box-sizing: border-box; }

/* Sticky header should never cause horizontal shift */
.header { max-width: 100vw; }

/* Ticker viewport must clip the running track on any width */
.ticker { max-width: 100vw; overflow: hidden; }
.ticker__viewport { min-width: 0; }

/* Cursor blob shouldn't force page width */
.cursor-blob { max-width: 100vw; will-change: transform; }

/* Long tokens (URLs, code-like strings) never break layout */
.prose a, .article-content a, .breadcrumbs a { word-break: break-word; }

/* Tables in narrow viewports scroll inside their container, not the page */
.leaders-table { min-width: 0; }

/* When mobile menu is open, block body-scroll AND prevent inner overflow */
body.menu-open { overflow: hidden; }
.mobile-menu.open { overflow-y: auto; overflow-x: hidden; }
.mobile-menu__list, .mobile-menu__item { max-width: 100%; }
.mobile-menu__item { flex-wrap: wrap; gap: 8px; }

/* Additional mobile-only safety */
@media (max-width: 720px) {
  /* Hero meta strip: allow wrap without pushing width */
  .hero__meta-strip .meta { flex-wrap: wrap; row-gap: 6px; column-gap: 12px; }
  .hero__title-wrap { min-width: 0; }
  .hero__title { word-break: break-word; }

  /* Rating card feature — leaderboard rows */
  .leaderboard-row { grid-template-columns: 32px 1fr auto; gap: 12px; }

  /* Companies card: full width buttons */
  .companies__btn { padding: 16px 18px; gap: 12px; font-size: 15px; }

  /* Rating page hero meta table — allow wrap */
  .rating-page__meta-row { flex-wrap: wrap; gap: 4px 12px; }
  .rating-page__meta-row span:last-child { text-align: left; }

  /* Article aside on tiny screens fully hidden already; ensure body content stays fluid */
  .article-content blockquote { margin-left: 0; margin-right: 0; padding: 16px 18px; font-size: 18px; }

  /* Form: prevent narrow inputs from being cut */
  .form__input, .form__textarea, .form__select { max-width: 100%; }

  /* Article-full author col wrap */
  .article-full__meta-col { gap: 12px; }

  /* Big-CTA mark: prevent overflow at very narrow widths */
  .companies__mark, .big-cta__mark { max-width: calc(100% - 24px); }
}


/* ---------- pages.css ---------- */

/* ============================================
   Про рейтинг — internal pages styling
   Depends on styles.css (tokens + base components)
   ============================================ */

/* Active nav state */
.nav__item--active {
  color: var(--accent) !important;
}
.nav__item--active::after {
  content: '';
  position: absolute;
  left: 12px; right: 12px;
  bottom: 2px;
  height: 2px;
  background: var(--accent);
}
.mobile-menu__item--active {
  color: var(--accent) !important;
}

/* ============================================
   Breadcrumbs
   ============================================ */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}.breadcrumbs a {

  color: var(--ink-3);
  transition: color 0.2s var(--ease);
  word-break: break-word;
}
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs__sep {
  color: var(--line-2);
}
.breadcrumbs__current {
  color: var(--ink);
}

/* ============================================
   Page hero (generic template)
   ============================================ */
.page-hero {
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
}
.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin: 0 0 24px;
  text-wrap: balance;
}
.page-hero__title .accent {
  color: var(--accent);
  font-family: 'Fraunces', 'Georgia', serif;
  font-style: italic;
  font-weight: 300;
}
.page-hero__lead {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 560px;
}
.page-hero__meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: clamp(0px, 3vw, 48px);
  border-left: 1px solid var(--line);
  padding-top: 8px;
  padding-bottom: 8px;
}
.page-hero__meta-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.page-hero__meta-row span:first-child { color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px; }
.page-hero__meta-row span:last-child { color: var(--ink); font-weight: 500; text-align: right; }

@media (max-width: 900px) {
  .page-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .page-hero__meta { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 24px; }
}

/* ============================================
   Ratings list page
   ============================================ */
.ratings-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rating-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1.6fr) minmax(0, 1fr) auto;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  cursor: pointer;
  transition: padding-left 0.4s var(--ease);
  position: relative;
}
.rating-row:hover { padding-left: 12px; }
.rating-row:hover .rating-row__title { color: var(--accent); }
.rating-row:first-child { border-top: 1px solid var(--line); }
.rating-row__num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-4);
  letter-spacing: 0.06em;
  font-weight: 500;
}
.rating-row__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 6px;
  transition: color 0.3s var(--ease);
}
.rating-row__desc {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.5;
  max-width: 640px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rating-row__attrs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: 0.03em;
}
.rating-row__attrs strong {
  color: var(--ink);
  font-weight: 500;
}
.rating-row__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.rating-row__go {
  width: 44px; height: 44px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}
.rating-row:hover .rating-row__go {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

@media (max-width: 900px) {
  .rating-row {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "num meta"
      "body body"
      "attrs go";
    gap: 12px 20px;
    padding: 24px 0;
  }
  .rating-row__num { grid-area: num; }
  .rating-row__meta { grid-area: meta; align-items: flex-end; }
  .rating-row__body { grid-area: body; }
  .rating-row__attrs { grid-area: attrs; flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .rating-row__go { grid-area: go; justify-self: end; }
  .rating-row:hover { padding-left: 0; }
}

/* Filters / state chips */
.list-controls {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.list-controls__count {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.list-controls__count strong { color: var(--ink); font-weight: 500; }
.chip-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  padding: 6px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip--active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* Empty / upcoming state */
.upcoming {
  background: var(--paper-warm);
  border: 1px dashed var(--line-2);
  padding: 40px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 40px;
}
.upcoming__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.upcoming__item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.upcoming__item:last-child { border-bottom: none; }
.upcoming__item strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
}
.upcoming__item .meta { font-size: 11.5px; }

@media (max-width: 800px) {
  .upcoming { grid-template-columns: 1fr; gap: 24px; padding: 28px 24px; }
}

/* ============================================
   Rating single page
   ============================================ */
.rating-page {
  padding-top: clamp(40px, 5vw, 64px);
}
.rating-page__hero {
  padding-bottom: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
}
.rating-page__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}
.rating-page__tags {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.rating-page__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.rating-page__subtitle {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-3);
  line-height: 1.5;
  max-width: 620px;
  margin: 0 0 24px;
}
.rating-page__hero-meta {
  padding-left: clamp(0px, 3vw, 40px);
  border-left: 1px solid var(--line);
  padding-top: 8px;
}
.rating-page__meta-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.rating-page__meta-row:first-child { border-top: 1px solid var(--line); }
.rating-page__meta-row span:first-child {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rating-page__meta-row span:last-child {
  color: var(--ink);
  font-weight: 500;
  text-align: right;
}

/* Two-column body: sidebar TOC + content */
.rating-body {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  padding-top: clamp(48px, 6vw, 80px);
  align-items: start;
}
.sidebar-toc {
  position: sticky;
  top: 88px;
  border-left: 1px solid var(--line);
  padding-left: 20px;
}
.sidebar-toc__hdr {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}
.sidebar-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar-toc__list a {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.35;
  transition: color 0.2s var(--ease);
}
.sidebar-toc__list a:hover { color: var(--accent); }
.sidebar-toc__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-4);
  min-width: 24px;
}

@media (max-width: 1000px) {
  .rating-body { grid-template-columns: 1fr; }
  .sidebar-toc { display: none; }
}

.rating-section {
  padding: clamp(40px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 96px;
}
.rating-section:last-child { border-bottom: none; }
.rating-section__hdr {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 32px;
}
.rating-section__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.08em;
  min-width: 40px;
}
.rating-section__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}
.rating-section__body {
  padding-left: 64px;
  max-width: 780px;
}
@media (max-width: 700px) {
  .rating-section__body { padding-left: 0; }
  .rating-section__hdr { flex-direction: column; gap: 8px; }
}

.prose {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
}
.prose p { margin: 0 0 20px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--accent); border-bottom: 1px solid var(--accent-tint); }
.prose a:hover { border-bottom-color: var(--accent); }
.prose ul, .prose ol { padding-left: 20px; margin: 0 0 20px; }
.prose li { margin-bottom: 8px; }
.prose h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 32px 0 12px;
  color: var(--ink);
}
.prose blockquote {
  margin: 24px 0;
  padding: 20px 0 20px 24px;
  border-left: 3px solid var(--accent);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.prose blockquote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* Callout */
.callout {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  margin: 24px 0;
}
.callout__hdr {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.callout p { margin: 0; font-size: 14.5px; }

/* ============================================
   Leaders table (rating page)
   ============================================ */
.leaders-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  margin: 8px 0 20px;
}
.leaders-table th {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  text-align: left;
  padding: 12px 16px 12px 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  border-bottom: 1px solid var(--line);
  vertical-align: bottom;
  white-space: nowrap;
}
.leaders-table th:last-child { padding-right: 0; text-align: right; }
.leaders-table td {
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  vertical-align: top;
}
.leaders-table td:last-child { padding-right: 0; text-align: right; }
.leaders-table tr:last-child td { border-bottom: none; }
.leaders-table tr { transition: background 0.2s var(--ease); }
.leaders-table tbody tr:hover { background: var(--paper); }
.leaders-table__pos {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
  width: 40px;
}
.leaders-table__pos.top {
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
}
.leaders-table__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.leaders-table__geo {
  color: var(--ink-3);
  font-size: 13.5px;
}
.leaders-table__note {
  color: var(--ink-3);
  font-size: 13.5px;
  line-height: 1.4;
  max-width: 320px;
}
.leaders-table__score {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
}
.leaders-table__score .delta {
  display: inline-block;
  font-size: 10px;
  color: var(--success);
  margin-left: 6px;
  vertical-align: middle;
}

/* Bar embedded in table */
.score-bar {
  display: inline-block;
  width: 60px;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  vertical-align: middle;
  margin-right: 10px;
  position: relative;
  overflow: hidden;
}
.score-bar__fill {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  background: var(--accent);
}

@media (max-width: 720px) {
  .leaders-table th:nth-child(3),
  .leaders-table td:nth-child(3) { display: none; }
  .leaders-table__note { max-width: 100%; }
}

/* Criteria & sources lists */
.criteria-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.criteria-item {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 100px;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.criteria-item__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
}
.criteria-item__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 4px;
}
.criteria-item__desc {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.45;
}
.criteria-item__weight {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  text-align: right;
}
.criteria-item__weight small {
  display: block;
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 2px;
}

@media (max-width: 620px) {
  .criteria-item { grid-template-columns: 40px 1fr auto; gap: 12px; }
}

/* Sources list */
.sources {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 16px;
}
.source {
  border: 1px solid var(--line);
  padding: 20px;
  background: var(--white);
}
.source__type {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.source__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 6px;
}
.source__note {
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.45;
}

@media (max-width: 640px) { .sources { grid-template-columns: 1fr; } }

/* Participant cards */
.participants {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.participant {
  background: var(--white);
  padding: 20px 24px;
  transition: background 0.2s var(--ease);
}
.participant:hover { background: var(--paper); }
.participant__hdr {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.participant__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}
.participant__pos {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}
.participant__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.participant__desc {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.5;
  margin: 0 0 12px;
}
.participant__foot {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
}
.participant__foot a { color: var(--accent); }

@media (max-width: 700px) { .participants { grid-template-columns: 1fr; } }

/* Expert quotes */
.quote-block {
  background: var(--paper-warm);
  padding: 32px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  border: 1px solid var(--line);
  margin-bottom: 20px;
}
.quote-block:last-child { margin-bottom: 0; }
.quote-block__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-4);
}
.quote-block__text {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 12px;
}
.quote-block__cite {
  font-style: normal;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.quote-block__cite strong { color: var(--ink); font-weight: 600; }
.quote-block__cite a { color: var(--accent); text-transform: none; letter-spacing: 0; font-family: var(--font-text); font-size: 13px; }

@media (max-width: 620px) {
  .quote-block { grid-template-columns: 1fr; padding: 24px; }
  .quote-block__cite { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* History timeline */
.history {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.history__item {
  display: grid;
  grid-template-columns: 120px 100px 1fr;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.history__date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
}
.history__ver {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.history__note {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}
@media (max-width: 620px) {
  .history__item { grid-template-columns: 1fr; gap: 4px; padding: 16px 0; }
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 24px;
  color: var(--ink-3);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: '−';
  color: var(--accent);
}
.faq-item__body {
  padding: 14px 0 4px;
  color: var(--ink-3);
  font-size: 15px;
  line-height: 1.6;
  max-width: 720px;
}

/* CTA row (multiple actions) */
.cta-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.cta-row__btn {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.cta-row__btn:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}
.cta-row__btn:hover .cta-row__btn-desc { color: rgba(255,255,255,0.7); }
.cta-row__btn:hover .cta-row__btn-arrow { color: var(--white); }
.cta-row__btn-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: inherit;
  letter-spacing: -0.005em;
}
.cta-row__btn-desc {
  font-size: 12px;
  color: var(--ink-3);
  transition: color 0.3s var(--ease);
}
.cta-row__btn-arrow {
  margin-top: 8px;
  color: var(--accent);
  transition: color 0.3s var(--ease);
}

@media (max-width: 900px) { .cta-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cta-row { grid-template-columns: 1fr; } }

/* ============================================
   Article grid page
   ============================================ */
.articles-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.article-full {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr);
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding-left 0.4s var(--ease);
}
.article-full:hover { padding-left: 12px; }
.article-full:hover .article-full__title { color: var(--accent); }
.article-full__meta-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.article-full__type {
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.article-full__date { color: var(--ink-3); }
.article-full__author { color: var(--ink); }
.article-full__linked { color: var(--ink-3); font-size: 11.5px; }
.article-full__linked strong { color: var(--ink); font-weight: 500; display: block; margin-top: 2px; text-transform: none; letter-spacing: 0; font-family: var(--font-text); font-size: 13px; }

.article-full__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 12px;
  transition: color 0.3s var(--ease);
}
.article-full__lead {
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink-3);
  max-width: 680px;
}

@media (max-width: 800px) {
  .article-full { grid-template-columns: 1fr; gap: 16px; padding: 28px 0; }
  .article-full__meta-col { flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .article-full:hover { padding-left: 0; }
}

/* ============================================
   Article read page
   ============================================ */
.article-cover {
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(48px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}
.article-cover__inner {
  max-width: 960px;
}
.article-cover__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.article-cover__meta .dot { color: var(--line-2); }
.article-cover__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.8vw, 68px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.article-cover__lead {
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.5;
  color: var(--ink-3);
  max-width: 720px;
  margin: 0 0 32px;
}
.article-cover__image {
  background: linear-gradient(135deg, var(--accent-tint) 0%, var(--paper-warm) 100%);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  margin-top: 32px;
}
.article-cover__image svg { width: 100%; height: 100%; }
.article-cover__caption {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  margin-top: 12px;
  padding-left: 4px;
  border-left: 2px solid var(--accent);
  padding-left: 12px;
}

.article-body {
  padding: clamp(48px, 6vw, 80px) 0;
  display: grid;
  grid-template-columns: 220px minmax(0, 720px) 220px;
  gap: 40px;
  justify-content: center;
}
.article-aside {
  position: sticky;
  top: 96px;
  align-self: start;
}
.article-aside__hdr {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.article-aside__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 1px solid var(--line);
  padding-left: 16px;
}
.article-aside__list a {
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.4;
  transition: color 0.2s var(--ease);
}
.article-aside__list a:hover { color: var(--accent); }
.article-aside__share {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}
.article-aside__share a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 8px 12px;
  border: 1px solid var(--line-2);
  transition: all 0.2s var(--ease);
  text-align: center;
}
.article-aside__share a:hover { border-color: var(--ink); color: var(--ink); }

.article-content {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
}
.article-content > p:first-child::first-line {
  font-weight: 500;
}
.article-content p { margin: 0 0 22px; }
.article-content h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 48px 0 16px;
  color: var(--ink);
}
.article-content h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 36px 0 12px;
  color: var(--ink);
}
.article-content ul, .article-content ol { margin: 0 0 22px; padding-left: 22px; }
.article-content li { margin-bottom: 8px; }
.article-content strong { color: var(--ink); font-weight: 600; }.article-content a {
 color: var(--accent); border-bottom: 1px solid var(--accent-tint);
  word-break: break-word;
}
.article-content a:hover { border-bottom-color: var(--accent); }
.article-content blockquote {
  margin: 32px -20px;
  padding: 24px 28px;
  border-left: 3px solid var(--accent);
  background: var(--paper-warm);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.article-content blockquote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.article-content figure {
  margin: 32px 0;
}
.article-content figure img {
  width: 100%;
  border: 1px solid var(--line);
}
.article-content figcaption {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  padding: 8px 0 0 12px;
  border-left: 2px solid var(--accent);
  margin-top: 8px;
}

.article-related {
  margin-top: 48px;
  padding: 24px;
  background: var(--paper-warm);
  border-left: 3px solid var(--accent);
}
.article-related__hdr {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.article-related__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 4px;
}
.article-related a {
  color: var(--ink);
  border: none;
}
.article-related a:hover { color: var(--accent); }

@media (max-width: 1080px) {
  .article-body { grid-template-columns: 200px minmax(0, 640px); }
  .article-aside--right { display: none; }
}
@media (max-width: 800px) {
  .article-body { grid-template-columns: 1fr; padding: 40px 0; }
  .article-aside { display: none; }
  .article-content blockquote { margin: 24px 0; }
}

/* ============================================
   Methodology page
   ============================================ */
.method-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.method-item {
  display: grid;
  grid-template-columns: 80px minmax(0, 1.6fr) 140px 100px auto;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding-left 0.4s var(--ease);
  cursor: pointer;
}
.method-item:hover { padding-left: 12px; }
.method-item:hover .method-item__name { color: var(--accent); }
.method-item__id {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-4);
  letter-spacing: 0.06em;
}
.method-item__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 4px;
  transition: color 0.3s var(--ease);
}
.method-item__scope {
  font-size: 13px;
  color: var(--ink-3);
}
.method-item__ver, .method-item__date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.method-item__ver span, .method-item__date span {
  display: block;
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 2px;
}

@media (max-width: 900px) {
  .method-item {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "id ver"
      "name name"
      "scope date";
    gap: 8px 20px;
  }
  .method-item__id { grid-area: id; }
  .method-item__body { grid-area: name; }
  .method-item__ver { grid-area: ver; text-align: right; }
  .method-item__date { grid-area: date; text-align: right; }
  .method-item__go { display: none; }
}

/* ============================================
   Editorial (redaction) page — expanded team grid
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.team-member {
  background: var(--white);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s var(--ease);
}
.team-member:hover { background: var(--paper); }
.team-member__hdr {
  display: flex;
  gap: 16px;
  align-items: center;
}
.team-member__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--ink-4);
}
.team-member__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 2px;
  letter-spacing: -0.005em;
}
.team-member__role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.team-member__bio {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.5;
}
.team-member__linked {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.team-member__linked strong {
  color: var(--ink);
  font-weight: 500;
  display: block;
  margin-top: 4px;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-text);
  font-size: 13px;
  line-height: 1.4;
}

@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }

.policy-block {
  background: var(--paper-warm);
  padding: 40px;
  border: 1px solid var(--line);
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 40px;
  scroll-margin-top: 96px;
}
.policy-block__hdr {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.policy-block__hdr .kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
}

@media (max-width: 800px) {
  .policy-block { grid-template-columns: 1fr; gap: 20px; padding: 28px; }
}

/* ============================================
   For companies (hub)
   ============================================ */
.companies-hub {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 40px;
}
.companies-hub__item {
  background: var(--white);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
  transition: background 0.2s var(--ease);
  text-decoration: none;
  color: inherit;
}
.companies-hub__item:hover { background: var(--paper); }
.companies-hub__item:hover .companies-hub__title { color: var(--accent); }
.companies-hub__num {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.companies-hub__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  line-height: 1.15;
  transition: color 0.3s var(--ease);
}
.companies-hub__desc {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.5;
  flex: 1;
}
.companies-hub__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: auto;
}

@media (max-width: 900px) { .companies-hub { grid-template-columns: 1fr; } }

/* ============================================
   Forms
   ============================================ */
.form-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.form-side {
  position: sticky;
  top: 96px;
}
.form-side__hdr {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.form-side__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 20px;
}
.form-side__desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.form-side__notes {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-side__note {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
}
.form-side__note-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.06em;
  flex-shrink: 0;
  min-width: 24px;
}

.form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 48px);
}
.form__row {
  margin-bottom: 24px;
}
.form__row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
}
.form__label .req { color: var(--accent); }
.form__hint {
  font-size: 12.5px;
  color: var(--ink-4);
  margin-top: 6px;
  line-height: 1.4;
}
.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  background: var(--paper);
  font-family: var(--font-text);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
  line-height: 1.4;
}
.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}
.form__textarea {
  resize: vertical;
  min-height: 130px;
  font-family: var(--font-text);
}
.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%230E1620' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form__radios,
.form__checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form__radio, .form__check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  transition: all 0.2s var(--ease);
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.4;
}
.form__radio:hover, .form__check:hover { border-color: var(--ink-3); }
.form__radio input, .form__check input {
  margin: 3px 0 0;
  accent-color: var(--accent);
}
.form__submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.form__consent {
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.5;
  max-width: 400px;
}
.form__consent a { color: var(--accent); border-bottom: 1px solid var(--accent-tint); }

@media (max-width: 900px) {
  .form-page { grid-template-columns: 1fr; }
  .form-side { position: static; }
  .form__row--split { grid-template-columns: 1fr; }
}

/* ============================================
   About / mission page
   ============================================ */
.about-hero {
  padding: clamp(56px, 8vw, 120px) 0;
  border-bottom: 1px solid var(--line);
}
.about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  padding-inline: clamp(0px, 1.6vw, 24px);
}
.about-hero__content {
  max-width: 860px;
  padding-left: clamp(0px, 1.8vw, 24px);
}
.about-hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 32px;
  text-wrap: balance;
}
.about-hero__title .accent {
  color: var(--accent);
  font-family: 'Fraunces', 'Georgia', serif;
  font-style: italic;
  font-weight: 300;
}
.about-hero__lead {
  font-size: clamp(18px, 1.5vw, 22px);
  color: var(--ink-2);
  line-height: 1.5;
}
.about-numbers {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: clamp(0px, 3vw, 40px);
  border-left: 1px solid var(--line);
}
.about-numbers__item {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.about-numbers__item:last-child { border-bottom: none; }
.about-numbers__num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.about-numbers__num .accent { color: var(--accent); }
.about-numbers__lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .about-hero__grid { grid-template-columns: 1fr; }
  .about-hero__grid { padding-inline: 0; gap: 32px; }
  .about-hero__content { padding-left: 0; max-width: none; }
  .about-numbers { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 24px; }
}

.about-coverage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.coverage-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 28px;
  background: linear-gradient(180deg, rgba(234, 239, 247, 0.72) 0%, rgba(255, 255, 255, 0.96) 100%);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.coverage-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(27, 58, 107, 0.09), transparent 34%),
    linear-gradient(135deg, rgba(27, 58, 107, 0.04), transparent 48%);
  pointer-events: none;
}
.coverage-card > * { position: relative; z-index: 1; }
.coverage-card__top { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.coverage-card__num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--accent); }
.coverage-card__tag { display: inline-flex; align-items: center; min-height: 28px; padding: 6px 12px; border-radius: 999px; background: rgba(27, 58, 107, 0.08); color: var(--accent); font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; }
.coverage-card__title { margin: 0; font-family: var(--font-display); font-size: clamp(24px, 2.2vw, 32px); line-height: 1.08; letter-spacing: -0.02em; }
.coverage-card__main { display: inline-flex; width: fit-content; align-items: center; gap: 10px; padding-bottom: 3px; border-bottom: 1px solid rgba(27, 58, 107, 0.24); color: var(--ink); font-weight: 600; }
.coverage-card__main:hover { color: var(--accent); border-bottom-color: var(--accent); }
.coverage-card__links { display: flex; flex-wrap: wrap; gap: 10px; }
.coverage-card__links a { display: inline-flex; align-items: center; min-height: 36px; padding: 9px 14px; border: 1px solid var(--line-2); background: rgba(255,255,255,0.92); color: var(--ink-2); font-size: 14px; font-weight: 500; transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease); }
.coverage-card__links a:hover { transform: translateY(-1px); border-color: var(--accent); color: var(--accent); background: var(--white); }
.about-contacts { border-top: 1px solid var(--line); }
.about-contacts__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.about-contact-card { padding: 32px 24px 24px 0; border-right: 1px solid var(--line); }
.about-contact-card--last { border-right: none; padding-right: 0; }
.about-contact-card__meta { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px; color: var(--ink-3); margin-bottom: 8px; }
.about-contact-card__value { font-family: var(--font-display); font-size: 20px; font-weight: 500; }
.about-social-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; padding-top: 24px; }
.about-social-card { position: relative; display: flex; flex-direction: column; gap: 10px; min-height: 100%; padding: 20px 18px 18px; border: 1px solid var(--line); background: var(--white); overflow: hidden; transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.about-social-card::before { content: ''; position: absolute; inset: 0; opacity: 1; pointer-events: none; }
.about-social-card--dzen::before { background: linear-gradient(135deg, rgba(17,17,17,0.06), transparent 55%); }
.about-social-card--sostav::before { background: linear-gradient(135deg, rgba(27,58,107,0.08), transparent 55%); }
.about-social-card--tenchat::before { background: linear-gradient(135deg, rgba(179,66,30,0.08), transparent 55%); }
.about-social-card--vk::before { background: linear-gradient(135deg, rgba(42,90,168,0.1), transparent 55%); }
.about-social-card:hover { transform: translateY(-2px); border-color: var(--accent); box-shadow: 0 18px 38px -28px rgba(14, 22, 32, 0.4); }
.about-social-card > * { position: relative; z-index: 1; }
.about-social-card__icon { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; background: rgba(27, 58, 107, 0.08); color: var(--accent); }
.about-social-card__icon svg { width: 22px; height: 22px; }
.about-social-card__eyebrow { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.about-social-card__title { font-family: var(--font-display); font-size: 22px; line-height: 1; color: var(--ink); }
.about-social-card__desc { font-size: 14px; line-height: 1.55; color: var(--ink-3); }

.about-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: clamp(56px, 6vw, 96px) 0;
  border-bottom: 1px solid var(--line);
}
.about-col__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.about-col__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  line-height: 1.1;
}
.about-col__body {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.55;
}
.about-col__body ul { padding-left: 18px; }
.about-col__body li { margin-bottom: 8px; }

@media (max-width: 900px) { .about-cols { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================
   Big anchor CTA block (used on multiple pages)
   ============================================ */
.big-cta {
  padding: clamp(56px, 6vw, 96px) 0;
  border-bottom: 1px solid var(--line);
}
.big-cta__inner {
  background: var(--white);
  border: 3px solid var(--accent);
  padding: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  position: relative;
}
.big-cta__mark {
  position: absolute;
  top: 0; left: 0;
  padding: 10px 14px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.big-cta__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 16px;
}
.big-cta__desc {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.5;
  max-width: 480px;
}
.big-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 800px) {
  .big-cta__inner { grid-template-columns: 1fr; gap: 24px; }
}

/* Success message */
.success-note {
  display: none;
  padding: 20px 24px;
  background: var(--accent-tint-2);
  border: 1px solid var(--accent-tint);
  border-left: 3px solid var(--accent);
  color: var(--accent-ink);
  font-size: 14.5px;
  line-height: 1.5;
  margin-bottom: 24px;
}
.success-note.show { display: block; }


/* ============================================
   Articles: editorial updates (Aug 2026)
   ============================================ */
.article-feature:focus-visible,
.article-item:focus-visible,
.article-full:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}
.article-feature__img svg text,
.article-cover__image svg text {
  user-select: none;
}
.article-full__linked b,
.article-full__linked strong {
  color: var(--ink);
}

/* ============================================
   404 · Не найдено
   ============================================ */
.notfound {
  padding-top: clamp(48px, 6vw, 96px);
  padding-bottom: clamp(64px, 8vw, 120px);
  position: relative;
}
.notfound__meta-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(40px, 5vw, 72px);
}
.notfound__meta-strip .meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.notfound__meta-strip b { color: var(--ink); font-weight: 500; }

.notfound__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 88px);
  align-items: start;
}

.notfound__left { min-width: 0; }

.notfound__code {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 20px;
}
.notfound__code::before {
  content: '';
  display: inline-block;
  width: 22px; height: 1px;
  background: var(--ink-4);
  transform: translateY(-3px);
}
.notfound__code b {
  color: var(--warn);
  font-weight: 500;
  letter-spacing: 0.14em;
}

.notfound__display {
  font-family: var(--font-display);
  font-size: clamp(120px, 22vw, 288px);
  line-height: 0.86;
  letter-spacing: -0.05em;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 4px;
  display: flex;
  align-items: flex-end;
  gap: clamp(4px, 1.2vw, 14px);
  position: relative;
}
.notfound__display span { display: inline-block; }
.notfound__display .n-mid {
  color: var(--accent);
  font-family: 'Fraunces', 'Georgia', serif;
  font-style: italic;
  font-weight: 300;
}

.notfound__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--ink);
  margin: clamp(20px, 3vw, 32px) 0 16px;
  text-wrap: balance;
  max-width: 640px;
}
.notfound__lead {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 560px;
  margin: 0 0 clamp(28px, 3vw, 40px);
}

.notfound__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(32px, 4vw, 52px);
}

.notfound__hint {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 20px;
  align-items: start;
  max-width: 560px;
}
.notfound__hint-lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
  padding-top: 2px;
  white-space: nowrap;
}
.notfound__hint-val {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.55;
}
.notfound__hint-val a {
  color: var(--ink);
  border-bottom: 1px solid var(--line-2);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.notfound__hint-val a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Right side — "editorial certificate" */
.notfound__cert {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.4vw, 32px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(14, 22, 32, 0.02);
}
.notfound__cert::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}
.notfound__cert-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.notfound__cert-id {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.notfound__cert-id b { color: var(--ink); font-weight: 500; }

.notfound__cert-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 18px;
}

.notfound__cert-rows {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.notfound__cert-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 6px;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s var(--ease), padding 0.25s var(--ease);
  color: inherit;
}
.notfound__cert-row:hover {
  background: var(--paper-warm);
  padding-left: 12px;
}
.notfound__cert-pos {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-4);
  letter-spacing: 0.04em;
}
.notfound__cert-name {
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}
.notfound__cert-name small {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-4);
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 4px;
}
.notfound__cert-arrow {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink-4);
  transition: transform 0.3s var(--ease), color 0.25s var(--ease);
}
.notfound__cert-row:hover .notfound__cert-arrow {
  color: var(--accent);
  transform: translateX(4px);
}

.notfound__cert-foot {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--line-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.notfound__cert-stamp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--warn);
  color: var(--warn);
  border-radius: 999px;
  background: rgba(179, 66, 30, 0.04);
}
.notfound__cert-stamp::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--warn);
}

/* Search block */
.notfound__search {
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
.notfound__search-head .kicker { margin-bottom: 12px; }
.notfound__search-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 8px;
}
.notfound__search-desc {
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 380px;
}

.notfound__form {
  display: flex;
  gap: 8px;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 6px 6px 6px 20px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.notfound__form:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px var(--accent-tint-2);
}
.notfound__form input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: none;
  font-family: var(--font-text);
  font-size: 15px;
  color: var(--ink);
  min-width: 0;
}
.notfound__form input::placeholder { color: var(--ink-4); }
.notfound__form button {
  flex-shrink: 0;
  border: 0;
  cursor: pointer;
}

.notfound__suggest {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.notfound__suggest-lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-right: 4px;
}
.notfound__suggest a {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-2);
  background: var(--white);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
}
.notfound__suggest a:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--paper-warm);
}

@media (max-width: 980px) {
  .notfound__grid { grid-template-columns: 1fr; gap: 40px; }
  .notfound__cert { max-width: 640px; }
  .notfound__search { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .notfound__meta-strip { font-size: 11px; gap: 12px; padding-bottom: 14px; }
  .notfound__display { font-size: clamp(96px, 32vw, 180px); }
  .notfound__hint { grid-template-columns: 1fr; gap: 6px; }
  .notfound__hint-lbl { padding-top: 0; }
  .notfound__cert-row { grid-template-columns: 24px 1fr auto; gap: 10px; padding: 12px 4px; }
  .notfound__cert-name { font-size: 14px; }
  .notfound__form { padding: 6px; border-radius: 14px; flex-wrap: wrap; }
  .notfound__form input { padding: 8px 12px; width: 100%; }
  .notfound__form button { width: 100%; justify-content: center; }
}

/* ============================================================
   Template-page entrance motion
   Keeps the home-page editorial motion language on long-form
   rating/article/form templates that do not use .reveal hooks.
   ============================================================ */
.rating-page__hero:not(.reveal),
.article-cover__inner:not(.reveal),
.form-side:not(.reveal),
.form:not(.reveal) {
  animation: templateEnter 0.8s var(--ease) both;
}
.article-cover__image:not(.reveal) {
  animation: templateEnter 0.8s var(--ease) 0.12s both;
}
.rating-body:not(.reveal),
.article-body:not(.reveal) {
  animation: templateEnter 0.8s var(--ease) 0.2s both;
}
.rating-body:not(.reveal) .rating-section,
.article-body:not(.reveal) > * {
  animation: templateContentEnter 0.65s var(--ease) both;
}
.rating-body:not(.reveal) .rating-section:nth-child(2),
.article-body:not(.reveal) > *:nth-child(2) { animation-delay: 0.08s; }
.rating-body:not(.reveal) .rating-section:nth-child(3),
.article-body:not(.reveal) > *:nth-child(3) { animation-delay: 0.16s; }
.rating-body:not(.reveal) .rating-section:nth-child(4),
.article-body:not(.reveal) > *:nth-child(4) { animation-delay: 0.24s; }
.rating-body:not(.reveal) .rating-section:nth-child(5),
.article-body:not(.reveal) > *:nth-child(5) { animation-delay: 0.32s; }
@keyframes templateEnter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes templateContentEnter {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .rating-page__hero:not(.reveal),
  .article-cover__inner:not(.reveal),
  .article-cover__image:not(.reveal),
  .rating-body:not(.reveal),
  .article-body:not(.reveal),
  .rating-body:not(.reveal) .rating-section,
  .article-body:not(.reveal) > *,
  .form-side:not(.reveal),
  .form:not(.reveal) {
    opacity: 1;
    transform: none;
    animation: none;
  }
}


/* ============================================
   Rating-cover (replaces inline SVG cover)
   Semantic, responsive, brandbook-aligned.
   Uses unique class name to preserve existing
   .rating-card rules used elsewhere on the site.
   ============================================ */
.rating-cover {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 22px);
  padding: clamp(20px, 3vw, 36px);
  background: linear-gradient(135deg, var(--accent-tint) 0%, var(--paper-warm) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  min-height: clamp(220px, 30vw, 320px);
  overflow: hidden;
  color: var(--ink);
  text-align: left;
}
.rating-cover__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.rating-cover__pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  white-space: normal;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.rating-cover__period {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.rating-cover__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.rating-cover__rule {
  border: 0;
  height: 1px;
  background: var(--line);
  width: clamp(60px, 12%, 120px);
  margin: 0;
}
.rating-cover__bar {
  display: grid;
  grid-template-columns: 3fr 2.6fr 2fr 1.6fr;
  gap: 6px;
  align-self: stretch;
}
.rating-cover__seg {
  height: 8px;
  border-radius: 4px;
  background: var(--accent-tint);
}
.rating-cover__seg--cool2 { background: var(--accent-tint-2); }
.rating-cover__seg--warm { background: #F0E9DB; }
.rating-cover__seg--hot  { background: #C8462C; }
.rating-cover__footer {
  margin: auto 0 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  color: var(--ink-3);
  line-height: 1.5;
  overflow-wrap: anywhere;
}
/* Mobile overrides for the cover variant. */
@media (max-width: 720px) {
  .article-cover__image.rating-cover {
    aspect-ratio: auto;
    padding: 18px 18px 16px;
    gap: 12px;
    min-height: 0;
  }
  .rating-cover__bar {
    grid-template-columns: 2fr 1.8fr 1.4fr 1fr;
    gap: 4px;
  }
  .rating-cover__title { font-size: 19px; line-height: 1.22; }
  .rating-cover__footer { font-size: 10.5px; letter-spacing: 0.06em; }
}
@media (max-width: 380px) {
  .rating-cover__title { font-size: 17px; }
  .rating-cover__pill { font-size: 10px; padding: 5px 10px; }
}
.rating-cover, .rating-cover * {
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: anywhere;
}


/* ============================================
   Mobile table scroll hint (.scroll-hint)
   Adds a "листайте →" badge above wide tables on small screens.
   ============================================ */
.scroll-hint { position: relative; margin: 0; padding-top: 0; width: 100%; max-width: 100%; }
.scroll-hint::before {
  display: none; content: "листайте →";
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--accent); padding: 4px 0 8px; opacity: 0.85;
}
.scroll-hint > div { overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; }
.scroll-hint table { min-width: 560px; width: 100%; }
@media (max-width: 720px) { .scroll-hint::before { display: inline-block; } }

/* ============================================
   Rating-page responsive padding fix
   ============================================ */
.wrap > .rating-page, .wrap .rating-page__hero, .wrap .rating-body { width: 100%; }
.rating-section { padding-left: 0; padding-right: 0; }
.rating-section__body { padding-left: 0; padding-right: 0; box-sizing: border-box; }
.history, .faq-item, .cta-row { box-sizing: border-box; max-width: 100%; }
@media (max-width: 720px) {
  .wrap { padding-left: 16px !important; padding-right: 16px !important; }
  .rating-section__body, .history, .faq-item, .cta-row { width: 100%; }
}
html, body { overflow-x: hidden; max-width: 100%; }
.wrap, main, .rating-page, .rating-body, .rating-content, .rating-section,
.rating-section__body, .history, .faq-item, .cta-row { max-width: 100%; box-sizing: border-box; }

/* ============================================
   Editorial monogram avatar (.team-member__avatar--mono)
   Used by landing expert rosters where no photo is available.
   ============================================ */
.team-member__avatar--mono {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.team-member__avatar--mono span {
  display: block;
  transform: translateY(-1px);
}
