.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  padding: 24px 60px;
  background: linear-gradient(180deg, #020204 0%, rgba(2, 2, 4, 0) 71.25%);
}

.site-header__inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
}

.site-header__brand img {
  width: 138px;
  height: 31.53px;
  flex-shrink: 0;
}

.site-header__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 16px;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  color: var(--White, #fff);
}

.site-header__nav a {
  display: inline-block;
  padding: 6px 4px;
  border-radius: 4px;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: var(--White, #fff);
  transition: transform 0.3s ease;
}

.site-header__nav a:hover {
  transform: scale(1.05);
  color: white;
}

.site-header__nav a[aria-current="page"] {
  font-weight: 600;
}

.site-header__tools {
  display: inline-flex;
  align-items: center;
}

.header-cta {
  display: inline-flex;
  width: auto;
  height: 34px;
  padding: 6px 16px;
  border-radius: 4px;
  background: #3cb4cc;
  font-family: "Work Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
  box-sizing: border-box;
  transition: background 0.25s ease;
}

.header-cta:hover {
  background: #36a2b7;
}

/* ─── Hamburger (hidden on desktop) ─────────────────────────────────────── */

.site-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 9px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
}

.site-header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ─── Mobile dropdown panel (hidden by default) ──────────────────────────── */

.site-header__dropdown {
  display: none;
}

/* ─── Tablet / mobile ────────────────────────────────────────────────────── */

@media (max-width: 1076px) {


  .site-header__nav,
  .site-header__tools {
    display: none;
  }

  .site-header__hamburger {
    display: flex;
  }

  /* Dropdown panel */
  .site-header__dropdown {
    position: fixed;
    top: 62px;
    right: 12px;
    width: 230px;
    background: var(--Obsidian);
    border-radius: 12px;
    padding: 8px 8px 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    z-index: 99998;
    display: none;
    flex-direction: column;
    gap: 4px;
  }

  .site-header.is-open .site-header__dropdown {
    display: flex;
    animation: dropdown-in 0.18s ease;
  }

  @keyframes dropdown-in {
    from {
      opacity: 0;
      transform: translateY(-6px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .site-header__dropdown-nav {
    display: flex;
    flex-direction: column;
  }

  .site-header__dropdown-nav a {
    font-family: "Work Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--White);
    padding: 11px 14px;
    border-radius: 8px;
    display: block;
  }

  .site-header__dropdown-nav a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .site-header__dropdown-nav a[aria-current="page"] {
    font-weight: 600;
  }

  .header-cta--dropdown {
    display: flex;
    margin: 4px 6px 0;
    justify-content: center;
    padding: 10px 16px;
    font-size: 13px;
  }

  /* Hamburger → X */
  .site-header.is-open .site-header__hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-open .site-header__hamburger span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .site-header__hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}