/* ── Header ──────────────────────────────────────────────────────────────── */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

.header__logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-1);
  text-decoration: none;
}

.header__logo:hover {
  color: var(--interactive);
}

/* ── Navigation ──────────────────────────────────────────────────────────── */

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

.nav__link {
  color: var(--text-2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.15s;
}

.nav__link:hover {
  color: var(--text-1);
}

.nav__link--primary {
  color: var(--interactive);
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--interactive) 8%, transparent);
  transition: background 0.15s, color 0.15s;
}

.nav__link--primary:hover {
  background: color-mix(in srgb, var(--interactive) 15%, transparent);
  color: var(--interactive-hover);
}

/* ── Nav Dropdown ────────────────────────────────────────────────────────── */

.nav__dropdown {
  position: relative;
}

.nav__dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  padding-top: 8px;
  right: 0;
  min-width: 180px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  display: block;
}

.nav__dropdown-section {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 8px 4px;
}

.nav__dropdown-item {
  display: block;
  padding: 7px 8px;
  border-radius: 5px;
  font-size: 13px;
  color: var(--text-2);
  text-decoration: none;
  transition: background 0.1s, color 0.1s;
}

.nav__dropdown-item:hover {
  background: var(--surface-3);
  color: var(--text-1);
}

.nav__dropdown-item--active {
  color: var(--text-1);
  font-weight: 600;
}
