/* Shared sticky top-header с брендингом Оли.
 * Применяется на всех публичных страницах воронки (где есть .bottom-nav).
 * НЕ подключается на admin-token.html, offer.html, privacy.html, terms.html, consent.html, 404.html. */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 16px;
  height: 56px;
  background: rgba(255, 251, 252, 0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240, 235, 227, 0.6);
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-height: 44px;
}

.site-header__mono {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #435D43, #2F6F5E);
  color: #fff;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  font-size: 12px;
  display: grid;
  place-items: center;
  letter-spacing: 0.02em;
}

.site-header__name {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1E1B2E;
  letter-spacing: -0.01em;
}

