/* Russian mirror — minor RU-specific tweaks.
   Global .lang-switcher style now lives in styles.css; only deck variant + Cyrillic letter-spacing here. */

/* Deck-specific switcher: fixed top-right to match dark deck aesthetic */
.deck-lang-switcher {
  position: fixed;
  top: 22px;
  right: 36px;
  z-index: 200;
  direction: ltr;
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Inter', -apple-system, sans-serif;
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: 999px;
  padding: 2px;
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(6px);
}

.deck-lang-switcher a {
  padding: 4px 9px;
  border-radius: 999px;
  color: #888;
  text-decoration: none;
  line-height: 1;
  transition: color 0.2s, background 0.2s;
}

.deck-lang-switcher a:hover {
  color: #c9a961;
}

.deck-lang-switcher a.active {
  color: #0a0a0f;
  background: #c9a961;
}

@media (max-width: 900px) {
  .deck-lang-switcher {
    top: 12px;
    right: 12px;
    font-size: 10px;
  }
  .deck-lang-switcher a {
    padding: 3px 7px;
  }
}

/* Minor RU readability tweaks — Cyrillic glyphs render slightly wider; tighten letter-spacing on caps */
.hero__eyebrow,
.section__eyebrow {
  letter-spacing: 0.14em;
}
