@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap');
/* Personal site — page scaffolding on top of tokens.css.
   Layout and web-scale sizing only: every color, font, radius and shadow
   comes from the design system's tokens. 28px leading unit, 14px half-step;
   left-aligned and asymmetric, over-rounded containers, washed photography. */
:root { --leading: 28px; --half: 14px; --edge: clamp(20px, 5vw, 72px); --measure: 62ch; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; text-wrap: pretty; overflow-x: clip; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 var(--edge); }
.muted { color: color-mix(in srgb, var(--color-text) 78%, transparent); }
.dim { color: color-mix(in srgb, var(--color-text) 60%, transparent); }
a { color: var(--color-accent-700); text-decoration: none; }
a:hover { color: var(--color-accent-600); }
a.btn-primary, a.btn-primary:hover { color: var(--color-bg); }
a.btn-secondary, a.btn-secondary:hover { color: var(--color-text); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.portrait img, .pic img { display: block; width: 100%; height: 100%; object-fit: cover; }
.placeholder-media { position: relative; }
.placeholder-media::before { content: "Image placeholder"; position: absolute; inset: 12px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  border: 1.5px dashed color-mix(in srgb, var(--color-text) 30%, transparent);
  border-radius: calc(var(--radius-md) * 0.7); font-size: 13px;
  color: color-mix(in srgb, var(--color-text) 45%, transparent); }

/* — masthead — */
.sitenav { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 30px); padding: 24px var(--edge);
  max-width: 1180px; margin: 0 auto; box-sizing: content-box; }
.sitenav .brand { font-family: var(--font-heading); font-size: 19px; margin-right: auto; color: inherit; }
.sitenav a { color: inherit; font-size: 14.5px; white-space: nowrap; }
.sitenav a:hover, .sitenav a[aria-current="page"] { color: var(--color-accent-700); }
.sitenav .btn { font-size: 14px; font-weight: 450; white-space: nowrap; flex: none; }

.sitenav > a[href*="#about"] { flex: none; }
@media (max-width: 640px) { .sitenav .hide-sm { display: none; } }
@media (max-width: 720px) {
  .sitenav { flex-wrap: wrap; gap: 12px 18px; padding-top: 16px; padding-bottom: 16px; }
  .sitenav .brand { flex-basis: 100%; font-size: 17px; }
  .sitenav .btn { margin-left: auto; }
  .navdrop { left: -18px; right: auto; }
}

/* — nav submenu: one entry per practice area — */
.navitem { position: relative; display: flex; }
.navtrigger { display: inline-flex; align-items: center; gap: 5px; font: inherit; font-size: 14.5px;
  color: inherit; background: none; border: 0; padding: 0; cursor: pointer; white-space: nowrap; }
.navtrigger::after { content: ""; width: 6px; height: 6px; border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor; transform: translateY(-2px) rotate(45deg); opacity: .55; }
.navitem:hover .navtrigger, .navitem:focus-within .navtrigger { color: var(--color-accent-700); }
.navdrop { position: absolute; top: calc(100% + 14px); left: auto; right: -18px; z-index: 20; min-width: 250px;
  max-width: calc(100vw - 2 * var(--edge));
  display: none; flex-direction: column; gap: 2px; padding: 12px; background: var(--color-neutral-100);
  border-radius: calc(var(--radius-lg) * 1.15); box-shadow: var(--shadow-lg); }
.navitem:hover .navdrop, .navitem:focus-within .navdrop { display: flex; }
.navdrop::before { content: ""; position: absolute; inset: -14px 0 100%; }
.navdrop a { display: block; padding: 9px 14px; border-radius: 999px; font-size: 14.5px; line-height: 21px; }
.navdrop a small { display: block; font-size: 12.5px; line-height: 18px;
  color: color-mix(in srgb, var(--color-text) 58%, transparent); }
.navdrop a:hover { background: var(--color-accent-100); color: var(--color-accent-800); }
.navdrop a:hover small { color: var(--color-accent-700); }

