.standard-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 7, 0.88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.standard-header__nav {
  width: min(calc(100% - 40px), 1180px);
  min-height: 78px;
  margin-inline: auto;
  padding: 4px 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.standard-header__brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.standard-header__brand img {
  display: block;
  width: 214px;
  max-width: none;
  height: auto;
  object-fit: contain;
}

.standard-header__links,
.standard-header__actions {
  display: flex;
  align-items: center;
}

.standard-header__links {
  justify-content: center;
  gap: clamp(16px, 1.8vw, 24px);
}

.standard-header__actions {
  flex: 0 0 auto;
  gap: 9px;
}

.standard-header__links a {
  color: #e6e5ed;
  font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.standard-header__links a:hover,
.standard-header__links a:focus-visible {
  color: #fff;
}

.standard-header__language {
  display: grid;
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  place-items: center;
  color: #aaa6b6;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.08em;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.standard-header__language:hover,
.standard-header__language:focus-visible {
  color: #fff;
  border-color: rgba(166, 108, 255, 0.48);
  background: rgba(166, 108, 255, 0.09);
}

.standard-header__experience {
  display: inline-flex;
  min-height: 42px;
  padding: 0 17px;
  align-items: center;
  gap: 8px;
  color: #d7d4df;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.standard-header__experience:hover,
.standard-header__experience:focus-visible {
  border-color: rgba(166, 108, 255, 0.48);
  background: rgba(166, 108, 255, 0.09);
}

.standard-header__toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.standard-header__toggle svg {
  width: 23px;
}

.standard-header__mobile {
  display: none;
  padding: 8px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 7, 0.98);
}

.standard-header__mobile.is-open {
  display: grid;
}

.standard-header__mobile a {
  padding: 13px 4px;
  color: #e8e7ee;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  font-weight: 760;
}

.standard-header__mobile a:last-child {
  border-bottom: 0;
}

@media (max-width: 1040px) {
  .standard-header__links,
  .standard-header__experience {
    display: none;
  }

  .standard-header__toggle {
    display: inline-grid;
    place-items: center;
  }
}

@media (max-width: 600px) {
  .standard-header__nav {
    width: min(calc(100% - 28px), 1180px);
    min-height: 74px;
    padding: 4px 0 8px;
    gap: 10px;
  }

  .standard-header__brand img {
    width: 183px;
  }

  .standard-header__actions {
    gap: 7px;
  }

  .standard-header__language {
    min-width: 40px;
    min-height: 40px;
    padding-inline: 9px;
    font-size: 0.66rem;
  }

  .standard-header__toggle {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 360px) {
  .standard-header__brand img {
    width: 164px;
  }
}
