html {
  scrollbar-gutter: stable;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper, #FCFBF8);
  border-bottom: 0.5px solid #F0F0F0;
  padding: 0;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nav-name {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1A1A1A;
}

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

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  color: #BBBBBB;
  transition: color 0.15s;
  cursor: pointer;
}

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

.nav-links a.active {
  color: var(--teal, #0E7C6D);
  font-weight: 700;
}