/* — shared type — */
.kicker { display: block; font-size: 13px; line-height: var(--half); letter-spacing: .06em;
  text-transform: uppercase; font-weight: 600; color: var(--color-accent-700); margin: 0 0 20px; }
.display { font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  letter-spacing: 0; margin: 0 0 0 -.028em; text-box: trim-both cap alphabetic; }
.line { display: block; }
.sec { padding: calc(2.2 * var(--leading)) 0 0; }
.sec-head { display: flex; align-items: baseline; gap: 20px; }
.sec-head .more { margin-left: auto; font-size: 14.5px; }

/* — hero — */
.hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 400px);
  gap: clamp(32px, 5vw, 64px); align-items: center; padding: calc(1.8 * var(--leading)) 0 calc(2.2 * var(--leading)); }
.hero .display { font-size: clamp(38px, 5vw, 62px); line-height: clamp(42px, 5.4vw, 68px); }
.hero .sub { font-size: 17.5px; line-height: 30px; margin: 26px 0 0; max-width: 46ch; }
.portrait { border-radius: 50%; overflow: hidden; aspect-ratio: 1; background: var(--color-accent-200);
  justify-self: end; width: 100%; }

/* — stat row — */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.stat { background: var(--color-surface); border-radius: calc(var(--radius-lg) * 1.15); padding: 22px 26px; }
.stat .num { font-family: var(--font-heading); font-size: 36px; line-height: 42px; margin: 0; color: var(--color-accent-700); }
.stat .lab { font-size: 12.5px; line-height: 18px; letter-spacing: .04em; text-transform: uppercase;
  font-weight: 600; margin: 8px 0 0; color: color-mix(in srgb, var(--color-text) 66%, transparent); }

/* — featured post — */
.feature { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(24px, 3vw, 40px);
  align-items: center; background: var(--color-surface); border-radius: calc(2 * var(--radius-lg));
  padding: clamp(28px, 3vw, 42px); margin-top: var(--leading); }
.feature h3 { font-family: var(--font-heading); font-size: clamp(26px, 2.7vw, 34px); line-height: 1.24; margin: 14px 0 0; }
.feature p { font-size: 15.5px; line-height: 27px; margin: 16px 0 0; }
.feature .media { aspect-ratio: 16 / 10; border-radius: var(--radius-lg); overflow: hidden; background: var(--color-neutral-300); }
.feature iframe { width: 100%; height: 100%; border: 0; display: block; }

/* — post + project cards — */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: var(--leading); }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: var(--leading); }
.tile { background: var(--color-surface); border-radius: calc(var(--radius-lg) * 1.15); padding: 26px 28px;
  display: flex; flex-direction: column; gap: 12px; color: inherit; }
a.tile:hover { color: inherit; box-shadow: var(--shadow-md); }
.tile h4 { font-family: var(--font-heading); font-size: 20px; line-height: 27px; margin: 0; }
.tile p { font-size: 14px; line-height: 24px; margin: 0; flex: 1; }
.tile .meta { font-size: 13px; color: color-mix(in srgb, var(--color-text) 55%, transparent); }

/* — practice areas — */
.area { padding-top: calc(1.6 * var(--leading)); }
.area-head { display: grid; grid-template-columns: minmax(0, 300px) minmax(0, 1fr); gap: 12px clamp(24px, 4vw, 56px);
  align-items: baseline; align-content: start; padding-bottom: 6px; }
.area-head h3 { font-family: var(--font-heading); font-weight: var(--font-heading-weight); font-size: 30px;
  line-height: 38px; margin: 0; }
.area-head p { font-size: 15.5px; line-height: 27px; margin: 0; max-width: 60ch; grid-column: 2; grid-row: 1 / span 2; }
.area-head .chips { grid-column: 1; align-self: start; margin-top: 2px; }
@media (max-width: 860px) { .area-head { grid-template-columns: 1fr; } .area-head p { grid-column: 1; grid-row: auto; } .area-head .chips { order: 3; } }

