/* ── FLOATING PILL NAV ── */
#nav-pill {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-80px);
  width: 700px;
  max-width: calc(100vw - 48px);
  z-index: 1100;
  background: #1a1a1a;
  border-radius: 14px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  pointer-events: none;
}

#nav-pill.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.pill-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.pill-links {
  display: flex;
  gap: 44px;
}

.pill-links a {
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  font-weight: 500;
  color: #aaaaaa;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  cursor: none;
}

.pill-links a:hover { color: #fff; }

.pill-cta {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 7px 16px;
  border-radius: 6px;
  transition: border-color 0.2s, color 0.2s;
  cursor: none;
}

.pill-cta:hover { border-color: #fff; }

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

#nav.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}

.nav-logo {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
  cursor: none;
}

.nav-links a:hover { color: #fff; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Language switcher */
.lang-sw { display: flex; gap: 10px; }

.lang-sw button {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: none;
  letter-spacing: 0.1em;
  padding: 0;
  transition: color 0.2s;
}

.lang-sw button.active { color: #fff; }
