/* ══════════════════════════════════════
   NAVBAR
   Fixed. Top gap: 40px. Bar height: 46px.
   Content width: 1128px centred in 1440px.
   ══════════════════════════════════════ */

.navbar {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 100;
  transition:
    top 0.35s ease,
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease;
}

/* Scrolled state — frosted dark bar, slides flush to top */
.navbar--scrolled {
  top: 0;
  background: rgba(21, 13, 0, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 10px 0;
}

/* 1128px centred container */
.navbar__inner {
  width: 1128px;
  margin: 0 auto;
  height: 46px;     /* exact Figma nav bar height */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Logo: 164×38px ── */
.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.navbar__logo img {
  width: 164px;
  height: 38px;
  display: block;
}

/* ── Right group: gap 40px ── */
.navbar__right {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* ── Nav links ── */
.navbar__link {
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.70);
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s ease;
}
.navbar__link:hover {
  color: #ffffff;
}
.navbar__link--active {
  color: var(--color-gold);
}

/* ── Glass "Get Started" button ── */
/* Figma: w=136, h=46, border-radius=8, backdrop-blur=4px */
.btn--glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 136px;
  height: 46px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 1);
  border-radius: 8px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-sizing: border-box;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.btn--glass:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* ── Hamburger — hidden on desktop, shown on mobile via mobile.css ── */
.navbar__burger {
  display: none;
}

/* ── Mobile drawer — hidden on desktop ── */
.navbar__mobile-menu {
  display: none;
}