/* — timeline — */
.timeline { display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: 0 32px; margin-top: var(--leading); }
.timeline .when { font-size: 14px; padding-top: 6px; color: color-mix(in srgb, var(--color-text) 60%, transparent); }
.timeline .what { position: relative; padding: 0 0 30px 30px; border-left: 1px solid color-mix(in srgb, var(--color-text) 14%, transparent); }
.timeline .what::before { content: ""; position: absolute; left: -8px; top: 8px; width: 15px; height: 15px;
  border-radius: 50%; background: var(--color-accent); }
.timeline .what:last-child { border-left-color: transparent; }
.timeline h4 { font-family: var(--font-heading); font-size: 21px; line-height: 28px; margin: 0; }
.timeline p { font-size: 14.5px; line-height: 25px; margin: 8px 0 0; max-width: 64ch; }

/* — closing patch — */
.patch { background: var(--color-accent-2-100); border-radius: calc(2 * var(--radius-lg));
  padding: clamp(32px, 4vw, 48px) clamp(28px, 4vw, 56px); margin-top: calc(2.2 * var(--leading)); }
.patch h3 { font-family: var(--font-heading); font-size: clamp(24px, 2.6vw, 30px); line-height: 1.26; margin: 0; }
.patch p { font-size: 16px; line-height: 28px; margin: 14px 0 26px; max-width: 52ch; }
.patch .row { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-form { display: grid; gap: 14px; max-width: 460px; margin-top: 28px; }
.contact-form textarea.input { border-radius: var(--radius-lg); }
.contact-form-status { font-size: 14px; margin: 0; min-height: 20px; color: var(--color-accent-2-700); }
.contact-form-status.is-error { color: var(--color-accent-700); }

.foot { display: flex; gap: 24px; flex-wrap: wrap; align-items: baseline; padding: calc(2 * var(--leading)) 0;
  font-size: 13px; color: color-mix(in srgb, var(--color-text) 62%, transparent); }
.foot .sp { margin-left: auto; }
.foot a { color: inherit; }
.foot a:hover { color: var(--color-accent-700); }

/* — writing index — */
.page-head { padding: calc(1.6 * var(--leading)) 0 calc(1.2 * var(--leading)); }
.page-head .display { font-size: clamp(36px, 4.4vw, 54px); line-height: 1.1; }
.page-head p { font-size: 17px; line-height: 29px; margin: 24px 0 0; max-width: 52ch; }
.postlist { display: flex; flex-direction: column; margin-top: var(--leading); }
.postrow { display: grid; grid-template-columns: 64px minmax(0, 1fr) 160px; gap: 28px; align-items: baseline;
  padding: 26px 0; border-bottom: 1px solid color-mix(in srgb, var(--color-text) 10%, transparent); color: inherit; }
.postrow:first-child { border-top: 1px solid color-mix(in srgb, var(--color-text) 10%, transparent); }
.postrow:hover { color: inherit; }
.postrow:hover h3 { color: var(--color-accent-700); }
.postrow .n { font-family: var(--font-heading); font-size: 20px; color: var(--color-accent); }
.postrow h3 { font-family: var(--font-heading); font-size: 25px; line-height: 32px; margin: 0; }
.postrow p { font-size: 15px; line-height: 26px; margin: 8px 0 0; max-width: 64ch; }
.postrow .meta { font-size: 13px; text-align: right; line-height: 22px;
  color: color-mix(in srgb, var(--color-text) 55%, transparent); }

/* — article — */
.article { max-width: 74ch; padding-bottom: var(--leading); }
.article-head { padding: calc(1.4 * var(--leading)) 0 var(--leading); }
.article-head h1 { font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: clamp(34px, 4.2vw, 52px); line-height: 1.12; margin: 16px 0 0 -.028em; max-width: 22ch; }
.article-meta { display: flex; gap: 18px; flex-wrap: wrap; font-size: 14px; margin: 22px 0 0;
  color: color-mix(in srgb, var(--color-text) 60%, transparent); }
.article-figure { margin: 0 0 calc(1.4 * var(--leading)); border-radius: calc(2 * var(--radius-lg));
  overflow: hidden; aspect-ratio: 16 / 9; background: var(--color-neutral-300); }
.prose { font-size: 17px; line-height: var(--leading); }
.prose > p { margin: var(--leading) 0 0; }
.prose > p:first-child { margin-top: 0; }
.prose .lead { font-size: 20px; line-height: 32px; }
.prose h2 { font-family: var(--font-heading); font-weight: var(--font-heading-weight); font-size: 28px;
  line-height: 36px; margin: calc(1.8 * var(--leading)) 0 0; }
.prose h3 { font-family: var(--font-heading); font-weight: var(--font-heading-weight); font-size: 21px;
  line-height: 29px; margin: calc(1.3 * var(--leading)) 0 0; }
.prose ul, .prose ol { margin: var(--leading) 0 0; padding-left: 24px; }
.prose li { margin: 8px 0 0; }
.prose li::marker { color: var(--color-accent); }
.prose blockquote { font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 24px; line-height: 34px; margin: calc(1.5 * var(--leading)) 0 0; padding-left: 26px;
  border-left: 3px solid var(--color-accent-300); max-width: 34ch; }
.prose pre { background: var(--color-neutral-900); color: var(--color-neutral-200); border-radius: var(--radius-lg);
  padding: 22px 26px; overflow-x: auto; font-size: 14px; line-height: 24px; margin: calc(1.3 * var(--leading)) 0 0; }
.prose code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .92em; }
.prose :not(pre) > code { background: var(--color-accent-100); color: var(--color-accent-800);
  border-radius: var(--radius-sm); padding: 2px 6px; }
