.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  background: rgba(8, 9, 10, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #1b1d20;
}

.site-nav-in {
  position: relative;
  width: 100%;
  max-width: 1180px;
  height: 64px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-sizing: border-box;
}

.site-nav-logo,
.site-nav .logo-img,
.site-nav .brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
}

.site-nav-logo img,
.site-nav .logo-img img,
.site-nav .brand img {
  display: block;
  width: auto;
  height: 30px;
  max-width: none;
}

.site-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-left: auto;
}

.site-nav-links a {
  position: relative;
  color: #8a8f98;
  font-family: "Inter Tight", Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.site-nav-links a:hover,
.site-nav-links a.active {
  color: #f7f8f8;
}

.site-nav-links a.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: #00e676;
}

.site-nav-right {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-nav-cta,
.site-nav .btn-solid {
  display: inline-flex;
  min-height: 36px;
  padding: 9px 15px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 0;
  border-radius: 8px;
  background: #f7f8f8;
  color: #08090a;
  font-family: "Inter Tight", Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.site-nav-cta:hover,
.site-nav .btn-solid:hover {
  color: #08090a;
  opacity: 0.85;
}

.site-nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  margin: 0 0 0 auto;
  padding: 9px;
  place-items: center;
  border: 1px solid #2a2e33;
  border-radius: 8px;
  background: #111316;
  cursor: pointer;
}

.site-nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 2px 0;
  background: #f7f8f8;
}

@media (max-width: 1040px) {
  .site-nav-in {
    padding: 0 22px;
  }

  .site-nav-toggle {
    display: grid;
  }

  .site-nav-links {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    display: none;
    margin: 0;
    padding: 10px 22px 18px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid #1b1d20;
    background: rgba(8, 9, 10, 0.98);
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.28);
  }

  .site-nav.menu-open .site-nav-links {
    display: flex;
  }

  .site-nav-links a {
    padding: 13px 0;
    border-bottom: 1px solid #1b1d20;
  }

  .site-nav-links a:last-child {
    border-bottom: 0;
  }

  .site-nav-links a.active::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .site-nav-in {
    padding: 0 18px;
  }

  .site-nav-logo img,
  .site-nav .logo-img img,
  .site-nav .brand img {
    height: 26px;
  }

  .site-nav-right {
    display: none;
  }
}
