.header {
  position: fixed;
  top: 0;
  padding-top: 60px;
  z-index: 50;
  width: 100%;
  /* background-color: rgb(6 5 25 / 30%); */
  /* backdrop-filter: blur(16px); */
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 10px;
  background: var(--panel-2);
  box-shadow:
    inset 0px 0px 8.8px rgba(255, 255, 255, 0.056),
    inset 0px 0px 8.8px rgba(255, 255, 255, 0.056),
    inset 0px 0px 8.8px rgba(255, 255, 255, 0.056);
  border-radius: var(--radius-lg);
  border: 1px solid #4B2BAC;
}

.brand {
  gap: 10px;
  min-width: 196px;
}

.brand__logo {
  display: block;
  height: 42px;
  width: auto;
}

.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--grad);
  box-shadow: 0 0 26px rgba(173, 108, 251, .55);
}

.brand__name {
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: .02em;
  opacity: .9;
}

.nav {
  display: flex;
  gap: 24px;
  margin-left: 5px;
  margin-right: auto;
}

.nav__link {
  padding: 10px 10px;
  border-radius: 12px;
  color: #fff;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, .04)
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-inline-end: 80px;
}

.lang-switch {
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  border: 1px solid #4B2BAC;
  background: var(--panel-2);
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
}

.lang {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
  padding: 23px 20px;
  border: none;
  background: transparent;
  width: 100%;
}

.lang__pill {
  font-weight: 400;
  font-size: 16px;
  line-height: 0.75;
}

.lang__caret {
  width: 7px;
  height: 3px;
  background-image: url("data:image/svg+xml,%3Csvg width='7' height='4' viewBox='0 0 7 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.19074e-08 0L3.51562 2.1875V3.48438H3.40625L0 1.1875L5.19074e-08 0ZM6.98438 3.05297e-07V1.1875L3.5625 3.48438H3.45312V2.1875L6.98438 3.05297e-07Z' fill='white'/%3E%3C/svg%3E%0A");
}

.lang-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
  padding: 0 17px 22px 17px;
}

.lang-menu[hidden] {
  display: none;
}

.lang-menu__item {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, .92);
  font-size: 16px;
  line-height: 1;
  padding: 12px 4px;
  text-align: left;
}

.lang-menu:not([hidden]) .lang-menu__item:not([hidden]) {
  padding-top: 12px;
}

.lang-menu__item {
  border-top: 1px solid #4B2BAC;
  /* border-bottom: 1px solid #4B2BAC; */
}

.lang-menu__item:last-child {
  padding-bottom: 0;
}

.btn {
  padding: 12px 31px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, .18);
  background: transparent;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  box-shadow: inset 0 -2px 1px rgba(0, 0, 0, .55), inset 0 2px 1px rgba(255, 255, 255, .14);
  white-space: nowrap;
  position: relative;
  z-index: 10;
}

.btn--primary {
  border: 4px solid #4B2BAC;
  background: var(--grad);
  box-shadow: 0 0 18px rgba(173, 108, 251, .35), inset 0 -4px 2px rgba(0, 0, 0, .55), inset 0 4px 2px rgba(255, 255, 255, .18);
  position: relative;
}

.shine-btn {
  background-image: url('../img/btn_mask.webp');
  background-size: cover;
}

.shine-btn__border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: .56;
}

.shine-btn__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform-origin: 0 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  background: conic-gradient(from 0deg,
      transparent 0%,
      #fff 10%,
      #000 15%,
      transparent 20%);
  animation: shine-rotate 3s linear infinite;
  animation-play-state: paused;
}

.shine-btn .shine-btn__glow {
  animation-play-state: running;
}

@keyframes shine-rotate {
  0% {
    transform: rotate(0deg) translate(-50%, -50%);
  }

  100% {
    transform: rotate(360deg) translate(-50%, -50%);
  }
}

.btn .icon-email {
  top: 1px;
  right: -3px;
  width: 32px;
  height: 29px;
  /* background: url('../img/email.svg') no-repeat center/contain; */
}

.btn .icon-examples {
  width: 26px;
  height: 26px;
  /* background: url('../img/examples.svg') no-repeat center/contain; */
}

.btn .icon-email svg,
.btn .icon-examples svg {
  filter: brightness(0) invert(1);
}

.btn:hover .icon-email svg,
.btn:hover .icon-examples svg {
  filter: none;
}

.icon-email>svg,
.icon-email>canvas,
.icon-examples>svg,
.icon-examples>canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, .26);
  background: rgba(21, 12, 44, .32);
}

.btn--sm {
  height: 40px;
  padding: 0 16px;
  font-size: 14px
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px
}

.chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(13, 11, 59, .45);
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
}

.footer {
  padding: 67px 0 41px;
  background: rgba(6, 5, 25, .75);
}

.footer__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer .brand {
  min-width: auto;
}

.footer__socials {
  gap: 38px;
}

.footer__socials a {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer__links {
  display: flex;
  gap: 14px;
  color: var(--muted);
}

.footer__links a:hover {
  color: var(--text)
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}