.prose figure { margin: calc(1.5 * var(--leading)) 0 0; }
.prose figure .media { border-radius: calc(1.4 * var(--radius-lg)); overflow: hidden; aspect-ratio: 16 / 9;
  background: var(--color-neutral-300); }
.prose figcaption { font-size: 13.5px; line-height: 22px; margin: 12px 0 0;
  color: color-mix(in srgb, var(--color-text) 60%, transparent); }
.author { display: grid; grid-template-columns: 84px minmax(0, 1fr); gap: 24px; align-items: center;
  background: var(--color-surface); border-radius: calc(2 * var(--radius-lg)); padding: 30px 34px;
  margin-top: calc(2 * var(--leading)); }
.author .pic { width: 84px; height: 84px; border-radius: 50%; overflow: hidden; background: var(--color-accent-200); }
.author h4 { font-family: var(--font-heading); font-size: 20px; margin: 0; }
.author p { font-size: 14.5px; line-height: 25px; margin: 8px 0 0; }
.nextprev { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: var(--leading); }

/* — responsive — */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .portrait { width: min(320px, 70%); justify-self: start; order: -1; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature, .grid-3, .grid-2, .nextprev { grid-template-columns: 1fr; }
  .feature .media { order: -1; }
  .timeline { grid-template-columns: 1fr; gap: 0; }
  .timeline .when { padding-top: 0; }
  .timeline .what { border-left: none; padding: 8px 0 26px; }
  .timeline .what::before { display: none; }
}
@media (max-width: 620px) {
  .postrow { grid-template-columns: 1fr; gap: 8px; }
  .postrow .meta { text-align: left; }
  .stats { grid-template-columns: 1fr; }
  /* 16px stops iOS Safari from auto-zooming when a field gets focus */
  .input { font-size: 16px; }
}
@media (max-width: 420px) {
  .hero .display { font-size: 33px; line-height: 38px; }
  .stat { padding: 18px 20px; }
}

/* — language switcher — */
.langs { display: flex; gap: 2px; padding: 3px; border-radius: 999px;
  background: color-mix(in srgb, var(--color-text) 7%, transparent); }
