/* anyconcept navigation
   sticky bar, secondary lockup left, links + CTA right.
   used on every page. */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-page);
  border-bottom: var(--border-width) solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  width: 100%;
  padding: 0 56px;
}

/* ---------- logo: secondary lockup ----------
   full combined lockup (pixel mark + wordmark in a single SVG). the
   SVG has artboard-level whitespace; a generous height lets the visible
   mark + wordmark render at comfortable nav scale. */
.nav__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo img {
  height: 20px;
  width: auto;
}

/* ---------- right side: primary links + CTA ---------- */
.nav__right {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.nav__links a {
  font-family: var(--font-family-sans);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  transition: color 120ms ease;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: rgba(255, 255, 255, 0.8);
}

/* CTA: same scale as nav links but full-opacity white, red on hover.
   gives the CTA weight without inventing a button style for the nav. */
.nav__cta {
  font-family: var(--font-family-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-primary);
  transition: color 120ms ease;
}

.nav__cta:hover,
.nav__cta:focus-visible {
  color: var(--red);
}

/* ---------- responsive ----------
   below 720px the inline links are hidden; logo + CTA remain.
   a hamburger toggle can land in js/nav.js later if the page count grows. */
@media (max-width: 720px) {
  .nav__links {
    display: none;
  }

  .nav__inner {
    padding: 0 var(--space-5);
  }
}
