/* =========================
   TOPNAV
========================= */

.topnav-glass {
  position: fixed;
  top: 20px;
  left: 50%;

  transform: translateX(-50%);

  width: calc(100% - 120px);

  padding: 11px 18px;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.105);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);

  z-index: 10;
}

.topnav-brand {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
}

.topnav-cta {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 7px 13px;
  border-radius: 10px;

  font-size: 12px;
  text-decoration: none;
  color: #fff;

  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);

  transition: all 0.25s ease;
}

.topnav-cta i {
  font-size: 13px;
  opacity: 0.8;
}

.topnav-cta span {
  opacity: 0.85;
}

.topnav-cta:hover {
  transform: translateY(-1px);

  background: rgba(91, 124, 255, 0.18);
  border-color: rgba(91, 124, 255, 0.35);
}