.langs button { font: inherit; font-size: 12.5px; font-weight: 600; letter-spacing: .04em; line-height: 1;
  padding: 7px 11px; border: 0; border-radius: 999px; background: none; color: inherit; cursor: pointer;
  opacity: .62; transition: background .2s ease, color .2s ease, opacity .2s ease; }
.langs button:hover { opacity: 1; }
.langs button[aria-pressed="true"] { background: var(--color-neutral-100); color: var(--color-accent-700);
  opacity: 1; box-shadow: var(--shadow-sm); }
@media (max-width: 560px) { .langs { display: none; } }

/* — motion: scroll reveal — */
.rv { opacity: 0; transform: translateY(18px); }
.rv-in { opacity: 1; transform: none; transition: opacity .62s cubic-bezier(.22,.7,.3,1) var(--rv-d, 0ms), transform .62s cubic-bezier(.22,.7,.3,1) var(--rv-d, 0ms); }
.tile, .postrow h3, .stat, .navdrop a { transition: transform .28s cubic-bezier(.22,.7,.3,1), box-shadow .28s ease, background .2s ease, color .2s ease; }
a.tile:hover, .tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat:hover { transform: translateY(-3px); }
.postrow:hover h3 { transform: translateX(6px); }
.timeline .what::before { transition: transform .3s cubic-bezier(.3,1.4,.5,1); }
.timeline .what:hover::before { transform: scale(1.35); }
.btn, .sitenav a, .foot a { transition: color .2s ease, background .2s ease, transform .2s ease; }

/* — back to top: a small rocket — */
.totop { position: fixed; right: clamp(18px, 3vw, 34px); bottom: clamp(18px, 3vw, 34px); z-index: 60;
  width: 58px; height: 58px; display: grid; place-items: center; padding: 0; cursor: pointer;
  border: 0; border-radius: 50%; background: var(--color-accent); color: var(--color-neutral-100);
  box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(16px) scale(.85);
  transition: opacity .32s ease, transform .38s cubic-bezier(.3,1.35,.5,1), visibility .32s, background .2s ease; }
.totop.on { opacity: 1; visibility: visible; transform: none; }
.totop:hover { background: var(--color-accent-700); }
.totop-rocket { width: 26px; height: 33px; display: block; transform: translateY(1px);
  transition: transform .3s cubic-bezier(.3,1.4,.5,1); }
.totop-rocket .body { fill: currentColor; }
.totop-rocket .fin { fill: color-mix(in srgb, currentColor 78%, transparent); }
.totop-rocket .port { fill: var(--color-accent-700); }
.totop-rocket .flame { fill: var(--color-accent-2, #e0b23c); opacity: 0; transform-origin: 16px 30px; transform: scaleY(.4); transition: opacity .2s ease, transform .2s ease; }
.totop:hover .totop-rocket { transform: translateY(-4px); }
.totop:hover .totop-rocket .flame { opacity: 1; transform: scaleY(1); animation: totop-flicker .28s infinite alternate; }
.totop.launch .totop-rocket { animation: totop-launch .6s cubic-bezier(.5,0,.6,1); }
@keyframes totop-launch { 0% { transform: translateY(0); } 22% { transform: translateY(5px) scale(.9); } 100% { transform: translateY(-52px) scale(.7); opacity: 0; } }
@keyframes totop-flicker { from { transform: scaleY(.86) scaleX(.92); } to { transform: scaleY(1.12); } }
.totop-tip { position: absolute; right: calc(100% + 12px); white-space: nowrap; font-size: 12.5px;
  letter-spacing: .04em; text-transform: uppercase; font-weight: 600; padding: 7px 13px; border-radius: 999px;
  background: var(--color-neutral-900); color: var(--color-neutral-100); opacity: 0; transform: translateX(8px);
  pointer-events: none; transition: opacity .22s ease, transform .22s ease; }
.totop:hover .totop-tip { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; }
  .totop-rocket, .totop.launch .totop-rocket, .totop:hover .totop-rocket .flame { animation: none; transform: none; }
}

/* — resume — */
.resume-head { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 28px; align-items: end; }
.resume-head p { max-width: 54ch; }
.resume-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.resume { display: grid; grid-template-columns: minmax(0, 300px) minmax(0, 1fr); gap: clamp(28px, 4vw, 60px);
  padding-top: var(--leading); }
.rblock { margin-bottom: calc(1.5 * var(--leading)); }
.rblock h2 { font-size: 12.5px; line-height: 18px; letter-spacing: .08em; text-transform: uppercase;
  font-weight: 600; color: var(--color-accent-700); margin: 0 0 16px;
  padding-bottom: 10px; border-bottom: 1px solid color-mix(in srgb, var(--color-text) 12%, transparent); }
.rblock .chips { margin: 8px 0 16px; }
.rlabel { font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; font-weight: 600; margin: 0;
  color: color-mix(in srgb, var(--color-text) 55%, transparent); }
.rlist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px;
  font-size: 14.5px; line-height: 22px; overflow-wrap: anywhere; }
