.header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  pointer-events: none;
}

.header__inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 14px 0 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 24px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 22px 70px rgba(9, 22, 38, .1);
  backdrop-filter: blur(24px);
  pointer-events: auto;
}

.header.is-scrolled .header__inner {
  background: rgba(255, 255, 255, .9);
  border-color: rgba(15, 23, 42, .08);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  text-decoration: none;
}

.logo__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 12px 30px rgba(16, 185, 87, .22);
}

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

.logo__text {
  color: var(--ink);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.06em;
}

.logo__text span {
  color: var(--green-2);
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 6px 4px;
  border: 1px solid rgba(15, 23, 42, .06);
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
}

.header__nav a {
  padding: 11px 13px;
  border-radius: 999px;
  color: #182333;
  font-size: 13px;
  font-weight: 600;
  transition: .2s ease;
}

.header__nav a:hover {
  color: var(--green-3);
  background: #ecfff3;
}

.header__btn {
  min-height: 48px;
  border-radius: 16px;
}

.burger {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  color: var(--green-3);
  background: #eafff1;
}

.burger svg {
  width: 24px;
  height: 24px;
  margin: auto;
}

.mobile-menu {
  display: none;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.header__btn--connect {
  min-height: 48px;
  letter-spacing: -.01em;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 6px;
    font-size: 13px;
    font-weight: 800;
    color: rgba(15, 23, 42, 0.55);
    white-space: nowrap;
}

    .lang-switch a {
        color: rgba(15, 23, 42, 0.55);
        text-decoration: none;
        transition: color .2s ease;
    }

        .lang-switch a:hover,
        .lang-switch a.active {
            color: #0f172a;
        }

    .lang-switch span {
        color: rgba(15, 23, 42, 0.25);
    }

.lang-switch--mobile {
    justify-content: center;
    padding: 10px 0;
    font-size: 15px;
}

@media (max-width: 1180px) {
    .header__nav {
        gap: 8px;
    }

    .header__actions {
        gap: 8px;
    }

    .header__btn {
        padding-left: 16px;
        padding-right: 16px;
    }
}