.ritem { margin-bottom: calc(1.15 * var(--leading)); }
.ritem:last-child { margin-bottom: 0; }
.ritem-head { display: flex; gap: 16px; align-items: baseline; flex-wrap: wrap; }
.ritem-t { font-family: var(--font-heading); font-weight: var(--font-heading-weight); font-size: 20px;
  line-height: 28px; margin: 0; }
.rmeta { font-size: 13.5px; margin: 0 0 0 auto; white-space: nowrap;
  color: color-mix(in srgb, var(--color-text) 55%, transparent); }
.rorg { font-size: 14.5px; margin: 3px 0 0; color: var(--color-accent-700); }
.rblock > .muted, .ritem > .muted { font-size: 14.5px; line-height: 24px; margin: 8px 0 0; max-width: 68ch; }
.rbul { margin: 12px 0 0; padding-left: 20px; font-size: 14.5px; line-height: 24px; max-width: 70ch; }
.rbul li { margin: 7px 0 0; }
.rbul li::marker { color: var(--color-accent); }
@media (max-width: 900px) {
  .resume, .resume-head { grid-template-columns: 1fr; }
  .rmeta { margin-left: 0; }
}

/* — print: the resume becomes the PDF — */
@media print {
  .sitenav, .totop, .resume-actions, .foot { display: none !important; }
  .rv { opacity: 1 !important; transform: none !important; }
  body { background: #fff; color: #111; }
  .wrap { max-width: none; padding: 0; }
  .page-head { padding: 0 0 18px; }
  .resume { grid-template-columns: 250px 1fr; gap: 34px; padding-top: 10px; }
  .ritem, .rblock { break-inside: avoid; }
  .tag { border: 1px solid #bbb !important; background: none !important; color: #333 !important; }
  a { color: inherit !important; text-decoration: none; }
}

/* — Cyrillic: Caprasimo and Figtree have no Cyrillic glyphs, so Russian would
   fall back mid-string and Latin words inside it would jump faces. Swap both
   families for Cyrillic-capable ones whenever the page language is Russian. — */
:lang(ru) body, :lang(ru) .btn, :lang(ru) input, :lang(ru) button {
  font-family: 'Manrope', system-ui, sans-serif; font-synthesis-weight: none; }
:lang(ru) .display, :lang(ru) .sitenav .brand, :lang(ru) h1, :lang(ru) h2, :lang(ru) h3, :lang(ru) h4,
:lang(ru) .ritem-t, :lang(ru) .stat .num, :lang(ru) .postrow .n, :lang(ru) .prose blockquote {
  font-family: 'Bitter', Georgia, serif; font-weight: 600; letter-spacing: -.005em; }
:lang(ru) .rblock h2, :lang(ru) .kicker, :lang(ru) .lab, :lang(ru) .rlabel, :lang(ru) .card-kicker {
  font-family: 'Manrope', system-ui, sans-serif; font-weight: 600; }
:lang(ru) .hero .display { line-height: clamp(44px, 5.6vw, 70px); }
